/* ---- Design tokens ---- */
:root {
  --claret: #6b1d2a;
  --claret-deep: #571622;
  --ink: #161412;
  --ink-soft: #1f1c1a;
  --ivory: #f6f4ef;
  --ivory-warm: #efece4;
  --text-dark: #201d1b;
  --text-mid: #5c5751;
  --hairline-dark: rgba(255, 255, 255, 0.16);
  --hairline-light: rgba(32, 29, 27, 0.14);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ---- Base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--serif);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.35s var(--ease);
}

a:hover { opacity: 0.65; }

section { scroll-margin-top: 76px; }

/* ---- Navbar ---- */
/* Sits in normal flow at the top of the hero */
.navbar {
  position: relative;
  z-index: 90;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 56px;
}

.navbar .logo,
.navbar .nav-links a {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

/* Detaches and follows the reader once the hero has scrolled away */
.navbar.is-stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 15px 56px;
  background: rgba(246, 244, 239, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(32, 29, 27, 0.1);
  animation: navDrop 0.45s var(--ease);
}

@keyframes navDrop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.navbar.is-stuck .logo,
.navbar.is-stuck .nav-links a {
  color: var(--text-dark);
  text-shadow: none;
}

.navbar.is-stuck .nav-cta:hover {
  background: rgba(32, 29, 27, 0.06);
  border-color: rgba(32, 29, 27, 0.6);
}

.logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}

/* Brand mark: white over the hero photography, black once the bar goes solid */
.navbar .logo img {
  display: block;
  height: 44px;
  width: auto;
  transition: opacity 0.4s var(--ease);
}

.navbar .logo { position: relative; }
.navbar .logo-dark { position: absolute; top: 0; left: 0; opacity: 0; }

.navbar.is-stuck .logo-light { opacity: 0; }
.navbar.is-stuck .logo-dark { opacity: 1; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.navbar .logo,
.navbar .nav-links a {
  color: #fff;
}

.navbar--light .logo,
.navbar--light .nav-links a {
  color: var(--text-dark);
}

/* Glass pill so it stays crisp over the pale pavement in the hero */
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

/* Hamburger: hidden on desktop */
.nav-burger {
  display: none;
  background: none;
  border: none;
  padding: 10px 4px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}

.navbar.is-stuck .nav-burger span { background: var(--text-dark); }

.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-cta:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
}

/* Once the bar goes solid ivory, drop the glass for a plain outlined pill */
.navbar.is-stuck .nav-cta {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(32, 29, 27, 0.35);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--ink) url('../images/hero-photo-v3.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
}

/* Scrim: dark at top and bottom, lighter through the middle */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 45%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 56px 4vh;
}

.hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Fixed height reserved so typing cannot shift the page */
.hero-headline {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  line-height: 1.14;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero-stop { color: #8f1d2b; }

.hero-sub {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.1vw, 1.6rem);
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

/* Cinematic line-fade entrance */
.hero-headline,
.hero-sub {
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
  animation: heroRise 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-headline { animation-delay: 0.15s; }
.hero-sub { animation-delay: 0.55s; }

/* Supporting signal only: monochrome white, barely present until hovered */
.hero-proof {
  max-width: 900px;
  margin: 56px auto 0;
  text-align: center;
  opacity: 0;
  filter: brightness(0) invert(1);
  animation: heroProofIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.95s forwards;
  transition: opacity 1s var(--ease);
}

.hero-proof-label {
  display: block;
  margin-bottom: 16px;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
}

.hero-proof-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.hero-proof img {
  height: 31px;
  width: auto;
  flex: 0 1 auto;
  min-width: 0;
}

.hero-proof:hover { opacity: 1; }

@keyframes heroProofIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 0.3; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-proof { opacity: 0.3; transform: none; animation: none; }
}

@keyframes heroRise {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-headline,
  .hero-sub { opacity: 1; transform: none; animation: none; }
}

/* ---- Intro / content section ---- */
.intro {
  position: relative;
  background: #cfd4d8 url('../images/intro-bg.jpg') center top/cover no-repeat;
  padding-top: 56px;
  padding-bottom: 56px;
}

.intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.5) 34%, rgba(246,244,239,0.84) 62%, var(--ivory) 100%);
}

.intro > * { position: relative; z-index: 2; }

.intro-copy {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 44px;
  padding: 0 24px;
}

.proof {
  background: #f5f4f0;
  text-align: center;
  padding: 96px 56px 104px;
}

.proof-logos { margin-bottom: 76px; }

.proof-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(32, 29, 27, 0.45);
  margin-bottom: 14px;
}

.logo-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 1240px;
  margin: 0 auto;
}

.logo-row img {
  height: 40px;
  width: auto;
  flex: 0 1 auto;
  min-width: 0;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.4s var(--ease);
}

.logo-row img:hover { opacity: 0.82; }

/* ---- Executive endorsement ---- */
.endorsement-card {
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
  background: #111827;
  border-left: 2px solid #d8c199;
  padding: 64px 68px 56px;
}

.endorsement-tag {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 3.2px;
  text-transform: uppercase;
  color: #d8c199;
  margin-bottom: 26px;
}

.endorsement-card blockquote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.3vw, 1.95rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.2px;
  color: #fff;
  max-width: 46ch;
}

.endorsement-card figcaption {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.endorsement-name {
  display: block;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #fff;
}

.endorsement-role {
  display: block;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.55);
}

.intro-copy h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.intro-copy .subhead {
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  margin-top: 14px;
  color: var(--text-mid);
}

.intro-framing {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  color: #4c4a44;
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.card-lead {
  font-weight: 500;
  color: #14120f !important;
  min-height: 3.4em;
}

/* Footer of every card pinned to a common baseline */
.card-foot { margin-top: auto; }

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 2px;
}

.card-list li {
  position: relative;
  padding-left: 16px;
  font-family: var(--sans);
  font-size: 0.86rem;
  line-height: 1.58;
  color: #334155;
}

.card-list li strong {
  font-weight: 500;
  color: #14120f;
}

.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 1px;
  background: #a68a5b;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 56px;
  border-top: 1px solid rgba(32, 29, 27, 0.18);
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 14px;
  padding: 34px 40px 36px;
  text-align: left;
  color: var(--text-dark);
  border-left: 1px solid rgba(32, 29, 27, 0.14);
  transition: background 0.5s var(--ease);
}

.card:first-child { border-left: none; }

.card--popular { position: relative; }

.card-tab {
  position: absolute;
  top: 0;
  left: 40px;
  transform: translateY(-50%);
  background: var(--claret);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  padding: 6px 14px;
}

.card:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.4);
}

.card-price {
  display: block;
  margin-top: 10px;
  min-height: 2.2em;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--claret);
}

.card h3 {
  font-family: var(--serif);
  font-size: clamp(1.28rem, 1.72vw, 1.6rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.2px;
  color: #14120f;
  white-space: nowrap;
}

.h3-fit { white-space: nowrap; }

.card p {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: #334155;
}

.card-more {
  margin-top: auto;
  padding-top: 20px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1e3d2f;
}

.card-more .arrow {
  color: #a68a5b;
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.4s var(--ease);
}

.card:hover .card-more .arrow { transform: translateX(5px); }

/* ---- Content sections ---- */
.section {
  padding: 120px 56px;
}

.section-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.section--dark {
  background: var(--ink);
  color: var(--ivory);
}

.section--light {
  background: var(--ivory);
  color: var(--text-dark);
}

.section--light + .section--light,
.section--dark + .section--light {
  background: var(--ivory-warm);
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: #a5606b;
  margin-bottom: 22px;
}

.section--light .eyebrow { color: var(--claret); }

.section h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.section-lead {
  font-size: 1.15rem;
  line-height: 1.75;
}

.section--dark .section-lead { color: rgba(246, 244, 239, 0.75); }
.section--light .section-lead { color: var(--text-mid); }

/* ---- Showcase sections ---- */
.showcase {
  position: relative;
  min-height: 100vh;
  padding: 72px 72px 96px;
  background: linear-gradient(175deg, #dbe5e6 0%, #e8e9e2 30%, #efeade 62%, #eae4d6 100%);
  display: flex;
  flex-direction: column;
  color: var(--text-dark);
}

/* Full-bleed photographic showcase */
.showcase--photo {
  background: #7d8478 url('../images/experiences-bg.jpg') center/cover no-repeat;
  position: relative;
}

.showcase--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(260deg, rgba(20, 24, 20, 0.72) 0%, rgba(20, 24, 20, 0.45) 42%, rgba(20, 24, 20, 0.08) 72%, rgba(20, 24, 20, 0) 100%);
}

/* Membership: photo with copy on the left */
.showcase--photo-left {
  background-image: url('../images/memberships-bg.jpg');
  background-position: center bottom;
}

.showcase--photo-left::before {
  background: linear-gradient(100deg, rgba(14, 20, 16, 0.78) 0%, rgba(14, 20, 16, 0.5) 40%, rgba(14, 20, 16, 0.12) 72%, rgba(14, 20, 16, 0) 100%);
}

.showcase.showcase--photo-left .showcase-copy {
  margin-left: 0 !important;
  margin-right: auto;
  text-align: left !important;
}

.showcase.showcase--photo-left .showcase-copy p { margin-left: 0 !important; }

/* Women in Golf: photo with copy on the right */
.showcase--photo-women {
  background-image: url('../images/women-bg.jpg');
  background-position: center center;
}

.showcase--photo-women::before {
  background:
    linear-gradient(270deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.12) 38%, rgba(0, 0, 0, 0) 62%),
    linear-gradient(260deg, rgba(16, 22, 20, 0.62) 0%, rgba(16, 22, 20, 0.38) 42%, rgba(16, 22, 20, 0.08) 74%, rgba(16, 22, 20, 0) 100%);
}

/* New to Golf: steps + partner lockup */
.showcase--photo-new {
  background-image: url('../images/new-to-golf-bg.jpg');
  background-position: center center;
}

.showcase--photo-new::before {
  background: linear-gradient(100deg, rgba(17, 24, 39, 0.94) 0%, rgba(17, 24, 39, 0.86) 46%, rgba(17, 24, 39, 0.72) 78%, rgba(17, 24, 39, 0.62) 100%);
}

.showcase--photo-new .showcase-copy {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Anchor the partner lockup and CTA to the foot of the column so the
   left side fills the height of the pathway instead of leaving a void */
.showcase--photo-new .partner-lockup { margin-top: auto; }
.showcase--photo-new .showcase-foot { margin-top: 34px; }

/* Six-week pathway graphic */
.showcase-grid--split {
  grid-template-columns: 1.05fr 0.95fr !important;
  gap: 72px;
  align-items: stretch;
  max-width: 1500px;
  position: relative;
  z-index: 2;
}

.pathway {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: 44px;
}

.pathway-head { margin-bottom: 34px; }

.pathway-kicker {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}

.pathway-sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.7;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.pathway-list {
  list-style: none;
  position: relative;
  padding-left: 30px;
}

.pathway-list::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.7), rgba(197, 160, 89, 0.15));
}

.pw-item {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pw-item:last-child { border-bottom: none; }

.pw-dot {
  position: absolute;
  left: -30px;
  top: 21px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(197, 160, 89, 0.55);
  background: #141a26;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.pw-item.is-open .pw-dot {
  background: #c5a059;
  border-color: #c5a059;
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.2);
}

/* Header row */
.pw-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  width: 100%;
  padding: 15px 0;
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
}

.pw-week {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(197, 160, 89, 0.75);
  transition: color 0.35s var(--ease);
}

.pw-title {
  flex: 1 1 auto;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.35s var(--ease);
}

.pw-head:hover .pw-title { color: rgba(255, 255, 255, 0.88); }
.pw-item.is-open .pw-title { color: #fff; }
.pw-item.is-open .pw-week { color: #c5a059; }

/* Plus / minus indicator */
.pw-sign {
  position: relative;
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  align-self: center;
}

.pw-sign::before,
.pw-sign::after {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 11px;
  height: 1px;
  background: #c5a059;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}

.pw-sign::after { transform: rotate(90deg); }
.pw-item.is-open .pw-sign::after { transform: rotate(0deg); opacity: 0; }

/* Collapsible body */
.pw-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s var(--ease), opacity 0.35s var(--ease), padding-bottom 0.45s var(--ease);
}

.pw-item.is-open .pw-body { opacity: 1; padding-bottom: 18px; }

.pathway p {
  font-family: var(--sans);
  font-size: 0.86rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  padding-right: 18px;
}

.pathway-after {
  margin-top: 6px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
}

.pathway-price {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.pathway-price p {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: #fff;
}

.pathway-price p strong { font-weight: 500; }

.pathway-price span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

.pathway-price-note {
  font-family: var(--sans) !important;
  font-size: 0.8rem !important;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62) !important;
  margin-top: 8px;
}

.pathway-price-note--em {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.52) !important;
}

.new-lead {
  font-family: var(--serif) !important;
  font-style: italic;
  font-size: 1.5rem !important;
  color: #e8d7b8 !important;
  margin-bottom: 14px;
  max-width: none !important;
}

.new-reassure {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 32px;
}

.new-reassure li {
  border: 1px solid rgba(51, 65, 85, 0.6);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--sans);
  font-size: 0.76rem;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.78);
}

.new-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 28px;
}

.new-step-num {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: #d9c199;
  margin-bottom: 10px;
}

.new-step h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}

.new-step p {
  font-size: 0.88rem !important;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72) !important;
  max-width: none !important;
}

.partner-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.partner-lockup img {
  height: 38px;
  width: auto;
  opacity: 0.9;
}

.partner-lockup {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
}

.partner-lockup span {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.7);
}

.partner-lockup strong { font-weight: 500; color: #fff; }

.showcase-grid--single {
  grid-template-columns: 1fr !important;
  max-width: 1400px;
  position: relative;
  z-index: 2;
}

.showcase--photo .showcase-copy {
  max-width: 700px;
  margin-left: auto;
  text-align: left;
}

/* Price and call to action sit against the right edge of the copy block */
.showcase--photo:not(.showcase--photo-left) .showcase-price { text-align: right; }

.showcase--photo:not(.showcase--photo-left) .showcase-link {
  display: block;
  width: fit-content;
  margin-left: auto;
}
.showcase--photo .showcase-copy h2 { color: #fff; }
.showcase--photo .showcase-copy p { color: rgba(255, 255, 255, 0.86); max-width: 48ch; }
.showcase--photo .showcase-price { color: #fff !important; }

.showcase--photo .showcase-link {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.showcase--photo .showcase-link:hover { border-bottom-color: #fff; }
.showcase--photo .showcase-link .arrow { color: #e0c79b; }

.showcase-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 64px;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

.showcase--right .showcase-grid {
  grid-template-columns: 1.15fr 1fr;
}

.showcase-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 28px;
  color: #14120f;
}

.showcase-copy h2 em {
  font-style: italic;
  font-weight: 400;
}

.showcase-copy p {
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.65;
  color: #4c4a44;
  max-width: 46ch;
}

.showcase-copy p + p { margin-top: 14px; }

.showcase-price {
  font-family: var(--serif) !important;
  font-style: italic;
  font-size: 1.5rem !important;
  color: #1e3d2f !important;
  margin-top: 24px;
}

.showcase-price strong { font-weight: 500; }

/* CTA and price stacked, sharing a left edge */
.showcase-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  margin: 40px 0 0;
}

/* Sections whose copy sits on the right push the block across */
.showcase--photo:not(.showcase--photo-left) .showcase-foot { margin-left: auto; }

.showcase-foot .showcase-link {
  margin: 0 !important;
}

.showcase-foot .showcase-price {
  margin-top: 10px;
  text-align: left !important;
}

/* Muted supporting note beneath a CTA */
.showcase-note {
  margin-top: 10px;
  font-family: var(--sans) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.3px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62) !important;
  max-width: none !important;
}

.showcase-link {
  display: inline-block;
  margin-top: 32px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(30, 61, 47, 0.3);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1e3d2f;
  transition: border-color 0.4s var(--ease);
}

.showcase-link .arrow {
  margin-left: 10px;
  color: #a68a5b;
  transition: transform 0.4s var(--ease);
  display: inline-block;
}

.showcase-link:hover { opacity: 1; border-color: #1e3d2f; }
.showcase-link:hover .arrow { transform: translateX(5px); }

.showcase-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.figure-framed {
  max-width: 560px;
  max-height: 74vh;
  width: auto !important;
  margin: 0 auto;
  border-radius: 2px;
}

.figure-portrait {
  max-width: 260px;
  max-height: 40vh;
  width: auto !important;
  margin: 0 auto;
}

/* Copy alignment: text sits on the side away from the image */
.showcase--right .showcase-copy { text-align: right; }
.showcase--right .showcase-copy p { margin-left: auto; }
.showcase--left .showcase-copy { text-align: left; }

/* ---- Story ---- */
.story {
  background: #111827;
  padding: 112px 56px 140px;
}

/* Mission hero */
.mission-hero {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.mission-hero-title {
  font-family: var(--serif);
  font-size: clamp(1.95rem, 3.4vw, 2.95rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0.2px;
  color: #fff;
  max-width: 56ch;
  margin: 0 auto;
}

.mission-hero-body {
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.66);
  max-width: 74ch;
  margin: 34px auto 0;
}

.story-grid {
  margin-top: 152px;
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.story-portrait {
  position: relative;
  align-self: start;
  margin-top: 36px;
}

.story-portrait img {
  display: block;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 2px;
  margin-bottom: 0;
}

.story-portrait figcaption {
  max-width: 420px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.story-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 3.4px;
  text-transform: uppercase;
  color: #a68a5b;
  margin-bottom: 24px;
}

.story-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0.2px;
  color: #fff;
}

.story-sub {
  font-family: var(--serif) !important;
  font-size: 1.35rem !important;
  color: #d8c199 !important;
  margin: 28px 0 28px !important;
}

.story-copy p {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.68);
  max-width: 58ch;
}

.story-copy p + p { margin-top: 20px; }

.story-label {
  font-weight: 500;
  color: #d8c199;
}

.story-beat {
  font-family: var(--serif) !important;
  font-size: 1.5rem !important;
  color: #fff !important;
  margin-top: 28px !important;
}

.story-signoff {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  max-width: 58ch;
}

.signoff-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
}

.signoff-role {
  display: block;
  margin-top: 3px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Contact ---- */
.section--contact {
  background: var(--claret-deep);
  color: var(--ivory);
}

.section--contact .eyebrow {
  color: rgba(246, 244, 239, 0.55);
}

.section--contact .section-lead {
  color: rgba(246, 244, 239, 0.8);
}

.cta-button {
  display: inline-block;
  margin-top: 40px;
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(246, 244, 239, 0.5);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 44px;
  border-radius: 999px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.cta-button:hover {
  opacity: 1;
  background: var(--ivory);
  color: var(--claret-deep);
  border-color: var(--ivory);
}

/* ---- Footer ---- */
.footer {
  background: var(--ink);
  color: rgba(246, 244, 239, 0.55);
  padding: 48px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.footer .logo {
  color: var(--ivory);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
}

.footer .logo img {
  display: block;
  height: 40px;
  width: auto;
}

/* ---- Experience panel ---- */
button.showcase-link {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(30, 61, 47, 0.3);
  border-radius: 0;
  cursor: pointer;
  font-family: var(--sans);
  padding: 0 0 10px;
  -webkit-appearance: none;
  appearance: none;
}

.showcase--photo button.showcase-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.showcase--photo button.showcase-link:hover { border-bottom-color: #fff; }

.panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 11, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  z-index: 90;
}

.panel-open .panel-backdrop { opacity: 1; }

.panel {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(50vw, 900px);
  background: #14100e;
  color: var(--ivory);
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease);
  z-index: 100;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.panel.is-open { transform: translateX(0); }

.panel-inner { padding: 56px 64px 64px; }

.panel-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.3s var(--ease);
}

.panel-close:hover { color: #fff; }

.panel-kicker {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d8c199;
  margin-bottom: 14px;
}

.panel-head h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
}

.panel-head p {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.66);
}

.tier {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.tier-for {
  display: block;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.tier h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}

.tier--flagship h3 { color: #ecd9b4; }

.tier-price {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 16px;
}

.tier-price strong { font-weight: 500; }

.tier-price span {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.55);
}

.tier-desc {
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 15px;
}

.tier-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }

.tier-list li {
  position: relative;
  padding-left: 18px;
  font-family: var(--sans);
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.tier-list li strong {
  font-weight: 500;
  color: #fff;
}

.tier--flagship .tier-list li strong { color: #ecd9b4; }

.tier-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: #d8c199;
}

.tier--third h3 {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.88);
}

.tier--third .tier-price span {
  font-size: 0.7rem;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #d8c199;
}

.tier--third .tier-desc { margin-bottom: 0; }

.panel-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 15px 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ivory);
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}

.panel-cta:hover {
  opacity: 1;
  background: var(--ivory);
  color: #14100e;
}

button.panel-cta,
button.cta-button,
button.nav-cta {
  cursor: pointer;
  font-family: var(--sans);
  -webkit-appearance: none;
  appearance: none;
}

button.nav-cta {
  background: none;
  color: inherit;
  font-size: 0.8rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* ---- Contact drawer ---- */
.panel--right {
  left: auto;
  right: 0;
  background: #111827;
  transform: translateX(100%);
}

.panel--right.is-open { transform: translateX(0); }

.enquiry { margin-top: 34px; }

.field-group {
  border: none;
  padding: 0;
  margin-bottom: 28px;
}

.field-legend {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topic-pill {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 11px 20px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.8);
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.topic-pill:hover { border-color: rgba(255, 255, 255, 0.5); color: #fff; }

.topic-pill[aria-checked="true"] {
  background: #d8c199;
  border-color: #d8c199;
  color: #14120f;
  font-weight: 500;
}

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

.field span {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.field span em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.35);
}

.field input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  padding: 13px 15px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: #fff;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.field input:focus {
  outline: none;
  border-color: #d8c199;
  background: rgba(255, 255, 255, 0.07);
}

.field input:invalid:not(:placeholder-shown) { border-color: rgba(214, 120, 120, 0.6); }

.radio-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  cursor: pointer;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.radio-row input { margin-top: 4px; accent-color: #d8c199; }

.radio-row span {
  font-family: var(--sans);
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.radio-row strong {
  display: block;
  font-weight: 500;
  color: #fff;
}

.enquiry-submit {
  width: 100%;
  background: #d8c199;
  border: 1px solid #d8c199;
  border-radius: 999px;
  padding: 16px 32px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #14120f;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.enquiry-submit:hover { background: #ecd9b4; border-color: #ecd9b4; }
.enquiry-submit .arrow { margin-left: 8px; }

.enquiry-status {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 0.84rem;
  line-height: 1.6;
  color: #d8c199;
  min-height: 1.4em;
}

/* ---- Enquiry success state ---- */
.enquiry-success {
  margin-top: 34px;
  padding: 48px 8px 8px;
  text-align: center;
  animation: heroRise 0.7s var(--ease) forwards;
}

.enquiry-success-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #7ba98a;
  border: 1px solid rgba(123, 169, 138, 0.4);
  background: rgba(123, 169, 138, 0.08);
}

.enquiry-success-tick svg { width: 28px; height: 28px; }

.enquiry-success-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
}

.enquiry-success-sub {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.enquiry-again {
  display: inline-block;
  margin-top: 28px;
  padding: 13px 30px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: border-color 0.35s var(--ease), color 0.35s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.enquiry-again:hover {
  opacity: 1;
  border-color: #d8c199;
  color: #d8c199;
}

.enquiry-direct {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.enquiry-direct a {
  color: #d8c199;
  border-bottom: 1px solid rgba(216, 193, 153, 0.4);
}

.enquiry-direct a:hover { opacity: 1; border-bottom-color: #d8c199; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  /* --- Navigation: hamburger --- */
  .navbar { padding: 16px 20px; }
  .navbar.is-stuck { padding: 12px 20px; }
  .navbar .logo img { height: 36px; }
  .nav-burger { display: flex; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(17, 16, 14, 0.97);
    backdrop-filter: blur(10px);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    font-size: 0.78rem;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  }

  .navbar.nav-open .nav-links {
    max-height: 70vh;
    padding: 8px 24px 24px;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 15px 0;
    color: #fff !important;
    text-shadow: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links .nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    margin-top: 16px;
    padding: 13px 24px;
    text-align: center;
  }

  /* --- Hero: keep the banners inside the screen --- */
  .hero-content { padding: 0 20px 4vh; }
  .hero-headline { min-height: 210px; }
  .hero-sub { margin-top: 16px; }
  .hero-proof { margin-top: 36px; }
  .hero-proof-label { margin-bottom: 12px; letter-spacing: 2.2px; }
  .hero-proof-row { flex-wrap: wrap; gap: 2px 10px; }
  .hero-proof img { height: 24px; }

  /* --- Logo strip: allow wrapping so it never overflows --- */
  .logo-row { flex-wrap: wrap; gap: 4px 10px; }
  .card-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .card { border-left: none; border-top: 1px solid rgba(32,29,27,0.14); padding: 28px 0; }
  .card-lead, .card-price { min-height: 0; }
  .card h3, .h3-fit { white-space: normal; font-size: 1.5rem !important; }
  .showcase-link, .card-more { padding-bottom: 12px; }
  section { scroll-margin-top: 64px; }
  .proof { padding: 64px 24px 68px; }
  .proof-logos { margin-bottom: 48px; }
  .logo-row { gap: 4px 14px; }
  .logo-row img { height: 30px; }
  .endorsement-card { padding: 36px 24px 30px; }
  .showcase--photo-new .partner-lockup { margin-top: 32px; }
  .card:first-child { border-top: none; }
  .card-tab { left: 0; }
  .section { padding: 72px 24px; }
  .showcase { min-height: auto; padding: 56px 24px 72px; }
  .showcase-grid,
  .showcase--right .showcase-grid { grid-template-columns: 1fr; gap: 36px; }
  .showcase--right .showcase-figure { order: 2; }
  .showcase--right .showcase-copy { order: 1; text-align: left; }
  .showcase--right .showcase-copy p { margin-left: 0; }
  .showcase-copy p { max-width: none; }
  .showcase-figure { max-width: 520px; margin: 0 auto; }
  .showcase-foot { margin-left: 0; }
  .new-steps { grid-template-columns: 1fr; gap: 22px; }
  .showcase-grid--split { grid-template-columns: 1fr !important; gap: 44px; }
  .pathway { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.16); padding-top: 32px; }
  .panel { width: 100vw; }
  .panel-inner { padding: 56px 24px 64px; }
  .topic-pill { font-size: 0.74rem; padding: 11px 16px; }
  .enquiry-submit { padding: 17px 24px; }
  .panel-head h2 { font-size: 1.9rem; }
  .tier h3 { font-size: 1.55rem; }
  .partner-lockup { flex-direction: column; align-items: flex-start; gap: 10px; }
  .story { padding: 72px 24px 80px; }
  .mission-hero-title { max-width: none; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 80px; }
  .story-portrait { margin-top: 0; }
  .story-portrait img, .story-portrait figcaption { max-width: 320px; }
  .footer { flex-direction: column; gap: 12px; text-align: center; }
}
