:root {
  --ink: #17221d;
  --muted: #59645f;
  --paper: #f4f1ea;
  --paper-2: #fbfaf6;
  --line: #d8d0c2;
  --green: #23392f;
  --green-2: #10231c;
  --red: #b34534;
  --blue: #245b77;
  --gold: #b08b55;
  --white: #fff;
  --shadow: 0 18px 45px rgba(23, 34, 29, 0.12);
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans Arabic", "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.75;
  text-align: right;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  inset-block-start: 10px;
  inset-inline-end: 10px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 80px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(244, 241, 234, 0.92);
  border-bottom: 1px solid rgba(216, 208, 194, 0.75);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-ar {
  font-size: 35px;
  font-weight: 800;
}

.brand-en {
  margin-top: 6px;
  direction: ltr;
  font-size: 12px;
  color: var(--muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--muted);
  font-size: 15px;
}

.site-nav a,
.footer-links a {
  border-bottom: 1px solid transparent;
  padding-block: 5px;
}

.site-nav a:hover,
.site-nav a:focus,
.footer-links a:hover,
.footer-links a:focus {
  color: var(--ink);
  border-color: var(--red);
}

.header-cta,
.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 750;
  cursor: pointer;
}

.header-cta,
.button {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.ghost-button {
  background: transparent;
  color: var(--ink);
}

.button:hover,
.button:focus,
.header-cta:hover,
.header-cta:focus {
  background: #973826;
  border-color: #973826;
}

.ghost-button:hover,
.ghost-button:focus {
  background: rgba(23, 34, 29, 0.06);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  padding: 12px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
}

.page {
  overflow: hidden;
}

.section {
  padding: clamp(64px, 8vw, 120px) clamp(18px, 4vw, 56px);
}

.section.alt {
  background: var(--paper-2);
}

.section.dark {
  background: var(--green-2);
  color: var(--paper-2);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-weight: 800;
}

.section-title {
  margin: 0;
  max-width: 820px;
  font-size: clamp(34px, 6vw, 80px);
  line-height: 1.05;
  font-weight: 900;
}

.section-lede {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.dark .section-lede,
.dark .muted {
  color: rgba(244, 241, 234, 0.76);
}

.hero {
  min-height: calc(100svh - 80px);
  display: grid;
  align-items: end;
  padding: clamp(18px, 3vw, 40px);
  background:
    linear-gradient(180deg, rgba(16, 35, 28, 0.04) 0%, rgba(16, 35, 28, 0.42) 50%, rgba(16, 35, 28, 0.74) 100%),
    url("/assets/china-contact-sheet.png");
  background-size: 300% 200%;
  background-position: right top;
  color: var(--white);
}

.hero-content {
  width: min(900px, 100%);
  padding-block: clamp(120px, 18vh, 230px) 54px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 9vw, 118px);
  line-height: 0.96;
  font-weight: 950;
}

.hero p {
  max-width: 690px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2.2vw, 26px);
}

.hero-actions,
.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.hero .ghost-button {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.intro-strip {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 36px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.intro-strip p {
  margin: 0;
  color: var(--muted);
}

.journey-tabs {
  display: flex;
  gap: 28px;
  margin: 40px 0 34px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.tab {
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  padding: 6px 0;
  color: var(--muted);
  white-space: nowrap;
  cursor: pointer;
}

.tab.active {
  color: var(--ink);
  border-color: var(--red);
  font-weight: 850;
}

.photo-grid,
.city-grid,
.story-grid {
  display: grid;
  gap: 28px;
}

.photo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-card {
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: var(--green);
  color: var(--white);
}

.media-card::before,
.photo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.62) 100%),
    var(--image);
  background-image: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.62) 100%), url("/assets/china-contact-sheet.png");
  background-size: 300% 200%;
  background-position: var(--pos, right top);
  transition: transform 600ms ease;
}

.media-card:hover::before,
.photo-panel:hover::before {
  transform: scale(1.035);
}

.media-card-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 28px;
}

.media-card h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.15;
}

.media-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

.numbered {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.numbered article {
  padding: 28px;
  border-inline-start: 1px solid var(--line);
}

.numbered strong {
  color: var(--red);
  font-size: 14px;
}

.numbered h3,
.split h2,
.detail-block h3,
.article-list h3 {
  margin: 10px 0;
  line-height: 1.25;
}

.photo-panel {
  min-height: 440px;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.split-text p {
  color: var(--muted);
}

.principles {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.principle {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.city-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
}

.city-card,
.text-card,
.form-card {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.city-card {
  padding: 22px;
  min-height: 220px;
}

.city-card h3,
.text-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
}

.city-card p,
.text-card p,
.form-card p {
  color: var(--muted);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chip,
.select-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-size: 14px;
}

.select-chip {
  cursor: pointer;
}

.select-chip.selected {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.experience-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  margin-top: 44px;
}

.experience-column {
  display: grid;
  gap: 30px;
}

.wide-story {
  min-height: 560px;
}

.story-grid {
  grid-template-columns: 7fr 5fr;
  margin-top: 40px;
  align-items: start;
}

.story-main .photo-panel {
  min-height: 520px;
}

.story-side {
  display: grid;
  gap: 28px;
}

.story-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: center;
  border-top: 1px solid rgba(216, 208, 194, 0.5);
  padding-top: 24px;
}

.story-row .photo-panel {
  min-height: 220px;
}

.story-main h3,
.story-row h3 {
  margin: 18px 0 8px;
  line-height: 1.2;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.text-card {
  padding: 26px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: end;
  padding-top: 80px;
}

.detail-hero .photo-panel {
  min-height: 520px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.fact {
  border-top: 2px solid var(--red);
  padding-top: 12px;
}

.fact strong {
  display: block;
  font-size: 22px;
}

.content-rail {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 44px;
}

.rail {
  position: sticky;
  top: 110px;
  align-self: start;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.article-list {
  display: grid;
  gap: 22px;
}

.article-item,
.timeline-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.timeline-day {
  color: var(--red);
  font-size: 34px;
  font-weight: 900;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: start;
}

.form-card {
  padding: clamp(22px, 4vw, 38px);
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field label {
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  padding: 14px 16px;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.message-preview {
  min-height: 360px;
  white-space: pre-wrap;
  direction: rtl;
}

.status-note {
  border-right: 4px solid var(--gold);
  padding: 12px 16px;
  background: rgba(176, 139, 85, 0.12);
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  padding: 56px clamp(18px, 4vw, 56px) 88px;
  background: #0d1713;
  color: var(--paper-2);
}

.site-footer p {
  max-width: 620px;
  color: rgba(244, 241, 234, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-content: start;
}

.fineprint {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
}

.mobile-action {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.open {
    position: fixed;
    inset: 80px 0 auto;
    display: grid;
    gap: 0;
    justify-content: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open a {
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 82svh;
  }

  .intro-strip,
  .split,
  .split.reverse,
  .detail-hero,
  .content-rail,
  .form-shell,
  .site-footer,
  .story-grid,
  .experience-layout {
    grid-template-columns: 1fr;
  }

  .photo-grid,
  .city-grid,
  .numbered,
  .trust-row,
  .facts {
    grid-template-columns: 1fr 1fr;
  }

  .rail {
    position: static;
  }

  .mobile-action {
    position: fixed;
    z-index: 40;
    inset-inline: 14px;
    inset-block-end: 14px;
    display: block;
  }

  .mobile-action a {
    display: flex;
    justify-content: center;
    min-height: 52px;
    padding: 13px;
    border-radius: 6px;
    background: var(--red);
    color: var(--white);
    font-weight: 850;
    box-shadow: var(--shadow);
  }

  body {
    padding-bottom: 74px;
  }
}

@media (max-width: 640px) {
  .brand-ar {
    font-size: 29px;
  }

  .section {
    padding-block: 56px;
  }

  .photo-grid,
  .city-grid,
  .numbered,
  .trust-row,
  .facts {
    grid-template-columns: 1fr;
  }

  .media-card,
  .wide-story,
  .story-main .photo-panel,
  .detail-hero .photo-panel {
    min-height: 380px;
  }

  .story-row,
  .article-item,
  .timeline-row {
    grid-template-columns: 1fr;
  }

  .photo-panel {
    min-height: 330px;
  }

  .hero-content {
    padding-block-end: 36px;
  }
}

/* Journey detail uses its own information hierarchy, rather than the home-card layout. */
.journey-intro { padding-top:clamp(72px,10vw,150px); padding-bottom:0; background:#fff; }
.journey-intro__head { text-align:center; }
.journey-intro__head .micro-title { color:var(--red); }
.journey-intro__head .display-title { margin-inline:auto; max-width:1100px; }
.journey-intro__lede { max-width:730px; margin:27px auto 0; color:#4d4d4d; font-size:19px; }
.journey-specs { max-width:900px; margin:54px auto 66px; display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.journey-specs div { border-top:2px solid #d3d3d3; padding-top:14px; }
.journey-specs span { display:block; color:var(--red); font-size:13px; font-weight:900; margin-bottom:9px; }
.journey-specs b { display:block; font-size:18px; line-height:1.35; }
.journey-intro__image { width:min(1500px,100%); min-height:620px; margin:0 auto; background:var(--journey-photo) center/cover no-repeat; }
.journey-story { background:#f6f6f5; }
.journey-story__grid { display:grid; grid-template-columns:.5fr 1.25fr; gap:clamp(45px,9vw,150px); align-items:start; }
.journey-story aside { position:sticky; top:30px; border-top:2px solid #111; padding-top:18px; color:#4f4f4f; }
.journey-story aside .editorial-link { color:#111; font-size:14px; }
.journey-story .display-title { font-size:clamp(36px,5vw,70px); }
.journey-days { margin-top:35px; border-top:1px solid #bbb; }
.journey-days article { display:grid; grid-template-columns:100px 1fr; gap:22px; padding:28px 0; border-bottom:1px solid #c8c8c8; }
.journey-days article > b { color:var(--red); font-size:17px; }
.journey-days h3 { margin:0; font-size:25px; line-height:1.15; }
.journey-days p { margin:9px 0 0; color:#4b4b4b; font-size:16px; }
.journey-guardrails { background:#fff; }
.guardrail-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:2px solid #111; margin-top:35px; }
.guardrail-grid article { padding:27px; min-height:230px; border-inline-start:1px solid #c9c9c9; }
.guardrail-grid article:first-child { border-inline-start:0; }
.guardrail-grid b { color:var(--red); font-size:13px; }
.guardrail-grid h3 { font-size:25px; margin:15px 0 9px; line-height:1.1; }
.guardrail-grid p { color:#4b4b4b; margin:0; }

@media (max-width:980px) {
  .journey-story__grid { grid-template-columns:1fr; }
  .journey-story aside { position:static; }
}
@media (max-width:640px) {
  .journey-intro { padding-inline:0; }
  .journey-intro__head { padding-inline:20px; }
  .journey-intro__lede { font-size:17px; }
  .journey-specs { grid-template-columns:1fr; gap:17px; margin:37px auto 40px; text-align:right; }
  .journey-intro__image { min-height:410px; }
  .journey-days article { grid-template-columns:65px 1fr; gap:13px; }
  .journey-days h3 { font-size:22px; }
  .guardrail-grid { grid-template-columns:1fr; }
  .guardrail-grid article, .guardrail-grid article:first-child { border-inline-start:0; border-bottom:1px solid #ccc; padding-inline:0; min-height:auto; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Rifqatna editorial system: the Black Tomato references inform hierarchy,
   proportion and browsing rhythm, not copied imagery or claims. */
:root {
  --ink: #090909;
  --muted: #4d4d4d;
  --paper: #fff;
  --paper-2: #f7f7f6;
  --line: #dedede;
  --red: #e51d78;
  --green: #1d1d1d;
  --green-2: #181818;
  --max: 1390px;
}

body {
  background: #fff;
  font-family: "IBM Plex Sans Arabic", "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.62;
}

.site-header {
  position: relative;
  min-height: 100px;
  padding: 18px clamp(24px, 4vw, 72px);
  background: #fff;
  border-bottom: 0;
  backdrop-filter: none;
}

.brand-ar { font-size: 34px; font-weight: 900; letter-spacing: -.06em; }
.brand-en { font: 700 10px/1 Arial, sans-serif; letter-spacing: .12em; color: #111; }
.site-nav { font-size: 15px; font-weight: 700; color: #111; }
.site-nav a { padding-block: 8px; }
.site-nav a:hover, .site-nav a:focus { color: #111; border-color: var(--red); }
.header-cta, .button { border-radius: 2px; background: var(--red); border-color: var(--red); font-weight: 800; }
.header-cta { min-height: 54px; min-width: 168px; }
.button { min-height: 52px; }
.ghost-button { border-radius: 2px; }

.editorial-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 100px));
  display: grid;
  align-items: end;
  padding: clamp(28px, 5vw, 76px);
  color: #fff;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.10) 72%), var(--hero-photo) center/cover no-repeat;
}
.editorial-hero::after { content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(0,0,0,.58),transparent 55%); pointer-events:none; }
.editorial-hero__copy, .hero-note, .hero-rule { position:relative; z-index:1; }
.editorial-hero__copy { max-width: 790px; }
.editorial-hero__copy p, .micro-title { margin: 0 0 16px; font-size: 12px; letter-spacing: .14em; font-weight: 900; }
.editorial-hero h1 { margin:0; font-size:clamp(47px,7.6vw,106px); max-width: 890px; line-height:.99; font-weight:900; letter-spacing:-.065em; }
.editorial-link { display:inline-flex; gap:13px; align-items:center; border-bottom:2px solid currentColor; padding-bottom:7px; margin-top:31px; font-weight:900; font-size:16px; }
.editorial-link b { font-size:24px; line-height: .5; }
.hero-note { position:absolute; inset-inline-start:clamp(28px,5vw,76px); inset-block-end:clamp(31px,4vw,55px); text-align:left; direction:rtl; font-size:12px; line-height:1.7; }
.hero-rule { width:50px; height:5px; background:var(--red); position:absolute; inset-block-start:36px; inset-inline-start:clamp(28px,5vw,76px); }

.section { padding: clamp(78px, 9vw, 150px) clamp(20px, 4vw, 72px); }
.display-title { margin:0; font-size:clamp(40px,6vw,84px); line-height:.98; letter-spacing:-.065em; font-weight:900; max-width:1050px; }
.micro-title { color:var(--red); }
.dark .micro-title { color:#f14c93; }

.start-journey { background:#fff; text-align:center; }
.start-journey .micro-title { color:#111; }
.journey-tabs--editorial { justify-content:center; gap:clamp(20px,5vw,76px); margin:46px 0 57px; }
.journey-tabs--editorial .tab { font-size:16px; color:#171717; border-bottom-width:4px; padding-bottom:12px; }
.journey-tabs--editorial .tab.active { border-color:var(--red); }
.journey-rail { display:flex; gap:clamp(16px,2vw,38px); overflow-x:auto; padding:0 0 12px; scroll-snap-type:x mandatory; scrollbar-width:thin; }
.journey-tile { position:relative; flex:0 0 clamp(208px,18vw,310px); aspect-ratio: .62; overflow:hidden; display:flex; flex-direction:column; justify-content:flex-end; padding:26px 22px; color:#fff; text-align:right; scroll-snap-align:start; background:var(--tile-photo) center/cover no-repeat; }
.journey-tile::before { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,.04) 26%,rgba(0,0,0,.78) 100%); transition:background .2s ease; }
.journey-tile:hover::before { background:linear-gradient(180deg,rgba(0,0,0,.20),rgba(0,0,0,.84)); }
.journey-tile > * { position:relative; z-index:1; }
.journey-tile span { font-size:12px; margin-bottom:8px; opacity:.86; }
.journey-tile strong { font-size:clamp(24px,2vw,36px); line-height:1.08; }
.journey-tile i { font-style:normal; font-size:12px; margin-top:16px; font-weight:800; transform:translateY(20px); opacity:0; transition:.25s ease; }
.journey-tile:hover i { transform:none; opacity:1; }

.what-we-do { background:#f4f4f3; }
.what-we-do__grid { display:grid; grid-template-columns: .3fr 1.1fr 1fr; gap:clamp(28px,5vw,84px); align-items:start; }
.what-we-do__grid > .micro-title { padding-top:11px; }
.principle-stack { border-top:1px solid #111; }
.principle-stack article { display:grid; grid-template-columns:38px 1fr; column-gap:18px; padding:21px 0; border-bottom:1px solid #bdbdbd; }
.principle-stack b { grid-row:span 2; color:var(--red); font-size:12px; }
.principle-stack h3 { margin:0; font-size:20px; line-height:1.1; }
.principle-stack p { grid-column:2; margin:9px 0 0; color:#4e4e4e; font-size:14px; }

.trips-theatre { background:#1c1c1b; color:#fff; overflow:hidden; }
.theatre-heading { display:grid; grid-template-columns:1.1fr .55fr; gap:50px; align-items:end; }
.theatre-heading p { color:#c6c6c6; margin:0 0 8px; font-size:17px; }
.trip-stage { display:flex; gap:34px; margin-top:50px; overflow-x:auto; padding-bottom:12px; scroll-snap-type:x mandatory; }
.stage-card { flex:0 0 min(35vw,460px); min-height:590px; position:relative; overflow:hidden; padding:33px; display:flex; flex-direction:column; justify-content:flex-end; color:white; background:var(--stage-photo) center/cover no-repeat; scroll-snap-align:start; }
.stage-card::before { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,.10),rgba(0,0,0,.90)); }
.stage-card > * { position:relative; z-index:1; }
.stage-card span, .stage-card em { font-size:13px; font-style:normal; font-weight:800; letter-spacing:.04em; }
.stage-card h3 { font-size:clamp(28px,3.1vw,48px); line-height:1.04; margin:14px 0; letter-spacing:-.05em; }
.stage-card b { margin-top:28px; display:inline-block; border:1px solid #fff; padding:14px 16px; width:max-content; font-size:12px; }
.stage-card--lead { flex-basis:min(48vw,620px); }
.theatre-all { display:inline-flex; gap:13px; border-bottom:2px solid #fff; padding-bottom:7px; margin-top:43px; font-weight:800; }

.experience-edit { background:#fff; }
.experience-editorial { display:grid; grid-template-columns:1.25fr .75fr; gap:clamp(20px,3vw,45px); margin-top:54px; align-items:start; }
.experience-editorial__large, .experience-editorial__small, .experience-editorial__wide, .city-banner, .journal-feature { position:relative; overflow:hidden; display:flex; flex-direction:column; justify-content:flex-end; color:#fff; background:var(--exp-photo) center/cover no-repeat; }
.experience-editorial__large::before, .experience-editorial__small::before, .experience-editorial__wide::before, .city-banner::before, .journal-feature::before { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 35%,rgba(0,0,0,.78)); }
.experience-editorial__large > *, .experience-editorial__small > *, .experience-editorial__wide > *, .city-banner > *, .journal-feature > * { position:relative; z-index:1; }
.experience-editorial__large { min-height:700px; padding:38px; }
.experience-editorial__large span, .experience-editorial__small span, .experience-editorial__wide span { font-size:16px; }
.experience-editorial__large b { font-size:42px; line-height:1.05; margin-top:10px; }
.experience-editorial__copy { padding:5px 0 38px; font-size:19px; line-height:1.7; }
.experience-editorial__copy .editorial-link { color:#111; }
.experience-editorial__small { min-height:360px; padding:26px; }
.experience-editorial__small b { font-size:30px; margin-top:8px; }
.experience-editorial__wide { grid-column:1/-1; min-height:310px; padding:33px; --exp-photo:var(--exp-photo); }
.experience-editorial__wide b { font-size:37px; margin-top:8px; }

.city-switcher { background:#f4f4f3; }
.city-switcher__top { display:grid; grid-template-columns:1.1fr .55fr; gap:50px; align-items:end; }
.city-switcher__top p { margin:0; font-size:17px; color:#444; }
.city-banner { --exp-photo:none; min-height:470px; margin-top:56px; padding:44px; background:var(--city-photo) center/cover no-repeat; }
.city-banner span { font-size:14px; font-weight:800; }
.city-banner strong { font-size:clamp(32px,4vw,62px); max-width:760px; line-height:1.02; margin-top:13px; }

.founder-feature { background:#fff; }
.founder-feature__grid { display:grid; grid-template-columns:.8fr 1.2fr; align-items:center; gap:clamp(35px,7vw,130px); }
.founder-feature__image { align-self:stretch; min-height:580px; overflow:hidden; background:#eceae6; }
.founder-feature__image img { width:100%; height:100%; object-fit:cover; object-position:center top; filter:saturate(.82) contrast(.98); }
.founder-feature__grid p:not(.micro-title) { max-width:620px; margin:25px 0 0; font-size:19px; color:#454545; }
.founder-feature .editorial-link { color:#111; }

.journal-edit { background:#f6f6f5; }
.journal-edit__head { display:flex; align-items:end; justify-content:space-between; gap:30px; }
.journal-edit__head .editorial-link { color:#111; margin:0; white-space:nowrap; }
.journal-edit__grid { display:grid; grid-template-columns:1.25fr .75fr .75fr; gap:24px; margin-top:47px; }
.journal-feature { min-height:510px; padding:34px; background:var(--journal-photo) center/cover no-repeat; }
.journal-feature span { font-size:38px; line-height:1.07; font-weight:900; }
.journal-plain { border-top:2px solid #111; padding:21px 0; display:flex; flex-direction:column; justify-content:space-between; min-height:220px; }
.journal-plain b { font-size:25px; line-height:1.25; }
.journal-plain span { color:var(--red); font-size:13px; font-weight:800; }

.closing-cta { background:#111; }
.closing-cta__grid { display:grid; grid-template-columns:1.1fr .65fr; gap:70px; align-items:end; }
.closing-cta p:not(.micro-title) { color:#c7c7c7; font-size:17px; margin:0 0 25px; }
.button--light { color:#111; background:#fff; border-color:#fff; }

@media (max-width: 980px) {
  .site-header { min-height:78px; padding-block:12px; }
  .journey-tabs--editorial { justify-content:flex-start; margin-block:30px 35px; }
  .what-we-do__grid, .theatre-heading, .city-switcher__top, .founder-feature__grid, .closing-cta__grid { grid-template-columns:1fr; }
  .what-we-do__grid { gap:25px; }
  .theatre-heading { gap:20px; }
  .stage-card, .stage-card--lead { flex-basis:min(76vw,520px); min-height:530px; }
  .experience-editorial { grid-template-columns:1fr 1fr; }
  .experience-editorial__large { min-height:550px; }
  .experience-editorial__copy { padding:0; }
  .founder-feature__image { min-height:500px; }
}

@media (max-width: 640px) {
  .site-header { grid-template-columns:1fr auto; }
  .brand-ar { font-size:29px; }
  .editorial-hero { min-height:660px; padding:28px 20px; background-position:58% center; }
  .editorial-hero h1 { font-size:48px; }
  .hero-note { display:none; }
  .section { padding:68px 20px; }
  .display-title { font-size:42px; }
  .journey-rail { margin-inline:-20px; padding-inline:20px; gap:14px; }
  .journey-tile { flex-basis:72vw; padding:20px; }
  .journey-tile i { display:none; }
  .experience-editorial { grid-template-columns:1fr; margin-top:36px; }
  .experience-editorial__large, .experience-editorial__wide { min-height:460px; }
  .experience-editorial__large b, .experience-editorial__wide b { font-size:34px; }
  .experience-editorial__small { min-height:320px; }
  .experience-editorial__wide { grid-column:auto; }
  .city-banner { min-height:410px; padding:25px; margin-top:36px; }
  .city-banner strong { font-size:35px; }
  .founder-feature__image { min-height:430px; }
  .journal-edit__head { align-items:start; flex-direction:column; }
  .journal-edit__head .editorial-link { margin-top:4px; }
  .journal-edit__grid { grid-template-columns:1fr; margin-top:34px; }
  .journal-feature { min-height:420px; }
  .journal-feature span { font-size:31px; }
  .journal-plain { min-height:160px; }
  .closing-cta__grid { gap:25px; }
}
