/* ==========================================================
   REX — Property Management · rex-marbella.com
   Costa del Sol · forest green base, sun as signal
   ========================================================== */

:root {
  --black: #2A4936;          /* single brand green — banner, text, everything */
  --black-deep: #2A4936;     /* same green — hero / dark bands / footer */
  --forest-core: #2A4936;    /* same green — logo, links, headings on light */
  --forest-mid: #2A4936;     /* same green — replaces old gradient/hover shade */
  --white: #FFFFFF;
  --off-white: #FAF3E4;      /* cream sand — page background */
  --sage: #2A4936;           /* same green — primary accent, CTAs */
  --sage-dark: #2A4936;      /* same green — no separate hover shade */
  --gold: #FAF3E4;           /* off-white — highlights on dark backgrounds */
  --stone: #2A4936;          /* same green by default; dark-bg spots override to off-white below */
  --grey-10: #E9E0CE;        /* warm border on cream */
  --grey-60: #7B877A;        /* warm grey — captions */
  --font-display: 'Baloo 2', 'Trebuchet MS', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-w: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--black);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--forest-core);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.18rem; letter-spacing: 0; font-weight: 700; }

h1 em, h2 em { font-style: normal; color: var(--sage); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--white); }
.on-dark h1 em, .on-dark h2 em, .cta-band h2 em { color: var(--gold); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-mid);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--sage);
}
.on-dark .eyebrow { color: var(--gold); }
.on-dark .eyebrow::before { background: var(--gold); }

p.lead { font-size: 1.15rem; font-weight: 400; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .35s, box-shadow .35s;
  padding: 0;
}
.site-header.solid, .site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 1px 0 var(--grey-10);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 28px;
}

.logo img { height: 60px; width: auto; }
.logo .logo-light { display: block; }
.logo .logo-dark { display: none; }
.site-header.solid .logo .logo-light, .site-header.scrolled .logo .logo-light { display: none; }
.site-header.solid .logo .logo-dark, .site-header.scrolled .logo .logo-dark { display: block; }
@media (max-width: 500px) {
  .logo img { height: 48px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.site-header.solid .nav-links a, .site-header.scrolled .nav-links a { color: var(--black); }
.nav-links a:hover, .nav-links a.active { border-color: var(--sage); }

.lang-switch {
  font-size: 0.75rem !important;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 7px 14px !important;
  border-radius: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.5) !important;
}
.site-header.solid .lang-switch, .site-header.scrolled .lang-switch {
  border-color: var(--grey-10) !important;
}
.lang-switch:hover { border-color: var(--sage) !important; }

/* Dropdown nav */
.has-dropdown { position: relative; }
.has-dropdown > a .caret { font-size: 0.6em; opacity: 0.7; margin-left: 4px; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--grey-10);
  box-shadow: 0 22px 44px -18px rgba(60,60,58,0.28);
  min-width: 250px;
  padding: 10px 0;
  list-style: none;
  z-index: 1002;
}
.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 16px;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown li { width: 100%; }
.dropdown a {
  display: block;
  padding: 11px 24px;
  color: var(--black) !important;
  text-transform: none;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  border-bottom: none !important;
}
.dropdown a:hover { background: var(--off-white); color: var(--sage-dark) !important; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  margin: 6px auto;
  transition: all .25s;
}
.site-header.solid .nav-toggle span, .site-header.scrolled .nav-toggle span { background: var(--black); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  text-transform: none;
  font-family: var(--font-display);
  padding: 15px 38px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s;
}
.btn-primary { background: var(--sage); color: var(--white); }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,0.55); color: var(--white); background: transparent; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-dark { border-color: var(--forest-core); color: var(--forest-core); background: transparent; }
.btn-ghost-dark:hover { background: var(--forest-core); color: var(--white); }

/* ---------- Hero (fullscreen video) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background: var(--black-deep);
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,49,31,0.55) 0%, rgba(23,49,31,0.32) 50%, rgba(23,49,31,0.68) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 140px 28px 100px;
}
.hero-inner .eyebrow { color: var(--white); justify-content: center; }
.hero-inner .eyebrow::before { background: var(--off-white); }
.hero-inner h1 { color: var(--white); margin-bottom: 8px; text-shadow: 0 2px 24px rgba(0,0,0,0.35); }
.hero-inner h1 em {
  color: var(--white);
  border-bottom: 5px solid var(--off-white);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero-inner p.lead {
  margin: 30px auto 46px;
  max-width: 640px;
  color: rgba(255,255,255,0.92);
}
.hero-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ---------- Floating WhatsApp button ---------- */
.whatsapp-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
  z-index: 1500;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 22px rgba(0,0,0,0.34); }
.whatsapp-float svg { width: 30px; height: 30px; }
@media (max-width: 600px) {
  .whatsapp-float { right: 1rem; bottom: 1rem; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

.hero-scroll {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.8);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px; height: 42px;
  background: linear-gradient(var(--off-white), transparent);
  margin: 12px auto 0;
  animation: scrollpulse 2s infinite;
}
@keyframes scrollpulse { 0%,100% { opacity: .4 } 50% { opacity: 1 } }

/* ---------- Sections ---------- */
section { padding: 110px 0; }
section.alt { background: var(--white); }
section.on-dark { background: var(--black-deep); color: rgba(255,255,255,0.92); }
.on-dark h2, .on-dark h3 { color: var(--white); }

.section-head { max-width: 680px; margin-bottom: 64px; }
.section-head.center { margin: 0 auto 64px; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { margin-top: 22px; }

/* ---------- Feature cards (numbered, borderless) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 52px 44px; counter-reset: cardnum; }

.card {
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
  counter-increment: cardnum;
}
.card::before {
  content: "0" counter(cardnum);
  display: block;
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--stone);
  margin-bottom: 16px;
}
.card::after {
  content: "";
  display: block;
  position: absolute;
  top: 44px; left: 0;
  width: 30px; height: 3px;
  background: var(--sage);
}
.card h3 { margin-bottom: 14px; }
.card p { font-size: 0.93rem; }
.card .icon { display: none; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}
.split-media {
  position: relative;
  max-width: 420px;
  justify-self: center;
}
.split-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--grey-10);
  box-shadow: 0 24px 48px -28px rgba(60,60,58,0.4);
  position: relative;
  z-index: 1;
}

/* ---------- Photo band (image as background) ---------- */
.photo-band {
  background:
    linear-gradient(rgba(23,36,28,0.62), rgba(31,74,52,0.72)),
    url("../assets/region.jpg") center/cover no-repeat;
}
@media (min-width: 901px) {
  .photo-band { background-attachment: fixed, fixed; }
}

/* ---------- Checklist ---------- */
.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
  margin-top: 34px;
}
.checklist li {
  font-size: 0.93rem;
  font-weight: 400;
  padding-left: 30px;
  position: relative;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 13px; height: 8px;
  border-left: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(-45deg);
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--off-white);
  line-height: 1;
}
.stat-label {
  font-size: 0.88rem;
  margin-top: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; counter-reset: step; }
.step { position: relative; padding-top: 26px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-stretch: 125%;
  font-weight: 900;
  font-size: 3rem;
  color: var(--grey-10);
  position: absolute;
  top: -18px; left: 0;
}
.step h3 { position: relative; margin-bottom: 12px; font-size: 0.92rem; }
.step p { position: relative; font-size: 0.88rem; }

/* ---------- Founder ---------- */
.founder {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.founder-photo { position: relative; }
.founder-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.founder-photo::after {
  content: "";
  position: absolute;
  top: -18px; right: -18px;
  width: 45%; height: 45%;
  border-top: 3px solid var(--sage);
  border-right: 3px solid var(--sage);
  z-index: -1;
}
.founder h2 { margin-bottom: 4px; }
.founder .role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: block;
  margin-bottom: 24px;
}
.founder blockquote {
  margin: 28px 0;
  padding-left: 24px;
  border-left: 3px solid var(--sage);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--black);
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chip {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--stone);
  border-radius: 100px;
  color: var(--black);
}

/* ---------- Full-bleed feature bands (logis-style) ---------- */
.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.feature-band .band-media {
  background-size: cover;
  background-position: center;
  min-height: 560px;
}
.feature-band.media-right .band-media { order: 2; }
.feature-band .band-content {
  padding: 90px min(7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .feature-band { grid-template-columns: 1fr; }
  .feature-band .band-media { min-height: 280px; order: 0 !important; }
  .feature-band .band-content { padding: 56px 28px; }
}

/* ---------- Founders (two-person) ---------- */
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 860px;
  margin: 0 auto 54px;
}
.founder-card { text-align: center; }
.founder-card img {
  width: 200px;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  margin: 0 auto 26px;
  box-shadow: 0 20px 40px -22px rgba(60,60,58,0.45);
}
.founder-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.founder-card .role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: block;
  margin-bottom: 14px;
}
.founder-card p { font-size: 0.92rem; }
.founder-card .founder-tel {
  display: inline-block;
  margin-top: 14px;
  font-weight: 500;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 2px;
}
.founders-outro { max-width: 720px; margin: 0 auto; text-align: center; }
.founders-outro blockquote {
  margin: 26px auto;
  padding: 0 24px;
  font-size: 1.08rem;
  font-weight: 400;
  font-style: italic;
}
.founders-outro blockquote span { display: block; height: 3px; width: 44px; background: var(--sage); margin: 18px auto 0; }
.founders-outro .chips { justify-content: center; }

@media (max-width: 900px) {
  .founders { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- FAQ ---------- */
.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 46px;
}
.faq-tab {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--grey-10);
  border-radius: 100px;
  color: var(--grey-60);
  padding: 12px 30px;
  cursor: pointer;
  transition: all .2s;
}
.faq-tab.active { border-color: var(--sage); background: var(--sage); color: var(--white); }

.faq-group { display: none; }
.faq-group.active { display: block; }

.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--grey-10); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--black);
  text-align: left;
  padding: 26px 48px 26px 0;
  cursor: pointer;
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--sage);
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 0 28px; font-size: 0.94rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    var(--black-deep);
  color: var(--white);
  text-align: center;
  padding: 110px 0;
}
.cta-band h2 { color: var(--white); }
.cta-band p { margin: 24px auto 42px; max-width: 580px; color: rgba(255,255,255,0.8); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; }
.contact-line { margin-bottom: 26px; }
.contact-line strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-60);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-line a { font-weight: 500; border-bottom: 1px solid var(--sage); }

form .field { margin-bottom: 20px; }
form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
form label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-60);
  margin-bottom: 8px;
}
form input, form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 15px 17px;
  border: 1px solid var(--grey-10);
  border-radius: 2px;
  background: var(--white);
  color: var(--black);
  transition: border-color .2s;
}
form input:focus, form textarea:focus { outline: none; border-color: var(--sage); }

.form-success {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--grey-10);
  border-radius: 4px;
  background: var(--off-white);
}
.form-success-check {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--grey-60); margin: 0; }
.form-error {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(180,60,50,0.35);
  border-radius: 2px;
  background: rgba(180,60,50,0.06);
  color: var(--black);
  font-size: 0.88rem;
}
.form-error a { border-bottom: 1px solid var(--sage); font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black-deep);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 36px;
  font-size: 0.88rem;
}
.site-footer a:hover { color: var(--off-white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 60px;
}
.footer-logo img { height: 66px; width: auto; margin-bottom: 20px; }
.footer-grid h3 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  color: var(--grey-60);
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(204,201,196,0.15);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--grey-60);
  font-size: 0.78rem;
}

/* ---------- Subpage hero ---------- */
.page-hero {
  padding: 200px 0 90px;
  background:
    var(--black-deep);
  color: var(--white);
}
.page-hero h1 { color: var(--white); max-width: 860px; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.page-hero h1 em { color: var(--off-white); }
.page-hero p.lead { margin-top: 26px; max-width: 660px; color: rgba(255,255,255,0.88); }
.page-hero .eyebrow { color: var(--off-white); }

/* ---------- Prose ---------- */
.prose { max-width: 780px; }
.prose h2 { margin: 54px 0 20px; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 20px; }

/* ---------- Pricing table ---------- */
.pricing-table { width: 100%; border-collapse: collapse; margin: 34px 0; font-size: 0.93rem; }
.pricing-table th, .pricing-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--grey-10); }
.pricing-table th { font-weight: 600; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-60); }
.pricing-table td:first-child { font-weight: 400; }
.pricing-table .check { color: var(--sage); font-weight: 600; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: block; position: relative; z-index: 1005; }
  .nav-toggle.open span { background: var(--white) !important; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    background: var(--black-deep);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 0;
    padding: 110px 30px 60px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s;
    display: flex;
    z-index: 1004;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links > li { width: 100%; max-width: 420px; }
  .nav-links > li:last-child { margin-top: 30px; }
  .nav-links a {
    color: var(--white) !important;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 13px 0;
    display: block;
    border-bottom: none;
  }
  .site-header.solid .nav-links a, .site-header.scrolled .nav-links a { color: var(--white) !important; }
  .nav-links .lang-switch { display: inline-block; padding: 10px 26px !important; border: 1px solid rgba(255,255,255,0.45) !important; font-size: 0.8rem; }
  .has-dropdown > a {
    font-size: 1.1rem !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white) !important;
    padding: 13px 0;
    position: relative;
    cursor: pointer;
  }
  .has-dropdown > a .caret {
    display: inline-block;
    margin-left: 6px;
    transition: transform .25s ease;
  }
  .has-dropdown.open > a .caret { transform: rotate(180deg); }
  .dropdown {
    display: block;
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .has-dropdown.open .dropdown { max-height: 400px; }
  .dropdown a {
    font-size: 0.92rem !important;
    padding: 10px 0;
    color: rgba(255,255,255,0.8) !important;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
  }
  .dropdown a:hover { background: transparent; color: var(--off-white) !important; }
  body.nav-open { overflow: hidden; }
  .hero-inner h1 em { border-bottom: none; }
  .cards, .stats, .steps { grid-template-columns: 1fr; }
  .cards[style] { grid-template-columns: 1fr !important; }
  .split, .founder, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .checklist, form .field-row { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .page-hero { padding: 150px 0 60px; }
  .split-media::after, .founder-photo::after { display: none; }
}
