:root {
  --fairway-deep: #071f18;
  --fairway-mid: #124a35;
  --fairway-bright: #2fa66f;
  --fairway-light: #52c48e;
  --bunker-sand: #d4a96a;
  --bunker-light: #edd9a8;
  --bunker-deep: #9a7340;
  --sky-mist: #6eacc8;
  --dawn-ivory: #faf7f0;
  --rough-charcoal: #121816;
  --text-secondary: #94aba0;
  --text-tertiary: #688578;
  --glass-border: rgba(250, 247, 240, 0.14);
  --card: rgba(18, 74, 53, 0.55);
  --radius: 18px;
  --header-h: 68px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --glow: 0 0 48px rgba(212, 169, 106, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dawn-ivory);
  background:
    linear-gradient(180deg, var(--rough-charcoal) 0%, var(--fairway-deep) 42%, #0a261c 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: var(--bunker-sand);
  text-decoration: none;
}

a:hover {
  color: var(--bunker-light);
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
}

.orb-a {
  width: 280px;
  height: 280px;
  top: -60px;
  left: -40px;
  background: rgba(212, 169, 106, 0.16);
}

.orb-b {
  width: 240px;
  height: 240px;
  right: -30px;
  bottom: 18%;
  background: rgba(47, 166, 111, 0.14);
}

.topo {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 28px,
    rgba(82, 196, 142, 0.45) 28px,
    rgba(82, 196, 142, 0.45) 29px
  );
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
  padding: 12px 20px;
  backdrop-filter: blur(16px);
  background: rgba(7, 31, 24, 0.82);
  border-bottom: 1px solid var(--glass-border);
  z-index: 20;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--dawn-ivory);
  letter-spacing: 0.02em;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: rgba(18, 74, 53, 0.45);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--dawn-ivory);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: var(--header-h) 12px auto;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: rgba(7, 31, 24, 0.96);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--dawn-ivory);
  font-weight: 500;
}

.site-nav a:hover {
  background: rgba(47, 166, 111, 0.12);
  color: var(--bunker-light);
}

.nav-cta {
  margin-top: 4px;
  text-align: center;
  background: linear-gradient(135deg, var(--bunker-sand), var(--bunker-light));
  color: var(--rough-charcoal) !important;
  font-weight: 600 !important;
}

.hero,
.section,
.site-footer {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  padding: 56px 0 40px;
}

.eyebrow,
.section-kicker,
.privacy-meta,
.reply-note,
.contact-label {
  color: var(--bunker-sand);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.hero h1 {
  font-size: clamp(3rem, 10vw, 5.4rem);
}

.hero-sub {
  margin: 0 0 18px;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  color: var(--fairway-light);
  font-weight: 500;
}

.hero-lead,
.section-lead {
  max-width: 38rem;
  margin: 0 0 24px;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--rough-charcoal);
  background: linear-gradient(135deg, var(--bunker-sand), var(--bunker-light));
  box-shadow: var(--glow);
}

.btn-ghost {
  color: var(--dawn-ivory);
  border: 1px solid rgba(212, 169, 106, 0.35);
  background: rgba(18, 74, 53, 0.35);
}

.hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
}

.hero-stats li {
  padding: 14px 12px;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: rgba(18, 74, 53, 0.4);
  text-align: center;
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--bunker-sand);
  line-height: 1.1;
}

.hero-stats span {
  color: var(--text-tertiary);
  font-size: 0.78rem;
}

.section {
  padding: 56px 0;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  max-width: 16ch;
}

.feature-grid,
.contact-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-card,
.about-card,
.contact-card {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background:
    linear-gradient(145deg, rgba(18, 74, 53, 0.72), rgba(7, 31, 24, 0.88));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--bunker-sand), rgba(212, 169, 106, 0.25));
}

.feature-card h3,
.feature-card p {
  padding-left: 10px;
}

.feature-num {
  display: inline-block;
  margin-bottom: 8px;
  padding-left: 10px;
  color: var(--fairway-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.about-grid {
  margin-top: 24px;
}

.about-card p {
  color: var(--text-secondary);
}

.about-card p + p {
  margin-top: 14px;
}

.disclaimer {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(110, 172, 200, 0.25);
  background: rgba(10, 30, 40, 0.35);
  color: var(--sky-mist) !important;
  font-size: 0.92rem;
}

.tagline {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--dawn-ivory) !important;
  font-style: italic;
}

.privacy-meta {
  margin: 8px 0 24px;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--text-tertiary);
}

.prose {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: rgba(7, 31, 24, 0.55);
}

.prose h3 {
  margin: 28px 0 10px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--bunker-light);
}

.prose h3:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--text-secondary);
}

.prose ul {
  padding-left: 1.15rem;
}

.prose li + li {
  margin-top: 6px;
}

.reply-note {
  margin: 0;
  text-transform: none;
  letter-spacing: 0.02em;
}

.contact-card {
  display: block;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
  border-color: rgba(212, 169, 106, 0.45);
  transform: translateY(-2px);
  color: inherit;
}

.contact-label {
  display: block;
  margin-bottom: 8px;
}

.contact-value {
  color: var(--dawn-ivory);
  font-weight: 600;
  word-break: break-word;
}

.site-footer {
  padding: 36px 0 56px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.site-footer p {
  margin: 0 0 14px;
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--text-secondary);
  font-weight: 500;
}

@media (min-width: 760px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 8px 12px;
    font-size: 0.95rem;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 6px;
    padding-inline: 16px !important;
  }

  .hero {
    padding-top: 72px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section h2 {
    max-width: 20ch;
  }
}

@media (min-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats {
    max-width: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .contact-card,
  .nav-toggle span {
    transition: none;
  }
}
