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

:root {
  color-scheme: only light;
  --forest: #2F3E46;
  --forest-dark: #22313A;
  --sage: #8A9A8A;
  --sage-light: #E9EFE6;
  --terra: #C6A46C;
  --terra-dark: #A8874D;
  --sky: #6F8793;
  --sky-light: #E5ECEF;
  --sand: #F4EFE9;
  --off-white: #E7DFD6;
  --panel: #EFEAE4;
  --white: #FFFCF7;
  --text: #2E2E2E;
  --muted: #5E625F;
  --border: rgba(47, 62, 70, 0.15);
  --shadow: 0 4px 24px rgba(47, 62, 70, 0.10);
  --shadow-lg: 0 12px 48px rgba(47, 62, 70, 0.16);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: Inter, sans-serif;
  background: var(--sand);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--forest);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 6px 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--terra); outline-offset: 3px; border-radius: 3px; }

.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,252,247,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--forest);
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  line-height: 1;
  white-space: nowrap;
}

.brand-mark { width: 42px; height: 32px; flex: 0 0 auto; }
.brand-ground, .brand-sun { color: var(--terra); }
.nav-logo-sub {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  list-style: none;
}

.nav-links a,
.nav-dropdown > summary {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-dropdown > summary:hover,
.nav-links a[aria-current="page"] { color: var(--forest); }

.nav-dropdown { position: relative; }
.nav-dropdown > summary { list-style: none; cursor: pointer; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  padding: 0.65rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  list-style: none;
  display: none;
}
.nav-dropdown[open] .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu { display: grid; gap: 0.15rem; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.7rem 0.8rem;
  border-radius: 7px;
  color: var(--forest);
  font-weight: 700;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--sage-light); }

.nav-cta {
  background: var(--terra) !important;
  color: var(--white) !important;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.1rem;
  border-radius: 5px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--forest); border-radius: 2px; }

.page-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: var(--white);
  padding: 5.5rem 0;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow,
.section-label {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.03;
  margin-bottom: 1.25rem;
}

.page-hero p {
  color: rgba(255,252,247,0.84);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 680px;
}

.hero-card {
  background: rgba(255,252,247,0.1);
  border: 1px solid rgba(255,252,247,0.18);
  border-radius: 16px;
  padding: 1.6rem;
}
.hero-card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.hero-card ul { list-style: none; display: grid; gap: 0.75rem; }
.hero-card li { color: rgba(255,252,247,0.82); font-size: 0.94rem; }
.hero-card li::before { content: "•"; color: var(--terra); margin-right: 0.55rem; }

.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 720px;
  line-height: 1.75;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.4rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.7rem;
  box-shadow: var(--shadow);
}
.info-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.22;
  color: var(--forest);
  margin-bottom: 0.7rem;
}
.info-card p { color: var(--muted); font-size: 0.94rem; line-height: 1.7; }

.story-band { background: var(--white); }
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: start;
}

.story-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.callout {
  background: var(--sage-light);
  border-left: 5px solid var(--terra);
  border-radius: 12px;
  padding: 1.5rem;
}
.callout strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.callout p { color: var(--muted); line-height: 1.75; }

.source-note {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 1rem;
}
.source-note a { color: var(--sky); }

.cta-section {
  background: var(--forest-dark);
  color: var(--white);
  text-align: center;
}
.cta-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,252,247,0.78);
  max-width: 640px;
  margin: 0 auto 1.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--terra);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
}
.btn-primary:hover { background: var(--terra-dark); }

footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.55);
  padding: 1.8rem 0;
  font-size: 0.78rem;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 900px) {
  .page-hero-inner,
  .story-layout,
  .content-grid { grid-template-columns: 1fr; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a,
  .nav-dropdown > summary {
    display: block;
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-dropdown-menu {
    position: static;
    transform: none;
    display: grid;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: var(--panel);
  }
  .nav-dropdown-menu a { padding-left: 2.25rem; border-radius: 0; }
  .nav-cta { margin: 0.75rem 1.5rem 1rem; display: inline-block; text-align: center; }
}
