:root {
  color-scheme: light;
  --fx-page: #ebe8e1;
  --fx-card: #f5f3ee;
  --fx-soft: #e3dfd6;
  --fx-navy: #111214;
  --fx-navy-raised: #1a1b1f;
  --fx-body: #53514c;
  --fx-muted: #77736c;
  --fx-line: #d5d0c5;
  --fx-line-strong: #aaa397;
  --fx-orange: #c85d35;
  --fx-orange-hover: #df6a40;
  --fx-orange-soft: rgba(200, 93, 53, .1);
  --fx-sage: #c85d35;
  --fx-sage-soft: rgba(200, 93, 53, .1);
  --fx-radius-sm: 2px;
  --fx-radius-md: 2px;
  --fx-radius-lg: 4px;
  --fx-shadow: 0 1px 0 rgba(17, 18, 20, .05);
  --fx-shadow-lift: 0 24px 60px rgba(17, 18, 20, .12);
  --fx-container: 1380px;
  --fx-gutter: clamp(20px, 3vw, 32px);
  --fx-header-h: 76px;
  --fx-control-min: 44px;
  --fx-font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --fx-display: "Outfit", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--fx-navy);
  background: var(--fx-card);
  font: 16px/1.6 var(--fx-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
:focus-visible { outline: 2px solid var(--fx-orange); outline-offset: 3px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-80px);
  border-radius: var(--fx-radius-sm);
  background: var(--fx-navy);
  color: #fff;
  padding: 10px 16px;
  font-weight: 700;
  transition: transform 160ms ease-out;
}
.skip-link:focus { transform: none; }

.experience-container {
  width: min(100%, var(--fx-container));
  margin-inline: auto;
  padding-left: max(var(--fx-gutter), env(safe-area-inset-left));
  padding-right: max(var(--fx-gutter), env(safe-area-inset-right));
}
.experience-container-narrow { max-width: 860px; }
.experience-section { padding-block: 96px; scroll-margin-top: 80px; }
.experience-section-soft { background: var(--fx-page); }

h1, h2, h3, p { margin-block-start: 0; }
h1, h2, h3 {
  font-family: var(--fx-display);
  text-wrap: balance;
  letter-spacing: -.025em;
}
h1 { margin-bottom: 0; font-size: clamp(44px, 6vw, 64px); line-height: 1.08; font-weight: 750; }
h2 { margin-bottom: 0; font-size: clamp(32px, 4vw, 44px); line-height: 1.12; font-weight: 730; }
h3 { margin-bottom: 0; font-size: 21px; line-height: 1.22; font-weight: 700; }
p { color: var(--fx-body); text-wrap: pretty; }

.experience-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(16, 24, 40, .06);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out, background-color 180ms ease-out;
}
.experience-header.is-scrolled { border-bottom-color: rgba(16, 24, 40, .1); background: rgba(255, 255, 255, .95); box-shadow: 0 12px 28px rgba(16, 24, 40, .06); }
.experience-nav {
  width: min(100%, var(--fx-container));
  min-height: var(--fx-header-h);
  margin-inline: auto;
  padding-left: max(var(--fx-gutter), env(safe-area-inset-left));
  padding-right: max(var(--fx-gutter), env(safe-area-inset-right));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.experience-brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.experience-brand-logo { display: inline-flex; flex: none; align-items: center; }
.experience-brand-logo img { width: auto; height: 30px; object-fit: contain; }
.experience-brand-context { font-size: 14px; font-weight: 750; letter-spacing: -.015em; white-space: nowrap; }
.experience-brand i, .experience-brand-context i { margin-right: 3px; color: var(--fx-muted); font-style: normal; font-weight: 600; }
.experience-nav-links { display: flex; align-items: center; gap: 30px; }
.experience-nav-links a, .experience-footer a {
  color: var(--fx-body);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease-out;
}
.experience-nav-links a:hover, .experience-footer a:hover { color: var(--fx-orange); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--fx-line);
  border-radius: 999px;
  background: var(--fx-soft);
  flex: 0 0 auto;
}
.lang-switch button {
  min-width: var(--fx-control-min);
  min-height: var(--fx-control-min);
  border: 0;
  background: transparent;
  color: var(--fx-muted);
  font-family: var(--fx-font);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .01em;
  line-height: 1;
  padding: 7px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms ease-out, color 180ms ease-out;
}
.lang-switch button:hover { color: var(--fx-navy); }
.lang-switch button[aria-pressed="true"] { background: var(--fx-orange); color: #fff; }

.experience-button {
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--fx-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease-out, background-color 180ms ease-out, border-color 180ms ease-out, box-shadow 180ms ease-out;
}
.experience-button:hover { transform: translateY(-2px); }
.experience-button:active { transform: scale(.98); }
.experience-button-small { min-height: 40px; padding-inline: 20px; font-size: 14px; }
.experience-button-primary {
  background: var(--fx-orange);
  color: #fff;
  box-shadow: inset 0 1px rgba(255, 255, 255, .14), 0 1px 2px rgba(16, 24, 40, .12);
}
.experience-button-primary:hover { background: var(--fx-orange-hover); box-shadow: 0 5px 16px rgba(154, 52, 18, .2); }
.experience-button-secondary { border-color: var(--fx-line); background: #fff; color: var(--fx-navy); box-shadow: var(--fx-shadow); }
.experience-button-secondary:hover { border-color: var(--fx-line-strong); background: var(--fx-page); }
.experience-button-white { background: #fff; color: var(--fx-orange); box-shadow: var(--fx-shadow-lift); }

.experience-hero { position: relative; overflow: hidden; }
.experience-ambient {
  position: absolute;
  width: 440px;
  height: 440px;
  top: -120px;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 65, 12, .15), transparent 70%);
  filter: blur(36px);
  pointer-events: none;
}
.experience-hero-grid {
  min-height: calc(100dvh - var(--fx-header-h));
  padding-block: 72px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 64px;
}
.experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(194, 65, 12, .12);
  border-radius: 8px;
  background: var(--fx-orange-soft);
  color: var(--fx-orange);
  padding: 7px 13px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.experience-hero h1 { margin-top: 24px; }
.experience-lede { max-width: 48ch; margin: 20px 0 0; font-size: 18px; line-height: 1.72; font-weight: 500; }
.experience-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.experience-trust-list { list-style: none; margin: 36px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 18px 30px; }
.experience-trust-list li { display: flex; align-items: center; gap: 9px; color: var(--fx-body); font-size: 14px; font-weight: 650; }
.experience-trust-list span { color: var(--fx-muted); }
.experience-hero-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3.4; border: 1px solid rgba(16, 24, 40, .05); border-radius: 24px; box-shadow: var(--fx-shadow-lift); }
.experience-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.experience-section-heading { max-width: 660px; }
.experience-section-heading p:not(.experience-kicker) { margin: 16px 0 0; max-width: 58ch; font-size: 16px; line-height: 1.7; }
.experience-section-heading-centered { margin-inline: auto; text-align: center; }
.experience-kicker { margin: 0 0 10px; color: var(--fx-orange); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.experience-kicker-sage { color: #7dd3c4; }

.facility-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.facility-card {
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, .06);
  border-radius: var(--fx-radius-md);
  background: #fff;
  transition: transform 200ms ease-out, border-color 200ms ease-out, box-shadow 200ms ease-out;
}
.facility-card-wide { grid-column: span 4; }
.facility-card:hover { transform: translateY(-3px); border-color: var(--fx-line-strong); box-shadow: var(--fx-shadow-lift); }
.facility-photo { position: relative; height: 224px; overflow: hidden; }
.facility-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, .58), rgba(0, 0, 0, .02) 65%); }
.facility-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease-out; }
.facility-card:hover .facility-photo img { transform: scale(1.025); }
.facility-photo > div { position: absolute; z-index: 1; left: 20px; right: 20px; bottom: 16px; color: #fff; }
.facility-photo h3 { font-size: 22px; text-shadow: 0 1px 6px rgba(0, 0, 0, .2); }
.facility-photo p { margin: 4px 0 0; color: rgba(255, 255, 255, .9); font-size: 13px; font-weight: 600; }
.facility-copy { padding: 20px; }
.facility-copy p { margin-bottom: 16px; font-size: 14px; line-height: 1.65; }
.facility-copy small { color: var(--fx-muted); font-size: 13px; font-weight: 600; }

.experience-activity-band { padding-block: 108px; scroll-margin-top: 80px; background: var(--fx-navy); color: #fff; }
.activity-grid { display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; gap: 80px; }
.activity-photo { overflow: hidden; border: 1px solid rgba(255, 255, 255, .1); border-radius: 24px; box-shadow: 0 24px 64px rgba(0, 0, 0, .24); }
.activity-photo img { width: 100%; aspect-ratio: 1; object-fit: cover; opacity: .92; }
.experience-activity-band h2 { max-width: 18ch; }
.activity-intro { max-width: 48ch; margin: 20px 0 0; color: rgba(255, 255, 255, .68); font-size: 17px; line-height: 1.68; }
.activity-list { margin-top: 36px; display: grid; gap: 16px; }
.activity-list article { display: flex; align-items: flex-start; gap: 18px; border: 1px solid rgba(255, 255, 255, .08); border-radius: 16px; background: rgba(255, 255, 255, .035); padding: 20px; transition: background-color 180ms ease-out; }
.activity-list article:hover { background: rgba(255, 255, 255, .065); }
.activity-list article > span { flex: none; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: rgba(21, 117, 104, .26); color: #7dd3c4; font-size: 20px; }
.activity-list h3 { font-family: var(--fx-font); font-size: 17px; letter-spacing: 0; }
.activity-list p { margin: 5px 0 0; color: rgba(255, 255, 255, .58); font-size: 15px; line-height: 1.55; }

.steps-grid { margin-top: 46px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { position: relative; border: 1px solid var(--fx-line); border-radius: var(--fx-radius-md); background: #fff; padding: 32px; transition: transform 180ms ease-out, border-color 180ms ease-out, box-shadow 180ms ease-out; }
.step-card:hover { transform: translateY(-4px); border-color: var(--fx-line-strong); box-shadow: var(--fx-shadow-lift); }
.step-card > b { position: absolute; right: 24px; top: 18px; color: rgba(194, 65, 12, .07); font: 800 42px/1 var(--fx-display); }
.step-card > span { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(194, 65, 12, .1); border-radius: 12px; background: var(--fx-orange-soft); color: var(--fx-orange); font-size: 20px; }
.step-card h3 { margin-top: 24px; }
.step-card p { margin: 12px 0 0; font-size: 15px; line-height: 1.7; font-weight: 500; }

.reviews-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.review-score { flex: none; display: flex; align-items: center; gap: 16px; border: 1px solid var(--fx-line); border-radius: 16px; background: #fff; padding: 14px 18px; }
.review-score > strong { font: 750 38px/1 var(--fx-display); }
.review-score span, .stars { color: #fbbc05; letter-spacing: 1px; }
.review-score a { display: block; margin-top: 2px; color: var(--fx-body); font-size: 13px; font-weight: 650; text-decoration: none; }
.reviews-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { display: flex; flex-direction: column; border: 1px solid var(--fx-line); border-radius: var(--fx-radius-md); background: #fff; padding: 28px; box-shadow: var(--fx-shadow); }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer > span { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--avatar); color: #fff; font-weight: 800; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18); }
.reviewer strong, .reviewer small { display: block; }
.reviewer strong { font-size: 15px; }
.reviewer small { color: var(--fx-muted); font-size: 12px; font-weight: 500; }
.review-card .stars { margin: 18px 0 0; }
.review-card blockquote { margin: 14px 0 0; color: var(--fx-body); font-size: 15px; line-height: 1.7; font-style: italic; }
.experience-centered { margin-top: 32px; display: flex; justify-content: center; }

.faq-list { margin-top: 36px; border-block: 1px solid rgba(16, 24, 40, .08); }
.faq-item + .faq-item { border-top: 1px solid rgba(16, 24, 40, .08); }
.faq-item h3 { margin: 0; font-family: var(--fx-font); letter-spacing: 0; }
.faq-item button { width: 100%; border: 0; background: transparent; padding: 21px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--fx-navy); font: 700 16px/1.4 var(--fx-font); text-align: left; cursor: pointer; }
.faq-item button span { flex: none; color: var(--fx-orange); font-size: 24px; transition: transform 180ms ease-out; }
.faq-item button[aria-expanded="true"] span { transform: rotate(180deg); }
.faq-panel { padding: 0 48px 20px 0; }
.faq-panel p { max-width: 70ch; margin-bottom: 0; font-size: 15px; line-height: 1.7; }

.visit-grid { margin-top: 40px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: stretch; }
.visit-map, .visit-card { overflow: hidden; border: 1px solid rgba(16, 24, 40, .07); border-radius: var(--fx-radius-lg); background: #fff; }
.visit-map iframe { width: 100%; height: 100%; min-height: 430px; border: 0; display: block; }
.visit-card { padding: 30px; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; }
.visit-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: var(--fx-orange-soft); color: var(--fx-orange); font-size: 22px; }
.visit-card h3 { margin-top: 20px; font-size: 25px; }
.visit-card p { margin: 12px 0 0; font-size: 15px; line-height: 1.7; }
.visit-card ul { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 9px; }
.visit-card li { color: var(--fx-body); font-size: 14px; font-weight: 650; }
.visit-card li::before { content: ""; width: 7px; height: 7px; display: inline-block; margin-right: 9px; border-radius: 50%; background: var(--fx-sage); }

.partnership-card { position: relative; overflow: hidden; border-radius: 32px; background: #111; color: #fff; padding: 72px 32px; text-align: center; box-shadow: 0 24px 72px rgba(16, 24, 40, .18); }
.partnership-glow { position: absolute; width: 280px; height: 280px; border-radius: 50%; filter: blur(100px); opacity: .28; }
.partnership-glow-one { top: -100px; left: -60px; background: var(--fx-orange); }
.partnership-glow-two { right: -60px; bottom: -120px; background: var(--fx-sage); }
.partnership-content { position: relative; z-index: 1; }
.partnership-lockup { display: flex; align-items: center; justify-content: center; gap: 12px; color: rgba(255, 255, 255, .9); }
.partnership-lockup strong { font: 750 18px var(--fx-display); }
.partnership-lockup span { color: rgba(255, 255, 255, .35); }
.partnership-lockup .experience-brand-logo img { height: 32px; }
.partnership-card h2 { max-width: 18ch; margin: 24px auto 0; }
.partnership-card p { max-width: 56ch; margin: 18px auto 0; color: rgba(255, 255, 255, .68); font-size: 17px; line-height: 1.7; font-weight: 500; }
.partnership-card .experience-button { margin-top: 36px; }

.experience-footer { border-top: 1px solid rgba(16, 24, 40, .06); background: #fff; }
.experience-footer-inner { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.experience-footer .experience-brand-logo img { height: 28px; }
.experience-footer p { margin: 0; color: var(--fx-muted); font-size: 13px; text-align: center; }
.experience-footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 18px; }

/* ---------- cinematic family variation ---------- */
.experience-header {
  border-bottom-color: rgba(17, 18, 20, .1);
  background: rgba(245, 243, 238, .9);
}
.experience-header.is-scrolled {
  border-bottom-color: rgba(17, 18, 20, .16);
  background: rgba(245, 243, 238, .96);
  box-shadow: none;
}
.experience-nav-links a {
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.experience-button {
  letter-spacing: .01em;
  box-shadow: none;
}
.experience-button-primary:hover {
  box-shadow: none;
}
.experience-button-secondary {
  border-color: var(--fx-line-strong);
  background: transparent;
  box-shadow: none;
}
.experience-button-white {
  box-shadow: none;
}

.experience-hero {
  isolation: isolate;
  border-bottom: 1px solid var(--fx-line);
  background:
    linear-gradient(90deg, rgba(245, 243, 238, .98) 0 51%, rgba(235, 232, 225, .85) 51% 100%),
    var(--fx-card);
}
.experience-hero::before {
  content: "Together.";
  position: absolute;
  z-index: -1;
  right: -1vw;
  bottom: -3vw;
  color: rgba(17, 18, 20, .04);
  font: 600 clamp(7rem, 18vw, 17rem)/.72 var(--fx-display);
  letter-spacing: -.075em;
  white-space: nowrap;
  pointer-events: none;
}
.experience-ambient {
  width: min(54vw, 760px);
  height: min(54vw, 760px);
  top: auto;
  right: -10vw;
  bottom: -20vw;
  border-radius: 0;
  background: radial-gradient(circle, rgba(200, 93, 53, .14), transparent 66%);
  filter: blur(20px);
}
.experience-hero-grid {
  min-height: min(860px, calc(100dvh - var(--fx-header-h)));
  padding-block: clamp(72px, 9vw, 128px);
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(48px, 7vw, 112px);
}
.experience-badge {
  border: 0;
  border-left: 2px solid var(--fx-orange);
  border-radius: 0;
  background: transparent;
  padding: 4px 0 4px 13px;
}
.experience-hero h1 {
  max-width: 11ch;
  margin-top: 30px;
  font-size: clamp(54px, 6.5vw, 96px);
  font-weight: 520;
  letter-spacing: -.055em;
  line-height: .98;
}
.experience-lede {
  max-width: 44ch;
  margin-top: 28px;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 450;
}
.experience-hero-media {
  aspect-ratio: 4 / 4.7;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.experience-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(17, 18, 20, .12);
  box-shadow: inset 0 0 0 12px rgba(245, 243, 238, .12);
  pointer-events: none;
}
.experience-hero-media img {
  filter: saturate(.82) contrast(1.04);
}
.experience-trust-list {
  padding-top: 22px;
  border-top: 1px solid var(--fx-line);
}

.experience-section,
.experience-activity-band {
  position: relative;
}
.experience-section {
  padding-block: clamp(88px, 9vw, 132px);
  border-bottom: 1px solid var(--fx-line);
}
.experience-section-heading {
  max-width: 820px;
}
.experience-section-heading h2 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -.045em;
}
.experience-section-heading p:not(.experience-kicker) {
  margin-top: 24px;
  font-size: 17px;
}
.experience-section-heading-centered {
  text-align: left;
}
.experience-kicker {
  margin-bottom: 16px;
  padding-left: 13px;
  border-left: 2px solid currentColor;
  font-size: 11px;
  letter-spacing: .18em;
}

.facility-grid {
  gap: 1px;
  border: 1px solid var(--fx-line);
  background: var(--fx-line);
}
.facility-card,
.facility-card-wide {
  border: 0;
  border-radius: 0;
  background: var(--fx-card);
  box-shadow: none;
}
.facility-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}
.facility-photo {
  height: clamp(240px, 25vw, 360px);
}
.facility-copy {
  min-height: 150px;
  padding: 26px;
}
.facility-copy small {
  color: var(--fx-orange);
}

.experience-activity-band {
  overflow: hidden;
  padding-block: clamp(96px, 10vw, 148px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 84% 18%, rgba(200, 93, 53, .18), transparent 28rem),
    var(--fx-navy);
}
.activity-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: clamp(56px, 8vw, 120px);
}
.activity-photo {
  border-radius: 0;
  box-shadow: none;
}
.activity-photo img {
  aspect-ratio: 4 / 4.6;
  filter: saturate(.72) contrast(1.04);
}
.experience-kicker-sage {
  color: #df6a40;
}
.activity-list {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.activity-list article {
  gap: 20px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  border-radius: 0;
  background: transparent;
  padding: 22px 0;
}
.activity-list article:hover {
  background: transparent;
}
.activity-list article > span {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(223, 106, 64, .45);
  border-radius: 50%;
  background: transparent;
  color: #df6a40;
}

.steps-grid {
  gap: 0;
  border: 1px solid var(--fx-line);
}
.step-card {
  min-height: 340px;
  border: 0;
  border-right: 1px solid var(--fx-line);
  border-radius: 0;
  background: transparent;
  padding: 38px;
}
.step-card:last-child {
  border-right: 0;
}
.step-card:hover {
  transform: none;
  border-color: var(--fx-line);
  box-shadow: none;
}
.step-card > b {
  color: rgba(200, 93, 53, .11);
  font-size: 64px;
}
.step-card > span,
.visit-icon {
  border-radius: 50%;
}

.reviews-heading {
  align-items: start;
}
.review-score,
.review-card {
  border-radius: 0;
  background: var(--fx-card);
  box-shadow: none;
}
.reviews-grid {
  gap: 0;
  border: 1px solid var(--fx-line);
}
.review-card {
  border: 0;
  border-right: 1px solid var(--fx-line);
  padding: 34px;
}
.review-card:last-child {
  border-right: 0;
}

.faq-list,
.faq-item + .faq-item {
  border-color: var(--fx-line);
}
.faq-item button {
  min-height: 76px;
}
.visit-grid {
  gap: 1px;
  border: 1px solid var(--fx-line);
  background: var(--fx-line);
}
.visit-map,
.visit-card {
  border: 0;
  border-radius: 0;
  background: var(--fx-card);
}
.partnership-card {
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(200, 93, 53, .1), transparent 38%),
    var(--fx-navy);
  box-shadow: none;
}
.partnership-glow-two {
  background: var(--fx-orange);
}
.experience-footer {
  border-top: 0;
  background: var(--fx-page);
}

.experience-reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease-out, transform 700ms ease-out; transition-delay: var(--reveal-delay, 0ms); }
.experience-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .experience-nav-links { gap: 0; }
  .experience-nav-links > a { display: none; }
  .experience-hero-grid, .activity-grid { grid-template-columns: 1fr; }
  .experience-hero-grid { min-height: auto; gap: 48px; }
  .experience-hero {
    background: var(--fx-card);
  }
  .activity-grid { gap: 48px; }
  .activity-photo img { aspect-ratio: 16 / 10; }
  .facility-card, .facility-card-wide { grid-column: span 3; }
  .steps-grid, .reviews-grid { grid-template-columns: 1fr; }
  .step-card,
  .review-card {
    border-right: 0;
    border-bottom: 1px solid var(--fx-line);
  }
  .step-card:last-child,
  .review-card:last-child {
    border-bottom: 0;
  }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map iframe { min-height: 360px; }
}

@media (max-width: 640px) {
  .experience-section { padding-block: 72px; }
  .experience-nav { gap: 14px; }
  .experience-nav .experience-button { min-height: var(--fx-control-min); padding-inline: 14px; }
  .lang-switch button { padding: 6px 8px; font-size: 11px; }
  .experience-brand-logo img { height: 27px; }
  .experience-brand-context { font-size: 12px; }
  .experience-hero-grid { padding-block: 56px 72px; }
  .experience-actions { align-items: stretch; flex-direction: column; }
  .experience-actions .experience-button { width: 100%; }
  .experience-trust-list { display: grid; }
  .facility-grid { grid-template-columns: 1fr; }
  .facility-card, .facility-card-wide { grid-column: 1; }
  .experience-activity-band { padding-block: 72px; }
  .reviews-heading { align-items: stretch; flex-direction: column; }
  .review-score { width: fit-content; }
  .partnership-card { padding: 56px 22px; }
  .experience-footer-inner { padding-block: 28px max(28px, env(safe-area-inset-bottom)); flex-direction: column; }
  .experience-footer-links { justify-content: center; }
}

@media (max-width: 520px) {
  .experience-brand-context { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .experience-reveal { opacity: 1; transform: none; }
}
