/* ─── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; font-size: 16px; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ─── Tokens ────────────────────────────────────────────────────── */
:root {
  --cream:      #f5f0e8;
  --cream-2:    #ede8df;
  --green:      #2d6a4f;
  --green-dark: #1a3d2b;
  --green-deep: #0f2419;
  --charcoal:   #1c2517;
  --warm-gray:  #6b6558;
  --white:      #fdfcfa;

  --font-serif: 'Zodiak', Georgia, serif;
  --font-sans:  'Work Sans', 'Helvetica Neue', sans-serif;

  --section-pad: clamp(5rem, 9vw, 9rem);
  --container:   1280px;
  --radius:      0.5rem;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
}

/* ─── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.1; text-wrap: balance; }
.label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ─── Layout helpers ────────────────────────────────────────────── */
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.5rem, 5vw, 5rem); }

/* ─── Scroll reveal ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─────────────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem clamp(1.5rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  transition: color 0.4s;
}
.nav.scrolled .nav-logo { color: var(--charcoal); }
.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.25s;
}
.nav-links a:hover { color: white; }
.nav.scrolled .nav-links a { color: var(--warm-gray); }
.nav.scrolled .nav-links a:hover { color: var(--charcoal); }
.nav-cta {
  background: white;
  color: var(--green-dark) !important;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--cream); transform: translateY(-1px); }
.nav.scrolled .nav-cta { background: var(--green); color: white !important; }
.nav.scrolled .nav-cta:hover { background: var(--green-dark); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: background 0.3s; }
.nav.scrolled .hamburger span { background: var(--charcoal); }

@media (max-width: 768px) {
  .nav-links, .nav-links + a { display: none; }
  .hamburger { display: flex; }
}

/* ─────────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg.png') center/cover no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 36, 25, 0.88) 0%,
    rgba(15, 36, 25, 0.78) 45%,
    rgba(15, 36, 25, 0.15) 75%,
    transparent 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 10rem clamp(1.5rem, 5vw, 5rem) 7rem;
  max-width: min(680px, 55vw);
}
.hero-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.8rem;
}
.hero h1 {
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
  color: white;
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
}
.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.7);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 2.8rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  border-radius: 2rem;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--cream); transform: translateY(-2px); }
.btn-primary.green { background: var(--green); color: white; }
.btn-primary.green:hover { background: var(--green-dark); }
.hero-watch {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.hero-watch:hover { color: white; }
.hero-watch svg { transition: transform 0.2s; }
.hero-watch:hover svg { transform: translateX(3px); }
.hero-meta {
  margin-top: 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}

/* ─────────────────────────────────────────────────────────────────
   TEXT DEMO (iMessage mockup)
───────────────────────────────────────────────────────────────── */
.text-demo {
  background: var(--cream);
  padding: 4rem 1.5rem 5rem;
  text-align: center;
}
.text-demo-label {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 2rem;
  opacity: 0.5;
}
/* iPhone video mockup */
.iphone-video-wrap {
  width: 300px;
  max-width: 80%;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.22)) drop-shadow(0 8px 20px rgba(0,0,0,0.12));
}
.iphone-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.text-demo-note {
  font-size: 0.78rem;
  color: rgba(45,106,79,0.45);
  margin-top: 2rem;
  font-family: 'Work Sans', sans-serif;
}
@media (max-width: 480px) {
  .iphone-video-wrap { width: 260px; }
}

/* ─────────────────────────────────────────────────────────────────
   TICKER
───────────────────────────────────────────────────────────────── */
.ticker {
  background: var(--green);
  overflow: hidden;
  padding: 0.75rem 0;
}
.ticker-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────────────────────────────────────────────────────────────
   PROBLEM SECTION
───────────────────────────────────────────────────────────────── */
.problem {
  background: var(--green-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  overflow: hidden;
}
.problem-image {
  background: url('assets/problem-phone.png') center/cover no-repeat;
  min-height: 480px;
}
.problem-content {
  padding: var(--section-pad) clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.problem-label { color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }
.problem h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: white;
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  margin-bottom: 3rem;
  max-width: 16ch;
}
.problem-items { display: flex; flex-direction: column; gap: 1.8rem; }
.problem-item {}
.problem-item-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.35rem;
}
.problem-item h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}
.problem-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  max-width: 38ch;
}

@media (max-width: 768px) {
  .problem { grid-template-columns: 1fr; }
  .problem-image { min-height: 300px; }
}

/* ─────────────────────────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────────────────────────── */
.how { padding: var(--section-pad) 0; background: var(--cream); }
.how-header { text-align: center; margin-bottom: clamp(3rem, 6vw, 6rem); }
.how-header .label { color: var(--green); margin-bottom: 1rem; display: block; }
.how-header h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; }

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 5vw, 5rem) clamp(1.5rem, 5vw, 5rem);
  max-width: var(--container);
  margin-inline: auto;
}
.step:nth-child(even) .step-image { order: -1; }
.step-image {
  border-radius: 1.2rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.step-image img { width: 100%; height: 100%; object-fit: cover; }
.step-content { max-width: 480px; }
.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
  display: block;
}
.step-content h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.step-content p {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.65;
  max-width: 40ch;
}
.step-divider {
  width: calc(100% - clamp(3rem, 10vw, 10rem));
  height: 1px;
  background: var(--cream-2);
  margin-inline: auto;
}

@media (max-width: 768px) {
  .step { grid-template-columns: 1fr; }
  .step:nth-child(even) .step-image { order: 0; }
}

/* ─────────────────────────────────────────────────────────────────
   FEATURES
───────────────────────────────────────────────────────────────── */
.features { background: white; padding: var(--section-pad) 0; }
.features-header { text-align: center; margin-bottom: clamp(3rem, 6vw, 5rem); }
.features-header .label { color: var(--green); display: block; margin-bottom: 1rem; }
.features-header h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; }

.features-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  max-width: var(--container);
  margin-inline: auto;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.features-hero-image img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.features-hero-text {
  background: var(--green-dark);
  color: white;
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.features-hero-text h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 400;
  color: white;
  margin-bottom: 1rem;
}
.features-hero-text p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.6; max-width: 38ch; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 5rem);
}
.feature-card {
  background: var(--cream);
  border-radius: 1rem;
  padding: 2rem 1.8rem;
}
.feature-icon {
  width: 2.5rem; height: 2.5rem;
  background: rgba(45, 106, 79, 0.1);
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--green);
}
.feature-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.feature-card p { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.6; }

@media (max-width: 900px) {
  .features-hero { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────────
   DEMO VIDEO
───────────────────────────────────────────────────────────────── */
.demo { background: var(--green-deep); padding: var(--section-pad) clamp(1.5rem, 5vw, 5rem); text-align: center; }
.demo .label { color: rgba(255,255,255,0.4); display: block; margin-bottom: 1rem; }
.demo h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: white; margin-bottom: 0.75rem; }
.demo-sub { color: rgba(255,255,255,0.55); font-size: 1.05rem; margin-bottom: 3rem; }
.demo-video-wrap {
  max-width: 900px;
  margin-inline: auto;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  aspect-ratio: 16/9;
  position: relative;
  background: var(--green-dark);
}
.demo-video-wrap video { width: 100%; height: 100%; object-fit: cover; }

/* ─────────────────────────────────────────────────────────────────
   TESTIMONIAL
───────────────────────────────────────────────────────────────── */
.testimonial {
  background: var(--cream-2);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 5rem);
  text-align: center;
}
.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.35;
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 2rem;
}
.testimonial blockquote::before { content: '\201C'; }
.testimonial blockquote::after { content: '\201D'; }
.testimonial cite {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--warm-gray);
  font-style: normal;
  display: block;
}
.testimonial cite strong { color: var(--green); }

/* ─────────────────────────────────────────────────────────────────
   PRICING
───────────────────────────────────────────────────────────────── */
.pricing { background: white; padding: var(--section-pad) clamp(1.5rem, 5vw, 5rem); }
.pricing-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.pricing-header .label { color: var(--green); display: block; margin-bottom: 1rem; }
.pricing-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
.pricing-card {
  max-width: 460px;
  margin-inline: auto;
  background: var(--green-dark);
  color: white;
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  text-align: center;
}
.pricing-amount {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 500;
  color: white;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-amount sup {
  font-size: 40%;
  vertical-align: super;
  font-weight: 400;
  opacity: 0.7;
}
.pricing-period {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.pricing-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.pricing-features { list-style: none; text-align: left; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.check {
  width: 1.2rem; height: 1.2rem;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.65rem;
}
.pricing-btn {
  display: block;
  width: 100%;
  background: white;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem;
  border-radius: 2rem;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 1rem;
}
.pricing-btn:hover { background: var(--cream); transform: translateY(-1px); }
.pricing-note { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.step-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.75rem;
  font-style: italic;
}
.client-pricing-note {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}
.client-pricing-q {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.4rem;
}
.client-pricing-a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}
.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  margin-top: 1.25rem;
  margin-bottom: 1rem;
  text-align: left;
}
.guarantee-shield {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
}
.guarantee-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.guarantee-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}
.guarantee-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.3;
}
.founding-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 1.5rem;
}
.pricing-after {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
  margin-top: -0.5rem;
}
.spots-bar {
  margin-bottom: 2rem;
}
.spots-track {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.spots-fill {
  height: 100%;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  transition: width 0.6s ease;
  width: 0%;
}
.spots-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ─────────────────────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────────────────────── */
.faq { background: var(--cream); padding: var(--section-pad) clamp(1.5rem, 5vw, 5rem); }
.faq-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.faq-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400; }
.faq-list { max-width: 720px; margin-inline: auto; }
.faq-item { border-top: 1px solid var(--cream-2); }
.faq-item:last-child { border-bottom: 1px solid var(--cream-2); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 1.025rem;
  font-weight: 500;
  color: var(--charcoal);
  background: none;
}
.faq-q .faq-icon {
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  border: 1.5px solid var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.2s;
}
.faq-item.open .faq-icon { background: var(--green); color: white; border-color: var(--green); }
.faq-a {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.7;
  padding-bottom: 1.4rem;
  display: none;
  max-width: 62ch;
}
.faq-item.open .faq-a { display: block; }

/* ─────────────────────────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────────────────────────── */
.cta-final {
  background: var(--green-dark);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 5rem);
  text-align: center;
}
.cta-final h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 400;
  color: white;
  font-style: italic;
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.15;
  margin-bottom: 2rem;
}
.cta-final .cta-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────────── */
footer {
  background: var(--green-deep);
  padding: 3rem clamp(1.5rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.5);
}
.footer-logo span {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  list-style: none;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); }
