/* Te Vaka Group design system */
:root {
  --black: #0c0d0f;
  --black-2: #15171a;
  --ivory: #ece3d5;
  --ivory-soft: #e8e0d5;
  --steel: #5f6165;
  --bronze: #ad7939;
  --red: #9a1c1f;
  --glass: rgba(236, 227, 213, 0.10);
  --glass-strong: rgba(236, 227, 213, 0.16);
  --hairline: rgba(236, 227, 213, 0.16);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-ui: "Outfit", "Avenir Next", Avenir, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, p, ul, ol { margin: 0; }
em { font-style: italic; font-weight: 400; }
::selection { background: var(--bronze); color: var(--black); }

.skip { position: absolute; left: -999px; top: 0; }
.skip:focus {
  left: 16px; top: 16px; z-index: 200;
  padding: 10px 14px; background: var(--black); border: 1px solid var(--hairline);
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 1.4rem;
}
.eyebrow.light { color: rgba(236, 227, 213, 0.72); }

.lead {
  max-width: 38rem;
  color: var(--steel);
  font-size: 1.05rem;
  line-height: 1.75;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 52px;
  padding: 0 1.6rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.cta.glass {
  background: var(--glass);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--hairline);
}
.cta.glass:hover { background: var(--glass-strong); border-color: rgba(236,227,213,0.32); }
.cta.text {
  padding: 0 0 6px;
  min-height: auto;
  border-bottom: 1px solid rgba(236,227,213,0.35);
}
.cta.text:hover { border-bottom-color: var(--ivory); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem 2rem;
  margin-top: 2.4rem;
}

.text-link {
  display: inline-flex;
  margin-top: 2rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--red);
  padding-bottom: 6px;
  color: var(--black);
}
.text-link:hover { color: var(--red); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  height: 84px;
  padding: 0 3.2vw;
  background: rgba(236, 227, 213, 0.08);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border-bottom: 1px solid var(--hairline);
  transition: height 0.4s ease, background 0.4s ease;
}
.site-header.is-scrolled {
  height: 64px;
  background: rgba(12, 13, 15, 0.88);
}

.brand {
  display: flex;
  align-items: center;
  flex: none;
}
.brand-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-align: center;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}
.brand-sub {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 4px;
  text-align: center;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: 1.2rem;
}
.nav-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236, 227, 213, 0.82);
  padding: 8px 0;
  background: none;
}
.nav-link:hover, .has-mega.is-open .mega-trigger { color: var(--ivory); }

.header-cta {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 10px 0 10px 4px;
  border-bottom: 1px solid rgba(236, 227, 213, 0.28);
}
.header-cta:hover { border-bottom-color: var(--ivory); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1px;
  background: var(--ivory);
}
.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { bottom: 16px; }

/* Mega menu */
.has-mega { position: static; }
.mega {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(12, 13, 15, 0.78);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid rgba(236, 227, 213, 0.08);
  padding: 3.4rem 8vw 3.8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
.has-mega:hover .mega,
.has-mega:focus-within .mega,
.has-mega.is-open .mega {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.mega-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 4rem 8vw;
  max-width: 980px;
}
.mega-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.4rem;
}
.mega-col ul { list-style: none; padding: 0; }
.mega-col li + li { margin-top: 1.05rem; }
.mega-col a {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.mega-col a em {
  display: block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.04em;
  color: var(--steel);
  margin-top: 4px;
}
.mega-col a:hover { color: var(--ivory); }
.mega-col a:hover em { color: rgba(236, 227, 213, 0.62); }
.mega-aside {
  grid-column: 1 / -1;
  max-width: 28rem;
  color: var(--steel);
  font-size: 14px;
  border-top: 1px solid var(--hairline);
  padding-top: 1.4rem;
}

.mobile-nav {
  position: fixed;
  inset: 64px 0 0;
  z-index: 70;
  background: rgba(12, 13, 15, 0.96);
  backdrop-filter: blur(22px);
  padding: 2rem 1.6rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.mobile-nav[hidden] {
  display: none !important;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.02em;
}
.mobile-nav .mobile-cta {
  margin-top: 1.2rem;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
}
body.nav-open { overflow: hidden; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--ivory);
}
.hero-media, .finale-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-photo, .hero-media img, .finale-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 48%;
  transform-origin: 42% 55%;
  animation: kenburns 22s ease-out forwards;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
}
html.capture .hero-video { display: none; }
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.08) translate(-1.4%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo, .hero-media img, .finale-media img { animation: none; }
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,13,15,0.72) 0%, rgba(12,13,15,0.28) 48%, rgba(12,13,15,0.12) 72%),
    linear-gradient(180deg, rgba(12,13,15,0.28) 0%, rgba(12,13,15,0.08) 38%, rgba(12,13,15,0.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 92vw);
  padding: 0 0 8.5vh 7vw;
}
.hero-logo {
  width: 92px;
  height: auto;
  margin: 0 0 1.6rem;
  mix-blend-mode: screen;
  opacity: 0.92;
}
.hero h1 {
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  max-width: 14ch;
}
.hero h1 em { color: var(--ivory); }
.hero-lead {
  max-width: 28rem;
  margin-top: 1.5rem;
  color: rgba(236, 227, 213, 0.78);
  font-size: 1.02rem;
  line-height: 1.7;
}

/* Intro */
.intro {
  background: var(--ivory);
  color: var(--black);
  padding: 9.5rem 7vw 8.5rem;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
  gap: 3vw 6vw;
  align-items: start;
}
.intro h2 {
  font-size: clamp(2.6rem, 5.1vw, 4.7rem);
  max-width: 16ch;
  margin-bottom: 2rem;
  color: var(--black);
}
.intro h2 em { color: var(--red); }
.intro .lead { color: #4a4743; }

/* Our Group chapters */
.group { background: var(--black); }
.group-head {
  padding: 6.5rem 7vw 2.8rem;
}
.group-head h2 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  max-width: 14ch;
}
.chapters {
  display: flex;
  height: 78vh;
  min-height: 540px;
}
.chapter {
  position: relative;
  flex: 1 1 20%;
  overflow: hidden;
  isolation: isolate;
  transition: flex 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.chapter:hover, .chapter:focus-visible { flex: 1.55 1 28%; }
.chapter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  transform: scale(1.04);
  transition: transform 1.1s ease;
}
.chapter:hover img { transform: scale(1.1); }
.chapter-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,13,15,0.08) 20%, rgba(12,13,15,0.78) 100%);
}
.chapter-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.3rem 1.7rem;
  background: rgba(12, 13, 15, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(236, 227, 213, 0.12);
}
.chapter-cap span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2vw, 2.15rem);
  letter-spacing: -0.01em;
}
.chapter-cap p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  color: rgba(236, 227, 213, 0.74);
  font-size: 13px;
  line-height: 1.5;
  transition: max-height 0.45s ease, opacity 0.45s ease, margin 0.45s ease;
}
.chapter:hover .chapter-cap p,
.chapter:focus-visible .chapter-cap p {
  max-height: 5rem;
  opacity: 1;
  margin-top: 0.45rem;
}

/* Image break */
.break {
  position: relative;
  height: 68vh;
  min-height: 420px;
  overflow: hidden;
}
.break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  filter: saturate(0.92) contrast(1.05);
}
.break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,13,15,0.18), rgba(12,13,15,0.45));
}
.break p {
  position: absolute;
  z-index: 2;
  left: 7vw;
  bottom: 3.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-style: italic;
  letter-spacing: -0.02em;
}

/* Ecosystem */
.ecosystem {
  background: var(--black);
  padding: 9rem 7vw 8rem;
}
.ecosystem h2 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  max-width: 16ch;
  margin-bottom: 1.8rem;
}
.ecosystem .lead { color: rgba(236, 227, 213, 0.62); }
.relation {
  list-style: none;
  padding: 0;
  margin: 4.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.relation li {
  padding: 1.8rem 1.6rem 0 0;
  border-right: 1px solid rgba(236, 227, 213, 0.08);
}
.relation li:last-child { border-right: 0; padding-right: 0; }
.relation li:not(:first-child) { padding-left: 1.8rem; }
.relation span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.relation strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  letter-spacing: -0.015em;
}
.relation em {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 13px;
  color: var(--steel);
}

/* Operators */
.operators {
  background: var(--black-2);
  padding: 8.5rem 7vw 7rem;
}
.operators-head { margin-bottom: 3.2rem; }
.operators-head h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.3rem);
}
.operator-list { border-top: 1px solid var(--hairline); }
.operator {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 2.4rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(236, 227, 213, 0.1);
}
.operator-photo {
  height: 118px;
  overflow: hidden;
}
.operator-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  filter: saturate(0.85);
  transition: transform 0.8s ease;
}
.operator:hover .operator-photo img { transform: scale(1.06); }
.operator-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  background: transparent;
}
.operator-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: transparent;
}
.operator-logo--badge {
  height: 118px;
}
.operator-logo--badge img {
  width: 118px;
  height: 118px;
  max-width: 118px;
  border-radius: 50%;
  object-fit: cover;
}
.operator-logo--mark img {
  width: auto;
  height: auto;
  max-width: 85%;
  max-height: 4.4rem;
  object-fit: contain;
}
.operator-copy h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  margin: 0.35rem 0 0.45rem;
}
.operator-copy p:last-child { color: var(--steel); font-size: 15px; }
.operator-go {
  font-size: 1.3rem;
  color: rgba(236, 227, 213, 0.45);
  transition: color 0.3s ease, transform 0.3s ease;
}
.operator:hover .operator-go { color: var(--ivory); transform: translateX(4px); }
.incoming {
  margin-top: 2.4rem;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}
.incoming em {
  font-style: normal;
  letter-spacing: 0.14em;
  color: rgba(236, 227, 213, 0.7);
}

/* About */
.about {
  background: var(--ivory);
  color: var(--black);
  padding: 9rem 7vw;
}
.about h2 {
  font-size: clamp(2.7rem, 5.4vw, 5rem);
  max-width: 14ch;
  margin-bottom: 1.8rem;
}
.about h2 em { color: var(--red); }
.about .lead { color: #4a4743; }

/* Finale */
.finale {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.finale-media img { animation: none; object-position: 60% 40%; transform: scale(1.04); }
.finale-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,13,15,0.7) 0%, rgba(12,13,15,0.22) 60%),
    linear-gradient(180deg, rgba(12,13,15,0.15), rgba(12,13,15,0.72));
}
.finale-content {
  position: relative;
  z-index: 2;
  padding: 0 0 9vh 7vw;
  width: min(760px, 92vw);
}
.finale h2 { font-size: clamp(3rem, 6.2vw, 5.6rem); }

/* Footer */
.site-footer {
  background: var(--black);
  padding: 4.2rem 7vw 2rem;
  border-top: 1px solid rgba(236, 227, 213, 0.08);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  padding-bottom: 2.4rem;
}
.footer-logo {
  width: 168px;
  height: auto;
  object-fit: contain;
  background: transparent;
  margin: 0 0 1.1rem;
}
.footer-brand p,
.footer-brand a {
  color: var(--steel);
  font-size: 14px;
}
.footer-brand a:hover { color: var(--ivory); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.8rem;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(236, 227, 213, 0.72);
}
.footer-nav a:hover { color: var(--ivory); }
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(236, 227, 213, 0.08);
  color: var(--steel);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-primary { gap: 1.3rem; }
  .operator { grid-template-columns: 170px 1fr auto; gap: 1.4rem; }
  .relation { grid-template-columns: 1fr; }
  .relation li,
  .relation li:last-child,
  .relation li:not(:first-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(236, 227, 213, 0.08);
    padding: 1.4rem 0;
  }
}

@media (max-width: 880px) {
  .nav-primary, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .site-header { height: 68px; padding: 0 1.2rem; }
  .intro-grid { grid-template-columns: 1fr; gap: 0.4rem; }
  .intro, .about, .ecosystem, .operators { padding: 5.2rem 1.4rem 4.6rem; }
  .group-head { padding: 4.4rem 1.4rem 1.6rem; }
  .hero-content, .finale-content { padding: 0 1.4rem 4.4rem; }
  .chapters {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }
  .chapter { min-height: 46vh; flex: none !important; }
  .chapter-cap p { max-height: 5rem; opacity: 1; margin-top: 0.4rem; }
  .operator { grid-template-columns: 1fr auto; }
  .operator-photo { display: none; }
  .operator:has(.operator-logo) {
    grid-template-columns: 120px 1fr auto;
    gap: 1rem;
  }
  .operator-logo {
    width: 120px;
    height: 40px;
    justify-content: center;
  }
  .operator-logo--badge {
    width: 120px;
    height: 56px;
  }
  .operator-logo--badge img {
    width: 56px;
    height: 56px;
    max-width: 56px;
  }
  .operator-logo--mark img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
  .footer-top, .footer-base { flex-direction: column; align-items: flex-start; }
  .break p { left: 1.4rem; bottom: 1.8rem; }
  .hero-logo { width: 76px; }
}

@media (min-width: 881px) {
  .mobile-nav { display: none !important; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 2.7rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

.hero-logo {
  width: auto;
  max-width: 104px;
  height: 86px;
  object-fit: contain;
  object-position: left center;
}
html.capture * { animation: none !important; transition: none !important; }
a:focus-visible, button:focus-visible {
  outline: 1px solid var(--bronze);
  outline-offset: 4px;
}

.group-head { padding: 4.2rem 7vw 1.6rem; }
.chapters { height: 58vh; min-height: 460px; }
.chapter-cap p {
  max-height: 5rem;
  opacity: 0.86;
  margin-top: 0.4rem;
}

/* Our Group page — page-specific */
.page-group .mega-trigger[aria-current="page"] {
  color: var(--ivory);
  box-shadow: inset 0 -1px 0 rgba(236, 227, 213, 0.42);
}
.page-group .mobile-nav a[aria-current="page"],
.page-group .footer-nav a[aria-current="page"] {
  color: var(--ivory);
}

.page-group .intro,
.page-group .essay,
.page-group .connect,
.page-group .about,
.page-group .finale {
  scroll-margin-top: 72px;
}

.page-group .hero-media img {
  object-position: 32% 52%;
}
.page-group .hero h1 {
  max-width: 11ch;
}
.page-group .finale-media img {
  object-position: 70% 38%;
}

.page-group .essays {
  background: var(--black);
}

.page-group .essay {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 88vh;
  background: var(--black);
}

.page-group .essay.is-flip {
  grid-template-columns: 0.92fr 1.08fr;
}

.page-group .essay.is-flip .essay-media {
  order: 2;
}

.page-group .essay-media {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
}

.page-group .essay-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  transform: scale(1.03);
  transition: transform 1.4s ease;
}

.page-group .essay:hover .essay-media img {
  transform: scale(1.08);
}

.page-group .essay-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,13,15,0.08) 28%, rgba(12,13,15,0.42) 100%),
    linear-gradient(90deg, rgba(12,13,15,0.18), rgba(12,13,15,0.04));
  pointer-events: none;
}

.page-group .essay-cap {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  margin: 0;
  padding: 0.65rem 0.95rem;
  background: rgba(12, 13, 15, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(236, 227, 213, 0.12);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
}

.page-group .essay-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 7vw;
  background: var(--black);
}

.page-group .essay-copy h2 {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  max-width: 12ch;
  margin: 0 0 1.15rem;
}

.page-group .essay-purpose {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(236, 227, 213, 0.82);
  margin: 0 0 1.45rem;
  max-width: 22rem;
}

.page-group .essay-copy > p:not(.eyebrow):not(.essay-purpose) {
  max-width: 32rem;
  color: var(--steel);
  font-size: 1.02rem;
  line-height: 1.75;
}

.page-group .essay-copy .hero-actions {
  margin-top: 2.1rem;
}

.page-group .connect {
  background: var(--black-2);
  padding: 9rem 7vw 8rem;
}

.page-group .connect h2 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  max-width: 16ch;
  margin-bottom: 1.8rem;
}

.page-group .connect .lead {
  color: rgba(236, 227, 213, 0.62);
}

.page-group .connect-line {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1fr;
  gap: 0;
  margin: 4.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
}
.page-group .connect-item {
  padding: 1.8rem 1.6rem 0 0;
  border-right: 1px solid rgba(236, 227, 213, 0.08);
}
.page-group .connect-item:last-child {
  border-right: 0;
  padding-right: 0;
}
.page-group .connect-item:not(:first-child) {
  padding-left: 1.8rem;
}

.page-group .connect-item span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 1.1rem;
}

.page-group .connect-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  letter-spacing: -0.015em;
}

.page-group .connect-item em {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 13px;
  color: var(--steel);
  line-height: 1.55;
}

.page-group .connect-rule { display: none; }

.page-group .value-list {
  list-style: none;
  padding: 0;
  margin: 4.2rem 0 0;
  max-width: 46rem;
}

.page-group .value-list li {
  padding: 1.7rem 0 1.75rem;
  border-top: 1px solid rgba(12, 13, 15, 0.12);
}

.page-group .value-list li:last-child {
  border-bottom: 1px solid rgba(12, 13, 15, 0.12);
}

.page-group .value-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.page-group .value-list p {
  margin-top: 0.55rem;
  max-width: 34rem;
  color: #4a4743;
  font-size: 1.02rem;
}

@media (max-width: 1100px) {
  .page-group .connect-line {
    grid-template-columns: 1fr;
  }
  .page-group .connect-item,
  .page-group .connect-item:last-child,
  .page-group .connect-item:not(:first-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(236, 227, 213, 0.08);
    padding: 1.4rem 0;
  }
}

@media (max-width: 880px) {
  .page-group .essay,
  .page-group .essay.is-flip {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .page-group .essay.is-flip .essay-media {
    order: 0;
  }
  .page-group .essay-media {
    min-height: 52vh;
  }
  .page-group .essay-copy {
    padding: 3.4rem 1.4rem 4rem;
  }
  .page-group .connect {
    padding: 5.2rem 1.4rem 4.6rem;
  }
  .page-group .value-list {
    margin-top: 2.6rem;
  }
}


/* =================================================================
   Vertical pages — Tours · Transfers · Stays · Experiences
   Append-only. Scoped to .page-tours / .page-transfers /
   .page-stays / .page-experiences
   ================================================================= */

.page-tours .mega-col a[aria-current="page"],
.page-transfers .mega-col a[aria-current="page"],
.page-stays .mega-col a[aria-current="page"],
.page-experiences .mega-col a[aria-current="page"] {
  color: var(--ivory);
}
.page-tours .mega-col a[aria-current="page"] em,
.page-transfers .mega-col a[aria-current="page"] em,
.page-stays .mega-col a[aria-current="page"] em,
.page-experiences .mega-col a[aria-current="page"] em {
  color: rgba(236, 227, 213, 0.62);
}
.page-tours .mobile-nav a[aria-current="page"],
.page-transfers .mobile-nav a[aria-current="page"],
.page-stays .mobile-nav a[aria-current="page"],
.page-experiences .mobile-nav a[aria-current="page"] {
  color: var(--ivory);
}

.page-tours .intro,
.page-tours .signature,
.page-tours .pair,
.page-tours .the-day,
.page-tours .about,
.page-tours .ecosystem,
.page-tours .finale,
.page-transfers .intro,
.page-transfers .essay,
.page-transfers .destinations,
.page-transfers .ecosystem,
.page-transfers .finale,
.page-stays .intro,
.page-stays .signature,
.page-stays .pair,
.page-stays .group,
.page-stays .about,
.page-stays .operators,
.page-stays .finale,
.page-experiences .intro,
.page-experiences .index-wrap,
.page-experiences .pair,
.page-experiences .essay,
.page-experiences .operators,
.page-experiences .moods,
.page-experiences .about,
.page-experiences .finale {
  scroll-margin-top: 72px;
}

/* Hero crops — distinct nature photography per vertical */
.page-tours .hero-media img {
  object-position: 40% 52%;
  animation: none;
  transform: scale(1.06);
}
.page-tours .hero-shade {
  background:
    linear-gradient(90deg, rgba(12,13,15,0.78) 0%, rgba(12,13,15,0.38) 46%, rgba(12,13,15,0.16) 72%),
    linear-gradient(180deg, rgba(12,13,15,0.32) 0%, rgba(12,13,15,0.08) 38%, rgba(12,13,15,0.80) 100%);
}
.page-tours .hero h1 { max-width: 11ch; }
.page-tours .finale-media img { object-position: 58% 48%; }

.page-transfers .hero-media img {
  object-position: 50% 40%;
  animation: none;
  transform: scale(1.08);
}
.page-transfers .hero-shade {
  background:
    linear-gradient(90deg, rgba(12,13,15,0.72) 0%, rgba(12,13,15,0.28) 50%, rgba(12,13,15,0.10) 76%),
    linear-gradient(180deg, rgba(12,13,15,0.28) 0%, rgba(12,13,15,0.06) 40%, rgba(12,13,15,0.78) 100%);
}
.page-transfers .hero h1 { max-width: 13ch; }
.page-transfers .finale-media img { object-position: 40% 55%; }

.page-stays .hero-media img {
  object-position: 38% 48%;
  animation: none;
  transform: scale(1.04);
}
.page-stays .hero-shade {
  background:
    linear-gradient(90deg, rgba(12,13,15,0.70) 0%, rgba(12,13,15,0.26) 52%, rgba(12,13,15,0.08) 78%),
    linear-gradient(180deg, rgba(12,13,15,0.24) 0%, rgba(12,13,15,0.04) 42%, rgba(12,13,15,0.76) 100%);
}
.page-stays .hero h1 { max-width: 11ch; }
.page-stays .finale-media img { object-position: 62% 48%; }

.page-experiences .hero-media img {
  object-position: 50% 36%;
  animation: none;
  transform: scale(1.05);
}
.page-experiences .hero-shade {
  background:
    linear-gradient(90deg, rgba(12,13,15,0.76) 0%, rgba(12,13,15,0.32) 50%, rgba(12,13,15,0.14) 74%),
    linear-gradient(180deg, rgba(12,13,15,0.30) 0%, rgba(12,13,15,0.08) 40%, rgba(12,13,15,0.82) 100%);
}
.page-experiences .hero h1 { max-width: 10ch; }
.page-experiences .finale-media img { object-position: 42% 45%; }

.page-tours .signature-shade,
.page-stays .signature-shade {
  background:
    linear-gradient(90deg, rgba(12,13,15,0.78) 0%, rgba(12,13,15,0.28) 54%, rgba(12,13,15,0.10) 78%),
    linear-gradient(180deg, rgba(12,13,15,0.22) 0%, rgba(12,13,15,0.08) 40%, rgba(12,13,15,0.82) 100%);
}

/* Signature / featured place — full-bleed editorial */
.page-tours .signature,
.page-stays .signature {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-tours .signature-media,
.page-stays .signature-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.page-tours .signature-media img,
.page-stays .signature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  transform: scale(1.04);
}
.page-tours .signature-shade,
.page-stays .signature-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,13,15,0.72) 0%, rgba(12,13,15,0.24) 56%, rgba(12,13,15,0.08) 78%),
    linear-gradient(180deg, rgba(12,13,15,0.18) 0%, rgba(12,13,15,0.06) 40%, rgba(12,13,15,0.78) 100%);
}
.page-tours .signature-content,
.page-stays .signature-content {
  position: relative;
  z-index: 2;
  width: min(760px, 92vw);
  padding: 0 0 9vh 7vw;
}
.page-tours .signature h2,
.page-stays .signature h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 12ch;
}
.page-tours .signature .essay-purpose,
.page-stays .signature .essay-purpose {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(236, 227, 213, 0.86);
  margin: 1.15rem 0 1.4rem;
  max-width: 28rem;
}
.page-tours .signature-content > p:not(.eyebrow):not(.essay-purpose):not(.hero-lead),
.page-stays .signature-content > p:not(.eyebrow):not(.essay-purpose):not(.hero-lead) {
  max-width: 32rem;
  color: rgba(236, 227, 213, 0.72);
  font-size: 1.02rem;
  line-height: 1.75;
}
.page-tours .signature .essay-cap,
.page-stays .signature .essay-cap {
  position: absolute;
  left: 7vw;
  top: 7.2rem;
  z-index: 2;
  margin: 0;
  padding: 0.65rem 0.95rem;
  background: rgba(12, 13, 15, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(236, 227, 213, 0.12);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
}

/* Essay split bands */
.page-tours .essay,
.page-transfers .essay,
.page-stays .essay,
.page-experiences .essay {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 82vh;
  background: var(--black);
}
.page-transfers .essay { min-height: 78vh; }
.page-tours .essay.is-flip,
.page-transfers .essay.is-flip,
.page-stays .essay.is-flip,
.page-experiences .essay.is-flip {
  grid-template-columns: 0.92fr 1.08fr;
}
.page-tours .essay.is-flip .essay-media,
.page-transfers .essay.is-flip .essay-media,
.page-stays .essay.is-flip .essay-media,
.page-experiences .essay.is-flip .essay-media { order: 2; }

.page-tours .essay-media,
.page-transfers .essay-media,
.page-stays .essay-media,
.page-experiences .essay-media {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
}
.page-tours .essay-media img,
.page-transfers .essay-media img,
.page-stays .essay-media img,
.page-experiences .essay-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  transform: scale(1.03);
  transition: transform 1.4s ease;
}
.page-tours .essay:hover .essay-media img,
.page-transfers .essay:hover .essay-media img,
.page-stays .essay:hover .essay-media img,
.page-experiences .essay:hover .essay-media img {
  transform: scale(1.08);
}
.page-tours .essay-shade,
.page-transfers .essay-shade,
.page-stays .essay-shade,
.page-experiences .essay-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,13,15,0.08) 28%, rgba(12,13,15,0.42) 100%),
    linear-gradient(90deg, rgba(12,13,15,0.18), rgba(12,13,15,0.04));
  pointer-events: none;
}
.page-tours .essay-cap,
.page-transfers .essay-cap,
.page-stays .essay-cap,
.page-experiences .essay-cap {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  margin: 0;
  padding: 0.65rem 0.95rem;
  background: rgba(12, 13, 15, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(236, 227, 213, 0.12);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
}
.page-tours .essay-copy,
.page-transfers .essay-copy,
.page-stays .essay-copy,
.page-experiences .essay-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6.4rem 7vw;
  background: var(--black);
}
.page-tours .essay-copy h2,
.page-transfers .essay-copy h2,
.page-stays .essay-copy h2,
.page-experiences .essay-copy h2 {
  font-size: clamp(2.3rem, 4.2vw, 3.8rem);
  max-width: 12ch;
  margin: 0 0 1.15rem;
}
.page-tours .essay-purpose,
.page-transfers .essay-purpose,
.page-stays .essay-purpose,
.page-experiences .essay-purpose {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(236, 227, 213, 0.82);
  margin: 0 0 1.45rem;
  max-width: 24rem;
}
.page-tours .essay-copy > p:not(.eyebrow):not(.essay-purpose),
.page-transfers .essay-copy > p:not(.eyebrow):not(.essay-purpose),
.page-stays .essay-copy > p:not(.eyebrow):not(.essay-purpose),
.page-experiences .essay-copy > p:not(.eyebrow):not(.essay-purpose) {
  max-width: 32rem;
  color: var(--steel);
  font-size: 1.02rem;
  line-height: 1.75;
}
.page-tours .essay-copy .hero-actions,
.page-transfers .essay-copy .hero-actions,
.page-stays .essay-copy .hero-actions,
.page-experiences .essay-copy .hero-actions {
  margin-top: 2.1rem;
}

/* Two-up magazine cards */
.page-tours .pair,
.page-stays .pair,
.page-experiences .pair {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  min-height: 86vh;
  background: var(--black);
}
.page-tours .pair-card,
.page-stays .pair-card,
.page-experiences .pair-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
}
.page-tours .pair-card img,
.page-stays .pair-card img,
.page-experiences .pair-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  transform: scale(1.04);
  transition: transform 1.2s ease;
}
.page-tours .pair-card:hover img,
.page-stays .pair-card:hover img,
.page-experiences .pair-card:hover img {
  transform: scale(1.1);
}
.page-tours .pair-shade,
.page-stays .pair-shade,
.page-experiences .pair-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,13,15,0.06) 28%, rgba(12,13,15,0.78) 100%);
}
.page-tours .pair-copy,
.page-stays .pair-copy,
.page-experiences .pair-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2rem 1.8rem 2.1rem;
  background: rgba(12, 13, 15, 0.24);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(236, 227, 213, 0.12);
}
.page-tours .pair-copy h3,
.page-stays .pair-copy h3,
.page-experiences .pair-copy h3 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  margin: 0 0 0.55rem;
}
.page-tours .pair-copy p,
.page-stays .pair-copy p,
.page-experiences .pair-copy p {
  max-width: 28rem;
  color: rgba(236, 227, 213, 0.72);
  font-size: 15px;
  line-height: 1.6;
}
.page-tours .pair-copy .cta,
.page-stays .pair-copy .cta,
.page-experiences .pair-copy .cta {
  margin-top: 1.15rem;
}
.page-tours .pair-copy .eyebrow,
.page-stays .pair-copy .eyebrow,
.page-experiences .pair-copy .eyebrow {
  margin-bottom: 0.7rem;
}

/* Destinations / live prices (no invented fares) */
.page-transfers .destinations {
  background: var(--black-2);
  padding: 8.5rem 7vw 7.5rem;
}
.page-transfers .destinations h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  max-width: 14ch;
  margin-bottom: 1.6rem;
}
.page-transfers .destinations .lead {
  color: rgba(236, 227, 213, 0.62);
}
.page-transfers .dest-list {
  list-style: none;
  padding: 0;
  margin: 4rem 0 0;
  max-width: 52rem;
  border-top: 1px solid var(--hairline);
}
.page-transfers .dest-list li {
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) 1fr;
  gap: 1.4rem 3rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid rgba(236, 227, 213, 0.1);
}
.page-transfers .dest-list strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.55rem;
  letter-spacing: -0.015em;
}
.page-transfers .dest-list span {
  color: var(--steel);
  font-size: 15px;
  align-self: center;
}
.page-transfers .destinations .hero-actions { margin-top: 2.6rem; }

/* Category / area index — magazine contents, not pills */
.page-experiences .index-wrap {
  background: var(--ivory);
  color: var(--black);
  padding: 0 7vw 8rem;
  margin-top: -1.5rem;
}
.page-experiences .index {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(12, 13, 15, 0.12);
}
.page-experiences .index li {
  border-bottom: 1px solid rgba(12, 13, 15, 0.12);
}
.page-experiences .index a {
  display: grid;
  grid-template-columns: 3.2rem minmax(10rem, 16rem) 1fr;
  gap: 1.2rem 2.4rem;
  align-items: baseline;
  padding: 1.35rem 0;
}
.page-experiences .index span {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--red);
}
.page-experiences .index strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  letter-spacing: -0.02em;
}
.page-experiences .index em {
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 15px;
  color: #5a564f;
  justify-self: end;
}
.page-experiences .index a:hover strong { color: var(--red); }

/* Explore by mood */
.page-experiences .moods {
  background: var(--black);
  padding: 8.5rem 7vw 7.5rem;
}
.page-experiences .moods h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  max-width: 12ch;
  margin-bottom: 1.2rem;
}
.page-experiences .moods > .lead {
  color: rgba(236, 227, 213, 0.62);
  margin-bottom: 3.6rem;
}
.page-experiences .mood-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--hairline);
}
.page-experiences .mood-list li {
  display: grid;
  grid-template-columns: minmax(12rem, 22rem) 1fr;
  gap: 1.5rem 4vw;
  align-items: baseline;
  padding: 2rem 0 2.05rem;
  border-bottom: 1px solid rgba(236, 227, 213, 0.1);
}
.page-experiences .mood-list strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -0.025em;
  line-height: 1;
}
.page-experiences .mood-list p {
  max-width: 28rem;
  color: var(--steel);
  font-size: 1.02rem;
}

/* Quiet partners */
.page-stays .operators .incoming {
  margin-top: 0.4rem;
}

/* The day — real-tour stills, two-column editorial grid */
.page-tours .the-day {
  background: var(--black);
  padding: 9rem 7vw 8rem;
}
.page-tours .the-day h2 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  max-width: 10ch;
  margin-bottom: 1.2rem;
}
.page-tours .the-day .lead {
  color: rgba(236, 227, 213, 0.62);
}
.page-tours .day-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 3.8rem;
}
.page-tours .day-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--black-2);
  aspect-ratio: 4 / 5;
}
.page-tours .day-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  transform: scale(1.02);
  transition: transform 1.1s ease;
}
.page-tours .day-grid figure:hover img {
  transform: scale(1.07);
}

/* Hub book band tweaks on verticals */
.page-tours .ecosystem .hero-actions,
.page-transfers .ecosystem .hero-actions {
  margin-top: 2.6rem;
}

@media (max-width: 1100px) {
  .page-transfers .dest-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .page-experiences .index a {
    grid-template-columns: 2.4rem 1fr;
  }
  .page-experiences .index em {
    grid-column: 2;
    justify-self: start;
  }
  .page-experiences .mood-list li {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 880px) {
  .page-tours .essay,
  .page-tours .essay.is-flip,
  .page-transfers .essay,
  .page-transfers .essay.is-flip,
  .page-stays .essay,
  .page-stays .essay.is-flip,
  .page-experiences .essay,
  .page-experiences .essay.is-flip {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .page-tours .essay.is-flip .essay-media,
  .page-transfers .essay.is-flip .essay-media,
  .page-stays .essay.is-flip .essay-media,
  .page-experiences .essay.is-flip .essay-media { order: 0; }
  .page-tours .essay-media,
  .page-transfers .essay-media,
  .page-stays .essay-media,
  .page-experiences .essay-media { min-height: 52vh; }
  .page-tours .essay-copy,
  .page-transfers .essay-copy,
  .page-stays .essay-copy,
  .page-experiences .essay-copy {
    padding: 3.4rem 1.4rem 4rem;
  }
  .page-tours .pair,
  .page-stays .pair,
  .page-experiences .pair {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .page-tours .pair-card,
  .page-stays .pair-card,
  .page-experiences .pair-card { min-height: 62vh; }
  .page-tours .the-day {
    padding: 5.2rem 1.4rem 4.6rem;
  }
  .page-tours .day-grid {
    gap: 0.45rem;
    margin-top: 2.4rem;
  }
  .page-tours .signature-content,
  .page-stays .signature-content {
    padding: 0 1.4rem 4.4rem;
  }
  .page-tours .signature .essay-cap,
  .page-stays .signature .essay-cap {
    left: 1.4rem;
    top: 5.6rem;
  }
  .page-transfers .destinations,
  .page-experiences .moods {
    padding: 5.2rem 1.4rem 4.6rem;
  }
  .page-experiences .index-wrap {
    padding: 0 1.4rem 4.6rem;
  }
}


/* Te Vaka Hub page — page-specific */
.page-hub .mega-col a[aria-current="page"] {
  color: var(--ivory);
}
.page-hub .mega-col a[aria-current="page"] em {
  color: rgba(236, 227, 213, 0.62);
}
.page-hub .header-cta[aria-current="page"] {
  color: var(--ivory);
  border-bottom-color: var(--ivory);
}
.page-hub .mobile-nav a[aria-current="page"] {
  color: var(--ivory);
}

.page-hub .hero,
.page-hub .hub-papa,
.page-hub .hub-do,
.page-hub .hub-booking,
.page-hub .hub-ops,
.page-hub .hub-ticket,
.page-hub .hub-planner,
.page-hub .finale {
  scroll-margin-top: 72px;
}

.page-hub .hero {
  align-items: center;
}
.page-hub .hero-media img {
  object-position: 46% 48%;
}
.page-hub .hero-shade {
  background:
    linear-gradient(90deg, rgba(12,13,15,0.78) 0%, rgba(12,13,15,0.38) 42%, rgba(12,13,15,0.22) 68%, rgba(12,13,15,0.40) 100%),
    linear-gradient(180deg, rgba(12,13,15,0.30) 0%, rgba(12,13,15,0.06) 36%, rgba(12,13,15,0.72) 100%);
}
.page-hub .hero-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4vw;
  padding: 10vh 7vw 8vh;
}
.page-hub .hero-content {
  width: auto;
  max-width: 34rem;
  padding: 0;
}
.page-hub .hero h1 {
  max-width: 10ch;
}
.page-hub .hub-coming {
  margin-top: 1.6rem;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(236, 227, 213, 0.46);
}

/* CSS device frame */
.page-hub .device-wrap {
  position: relative;
  flex: none;
  filter: drop-shadow(0 28px 48px rgba(8, 9, 11, 0.55));
}
.page-hub .device {
  width: 268px;
  height: 556px;
  padding: 9px;
  border-radius: 38px;
  background:
    linear-gradient(160deg, rgba(236,227,213,0.22), rgba(236,227,213,0.04) 38%, #14161a 52%, #0c0d0f);
  box-shadow:
    0 0 0 1px rgba(236, 227, 213, 0.16),
    inset 0 1px 0 rgba(236, 227, 213, 0.22);
}
.page-hub .device-screen {
  position: relative;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #0c0d0f;
  color: var(--ivory);
}
.page-hub .device-island {
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 4;
  width: 82px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 12px;
  background: #0c0d0f;
}
.page-hub .ph-status {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 0 18px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(236, 227, 213, 0.78);
}
.page-hub .ph-hero {
  position: relative;
  height: 196px;
  overflow: hidden;
}
.page-hub .ph-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 60%;
}
.page-hub .ph-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,13,15,0.18) 0%, rgba(12,13,15,0.08) 40%, rgba(12,13,15,0.82) 100%);
}
.page-hub .ph-kia,
.page-hub .ph-name {
  position: absolute;
  left: 16px;
  right: 16px;
  z-index: 2;
  margin: 0;
}
.page-hub .ph-kia {
  bottom: 46px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(236, 227, 213, 0.7);
}
.page-hub .ph-name {
  bottom: 16px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.page-hub .ph-body {
  padding: 1.05rem 1rem 1.4rem;
}
.page-hub .ph-ask-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.45rem;
}
.page-hub .ph-ask {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(236, 227, 213, 0.12);
}
.page-hub .ph-tonight {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.7rem;
}
.page-hub .ph-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(236, 227, 213, 0.08);
}
.page-hub .ph-row span {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: -0.01em;
}
.page-hub .ph-row em {
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  white-space: nowrap;
}
.page-hub .device-home {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 86px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 4px;
  background: rgba(236, 227, 213, 0.28);
}

/* Papa T */
.page-hub .hub-papa {
  background: var(--ivory);
  color: var(--black);
  padding: 9.5rem 7vw 8rem;
}
.page-hub .hub-papa-grid {
  display: grid;
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
  gap: 3vw 6vw;
  align-items: start;
}
.page-hub .hub-papa h2 {
  font-size: clamp(2.6rem, 5.1vw, 4.7rem);
  max-width: 14ch;
  margin-bottom: 2rem;
  color: var(--black);
}
.page-hub .hub-papa h2 em { color: var(--red); }
.page-hub .hub-papa .lead { color: #4a4743; }

.page-hub .hub-question {
  margin: 5.2rem 0 0;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(12, 13, 15, 0.12);
}
.page-hub .hub-question figcaption {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.2rem;
}
.page-hub .hub-question blockquote {
  margin: 0;
}
.page-hub .hub-question blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 18ch;
  color: var(--black);
}
.page-hub .hub-answer {
  max-width: 36rem;
  margin-top: 1.8rem;
  color: #4a4743;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* What you can do */
.page-hub .hub-do { background: var(--black); }
.page-hub .hub-do-head {
  padding: 5.2rem 7vw 2.2rem;
}
.page-hub .hub-do-head h2 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  max-width: 14ch;
}
.page-hub .hub-do-photos {
  display: flex;
  height: 72vh;
  min-height: 560px;
}
.page-hub .hub-chapter {
  position: relative;
  flex: 1 1 33%;
  overflow: hidden;
  isolation: isolate;
  transition: flex 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.page-hub .hub-chapter:hover,
.page-hub .hub-chapter:focus-visible { flex: 1.45 1 40%; }
.page-hub .hub-chapter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  transform: scale(1.04);
  transition: transform 1.1s ease;
}
.page-hub .hub-chapter:hover img { transform: scale(1.1); }
.page-hub .hub-chapter-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,13,15,0.08) 20%, rgba(12,13,15,0.78) 100%);
}
.page-hub .hub-chapter-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.4rem 1.7rem;
  background: rgba(12, 13, 15, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(236, 227, 213, 0.12);
}
.page-hub .hub-chapter-cap span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.2vw, 2.3rem);
  letter-spacing: -0.01em;
}
.page-hub .hub-chapter-cap p {
  margin-top: 0.4rem;
  color: rgba(236, 227, 213, 0.74);
  font-size: 13px;
  line-height: 1.5;
}

.page-hub .hub-do-type {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0 7vw;
  border-top: 1px solid var(--hairline);
  background: var(--black);
}
.page-hub .hub-type {
  padding: 2.4rem 1.8rem 2.6rem 0;
  border-right: 1px solid rgba(236, 227, 213, 0.08);
}
.page-hub .hub-type:last-child {
  border-right: 0;
  padding-right: 0;
}
.page-hub .hub-type:not(:first-child) {
  padding-left: 1.8rem;
}
.page-hub .hub-type .eyebrow { margin-bottom: 1rem; color: var(--red); }
.page-hub .hub-type h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin-bottom: 0.7rem;
}
.page-hub .hub-type p {
  max-width: 22rem;
  color: var(--steel);
  font-size: 15px;
  line-height: 1.6;
}

/* How booking works */
.page-hub .hub-booking {
  background: var(--black-2);
  padding: 9rem 7vw 8rem;
}
.page-hub .hub-booking h2 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  max-width: 14ch;
  margin-bottom: 1.8rem;
}
.page-hub .hub-booking .lead { color: rgba(236, 227, 213, 0.62); }
.page-hub .hub-steps {
  list-style: none;
  padding: 0;
  margin: 4.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.page-hub .hub-steps li {
  padding: 1.8rem 1.6rem 0 0;
  border-right: 1px solid rgba(236, 227, 213, 0.08);
}
.page-hub .hub-steps li:last-child { border-right: 0; padding-right: 0; }
.page-hub .hub-steps li:not(:first-child) { padding-left: 1.8rem; }
.page-hub .hub-steps span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 1.1rem;
}
.page-hub .hub-steps strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  letter-spacing: -0.015em;
}
.page-hub .hub-steps em {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 13px;
  line-height: 1.55;
  color: var(--steel);
}

/* Operators hosted in Hub */
.page-hub .hub-ops {
  background: var(--black);
  padding: 8.5rem 7vw 7rem;
}
.page-hub .hub-ops-head { margin-bottom: 3.2rem; }
.page-hub .hub-ops-head h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.3rem);
  max-width: 16ch;
  margin-bottom: 1.5rem;
}
.page-hub .hub-ops-head .lead { color: rgba(236, 227, 213, 0.62); }

/* Digital ticket */
.page-hub .hub-ticket {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 6vw;
  align-items: center;
  background: var(--black-2);
  padding: 8.5rem 7vw;
}
.page-hub .hub-ticket h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  max-width: 12ch;
  margin-bottom: 1.6rem;
}
.page-hub .hub-ticket .lead { color: rgba(236, 227, 213, 0.62); }

.page-hub .ticket-card {
  background: var(--glass);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid var(--hairline);
  overflow: hidden;
  max-width: 420px;
  justify-self: end;
  width: 100%;
}
.page-hub .ticket-photo {
  height: 148px;
  overflow: hidden;
}
.page-hub .ticket-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% 52%;
  filter: saturate(0.9);
}
.page-hub .ticket-body { padding: 1.5rem 1.55rem 1.6rem; }
.page-hub .ticket-kicker {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.7rem;
}
.page-hub .ticket-card h3 {
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  margin-bottom: 0.55rem;
}
.page-hub .ticket-meta {
  color: rgba(236, 227, 213, 0.68);
  font-size: 14px;
  line-height: 1.55;
}
.page-hub .ticket-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(236, 227, 213, 0.12);
}
.page-hub .ticket-qr {
  display: grid;
  grid-template-columns: repeat(8, 7px);
  grid-template-rows: repeat(4, 7px);
  gap: 2px;
}
.page-hub .ticket-qr span {
  background: rgba(236, 227, 213, 0.14);
}
.page-hub .ticket-qr span.on {
  background: var(--ivory);
}
.page-hub .ticket-code {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(236, 227, 213, 0.7);
}

/* Group planner — one quiet beat */
.page-hub .hub-planner {
  background: var(--ivory);
  color: var(--black);
  padding: 8.2rem 7vw 8.4rem;
}
.page-hub .hub-planner h2 {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  max-width: 16ch;
  margin-bottom: 1.5rem;
}
.page-hub .hub-planner h2 em { color: var(--red); }
.page-hub .hub-planner .lead { color: #4a4743; }

.page-hub .finale-media img {
  object-position: 46% 48%;
}

@media (max-width: 1100px) {
  .page-hub .hub-do-type,
  .page-hub .hub-steps {
    grid-template-columns: 1fr;
  }
  .page-hub .hub-type,
  .page-hub .hub-type:last-child,
  .page-hub .hub-type:not(:first-child),
  .page-hub .hub-steps li,
  .page-hub .hub-steps li:last-child,
  .page-hub .hub-steps li:not(:first-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(236, 227, 213, 0.08);
    padding: 1.5rem 0;
  }
  .page-hub .hub-ticket {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .page-hub .ticket-card { justify-self: start; }
}

@media (max-width: 880px) {
  .page-hub .hero-stage {
    grid-template-columns: 1fr;
    padding: 7.4rem 1.4rem 3.2rem;
    gap: 2.4rem;
  }
  .page-hub .device-wrap { display: none; }
  .page-hub .hub-papa,
  .page-hub .hub-booking,
  .page-hub .hub-ops,
  .page-hub .hub-ticket,
  .page-hub .hub-planner {
    padding: 5.2rem 1.4rem 4.6rem;
  }
  .page-hub .hub-papa-grid { grid-template-columns: 1fr; gap: 0.4rem; }
  .page-hub .hub-do-head { padding: 4.4rem 1.4rem 1.6rem; }
  .page-hub .hub-do-photos {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }
  .page-hub .hub-chapter { min-height: 46vh; flex: none !important; }
  .page-hub .hub-do-type { padding: 0 1.4rem; }
  .page-hub .hub-question { margin-top: 3rem; }
}

@media (max-width: 420px) {
  .page-hub .hero h1 { font-size: 2.7rem; }
}


/* =================================================================
   Remaining pages — Operators · About · Contact · Discover
   Append-only. Scoped to .page-operators / .page-about /
   .page-contact / .page-discover
   ================================================================= */

.page-operators .nav-link[aria-current="page"],
.page-about .nav-link[aria-current="page"],
.page-discover .nav-link[aria-current="page"] {
  color: var(--ivory);
  box-shadow: inset 0 -1px 0 rgba(236, 227, 213, 0.42);
}
.page-operators .mega-col a[aria-current="page"],
.page-about .mega-col a[aria-current="page"],
.page-discover .mega-col a[aria-current="page"],
.page-contact .footer-nav a[aria-current="page"] {
  color: var(--ivory);
}
.page-operators .mega-col a[aria-current="page"] em,
.page-about .mega-col a[aria-current="page"] em,
.page-discover .mega-col a[aria-current="page"] em {
  color: rgba(236, 227, 213, 0.62);
}
.page-operators .mobile-nav a[aria-current="page"],
.page-about .mobile-nav a[aria-current="page"],
.page-discover .mobile-nav a[aria-current="page"],
.page-operators .footer-nav a[aria-current="page"],
.page-about .footer-nav a[aria-current="page"],
.page-discover .footer-nav a[aria-current="page"] {
  color: var(--ivory);
}

.page-operators .intro,
.page-operators .essay,
.page-operators .studio,
.page-operators .ecosystem,
.page-operators .about,
.page-operators .finale,
.page-about .intro,
.page-about .essay,
.page-about .name,
.page-about .about,
.page-about .finale,
.page-contact .enquire,
.page-discover .intro,
.page-discover .signature,
.page-discover .guides,
.page-discover .finale {
  scroll-margin-top: 72px;
}

/* —— Operators / partner pages —— */
.page-operators .hero-media img {
  object-position: 58% 42%;
  animation: none;
  transform: scale(1.05);
}
.page-operators .hero-shade {
  background:
    linear-gradient(90deg, rgba(12,13,15,0.76) 0%, rgba(12,13,15,0.32) 48%, rgba(12,13,15,0.12) 74%),
    linear-gradient(180deg, rgba(12,13,15,0.30) 0%, rgba(12,13,15,0.08) 38%, rgba(12,13,15,0.80) 100%);
}
.page-operators .hero h1 { max-width: 13ch; }
.page-operators .finale-media img { object-position: 46% 48%; }

.page-operators.is-kuber .hero-media img {
  object-position: 42% 48%;
  transform: scale(1.08);
}
.page-operators.is-kuber .hero-shade {
  background:
    linear-gradient(90deg, rgba(12,13,15,0.74) 0%, rgba(12,13,15,0.28) 50%, rgba(12,13,15,0.16) 78%),
    linear-gradient(180deg, rgba(12,13,15,0.28) 0%, rgba(12,13,15,0.06) 42%, rgba(12,13,15,0.78) 100%);
}
.page-operators.is-kuber .hero h1 { max-width: 12ch; }

.page-operators.is-matangi .hero-media img {
  object-position: 48% 58%;
  transform: scale(1.06);
}
.page-operators.is-matangi .hero-shade {
  background:
    linear-gradient(90deg, rgba(12,13,15,0.78) 0%, rgba(12,13,15,0.36) 46%, rgba(12,13,15,0.14) 74%),
    linear-gradient(180deg, rgba(12,13,15,0.32) 0%, rgba(12,13,15,0.08) 40%, rgba(12,13,15,0.84) 100%);
}
.page-operators.is-matangi .hero h1 { max-width: 12ch; }

.page-operators .essay {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 88vh;
  background: var(--black);
}
.page-operators .essay.is-flip {
  grid-template-columns: 0.88fr 1.12fr;
}
.page-operators .essay.is-flip .essay-media { order: 2; }
.page-operators .essay-media {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
}
.page-operators .essay-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  transform: scale(1.03);
  transition: transform 1.4s ease;
}
.page-operators .essay:hover .essay-media img { transform: scale(1.08); }
.page-operators .essay-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,13,15,0.08) 28%, rgba(12,13,15,0.42) 100%),
    linear-gradient(90deg, rgba(12,13,15,0.18), rgba(12,13,15,0.04));
  pointer-events: none;
}
.page-operators .essay-cap {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  margin: 0;
  padding: 0.65rem 0.95rem;
  background: rgba(12, 13, 15, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(236, 227, 213, 0.12);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
}
.page-operators .essay-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 7vw;
  background: var(--black);
}
.page-operators .essay-copy h2 {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  max-width: 12ch;
  margin: 0 0 1.15rem;
}
.page-operators .essay-purpose {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(236, 227, 213, 0.82);
  margin: 0 0 1.45rem;
  max-width: 22rem;
}
.page-operators .essay-copy > p:not(.eyebrow):not(.essay-purpose) {
  max-width: 32rem;
  color: var(--steel);
  font-size: 1.02rem;
  line-height: 1.75;
}
.page-operators .essay-copy .hero-actions { margin-top: 2.1rem; }

/* Studio cutout — black field only, never over photography */
.page-operators .studio {
  background: #0c0d0f;
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 7vw 4.6rem;
  text-align: center;
}
.page-operators .studio img {
  width: min(640px, 78vw);
  height: auto;
  margin: 0 auto 1.8rem;
}
.page-operators .studio p {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--steel);
}

.page-operators .services {
  background: var(--black-2);
  padding: 8.5rem 7vw 7.5rem;
}
.page-operators .services h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  max-width: 14ch;
  margin-bottom: 1.6rem;
}
.page-operators .services .lead { color: rgba(236, 227, 213, 0.62); }
.page-operators .svc-list {
  list-style: none;
  padding: 0;
  margin: 4rem 0 0;
  max-width: 52rem;
  border-top: 1px solid var(--hairline);
}
.page-operators .svc-list li {
  display: grid;
  grid-template-columns: minmax(10rem, 18rem) 1fr;
  gap: 1.4rem 3rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid rgba(236, 227, 213, 0.1);
}
.page-operators .svc-list strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.55rem;
  letter-spacing: -0.015em;
}
.page-operators .svc-list span {
  color: var(--steel);
  font-size: 15px;
  align-self: center;
}

.page-operators .ecosystem .hero-actions { margin-top: 2.6rem; }

/* —— About —— */
.page-about .hero-media img {
  object-position: 38% 58%;
  animation: none;
  transform: scale(1.04);
}
.page-about .hero-shade {
  background:
    linear-gradient(90deg, rgba(12,13,15,0.74) 0%, rgba(12,13,15,0.28) 50%, rgba(12,13,15,0.10) 76%),
    linear-gradient(180deg, rgba(12,13,15,0.26) 0%, rgba(12,13,15,0.06) 40%, rgba(12,13,15,0.80) 100%);
}
.page-about .hero h1 { max-width: 12ch; }
.page-about .finale-media img { object-position: 62% 28%; }

.page-about .essay {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 88vh;
  background: var(--black);
}
.page-about .essay.is-flip { grid-template-columns: 0.92fr 1.08fr; }
.page-about .essay.is-flip .essay-media { order: 2; }
.page-about .essay-media {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
}
.page-about .essay-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  transform: scale(1.03);
  transition: transform 1.4s ease;
}
.page-about .essay:hover .essay-media img { transform: scale(1.08); }
.page-about .essay-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,13,15,0.08) 28%, rgba(12,13,15,0.42) 100%),
    linear-gradient(90deg, rgba(12,13,15,0.18), rgba(12,13,15,0.04));
  pointer-events: none;
}
.page-about .essay-cap {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  margin: 0;
  padding: 0.65rem 0.95rem;
  background: rgba(12, 13, 15, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(236, 227, 213, 0.12);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
}
.page-about .essay-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 7vw;
  background: var(--black);
}
.page-about .essay-copy h2 {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  max-width: 13ch;
  margin: 0 0 1.15rem;
}
.page-about .essay-purpose {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(236, 227, 213, 0.82);
  margin: 0 0 1.45rem;
  max-width: 24rem;
}
.page-about .essay-copy > p:not(.eyebrow):not(.essay-purpose) {
  max-width: 32rem;
  color: var(--steel);
  font-size: 1.02rem;
  line-height: 1.75;
}

.page-about .name {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-about .name-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.page-about .name-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 48% 52%);
  transform: scale(1.04);
}
.page-about .name-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,13,15,0.78) 0%, rgba(12,13,15,0.30) 54%, rgba(12,13,15,0.10) 78%),
    linear-gradient(180deg, rgba(12,13,15,0.22) 0%, rgba(12,13,15,0.08) 40%, rgba(12,13,15,0.82) 100%);
}
.page-about .name-content {
  position: relative;
  z-index: 2;
  width: min(760px, 92vw);
  padding: 0 0 9vh 7vw;
}
.page-about .name h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 12ch;
}
.page-about .name .essay-purpose {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(236, 227, 213, 0.86);
  margin: 1.15rem 0 1.4rem;
  max-width: 28rem;
}
.page-about .name-content > p:not(.eyebrow):not(.essay-purpose) {
  max-width: 32rem;
  color: rgba(236, 227, 213, 0.72);
  font-size: 1.02rem;
  line-height: 1.75;
}
.page-about .name .essay-cap {
  position: absolute;
  left: 7vw;
  top: 7.2rem;
  z-index: 2;
  margin: 0;
  padding: 0.65rem 0.95rem;
  background: rgba(12, 13, 15, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(236, 227, 213, 0.12);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
}

.page-about .value-list {
  list-style: none;
  padding: 0;
  margin: 4.2rem 0 0;
  max-width: 46rem;
}
.page-about .value-list li {
  padding: 1.7rem 0 1.75rem;
  border-top: 1px solid rgba(12, 13, 15, 0.12);
}
.page-about .value-list li:last-child {
  border-bottom: 1px solid rgba(12, 13, 15, 0.12);
}
.page-about .value-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.page-about .value-list p {
  margin-top: 0.55rem;
  max-width: 34rem;
  color: #4a4743;
  font-size: 1.02rem;
}

/* —— Contact —— */
.page-contact .hero {
  min-height: 100vh;
  min-height: 100svh;
}
.page-contact .hero-media img {
  object-position: 42% 48%;
  animation: none;
  transform: scale(1.04);
}
.page-contact .hero-shade {
  background:
    linear-gradient(90deg, rgba(12,13,15,0.70) 0%, rgba(12,13,15,0.24) 52%, rgba(12,13,15,0.08) 78%),
    linear-gradient(180deg, rgba(12,13,15,0.24) 0%, rgba(12,13,15,0.04) 42%, rgba(12,13,15,0.76) 100%);
}
.page-contact .hero h1 { max-width: 10ch; }

.page-contact .enquire {
  background: var(--ivory);
  color: var(--black);
  padding: 7.5rem 7vw 8rem;
}
.page-contact .enquire-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 5vw 8vw;
  align-items: start;
}
.page-contact .enquire h2 {
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  max-width: 12ch;
  margin-bottom: 1.5rem;
}
.page-contact .enquire h2 em { color: var(--red); }
.page-contact .enquire .lead { color: #4a4743; }
.page-contact .enquire-meta {
  margin-top: 2.4rem;
}
.page-contact .enquire-meta p,
.page-contact .enquire-meta a {
  color: #4a4743;
  font-size: 15px;
}
.page-contact .enquire-meta a {
  display: inline-block;
  margin-top: 0.35rem;
  border-bottom: 1px solid rgba(154, 28, 31, 0.35);
  padding-bottom: 2px;
}
.page-contact .enquire-meta a:hover { color: var(--red); border-bottom-color: var(--red); }
.page-contact .enquire-socials {
  margin-top: 1.6rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}

.page-contact .kinds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
  margin: 0 0 2rem;
}
.page-contact .kinds label {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 42px;
  padding: 0 1.05rem;
  border: 1px solid rgba(12, 13, 15, 0.16);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3a3834;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.page-contact .kinds input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.page-contact .kinds label:has(input:checked),
.page-contact .kinds label:hover {
  border-color: var(--black);
  color: var(--black);
  background: rgba(12, 13, 15, 0.04);
}

.page-contact .field {
  display: block;
  margin-bottom: 1.55rem;
}
.page-contact .field span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.55rem;
}
.page-contact .field input,
.page-contact .field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(12, 13, 15, 0.16);
  border-radius: 0;
  padding: 0.55rem 0 0.7rem;
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--black);
  outline: none;
}
.page-contact .field textarea {
  min-height: 8.5rem;
  resize: vertical;
  line-height: 1.6;
}
.page-contact .field input:focus,
.page-contact .field textarea:focus {
  border-bottom-color: var(--black);
}
.page-contact .field input::placeholder,
.page-contact .field textarea::placeholder {
  color: rgba(12, 13, 15, 0.32);
}
.page-contact .form-actions { margin-top: 2.2rem; }
.page-contact .cta.solid {
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--ivory);
}
.page-contact .cta.solid:hover { background: #1a1c20; }
.page-contact .form-note {
  margin-top: 1.1rem;
  font-size: 13px;
  color: #6a6660;
}

/* —— Discover —— */
.page-discover .hero-media img {
  object-position: 62% 42%;
  animation: none;
  transform: scale(1.04);
}
.page-discover .hero-shade {
  background:
    linear-gradient(90deg, rgba(12,13,15,0.74) 0%, rgba(12,13,15,0.28) 50%, rgba(12,13,15,0.10) 76%),
    linear-gradient(180deg, rgba(12,13,15,0.26) 0%, rgba(12,13,15,0.06) 40%, rgba(12,13,15,0.80) 100%);
}
.page-discover .hero h1 { max-width: 12ch; }
.page-discover .finale-media img { object-position: 48% 52%; }

.page-discover .signature {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-discover .signature-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.page-discover .signature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, 50% 50%);
  transform: scale(1.04);
}
.page-discover .signature-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,13,15,0.76) 0%, rgba(12,13,15,0.26) 54%, rgba(12,13,15,0.10) 78%),
    linear-gradient(180deg, rgba(12,13,15,0.20) 0%, rgba(12,13,15,0.06) 40%, rgba(12,13,15,0.80) 100%);
}
.page-discover .signature-content {
  position: relative;
  z-index: 2;
  width: min(760px, 92vw);
  padding: 0 0 9vh 7vw;
}
.page-discover .signature h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 13ch;
}
.page-discover .signature .essay-purpose {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(236, 227, 213, 0.86);
  margin: 1.15rem 0 1.4rem;
  max-width: 28rem;
}
.page-discover .signature-content > p:not(.eyebrow):not(.essay-purpose) {
  max-width: 32rem;
  color: rgba(236, 227, 213, 0.72);
  font-size: 1.02rem;
  line-height: 1.75;
}
.page-discover .signature .essay-cap {
  position: absolute;
  left: 7vw;
  top: 7.2rem;
  z-index: 2;
  margin: 0;
  padding: 0.65rem 0.95rem;
  background: rgba(12, 13, 15, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(236, 227, 213, 0.12);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
}

.page-discover .guides {
  background: var(--ivory);
  color: var(--black);
  padding: 8.5rem 7vw 8rem;
}
.page-discover .guides h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  max-width: 12ch;
  margin-bottom: 1.2rem;
}
.page-discover .guides h2 em { color: var(--red); }
.page-discover .guides > .lead {
  color: #4a4743;
  margin-bottom: 3.6rem;
}
.page-discover .guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(12, 13, 15, 0.12);
}
.page-discover .guide-list li {
  border-bottom: 1px solid rgba(12, 13, 15, 0.12);
}
.page-discover .guide-list a {
  display: grid;
  grid-template-columns: 3.2rem 1fr auto;
  gap: 1.2rem 2rem;
  align-items: baseline;
  padding: 1.45rem 0;
}
.page-discover .guide-list span {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--red);
}
.page-discover .guide-list strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.page-discover .guide-list em {
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 1.15rem;
  color: rgba(12, 13, 15, 0.32);
  transition: color 0.3s ease, transform 0.3s ease;
}
.page-discover .guide-list a:hover strong { color: var(--red); }
.page-discover .guide-list a:hover em { color: var(--black); transform: translateX(4px); }

@media (max-width: 1100px) {
  .page-operators .svc-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .page-contact .enquire-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 880px) {
  .page-operators .essay,
  .page-operators .essay.is-flip,
  .page-about .essay,
  .page-about .essay.is-flip {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .page-operators .essay.is-flip .essay-media,
  .page-about .essay.is-flip .essay-media { order: 0; }
  .page-operators .essay-media,
  .page-about .essay-media { min-height: 52vh; }
  .page-operators .essay-copy,
  .page-about .essay-copy {
    padding: 3.4rem 1.4rem 4rem;
  }
  .page-operators .studio,
  .page-operators .services,
  .page-about .name-content,
  .page-contact .enquire,
  .page-discover .guides,
  .page-discover .signature-content {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }
  .page-about .name-content,
  .page-discover .signature-content {
    padding: 0 1.4rem 4.4rem;
  }
  .page-about .name .essay-cap,
  .page-discover .signature .essay-cap {
    left: 1.4rem;
    top: 5.6rem;
  }
  .page-operators .services,
  .page-discover .guides,
  .page-contact .enquire {
    padding-top: 5.2rem;
    padding-bottom: 4.6rem;
  }
  .page-discover .guide-list a {
    grid-template-columns: 2.4rem 1fr auto;
    gap: 0.8rem 1.2rem;
  }
  .page-about .value-list { margin-top: 2.6rem; }
}
