:root {
  --forest: #263f31;
  --green: #3e5c4a;
  --olive: #76805a;
  --cream: #f8f6f1;
  --white: #ffffff;
  --ink: #2b2b2b;
  --muted: #66645d;
  --gold: #b8954b;
  --gold-strong: #a8642d;
  --line: rgba(62, 92, 74, .15);
  --shadow: 0 18px 50px rgba(38, 63, 49, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, p { margin: 0; letter-spacing: 0; overflow-wrap: anywhere; }
p, li { color: var(--muted); }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px clamp(16px, 4vw, 54px);
  background: rgba(248, 246, 241, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 100px;
  height: 50px;
  object-fit: contain;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--gold);
  color: var(--forest);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: clamp(320px, 36vw, 400px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 20%, rgba(184, 149, 75, .32), transparent 34%),
    linear-gradient(135deg, rgba(38, 63, 49, .98), rgba(118, 128, 90, .9));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(0deg, rgba(28, 43, 34, .46), rgba(28, 43, 34, .1));
}

.hero-copy {
  width: min(1050px, 100%);
  margin-inline: auto;
  padding: clamp(82px, 9vw, 104px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 52px);
}

.eyebrow {
  color: var(--gold-strong);
  font-weight: 900;
  margin-bottom: 12px;
}

h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(42px, 8vw, 78px);
  line-height: 1.04;
}

.hero-copy p:last-child {
  max-width: 720px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(18px, 2.4vw, 25px);
  font-weight: 800;
}

.section {
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(880px, 100%);
  margin: 0 auto 18px;
  text-align: center;
}

.section-heading h2 {
  color: var(--forest);
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.12;
}

.section-heading p:last-child {
  margin-top: 12px;
  font-size: clamp(17px, 2vw, 20px);
}

.grid {
  width: min(1120px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 14px;
  align-items: stretch;
}

.card {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 12px 36px rgba(38, 63, 49, .08);
}

.card h2 {
  margin-bottom: 12px;
  color: var(--forest);
  font-size: clamp(24px, 4vw, 34px);
}

.card h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 22px;
}

.card ul {
  margin: 0;
  padding: 0;
  direction: rtl;
  text-align: right;
  list-style: none;
}

.card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .45rem;
  align-items: start;
  direction: rtl;
  text-align: right;
}

.card li::before {
  content: "•";
  color: var(--muted);
  font-weight: 900;
  line-height: inherit;
}

.cta {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: clamp(34px, 5vw, 54px) 18px;
  background: var(--forest);
  color: var(--white);
  text-align: center;
}

.cta h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.12;
}

.site-footer {
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--forest);
  color: var(--white);
  direction: rtl;
}

.footer-inner {
  width: min(1120px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, .78);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  text-decoration: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.social-link {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  text-decoration: none;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .15);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.options-section {
  padding-top: clamp(22px, 3vw, 38px);
}

.options-grid {
  width: min(1120px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

.option-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.option-card .button {
  margin-top: 8px;
  justify-self: start;
}

@media (min-width: 760px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
  .wide {
    grid-column: span 2;
  }
  .options-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .grid:has(.audience-card) {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid:has(.audience-card) .wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .brand span { display: none; }
  .brand img { width: 84px; height: 42px; }
  .topbar .button { min-height: 42px; padding-inline: 14px; font-size: 14px; }
  .hero { min-height: 280px; }
}
