/* MANTA COLLECTION — brand-aligned stylesheet
   Palette: Midnight #0B2338 · Dune #EDECE5 · Polar #EAF4F8 · Coral #F0693B
   Type:   Bodoni Moda (Bauer Bodoni substitute) · Inter
*/

:root {
  --midnight: #0B2338;
  --dune:     #EDECE5;
  --polar:    #EAF4F8;
  --coral:    #F0693B;
  --white:    #FFFFFF;
  --ink:      #0B2338;
  --muted:    rgba(11, 35, 56, 0.62);
  --hairline: rgba(11, 35, 56, 0.14);
  --serif:    "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  --sans:     "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--dune);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Sticky footer — body is a flex column min-100vh so the footer pushes
   to the bottom of the viewport on short pages (e.g. Contact). */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body > .footer { margin-top: auto; }
/* Lock background scroll when the mobile menu is open */
body.is-menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease, opacity .25s ease;
}
a:hover { opacity: .7; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 22px; }
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(237, 236, 229, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  /* border-bottom removed per brief */
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.nav-logo {
  height: 46px;
  width: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.nav-links a { padding: 5px 0px; }

/* CTA — unified design across navbar and body
   Default nav button: dune bg + midnight text/border.
   Hover: coral bg + dune text (matches the primary .btn DA across the site). */
.nav-cta {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--dune);
  color: var(--midnight);
  border: 1px solid var(--midnight);
  padding: 12px 26px !important;
  border-radius: 0;
  transition: background .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
}
.nav-cta:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--dune);
  opacity: 1;
}
@media (max-width: 720px) {
  .nav-logo { height: 38px; }
  .nav-cta { letter-spacing: 0.18em; }
  .nav-links { gap: 18px; }
  .nav-links .hide-mobile { display: none; }
  /* Mobile-only outer margins */
  .nav-brand { margin-left: 20px; }
  .nav-cta { margin-right: 20px; }
  .nav-burger { margin-right: 20px; }
}
/* Tablet-only outer margins (between mobile and desktop) */
@media (min-width: 721px) and (max-width: 1024px) {
  .nav-brand { margin-left: 20px; }
  .nav-cta { margin-right: 20px; }
  /* Apply the same 10px margin-right to the Contact link in nav (when shown without nav-cta class) */
  .nav-links a.hide-mobile:last-child { margin-right: 20px; }
}

/* ===========================================================
   BURGER MENU (mobile only)
   =========================================================== */
.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: relative;
}
.nav-burger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--midnight);
  transition: background .35s ease, transform .35s ease, top .35s ease, opacity .25s ease;
}
.nav-burger span:nth-child(1) { top: 3px; }
.nav-burger span:nth-child(2) { top: 10.25px; }
.nav-burger span:nth-child(3) { top: 17.5px; }
.is-menu-open .nav-burger span:nth-child(1) { top: 10.25px; transform: rotate(45deg); }
.is-menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.is-menu-open .nav-burger span:nth-child(3) { top: 10.25px; transform: rotate(-45deg); }

/* Burger colour follows the nav state */
.nav--over-video .nav-burger span { background: var(--dune); }
.nav--scrolled .nav-burger span    { background: var(--midnight); }
/* When the menu is open the panel covers the page in white, so always show midnight */
.nav.is-menu-open .nav-burger span { background: var(--midnight) !important; }

/* Mobile fullscreen menu panel */
.nav-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60; /* above the nav so the close button is reachable */
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  color: var(--midnight);
  letter-spacing: -0.005em;
}
.nav-menu a:hover { color: var(--coral); opacity: 1; }
.is-menu-open .nav-menu,
body.is-menu-open .nav-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Close button — stylized X in top-right of the menu panel, midnight */
.nav-menu__close {
  position: absolute;
  top: 26px;
  right: 22px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 61;
}
.nav-menu__close span {
  display: block;
  position: absolute;
  left: 4px;
  top: 15px;
  width: 24px;
  height: 1.5px;
  background: var(--midnight);
  transition: background .25s ease, transform .35s ease;
}
.nav-menu__close span:first-child { transform: rotate(45deg); }
.nav-menu__close span:last-child  { transform: rotate(-45deg); }
.nav-menu__close:hover span { background: var(--coral); }

@media (max-width: 720px) {
  .nav-burger { display: block; }
  /* Hide all the inline links on mobile; the burger panel takes over */
  .nav-links { display: none; }
  /* Hide the burger once the menu is open — the close X handles dismiss */
  .nav.is-menu-open .nav-burger { display: none; }
}

/* Nav variant on dark hero (video page) — fixed overlay, then transitions to dune on scroll */
.page--experience .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: background .35s ease, border-color .35s ease, color .35s ease;
}
.nav--over-video {
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}
.nav--over-video .nav-logo { filter: brightness(0) invert(1); transition: filter .35s ease; }
.nav--over-video .nav-links a { color: var(--dune); }
/* Over video (before scroll): white bg / midnight text / midnight border */
.nav--over-video .nav-cta {
  background: var(--white);
  border-color: var(--midnight);
  color: var(--midnight);
}
.nav--over-video .nav-cta:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}
/* Scrolled state: dune transparent, like classic homepage */
.nav--scrolled {
  background: rgba(237, 236, 229, 0.92) !important;
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: none;
}
.nav--scrolled .nav-logo { filter: none; }
.nav--scrolled .nav-links a { color: var(--ink); }
/* Post scroll: midnight background, midnight border, dune text */
.nav--scrolled .nav-cta {
  background: var(--midnight) !important;
  border-color: var(--midnight) !important;
  color: var(--dune) !important;
}
.nav--scrolled .nav-cta:hover {
  background: var(--coral) !important;
  border-color: var(--coral) !important;
  color: var(--white) !important;
}

/* ---------- Hero (classic homepage) ---------- */
.hero {
  padding: 56px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  color: var(--midnight);
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--midnight);
}
.hero-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 0 32px;
}
.hero-image {
  aspect-ratio: 5/4;
  max-height: 540px;
  background-color: #c9a37a;
  background-size: cover;
  background-position: center;
  border-radius: 0;
  background-image:
    linear-gradient(135deg, rgba(192,94,46,0.22), rgba(11,35,56,0.18)),
    url("https://images.unsplash.com/photo-1582719508461-905c673771fd?w=1400&q=85&auto=format&fit=crop");
  position: relative;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,35,56,0) 60%, rgba(11,35,56,0.18) 100%);
}
@media (max-width: 900px) {
  .hero { padding: 40px 0 52px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-image { aspect-ratio: 4/3; max-height: 420px; }
}

/* ---------- Buttons (body CTA) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 0;
  border: 1px solid var(--midnight);
  background: var(--midnight);
  color: var(--white);
  cursor: pointer;
  transition: all .25s ease;
}
.btn:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  opacity: 1;
}
/* CTA before footer: midnight bg / midnight border / white color
   Hover: midnight bg / white color / midnight border */
.btn--midnight {
  background: var(--midnight);
  border-color: var(--midnight);
  color: var(--white);
}
.btn--midnight:hover {
  background: #FFFFFF;
  border-color: var(--midnight);
  color: var(--midnight);
  opacity: 0.92;
}
.btn--midnight-dune {
  background: var(--midnight);
  border-color: var(--midnight);
  color: var(--white);
}
.btn--midnight-dune:hover {
  background: var(--dune);
  border-color: var(--midnight);
  color: var(--midnight);
  opacity: 0.92;
}

.btn--ghost-light {
  background: transparent;
  border-color: var(--dune);
  color: var(--dune);
}
.btn--ghost-light:hover {
  background: var(--dune);
  color: var(--midnight);
  border-color: var(--dune);
}
.btn .arrow { font-size: 16px; }

/* ---------- Section base ---------- */
section { position: relative; }
.section {
  padding: 110px 0;
  /*border-top: 1px solid var(--hairline);*/
}
.section--white  { background: var(--white); }
.section--dune   { background: var(--dune); }
.section--polar  { background: var(--polar); }
.section--midnight { background: var(--midnight); color: var(--dune); }
.section--midnight .lede { color: rgba(237,236,229,0.8); }
.section--coral { background: var(--coral); color: var(--dune); }
.section--coral .lede { color: rgba(237,236,229,0.92); }
.section--coral h2.display { color: var(--dune); }

h2.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4.1vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0 0 32px;
  max-width: 880px;
  color: var(--midnight);
}
h2.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--midnight);
}
.lede {
  font-size: 18px;
  line-height: 1.6;
  max-width: 640px;
  color: var(--ink);
}
.lede + .lede { margin-top: 18px; }

/* ---------- Vision two-column — image vertically cropped to text height ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch; /* allow image to take full text height */
}
.two-col > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.two-col .col-image {
  aspect-ratio: auto; /* let height match text column */
  width: 100%;
  height: 100%;
  min-height: 360px;
  background-color: #b89074;
  background-size: cover;
  background-position: center;
  border-radius: 0;
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; align-items: stretch; }
  .two-col .col-image { aspect-ratio: 4/3; max-height: 520px; min-height: 0; height: auto; }
  .section { padding: 70px 0; }
}

/* ---------- Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-top: 60px;
}
.pillar h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 14px;
  letter-spacing: -0.005em;
  color: var(--midnight);
}
.pillar p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.pillar .num {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: 22px;
  display: block;
}
@media (max-width: 900px) {
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Leadership ---------- */
.leadership-head {
  margin: 0 0 72px;
  max-width: 900px;
}
.leadership-head .eyebrow {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 22px;
}
.leadership-head h2.display {
  margin: 0;
}

.leadership-group + .leadership-group {
  /*margin-top: 88px;*/
  padding-top: 64px;
  /*border-top: 1px solid var(--hairline);*/
}
.leadership-group__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--midnight);
  margin: 0 0 40px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}

.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 0;
}
.founders--three { grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
.founder { border-top: none; padding-top: 0; }
.founder-portrait {
  aspect-ratio: 1/1;
  width: 160px;
  background-color: rgba(11, 35, 56, 0.18);
  background-size: cover;
  background-position: center top;
  border-radius: 0px;
  margin-bottom: 26px;
  filter: grayscale(100%) contrast(1.02);
}
@media (max-width: 720px) {
  .founder-portrait { width: 130px; }
}
.founder .role {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.founder h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  line-height: 1;
  color: var(--midnight);
}
.founders--three .founder h3 { font-size: 26px; }
.founder p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(11, 35, 56, 0.78);
  margin: 0 0 14px;
}
.founders--three .founder p { font-size: 15px; }
.founder .credits {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(11, 35, 56, 0.55);
  text-transform: uppercase;
  margin-top: 22px;
}
@media (max-width: 900px) {
  .founders { grid-template-columns: 1fr; gap: 44px; }
  .founders--three { grid-template-columns: 1fr 1fr; gap: 40px; }
  .founder h3 { font-size: 27px; }
  .leadership-group + .leadership-group { margin-top: 64px; padding-top: 48px; }
}
@media (max-width: 640px) {
  .founders--three { grid-template-columns: 1fr; gap: 44px; }
}

/* Team list — names + roles, no portraits */
.team-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 64px;
}
.team-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  /*border-top: 1px solid var(--hairline);*/
}
.team-list__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  color: var(--midnight);
}
.team-list__role {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral);
}
@media (max-width: 720px) {
  .team-list { grid-template-columns: 1fr; gap: 0; }
  .team-list__name { font-size: 20px; }
}

/* ===== Leadership scrollytelling (sticky pinned + step scroll) ===== */
.leadership-scrolly {
  background: var(--dune);
  position: relative;
}

/* Track: tall outer container that drives the inner step changes.
   ~280vh = 100vh of pinned visible time + 180vh distributed across 3 steps. */
.leadership-scrolly__track {
  position: relative;
  height: 280vh;
}

/* Pinned: sticky inner viewport — stays visible while user scrolls track */
.leadership-scrolly__pinned {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 110px 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.leadership-scrolly__head {
  margin: 0 0 44px;
  max-width: 900px;
}
.leadership-scrolly__head h2.display { margin: 0; }

/* Two-column layout: progress (left) + stage (right) */
.leadership-scrolly__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
  width: 100%;
}

/* === Progress marker (left rail with dots + labels) === */
.scrolly-progress {
  position: relative;
  padding-left: 24px;
  align-self: stretch;
}
.scrolly-progress__rail {
  position: absolute;
  left: 4px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(11, 35, 56, 0.14);
  border-radius: 1px;
  overflow: hidden;
}
.scrolly-progress__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--coral);
  transition: height .25s ease-out;
}
.scrolly-progress__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}
.scrolly-progress__list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(11, 35, 56, 0.4);
  transition: color .4s ease;
}
.scrolly-progress__list li.is-active { color: var(--midnight); }

.scrolly-progress__dot {
  position: relative;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(11, 35, 56, 0.22);
  margin-left: -24px;
  box-shadow: 0 0 0 4px var(--dune);
  transition: background .4s ease, transform .4s cubic-bezier(.2,.7,.2,1);
}
.scrolly-progress__list li.is-active .scrolly-progress__dot {
  background: var(--coral);
  transform: scale(1.4);
}

/* === Stage (right): cross-fading panels === */
.scrolly-stage {
  position: relative;
  min-height: 500px;
}
.scrolly-stage__panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(28px);
  transition: opacity .55s cubic-bezier(.2,.7,.2,1),
              transform .55s cubic-bezier(.2,.7,.2,1),
              visibility .55s;
}
.scrolly-stage__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scrolly-stage__panel-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--midnight);
  margin: 0 0 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline);
}

/* Compact founder cards inside the stage so 2 or 3 fit comfortably in viewport */
.scrolly-stage .founders { gap: 48px; }
.scrolly-stage .founders--three { gap: 32px; }
.scrolly-stage .founder-portrait { width: 130px; margin-bottom: 18px; }
.scrolly-stage .founder h3 { font-size: 26px; margin-bottom: 14px; }
.scrolly-stage .founders--three .founder h3 { font-size: 22px; }
.scrolly-stage .founder p { font-size: 14px; line-height: 1.55; margin-bottom: 8px; }
.scrolly-stage .founders--three .founder p { font-size: 13px; }
.scrolly-stage .founder .role { margin-bottom: 10px; }
.scrolly-stage .founder .credits { font-size: 11px; margin-top: 14px; }
.scrolly-stage .team-list { gap: 14px 56px; }
.scrolly-stage .team-list li { padding: 14px 0; border-top: 1px solid var(--hairline); }
.scrolly-stage .team-list__name { font-size: 20px; }

/* Stagger entry of children when a panel becomes active */
.scrolly-stage__panel.is-active .founder {
  animation: founder-rise .6s cubic-bezier(.2,.7,.2,1) backwards;
}
.scrolly-stage__panel.is-active .founder:nth-child(1) { animation-delay: .08s; }
.scrolly-stage__panel.is-active .founder:nth-child(2) { animation-delay: .18s; }
.scrolly-stage__panel.is-active .founder:nth-child(3) { animation-delay: .28s; }
@keyframes founder-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.scrolly-stage__panel.is-active .team-list li {
  animation: team-rise .5s cubic-bezier(.2,.7,.2,1) backwards;
}
.scrolly-stage__panel.is-active .team-list li:nth-child(1) { animation-delay: .08s; }
.scrolly-stage__panel.is-active .team-list li:nth-child(2) { animation-delay: .15s; }
.scrolly-stage__panel.is-active .team-list li:nth-child(3) { animation-delay: .22s; }
.scrolly-stage__panel.is-active .team-list li:nth-child(4) { animation-delay: .29s; }
@keyframes team-rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Portraits — color reveal on hover */
.founder { transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.founder-portrait {
  transition: filter .55s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}
.founder:hover .founder-portrait {
  filter: grayscale(0%) contrast(1.04);
  transform: scale(1.025);
}

/* Team list — coral marker on hover */
.team-list li {
  position: relative;
  transition: padding-left .35s ease;
}
.team-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--coral);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.team-list li:hover { padding-left: 16px; }
.team-list li:hover::before { transform: scaleY(1); }

/* Tablet — slightly tighter rail */
@media (max-width: 1024px) and (min-width: 901px) {
  .leadership-scrolly__layout { grid-template-columns: 180px 1fr; gap: 40px; }
}

/* Mobile fallback: drop the sticky/scrollytelling, stack content normally */
@media (max-width: 900px) {
  .leadership-scrolly__track  { height: auto; }
  .leadership-scrolly__pinned {
    position: static;
    height: auto;
    padding: 90px 0;
    display: block;
    overflow: visible;
  }
  .leadership-scrolly__layout { grid-template-columns: 1fr; gap: 40px; }
  .scrolly-progress { display: none; }
  .scrolly-stage { min-height: 0; }
  .scrolly-stage__panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-bottom: 64px;
  }
  .scrolly-stage__panel:last-child { margin-bottom: 0; }
  .scrolly-stage__panel.is-active .founder,
  .scrolly-stage__panel.is-active .team-list li { animation: none; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .scrolly-progress__bar,
  .scrolly-progress__dot,
  .scrolly-progress__list li,
  .scrolly-stage__panel { transition: none; }
  .scrolly-stage__panel.is-active .founder,
  .scrolly-stage__panel.is-active .team-list li { animation: none; }
  .founder-portrait,
  .founder:hover .founder-portrait { transform: none; }
}

/* ---------- Palm Beach story / A shared conviction ----------
   Founders diptych on the left (Paco + David) using the same dune
   filter as the photo marquee. Diptych height matches the right-column
   content (title + paragraphs + button). */
.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: stretch;
}
.story-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: transparent;
}
.story-diptych {
  display: flex;
  gap: 10px;
}
.story-portrait {
  position: relative;
  flex: 1;
  margin: 0;
  overflow: hidden;
  background-color: #6e8a8e;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.story-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.story-portrait:hover {
  transform: scale(1.01);
}

.story-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story h2 { margin-bottom: 28px; }
.story .lede + .lede { margin-top: 18px; }
.story-cta { align-self: flex-start; margin-top: 32px; }
.story .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  margin: 36px 0 0;
  padding-left: 22px;
  border-left: 1px solid var(--coral);
}

@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .story-image-wrap { height: auto; }
  .story-diptych { aspect-ratio: 7/5; }
  .story-cta { margin-top: 24px; }
}
@media (max-width: 480px) {
  .story-diptych { gap: 6px; aspect-ratio: 6/5; }
  .story-portrait__name { font-size: 14px; left: 12px; bottom: 10px; }
}

/* ---------- Global discipline (replaces map section) ----------
   Two-column grid where the title sits in row 1 (left only),
   and the paragraph (left) + locations list (right) share row 2,
   so the list aligns vertically with the paragraph, not the title. */
.global-discipline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 80px;
  row-gap: 0;
}
.global-discipline__title {
  grid-column: 1;
  grid-row: 1;
  margin: 0 0 36px;
  max-width: 560px;
}
.global-discipline__lede {
  grid-column: 1;
  grid-row: 2;
  max-width: 480px;
  margin: 0;
}
.locations-list {
  grid-column: 2;
  grid-row: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--midnight);
  align-self: start;
}
.locations-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}
.locations-list li:first-child { padding-top: 0; }
.locations-list__name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--midnight);
  letter-spacing: 0.005em;
}
.locations-list__tag {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral);
}
.locations-list__more .locations-list__name {
  font-style: italic;
  color: rgba(11, 35, 56, 0.55);
}

@media (max-width: 900px) {
  .global-discipline {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 22px;
  }
  .global-discipline__title { grid-column: 1; grid-row: 1; margin-bottom: 0; }
  .global-discipline__lede  { grid-column: 1; grid-row: 2; }
  .locations-list           { grid-column: 1; grid-row: 3; margin-top: 12px; }
}

.map-frame {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.map-img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.map-legend {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: flex-end;
  font-size: 13px;
  color: var(--ink);
}
.map-legend li {
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.01em;
}
.map-legend .swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--midnight);
  border-radius: 0;
}
.map-legend .swatch--dot { border-radius: 999px; }
.map-legend .swatch--emerging { background: #cfe1ec; }
@media (max-width: 720px) {
  .map-legend { justify-content: flex-start; gap: 18px 28px; margin-top: 36px; }
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 130px 0;
  background: #FFFFFF;
}
.cta-band h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 65px);
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  color: var(--midnight);
}
.cta-band h2 em { font-style: italic; color: var(--midnight); }
.cta-band p {
  max-width: 540px;
  margin: 0 auto 40px;
  color: var(--muted);
  font-size: 16px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--white);
  color: var(--midnight);
  padding: 64px 0 32px;
}
.footer a { color: var(--midnight); }
.footer a:hover { color: var(--coral); opacity: 1; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--midnight);
  letter-spacing: 0.02em;
}
.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  font-family: var(--sans);
  font-size: 12px;
  color: var(--midnight);
  letter-spacing: 0.04em;
}
.footer-locations { letter-spacing: 0.06em; }
.footer-copy { color: rgba(11, 35, 56, 0.6); }
@media (max-width: 720px) {
  .footer { padding: 48px 0 28px; }
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ---------- Contact page ---------- */
.contact-hero { padding: 130px 0 80px; }
.contact-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(43px, 5.4vw, 83px);
  line-height: 1;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
  max-width: 920px;
  color: var(--midnight);
}
.contact-hero h1 em { font-style: italic; color: var(--midnight); }
.contact-hero .lede { font-size: 20px; max-width: 620px; }

.contact-form-wrap { max-width: 640px; margin: 0; padding-bottom: 140px; }
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline);
  padding: 12px 0;
  outline: none;
  transition: border-color .25s ease;
  border-radius: 0;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--coral); }
.field textarea { min-height: 120px; resize: vertical; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 12px; }
.form-note { font-size: 12px; color: var(--muted); max-width: 320px; line-height: 1.5; }
@media (max-width: 900px) {
  .contact-form-wrap { padding-bottom: 80px; }
  .field--row { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---------- Wave brand mark (decorative) ---------- */
.wave-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 64px 0 8px;
}
.wave-mark img {
  width: 140px;
  height: auto;
  opacity: 0.55;
  user-select: none;
  -webkit-user-drag: none;
}
.wave-mark--cta { padding: 0 0 28px; }
.wave-mark--cta img { width: 120px; opacity: 0.7; }
.wave-mark--inline { justify-content: flex-start; padding: 28px 0 0; }
.wave-mark--inline img { width: 110px; opacity: 0.6; }
@media (max-width: 720px) {
  .wave-mark img { width: 110px; }
  .wave-mark { padding: 44px 0 0; }
  /* Mobile: hide wave in CTA + Vision (inline) */
  .cta-band .wave-mark { display: none; }
  .wave-mark--inline { display: none; }
}

/* ---------- Key Figures band (4 columns) ---------- */
.figures-band {
  background: var(--dune);
  color: var(--midnight);
  padding: 50px 0;
  /*border-top: 1px solid var(--hairline);*/
}
.figures {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 960px;
  justify-content: center;
}
.figures--four { grid-template-columns: repeat(4, 1fr); }
.figures li {
  position: relative;
  text-align: center;
  padding: 14px 18px;
}
.figures li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: rgba(237, 236, 229, 0.18);
}
.figures .num {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--midnight);
  margin-bottom: 14px;
}
.figures--four .num { font-size: clamp(44px, 5.2vw, 76px); }
.figures .num sup {
  font-size: 0.5em;
  color: var(--midnight);
  font-weight: 400;
  margin-left: 2px;
  top: -0.42em;
}
.figures .label {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--midnight);
}
@media (max-width: 900px) {
  .figures--four { grid-template-columns: repeat(2, 1fr); gap: 36px 0; }
  .figures--four li:nth-child(2)::before,
  .figures--four li:nth-child(4)::before { display: block; }
  .figures--four li:nth-child(3)::before { display: none; }
}
@media (max-width: 560px) {
  .figures-band { padding: 60px 0; }
  .figures, .figures--four { grid-template-columns: 1fr; gap: 36px; }
  .figures li + li::before { display: none; }
}

/* ---------- Brands logos band — auto-scrolling marquee ---------- */
.brands-band {
  background: var(--white);
  padding: 64px 0 80px;
}
.brands-eyebrow {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 32px;
}
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.marquee__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 70s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee__item {
  flex: 0 0 auto;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 48px;
  min-width: 220px;
  height: 110px;
  text-align: center;
  opacity: 0.85;
  transition: opacity .25s ease;
}
.marquee__item:hover { opacity: 1; }
/* Unified treatment — Bauer Bodoni (Bodoni Moda) for brand names */
.marquee__item .brand-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.01em;
  color: var(--midnight);
  line-height: 1;
  white-space: nowrap;
}
.brand-name--script { font-style: italic; font-weight: 300; letter-spacing: 0; font-size: 28px; }
.brand-name--quote { font-style: italic; font-weight: 400; }
.brand-name--mono { font-family: var(--sans); font-weight: 600; letter-spacing: 0.18em; font-size: 22px; }

/* === Per-brand typographic treatments (approximating each logo's personality) === */
/* DB Group — clean elegant caps, tight tracking */
.brand-name--db {
  font-family: "Cinzel", serif;
  font-weight: 400;
  letter-spacing: 0.42em;
  font-size: 18px;
  text-transform: uppercase;
}
/* Palm Beach Cannes 1928 — elegant serif caps, established old-Florida look */
.brand-name--palmbeach {
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 22px;
  text-transform: uppercase;
}
/* "La Guérite" — handwritten brush */
.brand-name--guerite {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0;
  font-style: normal;
}
/* il Grande Palm Beach — display sans, with "il" small italic offset */
.brand-name--grande {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  font-size: 30px;
  text-transform: uppercase;
}
.brand-name--grande .il {
  font-family: "Italianno", cursive;
  font-size: 0.7em;
  text-transform: lowercase;
  letter-spacing: 0;
  display: inline-block;
  transform: translateY(-0.35em);
  margin-right: 2px;
}
/* Shellona — handwritten chunky brush */
.brand-name--shellona {
  font-family: "Caveat", cursive;
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* Medusa — flowing italic script */
.brand-name--medusa {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.01em;
  font-style: normal;
}
/* Kokoro — geometric thin caps with overlap feel via wide tracking */
.brand-name--kokoro {
  font-family: "Cinzel", serif;
  font-weight: 400;
  letter-spacing: 0.22em;
  font-size: 26px;
  text-transform: uppercase;
}
/* FLASH — outlined italic display */
.brand-name--flash {
  font-family: "Bebas Neue", sans-serif;
  font-style: italic;
  font-size: 32px;
  letter-spacing: 0.06em;
  -webkit-text-stroke: 1px var(--midnight);
  -webkit-text-fill-color: transparent;
          color: transparent;
}
/* La Petite Maison — calligraphic script */
.brand-name--petite {
  font-family: "Pinyon Script", cursive;
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  letter-spacing: 0;
}
/* Plage Keller / Le Cesar — circular badge (inline-svg replacement target) */
.brand-name--keller {
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}
.brand-name--keller .sep { display: block; opacity: 0.6; font-size: 11px; margin: 2px 0; letter-spacing: 0.4em; }
/* Anna — refined geometric caps */
.brand-name--anna {
  font-family: "Cinzel", serif;
  font-weight: 400;
  letter-spacing: 0.5em;
  font-size: 22px;
  text-transform: uppercase;
  padding-left: 0.5em; /* compensate trailing letter-spacing */
}
/* Tamarin St Barth — display caps with handwritten subtitle */
.brand-name--tamarin {
  font-family: "Cinzel", serif;
  font-weight: 500;
  letter-spacing: 0.32em;
  font-size: 22px;
  text-transform: uppercase;
}
/* gina — thick italic flow */
.brand-name--gina {
  font-family: "Italianno", cursive;
  font-size: 50px;
  line-height: 0.9;
  letter-spacing: 0;
}
/* Luigi Restaurant Piano Bar — bold sans block, multi-line */
.brand-name--luigi {
  font-family: "Russo One", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
}
/* Mamo Michelangelo — refined display serif caps (legacy text fallback) */
.brand-name--mamo {
  font-family: "Bodoni Moda", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  font-size: 30px;
  text-transform: uppercase;
}

/* Generic in-marquee logo container (inline SVG, detoured, brand-coloured).
   Inherits color from the marquee item so the global grayscale + opacity
   treatment keeps working without any extra rule. */
.brand-logo {
  display: block;
  height: 64px;
  width: auto;
  color: var(--midnight);
}
.brand-logo--mamo { height: 70px; }
@media (max-width: 720px) {
  .brand-logo { height: 54px; }
  .brand-logo--mamo { height: 58px; }
}
/* Brand-loc subtitle override for some brands needing tiny scale */
.brand-loc--small { font-size: 8px; letter-spacing: 0.32em; }

/* Plage Keller circular badge */
.brand-badge {
  width: 90px;
  height: 90px;
  border: 1px solid var(--midnight);
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--midnight);
  text-align: center;
  line-height: 1.3;
  position: relative;
}
.brand-badge::before,
.brand-badge::after {
  content: "·";
  position: absolute;
  font-size: 16px;
  color: var(--midnight);
}
.brand-badge::before { left: 8px; top: 50%; transform: translateY(-50%); }
.brand-badge::after  { right: 8px; top: 50%; transform: translateY(-50%); }
.brand-badge .top { display: block; }
.brand-badge .mid {
  display: block;
  width: 60%;
  height: 1px;
  background: var(--midnight);
  margin: 4px auto;
}
.brand-badge .bot { display: block; }

/* Tiny inline icon next to name (e.g., palm tree) */
.brand-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 2px;
  fill: var(--midnight);
  stroke: var(--midnight);
}
.marquee__item .brand-loc {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .marquee__item { min-width: 180px; padding: 0 32px; height: 84px; }
  .marquee__item .brand-name { font-size: 20px; }
  .brand-name--script { font-size: 23px; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; transform: translateX(0); }
}

/* ---------- Hairline divider ---------- */
.hairline {
  border: none;
  border-top: 1px solid var(--hairline);
  margin: 0;
}

/* ---------- Subtle entrance ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
}

/* ===========================================================
   HOMEPAGE — video-hero (Soho House style)
   =========================================================== */
.hero-video {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  background: var(--midnight);
  margin-top: 0;
}
.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at center, rgba(11, 35, 56, 0.18) 0%, rgba(11, 35, 56, 0.55) 100%),
    linear-gradient(180deg, rgba(11, 35, 56, 0.45) 0%, rgba(11, 35, 56, 0.25) 30%, rgba(11, 35, 56, 0.55) 100%);
}
.hero-video__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  color: var(--dune);
}
.hero-video__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(237, 236, 229, 0.78);
  margin: 0 0 32px;
}
.hero-video__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 56px;
  max-width: 14ch;
  color: var(--dune);
}
.hero-video__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--dune);
}
.hero-video__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 0;
  border: 1px solid var(--dune);
  color: var(--dune);
  background: transparent;
  transition: background .3s ease, color .3s ease, opacity .3s ease;
}
.hero-video__cta:hover {
  background: var(--dune);
  color: var(--midnight);
  opacity: 1;
}
.hero-video__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(237, 236, 229, 0.7);
}
.hero-video__scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(237, 236, 229, 0.7), rgba(237, 236, 229, 0));
}
@media (max-width: 720px) {
  .hero-video { min-height: 560px; height: 92vh; }
  .hero-video__content { padding: 100px 22px 60px; }
  .hero-video__title { font-size: clamp(40px, 9vw, 64px); margin-bottom: 36px; }
  .hero-video__cta { letter-spacing: 0.24em; }
  .hero-video__scroll { display: none; }
}

/* ===========================================================
   PLACES MARQUEE — homepage gallery between Palm Beach & CTA
   Two rows of photos auto-scrolling right-to-left.
   Photos sized ~33% smaller than the previous mosaic tiles.
   =========================================================== */
.places-marquee {
  background: var(--white);
  padding: 24px 0;
  overflow: hidden;
}
.places-marquee__row {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.places-marquee__row + .places-marquee__row { margin-top: 6px; }

.places-marquee__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: max-content;
  gap: 6px;
  animation: places-scroll 75s linear infinite;
  will-change: transform;
}
.places-marquee__track--alt {
  /* Slightly different speed for visual interest, same direction */
  animation-duration: 90s;
}
.places-marquee:hover .places-marquee__track,
.places-marquee:focus-within .places-marquee__track { animation-play-state: paused; }

@keyframes places-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Tiles — width ~33% smaller than the previous 4-col grid (was ~315px) */
.place-tile {
  position: relative;
  flex: 0 0 auto;
  display: block;
  width: 220px;
  aspect-ratio: 4/3;
  background-color: rgba(11, 35, 56, 0.18);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  /* Strong unified warm dune/sand cast so every photo reads like a single editorial */
  filter: saturate(0.5) sepia(0.45) contrast(1.06) brightness(0.95);
  transition: filter .55s ease;
}
/* Stronger dune wash to bind colours across photos */
.place-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              rgba(237, 236, 229, 0.34) 0%,
              rgba(237, 236, 229, 0.22) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}
/* Bottom gradient — keeps caption legible on any photo */
.place-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              rgba(0, 0, 0, 0) 45%,
              rgba(11, 35, 56, 0.55) 100%);
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 1;
}
/* On hover: lift slightly toward true colour without breaking the unity */
.place-tile:hover {
  filter: saturate(0.7) sepia(0.25) contrast(1.06) brightness(1);
}
.place-tile:hover::after { opacity: 0.85; }

/* Bottom-right caption — Bauer Bodoni (Bodoni Moda), white */
.place-tile__name {
  position: absolute;
  right: 14px;
  bottom: 10px;
  z-index: 2;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.005em;
  line-height: 1.05;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45),
               0 1px 2px rgba(0, 0, 0, 0.35);
  max-width: 85%;
  text-align: right;
}

@media (max-width: 720px) {
  .place-tile { width: 180px; }
  .place-tile__name { font-size: 14px; right: 12px; bottom: 9px; }
}
@media (max-width: 460px) {
  .place-tile { width: 150px; }
  .place-tile__name { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .places-marquee__track { animation: none; transform: translateX(0); }
}

/* ===========================================================
   LEADERSHIP PAGE
   =========================================================== */
/* Page-level hero (used on Leadership and other inner pages) */
.page-hero {
  padding: 150px 0 60px;
  background: var(--white);
}
.page-hero .eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 22px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(43px, 5.4vw, 83px);
  line-height: 1;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
  max-width: 920px;
  color: var(--midnight);
}
.page-hero h1 em { font-style: italic; font-weight: 300; color: var(--midnight); }
.page-hero .lede { font-size: 18px; max-width: 620px; }
@media (max-width: 720px) {
  .page-hero { padding: 120px 0 44px; }
}

.leadership-block { padding: 70px 0; }
.leadership-block + .leadership-block { padding-top: 30px; }
.leadership-block--management { padding-bottom: 110px; }

/* === Board Members: 2 rows of 3 columns, Paco & David in row 1 (left + middle) === */
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 48px;
  margin-top: 8px;
}
.board-grid .board-member:nth-child(1) { grid-column: 1; grid-row: 1; }
.board-grid .board-member:nth-child(2) { grid-column: 2; grid-row: 1; }
.board-grid .board-member:nth-child(3) { grid-column: 1; grid-row: 2; }
.board-grid .board-member:nth-child(4) { grid-column: 2; grid-row: 2; }
.board-grid .board-member:nth-child(5) { grid-column: 3; grid-row: 2; }

.board-member {
  position: relative;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}

/* Photo with elegant hover description overlay
   — width matched to the management-grid column size for visual consistency */
.board-photo {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4/5;
  background-color: rgba(11, 35, 56, 0.18);
  background-size: cover;
  background-position: center top;
  overflow: hidden;
  filter: grayscale(100%) contrast(1.02);
  margin-bottom: 22px;
  transition: filter .55s ease;
}
.board-member:hover .board-photo {
  filter: grayscale(0%) contrast(1.04);
}
.board-photo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              rgba(11, 35, 56, 0) 0%,
              rgba(11, 35, 56, 0) 30%,
              rgba(11, 35, 56, 0.55) 55%,
              rgba(11, 35, 56, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 28px 24px 26px;
  opacity: 0;
  transition: opacity .55s cubic-bezier(.2,.7,.2,1);
}
.board-member:hover .board-photo__overlay {
  opacity: 1;
}
.board-photo__overlay .description {
  margin: 0;
  color: var(--dune);
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.55;
  letter-spacing: 0.005em;
  transform: translateY(18px);
  opacity: 0;
  transition: transform .6s cubic-bezier(.2,.7,.2,1) .05s,
              opacity .55s ease .05s;
}
.board-member:hover .board-photo__overlay .description {
  transform: translateY(0);
  opacity: 1;
}

/* Info under the photo */
.board-member h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.005em;
  color: var(--midnight);
  margin: 0 0 10px;
  line-height: 1.05;
}
.board-member .title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 8px;
}
.board-member .location {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(11, 35, 56, 0.55);
  margin: 0;
}

@media (max-width: 900px) {
  .board-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 32px;
  }
  .board-grid .board-member:nth-child(1),
  .board-grid .board-member:nth-child(2),
  .board-grid .board-member:nth-child(3),
  .board-grid .board-member:nth-child(4),
  .board-grid .board-member:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
}
/* Keep 2 per row on mobile — narrower gap for small screens */
@media (max-width: 560px) {
  .board-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 14px; }
  .board-photo { max-width: 100%; }
}

/* === Management — 4 in a single row === */
.management-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 8px;
}
.manager { display: flex; flex-direction: column; }
.manager-photo {
  width: 75%;
  max-width: 210px;
  aspect-ratio: 4/5;
  background-color: rgba(11, 35, 56, 0.10);
  background-size: cover;
  background-position: center top;
  margin-bottom: 22px;
  filter: grayscale(100%) contrast(1.02);
  transition: filter .55s ease;
}
.manager:hover .manager-photo {
  filter: grayscale(0%) contrast(1.04);
}
.manager h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--midnight);
  margin: 0 0 8px;
  line-height: 1.05;
}
.manager .title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0;
}

@media (max-width: 900px) {
  .management-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}
/* Keep 2 per row on mobile — narrower gap */
@media (max-width: 480px) {
  .management-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 14px; }
  .manager-photo { width: 100%; max-width: none; }
}
