/* ============================================================
   Les Amis du Casset — Main Stylesheet
   Design system: amisducasset_ux_design_system.md
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@300;400;500;600;700&family=DM+Sans:ital,wght@0,200;0,300;0,400;0,500;1,300&display=swap');

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --forest:    #5a9962;
  --fern:      #7bbf72;
  --moss:      #c8e0b5;
  --stone:     #f4f9f0;
  --parchment: #fbfdf8;
  --charcoal:  #243320;
  --slate:     #445a3c;
  --mist:      #d8eacc;
  --accent:    #4d9962;
  --gold:      #a8cc88;
  --nav-h:     68px;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --ease:      0.2s ease;
  --ease-nav:  0.4s ease;
  --px:        clamp(24px, 6vw, 120px);
  --py:        clamp(64px, 8vw, 120px);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 300; line-height: 1.1; }

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background var(--ease-nav), backdrop-filter var(--ease-nav), box-shadow var(--ease-nav);
}
.site-nav.scrolled {
  background: rgba(32, 48, 26, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: #fff;
}
.logo-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Nav list */
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
.nav-item {
  position: relative;
}
/* Vertical dividers between nav items */
.nav-item + .nav-item:not(.nav-cta)::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  height: 14px;
  width: 1px;
  background: rgba(255,255,255,0.2);
  pointer-events: none;
}
.nav-item > a {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0 16px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: color var(--ease);
  white-space: nowrap;
}
.nav-item > a:hover,
.nav-item.active > a { color: #fff; }
/* Dropdown indicator arrow */
.has-dropdown > a::after {
  content: ' ▾';
  font-size: 8px;
  opacity: 0.5;
  margin-left: 2px;
}

/* CTA button */
.nav-cta > a {
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 10px 20px !important;
  height: auto !important;
  border-radius: 2px;
  margin-left: 8px;
  transition: background var(--ease);
}
.nav-cta > a:hover { background: var(--forest); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: #2e3e28;
  border-top: 2px solid var(--fern);
  padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s, padding-left 0.15s, background 0.15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
  padding-left: 26px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.55) 80%,
    rgba(0,0,0,0.75) 100%
  );
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--px) clamp(48px, 8vh, 96px);
  max-width: 900px;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(52px, 8vw, 96px);
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 8px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}
.hero-lead {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.hero-scroll span {
  font-family: var(--font-body);
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  border: none;
}
.btn-primary, .btn-solid {
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent);
}
.btn-primary:hover, .btn-solid:hover { background: #3d7a50; border-color: #3d7a50; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
  transition: all 0.25s;
}
.btn-outline:hover {
  background: #fff;
  color: var(--charcoal);
  border-color: #fff;
}
.btn-forest {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  text-decoration: none;
  background: var(--forest);
  color: #fff;
  border: 1.5px solid var(--forest);
  transition: all 0.25s;
}
.btn-forest:hover { background: var(--charcoal); border-color: var(--charcoal); }
.btn-muted {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  text-decoration: none;
  background: var(--stone);
  color: var(--slate);
  border: 1px solid var(--mist);
  transition: all 0.25s;
}
.btn-muted:hover { background: var(--moss); }

/* ── Page Header (inner pages) ──────────────────────────────── */
.page-header {
  padding-top: calc(var(--nav-h) + clamp(48px, 6vw, 80px));
  padding-bottom: clamp(40px, 5vw, 72px);
  padding-left: var(--px);
  padding-right: var(--px);
  background: var(--charcoal);
  color: #fff;
}
.page-header-eyebrow {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-header h1 {
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
}
.page-header .lead {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  line-height: 1.65;
}

/* ── Sections ───────────────────────────────────────────────── */
.section {
  padding: var(--py) var(--px);
}
.section-alt { background: var(--stone); }
.section-dark { background: var(--charcoal); color: #fff; }

.section-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 14px;
}
.section-dark .section-label { color: var(--gold); }

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-dark .section-title { color: #fff; }

.section-lead {
  font-size: 16px;
  font-weight: 300;
  color: var(--slate);
  max-width: 600px;
  margin-bottom: 48px;
  line-height: 1.65;
}
.section-dark .section-lead { color: rgba(255,255,255,0.7); }

.section-header { margin-bottom: 48px; }

/* Content containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 28px;
}

.card {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: 6px;
  padding: 32px 36px;
  transition: transform var(--ease), box-shadow var(--ease);
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.card-parchment { background: var(--parchment); }
.card-stone { background: var(--stone); }

.card-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--moss);
  border-radius: 2px;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.25;
}
.card-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 20px;
}
.card-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--ease), gap var(--ease);
}
.card-link:hover { color: var(--accent); gap: 10px; }
.card-link::after { content: '→'; }

/* Featured card (horizontal) */
.card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
}
.card-featured .card-featured-img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}
.card-featured .card-featured-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Rich text / Prose ──────────────────────────────────────── */
.prose h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin: 48px 0 16px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin: 36px 0 12px;
}
.prose p { margin-bottom: 16px; color: var(--slate); font-weight: 300; }
.prose ul, .prose ol {
  margin: 16px 0 24px 20px;
  color: var(--slate);
  font-weight: 300;
}
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 3px solid var(--fern);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--stone);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: var(--slate);
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}
.prose table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--stone);
  border: 1px solid var(--mist);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.prose table td {
  padding: 12px 16px;
  border: 1px solid var(--mist);
  color: var(--slate);
}
.prose table tr:nth-child(even) td { background: var(--stone); }
.prose strong { font-weight: 500; color: var(--charcoal); }
.prose a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }

/* ── Highlight boxes ────────────────────────────────────────── */
.highlight-box {
  background: var(--stone);
  border: 1px solid var(--mist);
  border-radius: 6px;
  padding: 28px 32px;
  margin: 32px 0;
}
.highlight-box.accent {
  background: var(--moss);
  border-color: var(--fern);
}

/* ── Stats / features row ───────────────────────────────────── */
.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
  border: 1px solid var(--mist);
  border-radius: 6px;
  overflow: hidden;
}
.feature-item {
  padding: 32px 28px;
  border-right: 1px solid var(--mist);
  background: #fff;
}
.feature-item:last-child { border-right: none; }
.feature-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 8px;
}
.feature-label {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--slate);
  text-transform: uppercase;
}

/* ── CTA Strip ──────────────────────────────────────────────── */
.cta-strip {
  background: var(--charcoal);
  padding: clamp(48px, 6vw, 80px) var(--px);
  text-align: center;
}
.cta-strip h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-strip p {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ── Campaign Grid (mosaic photo cards) ────────────────────── */
.campaigns-section {
  background: var(--parchment);
  padding: var(--py) 0 0;
}
.campaigns-section .section-header {
  text-align: center;
  padding: 0 var(--px) 48px;
}
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.campaign-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.campaign-card.wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}
.campaign-card.cta-block {
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  text-align: center;
}
.campaign-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.campaign-card:not(.cta-block):hover .campaign-bg { transform: scale(1.05); }
.campaign-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,10,0.85) 0%, rgba(10,20,10,0.2) 60%, transparent 100%);
  transition: opacity 0.3s;
}
.campaign-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
}
.campaign-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}
.campaign-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: white;
  line-height: 1.15;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.campaign-location {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.explore-btn {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: white;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 18px;
  text-decoration: none;
  transition: all 0.2s;
}
.explore-btn:hover { background: white; color: var(--charcoal); }
/* CTA block within campaign grid */
.cta-block-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.cta-block-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-block-title em { font-style: italic; }
/* Image backgrounds for campaign cards */
.bg-hydro    { background-image: url('/assets/images/campaign-hydro.jpg'); }
.bg-mill     { background-image: url('/assets/images/campaign-mill.jpg'); }
.bg-greenway { background-image: url('/assets/images/campaign-greenway.jpg'); }
.bg-river    { background-image: url('/assets/images/campaign-river.jpg'); }
.bg-elections{ background-image: url('/assets/images/campaign-elections.jpg'); }
.bg-valley   { background-image: url('/assets/images/campaign-watercourse.jpg'); }

@media (max-width: 768px) {
  .campaign-grid { grid-template-columns: 1fr 1fr; }
  .campaign-card.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
  .campaign-title { font-size: 17px; }
}
@media (max-width: 480px) {
  .campaign-grid { grid-template-columns: 1fr; }
  .campaign-card.wide { grid-column: span 1; aspect-ratio: 1 / 1; }
}

/* ── Join Band (light green gradient membership CTA) ────────── */
.join-band {
  position: relative;
  padding: clamp(64px, 8vw, 100px) var(--px);
  text-align: center;
  overflow: hidden;
}
.join-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, #dff0d8 0%, #c8e0b5 60%, #e8f4e2 100%);
  z-index: 0;
}
.join-band > * { position: relative; z-index: 1; }
.join-band .section-label { color: var(--forest); }
.join-band h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.0;
  margin-bottom: 20px;
}
.join-band h2 em { font-style: normal; color: var(--forest); }
.join-band p {
  font-size: 15px;
  font-weight: 300;
  color: var(--slate);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.join-pricing {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.price-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--mist);
  padding: 28px 32px;
  text-align: center;
  min-width: 160px;
  transition: background 0.2s;
}
.price-card:hover { background: rgba(255,255,255,0.95); }
.price-card.featured {
  background: var(--accent);
  border-color: var(--accent);
}
.price-card.featured .price-amount,
.price-card.featured .price-period,
.price-card.featured .price-label { color: #fff; }
.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 4px;
}
.price-period {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}
.price-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  padding: 16px var(--px);
  background: var(--stone);
  border-bottom: 1px solid var(--mist);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--slate);
}
.breadcrumb a {
  color: var(--forest);
  transition: color var(--ease);
}
.breadcrumb a:hover { color: var(--charcoal); }
.breadcrumb span { margin: 0 8px; opacity: 0.4; }

/* ── Reveal animation ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #283822;
  color: rgba(255,255,255,0.65);
  padding: 52px var(--px) 0;
}
.footer-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  width: 100%;
}
.footer-col {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 28px;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.footer-col:first-child {
  padding-left: 0;
  border-left: none;
}
.footer-col:last-child {
  padding-right: 0;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-col ul { display: flex; flex-direction: column; }
.footer-col li a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  display: block;
  padding: 5px 0;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s, padding-left 0.15s;
}
.footer-col li:last-child a { border-bottom: none; }
.footer-col li a:hover {
  color: #fff;
  padding-left: 6px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.22);
}

/* ── Utility ────────────────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .card-featured { grid-template-columns: 1fr; }
  .card-featured .card-featured-img { height: 260px; min-height: auto; }
  .footer-inner { flex-wrap: wrap; }
  .footer-col { flex: 1 1 40%; }
  .footer-col:nth-child(odd) { border-left: none; padding-left: 0; }
  .footer-col:nth-child(2) { border-left: 1px solid rgba(255,255,255,0.1); }
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-list {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(32, 48, 26, 0.97);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0 32px;
    gap: 0;
    overflow-y: auto;
    max-height: calc(100svh - var(--nav-h));
  }
  .nav-list.open { display: flex; }
  /* Remove dividers in mobile menu */
  .nav-item + .nav-item:not(.nav-cta)::before { display: none; }
  .has-dropdown > a::after { display: none; }
  .nav-item > a {
    height: auto;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0,0,0,0.2);
    border-top: none;
    border-left: 2px solid var(--fern);
    margin: 0;
    margin-left: 24px;
    box-shadow: none;
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .nav-cta { margin: 16px 24px 0; }
  .nav-cta > a { margin: 0; text-align: center; justify-content: center; }

  .hero-title { font-size: clamp(36px, 10vw, 56px); }
  .hero-scroll { display: none; }
  .card-grid, .card-grid-2 { grid-template-columns: 1fr; }
  .features-row { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-wrap: wrap; gap: 0; }
  .footer-col { flex: 1 1 100%; padding: 20px 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
  .footer-col:first-child { border-top: none; }
  .prose table { font-size: 13px; }
  .prose table th, .prose table td { padding: 8px 12px; }
}

@media (max-width: 480px) {
  .features-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
