/* =============================================================
   Olimar African Incoming — Swiss editorial × Mozambican wild
   ============================================================= */

/* --- Tokens --- */
:root {
  /* Surfaces */
  --bg:          #0A0A0A;            /* near-black for cinematic sections */
  --bg-alt:      #F4EFE8;            /* warm off-white for editorial sections */
  --paper:       #FFFFFF;            /* crisp white for forms / cards */
  --ink:         #0A0A0A;
  --ink-soft:    #2C2C2C;
  --ink-mute:    #757575;

  /* Inverted (for dark sections) */
  --ink-on-dark:        rgba(255,255,255,0.92);
  --ink-on-dark-soft:   rgba(255,255,255,0.65);
  --ink-on-dark-mute:   rgba(255,255,255,0.40);

  /* Olimar brand (from logo) */
  --olimar-blue:     #2C4FA8;
  --olimar-blue-dk:  #0A1F5C;
  --olimar-blue-lt:  #6E8FD9;

  /* Mozambique palette */
  --sand:        #E8D9B0;            /* warm African sand */
  --terracotta:  #B85C38;            /* subtle nod to BIA */
  --gold:        #C9A961;
  --moss:        #2F4A3D;

  /* Lines */
  --line:        rgba(10, 10, 10, 0.10);
  --line-soft:   rgba(10, 10, 10, 0.06);
  --line-dark:   rgba(255, 255, 255, 0.10);

  /* Type */
  --font-display: 'Geist', 'Inter', system-ui, sans-serif;
  --font-body:    'Geist', system-ui, sans-serif;
  --font-edit:    'Fraunces', 'Times New Roman', serif;
  --font-mono:    'Geist Mono', ui-monospace, monospace;

  /* Sizing */
  --maxw:    1280px;
  --pad-x:   clamp(1.25rem, 4vw, 5rem);
  --pad-y:   clamp(4rem, 9vw, 9rem);

  --radius-sm: 4px;
  --radius:    12px;
  --radius-lg: 20px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg-alt);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; color: inherit; }
::selection { background: var(--olimar-blue); color: #fff; }

/* --- Typography utilities --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
}
em {
  font-style: italic;
  font-family: var(--font-edit);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.link-inline { color: var(--olimar-blue); border-bottom: 1px solid currentColor; transition: opacity 200ms; }
.link-inline:hover { opacity: 0.7; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--olimar-blue); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-lg { padding: 1.05rem 1.7rem; font-size: 0.95rem; }

/* Section commons */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}
.section-head { max-width: 760px; padding: 0 var(--pad-x); margin: 0 auto clamp(3rem, 5vw, 5rem); }
.section-head--center { text-align: center; }
.section-head--center .section-eyebrow { border-color: var(--line); }
.section-title {
  font-size: clamp(2.4rem, 5.5vw, 5.2rem);
  margin-bottom: 1.2rem;
  text-wrap: balance;
}
.section-title em { color: var(--olimar-blue); }
.section-lead {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 620px;
}
.section-head--center .section-lead { margin: 0 auto; }

/* =============================================================
   Nav
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem var(--pad-x);
  background: transparent;
  transition: background 300ms ease, backdrop-filter 300ms ease, padding 300ms ease;
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.nav-brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-white, .brand-blue { height: 28px; width: auto; transition: opacity 300ms ease; }
.brand-white { display: block; }
.brand-blue { display: none; }
.nav.is-scrolled .brand-white { display: none; }
.nav.is-scrolled .brand-blue { display: block; }

.nav-links {
  display: flex; gap: 1.8rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  transition: color 300ms ease;
}
.nav.is-scrolled .nav-links { color: var(--ink-soft); }
.nav-links a {
  position: relative; padding: 0.4rem 0;
  transition: color 160ms ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 220ms ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.2rem; }
.lang-switch {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.74rem;
  color: rgba(255,255,255,0.75);
  transition: color 300ms ease;
}
.nav.is-scrolled .lang-switch { color: var(--ink-mute); }
.lang-btn { padding: 0.2rem 0.3rem; opacity: 0.55; transition: opacity 180ms ease; }
.lang-btn.lang-active, .lang-btn:hover { opacity: 1; }

.nav-cta {
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.1);
}
.nav-cta:hover { background: #fff; }
.nav.is-scrolled .nav-cta { background: var(--ink); color: #fff; }
.nav.is-scrolled .nav-cta:hover { background: var(--olimar-blue); }

@media (max-width: 1024px) { .nav-links { display: none; } }
@media (max-width: 720px) {
  .nav { gap: 0.5rem; padding: 0.85rem 1rem; }
  .lang-switch { display: none; }
  .nav-cta { padding: 0.7rem 1rem; font-size: 0.82rem; }
}
@media (max-width: 420px) {
  .nav-cta-text { display: none; }
  .nav-cta::before { content: "Plan trip"; }
  .brand-white, .brand-blue { height: 22px; }
}

/* =============================================================
   Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(5rem, 10vw, 8rem) var(--pad-x) clamp(3rem, 5vw, 5rem);
  display: flex; flex-direction: column;
  overflow: hidden;
  background: var(--bg);
  color: #fff;
}
.hero-image-wrap {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 65%;
  transform: scale(1.06);
  animation: hero-pan 22s ease-out forwards;
  opacity: 0.85;
}
@keyframes hero-pan { to { transform: scale(1); object-position: center 50%; } }
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.10) 30%, rgba(10,10,10,0.15) 65%, rgba(10,10,10,0.72) 100%),
    linear-gradient(110deg, rgba(10,10,10,0.55) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  max-width: 1100px;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  color: rgba(255,255,255,0.78);
  opacity: 0; animation: rise 0.9s 0.2s ease-out forwards;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--sand);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232, 217, 176, 0.25);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 11vw, 10rem);
  font-weight: 200;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 1.6rem;
  text-wrap: balance;
  opacity: 0; animation: rise 1s 0.35s ease-out forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--sand);
  font-family: var(--font-edit);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  letter-spacing: -0.02em;
}

.hero-sub {
  max-width: 600px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0 0 2.4rem;
  opacity: 0; animation: rise 1s 0.55s ease-out forwards;
}

.hero-cta {
  display: flex; gap: 0.7rem; flex-wrap: wrap;
  margin-bottom: 3.2rem;
  opacity: 0; animation: rise 1s 0.7s ease-out forwards;
}
.hero-cta .btn-primary { background: var(--sand); color: var(--ink); }
.hero-cta .btn-primary:hover { background: #fff; color: var(--ink); }
.hero-cta .btn-ghost { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.32); }
.hero-cta .btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: #fff; color: #fff; }

.hero-meta {
  display: flex; gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  opacity: 0; animation: rise 1s 0.85s ease-out forwards;
}
.meta-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}
.meta-stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.4rem;
  line-height: 1.5;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute; right: var(--pad-x); bottom: 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  z-index: 1;
}
@media (max-width: 720px) { .hero-scroll { display: none; } }

/* =============================================================
   About / Tour Operator
   ============================================================= */
.about {
  padding: var(--pad-y) 0;
  background: var(--bg-alt);
}
.about-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-text .section-title { font-size: clamp(2.4rem, 4.4vw, 4rem); margin: 1rem 0 1.6rem; }
.about-text .lede { font-size: 1.1rem; color: var(--ink-soft); margin: 0 0 1.2rem; max-width: 50ch; }
.about-text p { color: var(--ink-soft); margin: 0 0 1.2rem; max-width: 50ch; }
.about-image {
  margin: 0; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================================
   Destination
   ============================================================= */
.destination {
  padding: var(--pad-y) 0;
  background: var(--bg);
  color: var(--ink-on-dark);
}
.destination .section-eyebrow {
  color: var(--ink-on-dark-soft);
  border-color: var(--line-dark);
}
.destination .section-title em { color: var(--sand); }
.destination .section-lead { color: var(--ink-on-dark-soft); }

.dest-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.4rem);
}

.dest-card {
  grid-column: span 4;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 300ms ease, border-color 300ms ease;
}
.dest-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.22); }
.dest-card--feature { grid-column: span 12; flex-direction: row; }
.dest-card--feature .dest-img { flex: 1.2; min-height: 480px; }
.dest-card--feature .dest-body { flex: 1; padding: clamp(2rem, 3vw, 3.5rem); }
.dest-card--feature .dest-body h3 { font-size: clamp(2rem, 3vw, 2.8rem); }

.dest-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dest-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}
.dest-card:hover .dest-img img { transform: scale(1.04); }

.dest-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: 0.7rem; }
.dest-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
}
.dest-body h3 {
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
}
.dest-body p { color: var(--ink-on-dark-soft); font-size: 0.95rem; margin: 0; }

@media (max-width: 1024px) {
  .dest-card { grid-column: span 6; }
  .dest-card--feature { grid-column: span 12; flex-direction: column; }
  .dest-card--feature .dest-img { min-height: auto; aspect-ratio: 16/9; }
}
@media (max-width: 640px) { .dest-card { grid-column: span 12; } }

/* Seasons */
.seasons {
  max-width: var(--maxw);
  margin: clamp(4rem, 7vw, 6rem) auto 0;
  padding: 0 var(--pad-x);
}
.seasons-head { margin-bottom: 2rem; }
.seasons-head .section-eyebrow { color: var(--ink-on-dark-soft); border-color: var(--line-dark); }
.seasons-title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: #fff; }
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
}
.season {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 0.9rem 0.6rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  text-align: center;
}
.season .month {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-on-dark-mute);
}
.season .temp { font-family: var(--font-mono); font-size: 0.85rem; color: var(--ink-on-dark); }
.season .note {
  margin-top: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
}
.season--highlight { background: rgba(232, 217, 176, 0.08); border-color: rgba(232, 217, 176, 0.30); }

@media (max-width: 900px) { .seasons-grid { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 480px) { .seasons-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   Activities
   ============================================================= */
.activities {
  padding: var(--pad-y) 0;
  background: var(--bg-alt);
}

.acts-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 2.5vw, 2.4rem);
}
@media (max-width: 768px) { .acts-grid { grid-template-columns: 1fr; } }

.act {
  padding: clamp(1.8rem, 2.5vw, 2.6rem);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.act:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -24px rgba(10,10,10,0.12);
}
.act-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--olimar-blue);
  margin-bottom: 1.2rem;
}
.act h3 {
  font-size: 1.7rem;
  font-weight: 300;
  margin-bottom: 0.8rem;
}
.act p { color: var(--ink-soft); margin: 0 0 1rem; }
.act-list {
  list-style: none; margin: 0; padding: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.act-list li {
  padding: 0.4rem 0;
  border-top: 1px dashed var(--line);
}
.act-list li:first-child { border-top: none; padding-top: 0; }

/* Weddings */
.weddings {
  max-width: var(--maxw);
  margin: clamp(4rem, 6vw, 6rem) auto 0;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) { .weddings { grid-template-columns: 1fr; } }
.weddings-img { margin: 0; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.weddings-img img { width: 100%; height: 100%; object-fit: cover; }
.weddings-text h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 300;
  margin: 1rem 0 1.2rem;
}
.weddings-text p { color: var(--ink-soft); margin: 0 0 1.6rem; max-width: 48ch; }

/* =============================================================
   On the Ground (BIA bridge)
   ============================================================= */
.ground {
  padding: var(--pad-y) 0;
  background: var(--bg);
  color: var(--ink-on-dark);
}
.ground-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) { .ground-inner { grid-template-columns: 1fr; } }

.ground .section-eyebrow {
  color: var(--ink-on-dark-soft);
  border-color: var(--line-dark);
}
.ground-title { color: #fff; font-size: clamp(2.4rem, 4.4vw, 4rem); }
.ground-title em { color: var(--sand); }
.ground .lede { font-size: 1.1rem; color: var(--ink-on-dark-soft); margin: 0 0 1.2rem; max-width: 48ch; }
.ground p { color: var(--ink-on-dark-soft); margin: 0 0 1.6rem; max-width: 48ch; }

.ground-stats {
  display: flex; gap: 2.5rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  margin: 2rem 0;
  flex-wrap: wrap;
}
.ground-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  font-weight: 300;
  color: #fff;
}
.ground-stat-of { color: rgba(255,255,255,0.55); font-size: 0.65em; }
.ground-stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-on-dark-mute);
  margin-top: 0.5rem;
}

.ground-cta { display: flex; flex-direction: column; gap: 0.8rem; align-items: flex-start; }
.ground-cta .btn-primary { background: var(--sand); color: var(--ink); }
.ground-cta .btn-primary:hover { background: #fff; }
.ground-cta-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-on-dark-mute);
  max-width: 36ch;
  line-height: 1.6;
}

.ground-image-stack {
  position: relative;
  aspect-ratio: 4/5;
}
.ground-img { margin: 0; overflow: hidden; border-radius: var(--radius); }
.ground-img img { width: 100%; height: 100%; object-fit: cover; }
.ground-img--lead {
  position: absolute; top: 0; left: 0;
  width: 78%; height: 80%;
  z-index: 1;
}
.ground-img--sub {
  position: absolute; bottom: 0; right: 0;
  width: 60%; height: 55%;
  z-index: 2;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
}
.ground-img--sub figcaption {
  position: absolute; bottom: 0.8rem; left: 0.8rem;
  padding: 0.4rem 0.7rem;
  background: rgba(10,10,10,0.7);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
}

@media (max-width: 900px) {
  .ground-image-stack { aspect-ratio: 4/3; }
}

/* =============================================================
   Team
   ============================================================= */
.team {
  padding: var(--pad-y) 0;
  background: var(--bg-alt);
}
.team-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }

.member {
  display: flex; flex-direction: column;
  gap: 1.4rem;
}
.member-img { margin: 0; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/5; }
.member-img img { width: 100%; height: 100%; object-fit: cover; }
.member-body h3 {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 300;
  margin: 0 0 0.3rem;
}
.member-role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olimar-blue);
  margin: 0 0 1rem;
}
.member-body p { color: var(--ink-soft); margin: 0; max-width: 44ch; }

/* =============================================================
   Proposal
   ============================================================= */
.proposal {
  padding: var(--pad-y) 0;
  background: var(--bg);
  color: var(--ink-on-dark);
}
.proposal-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.proposal-head { text-align: center; margin-bottom: 3rem; }
.proposal-eyebrow { color: var(--ink-on-dark-soft); border-color: var(--line-dark); }
.proposal-title {
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 300;
  margin: 0 0 1.4rem;
  color: #fff;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.proposal-title em { color: var(--sand); }
.proposal-lede {
  font-size: 1.1rem;
  color: var(--ink-on-dark-soft);
  max-width: 60ch;
  margin: 0 auto;
}

.proposal-form {
  display: flex; flex-direction: column;
  gap: 1.2rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
}
.form-row { display: flex; gap: 1rem; }
@media (max-width: 600px) { .form-row { flex-direction: column; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.form-field--full { flex: 1; width: 100%; }
.form-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-on-dark-mute);
}
.form-hint {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--ink-on-dark-mute);
  margin: 0.4rem 0 0.8rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.95rem;
  transition: border-color 200ms ease, background 200ms ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-on-dark-mute); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sand);
  background: rgba(255,255,255,0.07);
}
.form-field select option { color: var(--ink); }
.form-field textarea { resize: vertical; font-family: inherit; }

.form-styles {
  border: 1px dashed var(--line-dark);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin: 0;
}
.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
@media (max-width: 600px) { .style-grid { grid-template-columns: 1fr 1fr; } }
.style-chip {
  position: relative;
  cursor: pointer;
}
.style-chip input { position: absolute; opacity: 0; pointer-events: none; }
.style-chip span {
  display: block;
  padding: 0.7rem 0.9rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--ink-on-dark-soft);
  text-align: center;
  transition: all 180ms ease;
}
.style-chip:hover span { border-color: rgba(232,217,176,0.4); }
.style-chip input:checked + span {
  background: var(--sand);
  color: var(--ink);
  border-color: var(--sand);
}

.form-consent {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--ink-on-dark-soft);
  cursor: pointer;
}
.form-consent input[type=checkbox] {
  margin-top: 0.2rem;
  accent-color: var(--sand);
  flex-shrink: 0;
}

.form-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding-top: 0.6rem;
}
.form-foot .btn-primary { background: var(--sand); color: var(--ink); }
.form-foot .btn-primary:hover { background: #fff; }
.form-foot-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.10em;
  color: var(--ink-on-dark-mute);
  line-height: 1.7;
}
.form-foot-note a { color: var(--sand); border-bottom: 1px solid currentColor; }

.proposal-success {
  text-align: center;
  padding: clamp(3rem, 5vw, 5rem);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
}
.success-mark {
  width: 60px; height: 60px;
  margin: 0 auto 1.4rem;
  background: var(--sand); color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.6rem;
}
.proposal-success h3 { font-size: 2rem; color: #fff; margin: 0 0 1rem; }
.proposal-success p { color: var(--ink-on-dark-soft); margin: 0 auto; max-width: 50ch; }
.proposal-success a { color: var(--sand); border-bottom: 1px solid currentColor; }

.proposal-b2b {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 600px) { .proposal-b2b { grid-template-columns: 1fr; } }
.b2b-line { width: 3rem; height: 1px; background: rgba(255,255,255,0.30); }
.b2b-eyebrow { color: var(--sand); border-color: rgba(232,217,176,0.4); margin-bottom: 0.8rem; }
.b2b-text p { color: var(--ink-on-dark-soft); margin: 0 0 0.6rem; max-width: 56ch; }
.b2b-sep { color: var(--ink-on-dark-mute); margin: 0 0.4rem; }

/* =============================================================
   Footer
   ============================================================= */
.footer {
  background: var(--bg);
  color: var(--ink-on-dark);
  padding: clamp(3rem, 5vw, 5rem) 0 1.4rem;
  border-top: 1px solid var(--line-dark);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.footer-brand { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 3rem; max-width: 380px; }
.footer-logo { width: 180px; height: auto; }
@media (max-width: 600px) { .footer-logo { width: 150px; } }
.footer-lede {
  font-size: 0.92rem;
  color: var(--ink-on-dark-soft);
  margin: 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2.4rem 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 720px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.6rem;
}
.footer-col a {
  color: var(--ink-on-dark-soft);
  font-size: 0.9rem;
  transition: color 160ms ease;
}
.footer-col a:hover { color: #fff; }
.footer-address {
  margin: 0 0 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--ink-on-dark-soft);
  letter-spacing: 0.04em;
}

.footer-fineprint {
  margin-top: 1.6rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-on-dark-mute);
}
.footer-fineprint a { color: var(--sand); }

/* =============================================================
   Reveal-on-scroll
   ============================================================= */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =============================================================
   Reduced motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-image { animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; }
}
