/* ============================================================
   OPEN MIND PROPERTY — Shared Stylesheet
   Premium South Coast property brand
   Palette: Navy / Gold / White / Warm Stone
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Navy */
  --navy-900: #0a1726;
  --navy-800: #0f2236;
  --navy-700: #163047;
  --navy-600: #1e3e5c;
  --navy-500: #2a5074;

  /* Gold */
  --gold: #c6a35a;
  --gold-light: #ddc188;
  --gold-dark: #a9873f;

  /* Neutrals */
  --white: #ffffff;
  --stone-50: #faf7f1;
  --stone-100: #f3ede1;
  --stone-200: #e8dfcc;
  --stone-300: #d7c9ac;

  /* Ink / text */
  --ink: #182029;
  --ink-soft: #3a444f;
  --muted: #66707c;
  --muted-light: #9aa6b2;

  /* Functional */
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;

  /* Layout */
  --maxw: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 14px rgba(10, 23, 38, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 23, 38, 0.10);
  --shadow-lg: 0 30px 70px rgba(10, 23, 38, 0.16);

  /* Type */
  --display: 'Fraunces', Georgia, serif;
  --body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--navy-900); }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; color: var(--navy-900); }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.3rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--gold-light); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 130px) 0; }
.section.tight { padding: clamp(50px, 6vw, 90px) 0; }
.center { text-align: center; }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { font-size: 1.12rem; color: var(--muted); }

.lede { font-size: 1.22rem; color: var(--muted); line-height: 1.6; }

/* Backgrounds */
.bg-navy { background: var(--navy-900); color: var(--stone-100); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy p { color: rgba(243, 237, 225, 0.78); }
.bg-stone { background: var(--stone-50); }
.bg-stone-deep { background: var(--stone-100); }
.bg-white { background: var(--white); }

.gold-text { color: var(--gold); }
.serif-italic { font-style: italic; font-family: var(--display); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: 100px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold {
  background: var(--gold);
  color: var(--navy-900);
  box-shadow: 0 8px 24px rgba(198, 163, 90, 0.32);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(198, 163, 90, 0.42); }
.btn-navy { background: var(--navy-800); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  box-shadow: inset 0 0 0 1.5px var(--navy-700);
}
.btn-outline:hover { background: var(--navy-900); color: var(--white); transform: translateY(-2px); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.35);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy-900); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row.center { justify-content: center; }

.link-arrow {
  font-weight: 700;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: gap 0.3s var(--ease);
}
.link-arrow:hover { gap: 0.8rem; }
.bg-navy .link-arrow { color: var(--gold-light); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease);
  padding: 18px 0;
  /* Subtle dark fade at the top so the nav stays readable over the hero video */
  background: linear-gradient(180deg, rgba(10,23,38,0.60) 0%, rgba(10,23,38,0.22) 55%, rgba(10,23,38,0) 100%);
}
.site-header.scrolled {
  background: rgba(10, 23, 38, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 8px 30px rgba(10,23,38,0.25);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 9px;
  display: grid; place-items: center;
  background: var(--gold);
  color: var(--navy-900);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.brand-name { line-height: 1.05; }
.brand-name .b1 { font-family: var(--display); font-weight: 600; font-size: 1.18rem; color: var(--white); display: block; }
.brand-name .b2 { font-family: var(--body); font-weight: 700; font-size: 0.64rem; letter-spacing: 0.32em; color: var(--gold); }
/* On light pages before scroll, header sits on dark hero so keep white — but for safety add a solid variant */
.site-header:not(.scrolled) .brand-name .b1 { color: var(--white); }

/* Image logo (replaces the text brand mark) */
.brand { gap: 0; }
.brand-logo {
  height: 54px;
  width: auto;
  display: block;
  transition: height 0.4s var(--ease);
}
.site-header.scrolled .brand-logo { height: 44px; }
.footer-brand .brand-logo { height: 104px; }
@media (max-width: 760px) {
  .brand-logo { height: 46px; }
  .site-header.scrolled .brand-logo { height: 40px; }
  .footer-brand .brand-logo { height: 92px; }
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: #ffffff;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 9px 14px;
  border-radius: 8px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.40);
  transition: all 0.25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.14); }
.nav-links a.active { color: var(--gold-light); }
/* Once scrolled the header has a solid dark bar, so the shadow is no longer needed */
.site-header.scrolled .nav-links a { text-shadow: none; }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.mobile-menu { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--white); border-radius: 2px; box-shadow: 0 1px 4px rgba(0,0,0,0.4); transition: all 0.3s var(--ease); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  padding: clamp(140px, 18vw, 200px) 0 clamp(70px, 10vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 78% 12%, rgba(198,163,90,0.20), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(42,80,116,0.5), transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { color: var(--white); margin-bottom: 22px; max-width: 16ch; }
.hero.center h1 { margin-left: auto; margin-right: auto; }
.hero p.lede { color: rgba(243,237,225,0.82); max-width: 56ch; margin-bottom: 34px; }
.hero.center p.lede { margin-left: auto; margin-right: auto; }
.hero .btn-row { margin-bottom: 14px; }

.hero-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.hero-visual img, .split-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.hero-centered { max-width: 880px; margin: 0 auto; text-align: center; }
.hero-centered h1 { margin-left: auto; margin-right: auto; }
.hero-centered .lede { margin-left: auto; margin-right: auto; }
.team-photo { width: 132px; height: 132px; border-radius: 50%; overflow: hidden; margin: 0 auto 22px; box-shadow: var(--shadow-md); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

/* Image placeholder */
.ph {
  background:
    linear-gradient(135deg, var(--navy-700), var(--navy-900)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 12px, transparent 12px 24px);
  background-blend-mode: overlay;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  position: relative;
}
.ph.stone {
  background: linear-gradient(135deg, var(--stone-200), var(--stone-100));
  color: var(--muted);
}
.ph::after {
  content: "◇";
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.5;
  top: 20px; left: 22px;
  color: var(--gold);
}

/* ============================================================
   SOCIAL PROOF / STATS BAR
   ============================================================ */
.proof-bar {
  background: var(--navy-800);
  border-top: 1px solid rgba(198,163,90,0.18);
  border-bottom: 1px solid rgba(198,163,90,0.18);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.proof-item { padding: 38px 18px; border-right: 1px solid rgba(255,255,255,0.07); }
.proof-item:last-child { border-right: none; }
.proof-item .num { font-family: var(--display); font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 600; color: var(--gold); line-height: 1; }
.proof-item .label { font-size: 0.84rem; color: rgba(243,237,225,0.7); margin-top: 10px; letter-spacing: 0.04em; }

.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat-card {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
}
.bg-navy .stat-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.stat-card .num { font-family: var(--display); font-size: 2.6rem; font-weight: 600; color: var(--gold-dark); line-height: 1; }
.bg-navy .stat-card .num { color: var(--gold); }
.stat-card .label { margin-top: 10px; font-size: 0.92rem; color: var(--muted); }
.bg-navy .stat-card .label { color: rgba(243,237,225,0.72); }

/* ============================================================
   CARDS / GRIDS
   ============================================================ */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--stone-300); }
.card.clickable { position: relative; cursor: pointer; }
.card.clickable .stretch-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.card.clickable .ba-img img, .card.clickable img { transition: transform 0.6s var(--ease); }
.card.clickable:hover img { transform: scale(1.03); }
.card .icon {
  width: 54px; height: 54px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--stone-100);
  color: var(--gold-dark);
  margin-bottom: 22px;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 1rem; }
.card .link-arrow { margin-top: 20px; display: inline-flex; }

/* Audience cards (homepage gateway) */
.audience-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: var(--white);
  background: var(--navy-800);
  transition: all 0.4s var(--ease);
  isolation: isolate;
}
.audience-card::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,23,38,0.25) 0%, rgba(10,23,38,0.55) 55%, rgba(10,23,38,0.92) 100%),
    linear-gradient(135deg, var(--navy-600), var(--navy-900));
  transition: transform 0.6s var(--ease);
}
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.audience-card:hover::before { transform: scale(1.06); }
.audience-card .ac-tag { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); font-weight: 700; margin-bottom: 12px; }
.audience-card h3 { color: var(--white); margin-bottom: 12px; }
.audience-card p { color: rgba(255,255,255,0.82); font-size: 0.98rem; margin-bottom: 22px; }
.audience-card .link-arrow { color: var(--gold-light); font-size: 0.96rem; }

/* Feature list */
.feature-list { display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .tick {
  flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--stone-100); color: var(--gold-dark);
  display: grid; place-items: center; margin-top: 2px;
}
.bg-navy .feature-list .tick { background: rgba(198,163,90,0.18); color: var(--gold-light); }
.feature-list .tick svg { width: 14px; height: 14px; }
.feature-list .ft-body strong { display: block; color: var(--ink); font-size: 1.04rem; margin-bottom: 2px; }
.bg-navy .feature-list .ft-body strong { color: var(--white); }
.feature-list .ft-body span { color: var(--muted); font-size: 0.97rem; }
.bg-navy .feature-list .ft-body span { color: rgba(243,237,225,0.72); }

/* Split content */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.wide-left { grid-template-columns: 1.1fr 0.9fr; }
.split .split-visual { aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* ============================================================
   STEPS / PROCESS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.steps.four { grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding-top: 14px; }
.step .step-num {
  font-family: var(--display);
  font-size: 3rem; font-weight: 600;
  color: var(--gold);
  line-height: 1; margin-bottom: 16px;
  display: block;
}
.bg-stone .step .step-num, .bg-white .step .step-num { color: var(--stone-300); }
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  position: relative;
}
.bg-navy .testi { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
.testi .quote-mark { font-family: var(--display); font-size: 3.4rem; color: var(--gold); line-height: 0.4; height: 28px; display: block; }
.testi p { font-size: 1.04rem; color: var(--ink-soft); font-style: italic; font-family: var(--display); line-height: 1.5; }
.bg-navy .testi p { color: rgba(255,255,255,0.9); }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.testi .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: grid; place-items: center; color: var(--navy-900); font-weight: 800; font-family: var(--body); flex-shrink: 0; }
.testi .who .name { font-weight: 700; color: var(--ink); font-size: 0.96rem; }
.bg-navy .testi .who .name { color: var(--white); }
.testi .who .role { font-size: 0.84rem; color: var(--muted); }
.testi .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; font-size: 0.95rem; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--stone-200); }
.bg-navy .faq-item { border-color: rgba(255,255,255,0.12); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 4px;
  font-family: var(--display); font-size: 1.18rem; font-weight: 600; color: var(--navy-900);
}
.bg-navy .faq-q { color: var(--white); }
.faq-q .pm { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--stone-100); color: var(--gold-dark); display: grid; place-items: center; transition: all 0.3s var(--ease); font-size: 1.3rem; line-height: 1; }
.bg-navy .faq-q .pm { background: rgba(198,163,90,0.18); color: var(--gold-light); }
.faq-item.open .faq-q .pm { background: var(--gold); color: var(--navy-900); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 4px 26px; color: var(--muted); }
.bg-navy .faq-a p { color: rgba(243,237,225,0.75); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 84px) clamp(32px, 6vw, 80px);
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 50% -10%, rgba(198,163,90,0.28), transparent 60%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(243,237,225,0.82); max-width: 56ch; margin: 0 auto 30px; font-size: 1.12rem; }
.cta-banner .btn-row { justify-content: center; }

/* Full-bleed CTA section */
.cta-section { background: var(--navy-900); position: relative; overflow: hidden; }
.cta-section::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(800px 460px at 80% 20%, rgba(198,163,90,0.22), transparent 60%);
}
.cta-section .wrap { position: relative; z-index: 1; }

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--white);
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.88rem; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--body); font-size: 1rem;
  padding: 14px 16px;
  border: 1.5px solid var(--stone-200);
  border-radius: 11px;
  background: var(--stone-50);
  color: var(--ink);
  transition: all 0.25s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px rgba(198,163,90,0.14);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.86rem; color: var(--muted); margin-top: 12px; text-align: center; }
.form-success { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3); color: var(--whatsapp-dark); padding: 14px 18px; border-radius: 11px; font-weight: 600; margin-bottom: 18px; display: none; }
.form-success.show { display: block; }

/* Segmented buttons */
.segmented { display: flex; flex-wrap: wrap; gap: 12px; }
.seg-btn {
  flex: 1; min-width: 150px;
  padding: 20px 22px;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--radius);
  background: var(--white);
  text-align: left;
  transition: all 0.3s var(--ease);
}
.seg-btn:hover, .seg-btn.active { border-color: var(--gold); background: var(--stone-50); box-shadow: var(--shadow-sm); }
.seg-btn .seg-title { font-family: var(--display); font-weight: 600; font-size: 1.15rem; color: var(--navy-900); display: block; }
.seg-btn .seg-sub { font-size: 0.9rem; color: var(--muted); margin-top: 3px; display: block; }

/* ============================================================
   PILLS / BADGES / TIMELINE
   ============================================================ */
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 7px 15px; border-radius: 100px; background: var(--stone-100); color: var(--ink-soft); font-size: 0.82rem; font-weight: 700; }
.bg-navy .pill { background: rgba(255,255,255,0.08); color: rgba(243,237,225,0.85); }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }

.timeline { position: relative; max-width: 820px; margin: 0 auto; padding-left: 38px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--gold), var(--stone-200)); }
.tl-item { position: relative; padding-bottom: 42px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -38px; top: 4px; width: 20px; height: 20px; border-radius: 50%; background: var(--white); border: 3px solid var(--gold); }
.tl-year { font-family: var(--display); font-weight: 700; color: var(--gold-dark); font-size: 1.05rem; }
.tl-item h3 { font-size: 1.3rem; margin: 4px 0 8px; }
.tl-item p { color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-900); color: rgba(243,237,225,0.7); padding-top: 72px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 54px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: rgba(243,237,225,0.6); font-size: 0.96rem; max-width: 36ch; }
.footer-col h4 { color: var(--white); font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--body); margin-bottom: 20px; }
.footer-col a { display: block; color: rgba(243,237,225,0.66); padding: 6px 0; font-size: 0.96rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact a { color: rgba(243,237,225,0.66); display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 26px 0; flex-wrap: wrap; font-size: 0.86rem; color: rgba(243,237,225,0.5); }
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.07); display: grid; place-items: center; transition: all 0.3s; }
.footer-bottom .socials a:hover { background: var(--gold); color: var(--navy-900); }
.footer-bottom .socials svg { width: 17px; height: 17px; }

/* ============================================================
   STICKY MOBILE BOTTOM BAR
   ============================================================ */
.mobile-bar { display: none; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 16/11; max-height: 420px; }
  .split, .split.wide-left { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps.four { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta .btn-outline-light { display: none; }
  .nav-toggle { display: flex; }

  .site-header { padding: 14px 0; }
  .mobile-menu {
    display: flex;
    position: fixed; inset: 0; z-index: 1500;
    background: var(--navy-900);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    display: flex; flex-direction: column;
    padding: 90px 32px 32px;
  }
  .mobile-menu.open { transform: none; }
  .mobile-menu a { color: var(--white); font-family: var(--display); font-size: 1.6rem; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .mobile-menu a.active { color: var(--gold-light); }
  .mobile-menu .btn { margin-top: 24px; }
  .mobile-close { position: absolute; top: 24px; right: 24px; color: var(--white); font-size: 2rem; line-height: 1; padding: 8px; }

  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: none; }
  .proof-item:nth-child(1), .proof-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .grid-2, .grid-3, .grid-4, .stats-strip, .testi-strip, .steps, .steps.four { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Sticky mobile bar */
  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
    background: var(--navy-900);
    border-top: 1px solid rgba(198,163,90,0.25);
    box-shadow: 0 -8px 30px rgba(10,23,38,0.4);
  }
  .mobile-bar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    padding: 12px 8px;
    color: var(--white); font-weight: 700; font-size: 0.82rem;
  }
  .mobile-bar a svg { width: 22px; height: 22px; }
  .mobile-bar a:first-child { border-right: 1px solid rgba(255,255,255,0.12); color: var(--whatsapp); }
  .mobile-bar a:first-child span { color: var(--white); }
  .mobile-bar a.call { color: var(--gold); }
  .mobile-bar a.call span { color: var(--white); }
  body { padding-bottom: 64px; }
  .site-footer { margin-bottom: 0; }

  .cta-banner { padding: 44px 26px; }
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .hero .btn-row .btn { width: 100%; }
  /* Long-label buttons (e.g. gated guide downloads) must wrap, never force horizontal scroll */
  .btn { white-space: normal; max-width: 100%; line-height: 1.25; text-align: center; }
}

@media (max-width: 420px) {
  .audience-card { min-height: 360px; padding: 28px; }
}

/* Hero eyebrow: keep the gold line + label centered and tidy on every screen */
.hero-eyebrow { justify-content: center; flex-wrap: wrap; max-width: 100%; }
.hero-eyebrow::before { flex: 0 0 auto; }
@media (max-width: 560px){
  .hero-eyebrow { font-size: 0.66rem; letter-spacing: 0.14em; gap: 0.45rem; line-height: 1.4; }
  .hero-eyebrow::before { width: 18px; }
}

/* Accommodation property cards: equal-height with Book Direct buttons aligned on one line */
.grid.grid-3 { align-items: stretch; }
.acc-card { display: flex; flex-direction: column; }
.acc-card .acc-body { display: flex; flex-direction: column; flex: 1 1 auto; }
.acc-card .acc-body .btn { margin-top: auto; }

/* Team: founders centred on row 1, remaining three on row 2 */
.team-founders { grid-template-columns: repeat(2, minmax(0, 320px)); justify-content: center; }
@media (max-width: 720px){ .team-founders { grid-template-columns: minmax(0, 360px); } }

/* Results project cards: equal height with "View full case study" buttons aligned per row */
.grid.grid-2 { align-items: stretch; }
.proj-card { display: flex; flex-direction: column; }
.proj-card .proj-body { display: flex; flex-direction: column; flex: 1 1 auto; }
.proj-card .proj-body > .btn { margin-top: auto; }

/* Investor cost breakdown table */
.cost-table { width:100%; border-collapse:collapse; font-size:0.92rem; }
.cost-table td { padding:8px 6px; border-bottom:1px solid var(--stone-200); color:var(--ink); }
.cost-table td:last-child { text-align:right; font-weight:700; color:var(--navy-900); white-space:nowrap; }
.cost-table tr.ct-group td { background:var(--stone-100,#f3eee2); font-weight:700; color:var(--gold-dark); text-transform:uppercase; letter-spacing:0.06em; font-size:0.74rem; padding-top:12px; }
.cost-table tr.ct-total td { border-top:2px solid var(--navy-900); border-bottom:none; font-weight:800; font-size:1.02rem; color:var(--navy-900); padding-top:12px; }
.cost-table tr.ct-total td:last-child { color:var(--gold-dark); }

/* finalise: constrain inline link-arrow icons so they sit proportionate to the text */
.link-arrow svg { width: 1.15em; height: 1.15em; flex: 0 0 auto; }

/* ============================================================
   2026 CONVERSION UPGRADE — new components
   ============================================================ */
/* Skip link (a11y) */
.skip-link{position:absolute;left:-9999px;top:0;background:var(--gold,#c9a45c);color:#101a2c;padding:10px 18px;z-index:2000;border-radius:0 0 8px 0;font-weight:700}
.skip-link:focus{left:0}

/* Hero mini lead form (landlords) */
.hero-mini-form{background:rgba(255,255,255,.97);border-radius:14px;padding:22px 22px 18px;margin-top:26px;max-width:520px;box-shadow:0 18px 50px rgba(0,0,0,.35)}
.hero-mini-form h3{font-size:1.05rem;margin:0 0 4px;color:#101a2c}
.hero-mini-form .hint{font-size:.85rem;color:#5c6470;margin:0 0 14px}
.hero-mini-form .mini-row{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:10px}
.hero-mini-form input,.hero-mini-form select{width:100%;padding:11px 12px;border:1px solid #d8d4ca;border-radius:8px;font:inherit;font-size:.95rem;background:#fff}
.hero-mini-form .btn{width:100%;justify-content:center}
.hero-mini-form .micro{font-size:.78rem;color:#7a8087;margin:8px 0 0;text-align:center}
@media(max-width:560px){.hero-mini-form .mini-row{grid-template-columns:1fr}}

/* Guaranteed rent calculator */
.rent-calc{background:#101a2c;color:#f3ede1;border-radius:18px;padding:34px;display:grid;grid-template-columns:1.1fr .9fr;gap:34px;align-items:center}
.rent-calc label{display:block;font-size:.85rem;letter-spacing:.04em;text-transform:uppercase;color:#c9a45c;margin:0 0 8px}
.rent-calc .rc-field{margin-bottom:22px}
.rent-calc select{width:100%;padding:12px;border-radius:8px;border:1px solid rgba(255,255,255,.25);background:rgba(255,255,255,.07);color:#f3ede1;font:inherit}
.rent-calc select option{color:#101a2c}
.rent-calc input[type=range]{width:100%;accent-color:#c9a45c}
.rc-beds-val{font-size:1.4rem;font-weight:700;color:#fff}
.rc-result{position:relative;background:rgba(255,255,255,.06);border:1px solid rgba(201,164,92,.4);border-radius:14px;padding:28px;text-align:center}
.rc-result .rc-label{font-size:.85rem;text-transform:uppercase;letter-spacing:.06em;color:#c9a45c;margin-bottom:8px}
#rc-range{font-family:Fraunces,serif;font-size:2rem;font-weight:600;filter:blur(9px);transition:filter .5s;user-select:none}
.rc-result.revealed #rc-range{filter:none}
.rc-gate{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;align-items:center;gap:10px;background:rgba(16,26,44,.55);border-radius:14px;padding:20px}
.rc-gate p{margin:0;font-size:.92rem}
.rc-gate form{display:flex;gap:8px;width:100%;max-width:340px}
.rc-gate input{flex:1;padding:11px 12px;border-radius:8px;border:none;font:inherit}
.rc-note{grid-column:1/-1;font-size:.78rem;color:rgba(243,237,225,.65);margin:4px 0 0}
@media(max-width:820px){.rent-calc{grid-template-columns:1fr}}

/* Book-direct savings banner */
.save-banner{display:flex;align-items:center;justify-content:center;gap:12px;background:#c9a45c;color:#101a2c;font-weight:700;padding:12px 18px;text-align:center;font-size:.98rem}
.save-banner svg{flex:none}

/* Breadcrumbs */
.breadcrumbs{font-size:.85rem;color:#8a8578;padding:14px 0}
.breadcrumbs a{color:#8a8578;text-decoration:none}
.breadcrumbs a:hover{color:#c9a45c}
.breadcrumbs span[aria-current]{color:#3a3a35}

/* Stats footnote */
.stats-footnote{font-size:.78rem;color:#8a8578;text-align:center;margin-top:14px}

/* Loss-aversion callout */
.loss-callout{background:#fdf6e9;border-left:4px solid #c9a45c;border-radius:0 12px 12px 0;padding:18px 22px;margin:26px 0;font-size:1rem;color:#3a3a35}
.loss-callout b{color:#101a2c}

/* Cine hero skip button */
.cine-skip{position:absolute;bottom:26px;right:26px;z-index:60;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.3);color:#f3ede1;padding:9px 16px;border-radius:999px;font-size:.85rem;cursor:pointer;backdrop-filter:blur(4px)}
.cine-skip:hover{background:rgba(255,255,255,.22)}
@media(prefers-reduced-motion:reduce){.cine-skip{display:none}}

/* Trust logos row */
.trust-row{display:flex;flex-wrap:wrap;gap:26px;justify-content:center;align-items:center;opacity:.85}
.trust-row .trust-item{display:flex;align-items:center;gap:10px;font-size:.9rem;color:#5c6470;font-weight:600}
.trust-row svg{color:#c9a45c}

/* ============================================================
   VIDEO HERO (replaces the scroll-film opener)
   ============================================================ */
.video-hero{position:relative;min-height:92vh;display:flex;align-items:center;overflow:hidden;background:#101a2c}
.hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.hero-shade{position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,rgba(16,26,44,.55) 0%,rgba(16,26,44,.35) 45%,rgba(16,26,44,.78) 100%)}
.vh-content{position:relative;z-index:2;color:#f3ede1;padding:120px 0 90px;max-width:820px}
.vh-content .kicker{color:#c9a45c;letter-spacing:.14em;text-transform:uppercase;font-size:.85rem;font-weight:700;margin-bottom:18px}
.vh-h1{font-family:Fraunces,serif;font-weight:600;font-size:clamp(2.3rem,5.2vw,4rem);line-height:1.08;margin:0 0 20px;color:#fff}
.vh-sub{font-size:clamp(1rem,1.6vw,1.2rem);line-height:1.6;color:rgba(243,237,225,.9);max-width:640px;margin:0 0 30px}
.vh-btns{display:flex;flex-wrap:wrap;gap:14px}
.vh-scroll{position:absolute;left:50%;transform:translateX(-50%);bottom:-46px;display:flex;flex-direction:column;align-items:center;gap:4px;color:rgba(243,237,225,.75);font-size:.78rem;letter-spacing:.12em;text-transform:uppercase;text-decoration:none;animation:vhBob 2.2s ease-in-out infinite}
.vh-scroll:hover{color:#c9a45c}
@keyframes vhBob{0%,100%{transform:translate(-50%,0)}50%{transform:translate(-50%,7px)}}
@media(max-width:760px){.video-hero{min-height:86vh}.vh-content{padding:100px 0 80px}.vh-scroll{display:none}}
@media(prefers-reduced-motion:reduce){
  .hero-video{display:none}
  .video-hero{background:#101a2c url("assets/video/hero-poster.jpg") center/cover no-repeat}
  .vh-scroll{animation:none}
}
