@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
/* =========================================================
   ROOFTOP RESORT — styles.css
   ========================================================= */

:root {
  --primary: #4d0e2b;
  --primary-rgb: 77, 14, 43;
  --primary-dark: #2e0819;
  --primary-dark-rgb: 46, 8, 25;
  --primary-light: #7a1844;
  --primary-light-rgb: 122, 24, 68;
  --secondary: #ffe155;
  --secondary-rgb: 255, 225, 85;
  --secondary-dark: #d4b82e;
  --secondary-dark-rgb: 212, 184, 46;
  --secondary-light: #fff088;
  --secondary-light-rgb: 255, 240, 136;
  --accent: #ff4d8d;
  --accent-rgb: 255, 77, 141;
  --text: #1a0510;
  --text-rgb: 26, 5, 16;
  --text-light: #907b86;
  --text-light-rgb: 144, 123, 134;
  --text-muted: #907f87;
  --text-muted-rgb: 144, 127, 135;
  --background: #ffffff;
  --background-rgb: 255, 255, 255;
  --surface: #faf6f8;
  --surface-rgb: 250, 246, 248;
  --surface-dark: #3a0a20;
  --surface-dark-rgb: 58, 10, 32;
  --border: #e8dde3;
  --border-rgb: 232, 221, 227;
  --border-light: #f4ecf0;
  --border-light-rgb: 244, 236, 240;
  --bg-alt: #fff9e6;
  --bg-alt-rgb: 255, 249, 230;
  --hero-scrim-rgb: 9, 16, 31;

  --font-heading: "Montserrat", sans-serif;
  --font-body: "Lora", serif;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(var(--primary-rgb), 0.08);
  --shadow-md: 0 8px 24px rgba(var(--primary-rgb), 0.12);
  --shadow-lg: 0 20px 50px rgba(var(--primary-rgb), 0.18);
  --transition: 200ms ease;
  --container-max: 1200px;
  --header-h: 156px;
}

/* ------- Base ------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.4rem); }
h2 { font-size: clamp(1.85rem, 2.4vw + 0.8rem, 2.8rem); }
h3 { font-size: clamp(1.25rem, 0.8vw + 0.9rem, 1.5rem); }

p { margin: 0 0 1em; }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }
a:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -1000px;
  top: 0;
  background: var(--primary);
  color: var(--background);
  padding: 12px 16px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: var(--background); }

.nowrap { white-space: nowrap; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--secondary); }

.lead {
  font-size: 1.12rem;
  color: var(--text);
  line-height: 1.65;
}

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn:focus-visible { outline-offset: 4px; }

.btn--primary {
  background: var(--primary);
  color: var(--background);
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--background);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--secondary);
  color: var(--primary-dark);
  border-color: var(--secondary);
}
.btn--secondary:hover {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--secondary-rgb), 0.4);
}

.btn--ghost {
  background: rgba(var(--background-rgb), 0.12);
  color: var(--background);
  border-color: rgba(var(--background-rgb), 0.6);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: var(--background);
  color: var(--primary);
  border-color: var(--background);
}

.btn--ghost-light {
  background: transparent;
  color: var(--background);
  border-color: rgba(var(--background-rgb), 0.7);
}
.btn--ghost-light:hover {
  background: var(--background);
  color: var(--primary);
}

.btn--light {
  background: var(--background);
  color: var(--primary-dark);
  border-color: var(--background);
}
.btn--light:hover {
  background: var(--bg-alt);
  color: var(--primary-dark);
  border-color: var(--bg-alt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn--text {
  background: transparent;
  color: var(--primary);
  border: none;
  padding: 13px 0;
}
.btn--text:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--background);
  box-shadow: 0 1px 0 rgba(var(--border-rgb), 0.6);
}

.topbar {
  background: var(--primary-dark);
  color: var(--background);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(var(--background-rgb), 0.06);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  min-height: 40px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.topbar__left { display: flex; align-items: center; gap: 16px; }
.topbar__tagline {
  font-family: var(--font-heading);
  color: var(--secondary);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar__contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--background);
  font-weight: 500;
  white-space: nowrap;
}
.topbar__contact:hover { color: var(--secondary); }
.topbar__contact .icon { color: var(--secondary); flex-shrink: 0; }
.topbar__phone { white-space: nowrap; }

.navbar { background: var(--background); }
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 64px;
  font-size: 1px;
  flex-shrink: 0;
  white-space: nowrap;
  height: 64px;
  color: transparent;
}
.brand__logo {
  height: 64px;
  width: auto;
  max-width: none;
  display: block;
  border-radius: 6px;
  flex-shrink: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav__list {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.primary-nav__list a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: all var(--transition);
}
.primary-nav__list a:hover {
  color: var(--primary);
  background: var(--surface);
}
.primary-nav__list a.active {
  color: var(--primary);
}
.primary-nav__list a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.nav-cta {
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle__bar {
  width: 22px;
  height: 2px;
  background: var(--primary);
  display: block;
  transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--background);
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(var(--primary-dark-rgb), 0.88) 0%,
      rgba(var(--primary-rgb), 0.78) 50%,
      rgba(var(--primary-dark-rgb), 0.92) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.45) 100%);
  z-index: -1;
}

.hero__content {
  padding: 100px 24px 120px;
  max-width: 900px;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(var(--secondary-rgb), 0.5);
  border-radius: 999px;
  background: rgba(var(--primary-dark-rgb), 0.4);
}
.hero__title {
  color: var(--background);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.05;
  margin-bottom: 22px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.65), 0 2px 6px rgba(0,0,0,0.4);
}
.hero__title-accent { color: var(--secondary); display: inline-block; }
.hero__lede {
  font-size: clamp(1.05rem, 1.1vw + 0.8rem, 1.35rem);
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(var(--background-rgb), 0.94);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 0.9rem;
  color: rgba(var(--background-rgb), 0.92);
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  display: inline-block;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 46px;
  border: 2px solid rgba(var(--background-rgb), 0.7);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 2;
}
.hero__scroll span {
  width: 3px;
  height: 8px;
  background: var(--background);
  border-radius: 2px;
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: clamp(64px, 8vw, 110px) 0;
}
.section--welcome { background: var(--background); }
.section--amenities { background: var(--surface); }
.section--tour { background: var(--background); }
.section--steps { background: var(--bg-alt); }
.section--faq { background: var(--surface); }

.section--dark {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--background);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--background); }

.section--dark .section__sub,
.section--dark p { color: rgba(var(--background-rgb), 0.86); }

.section__head {
  max-width: 720px;
  margin-bottom: 48px;
}
.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__title { margin-bottom: 12px; }
.section__sub {
  font-size: 1.1rem;
  color: var(--text);
  margin: 0;
  opacity: 0.78;
}
.section__cta {
  margin-top: 48px;
  text-align: center;
}

/* =========================================================
   WELCOME
   ========================================================= */
.welcome {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.welcome__text { max-width: 560px; }
.welcome__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  align-items: center;
}
.welcome__media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  min-height: 480px;
}
.welcome__image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--surface-dark);
}
.welcome__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.welcome__image-frame--offset {
  transform: translateY(40px);
  border: 6px solid var(--background);
}

/* =========================================================
   EXPERIENCE GRID
   ========================================================= */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.experience-card {
  background: var(--background);
  color: var(--text);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border-light);
}
.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.experience-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.experience-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}
.experience-card:hover .experience-card__media img { transform: scale(1.05); }
.experience-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--secondary);
  color: var(--primary-dark);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
.experience-card__body {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.experience-card__body h3 {
  color: var(--primary);
  font-family: var(--font-heading);
  margin-bottom: 6px;
}
.experience-card__body p {
  color: var(--text);
  margin: 0 0 14px;
  opacity: 0.82;
}
.experience-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.experience-features-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 0.95rem;
}
.experience-features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}
.card-link {
  font-weight: 600;
  color: var(--primary);
  align-self: flex-start;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 2px;
  font-size: 0.95rem;
  margin-top: auto;
}
.card-link:hover {
  color: var(--primary-light);
  border-color: var(--secondary-dark);
}

.experience-card--featured {
  border: 2px solid var(--secondary);
  box-shadow: 0 20px 50px rgba(var(--primary-rgb), 0.25);
  transform: translateY(-8px);
}
.experience-card--featured:hover { transform: translateY(-14px); }

/* =========================================================
   AMENITIES
   ========================================================= */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.amenity {
  background: var(--background);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.amenity:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.amenity__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.amenity__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}
.amenity:hover .amenity__media img { transform: scale(1.05); }
.amenity__body {
  padding: 22px 24px 26px;
}
.amenity__body h3 {
  color: var(--primary);
  margin-bottom: 8px;
}
.amenity__body p {
  color: var(--text);
  margin: 0;
  font-size: 0.96rem;
  opacity: 0.82;
}

/* =========================================================
   BANNER (DANCE NAKED)
   ========================================================= */
.section--banner { padding: 0; }
.banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}
.banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(var(--primary-dark-rgb), 0.85) 0%,
      rgba(var(--primary-dark-rgb), 0.6) 60%,
      rgba(var(--primary-dark-rgb), 0.85) 100%);
  z-index: -1;
}
.banner__content {
  padding: 80px 24px;
  color: var(--background);
  text-align: center;
}
.banner__title {
  color: var(--secondary);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.banner__sub {
  color: rgba(var(--background-rgb), 0.94);
  font-size: 1.1rem;
  margin-bottom: 28px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* =========================================================
   TOUR (Video)
   ========================================================= */
.tour {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.tour__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tour__list li {
  position: relative;
  padding-left: 36px;
  color: var(--text);
}
.tour__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--secondary);
  background-image: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}
.tour__list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--primary-dark);
  border-bottom: 2px solid var(--primary-dark);
  transform: rotate(-45deg);
}
.tour__list strong { color: var(--primary); display: inline; font-weight: 700; }

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(135deg, rgba(var(--primary-dark-rgb), 0.35), rgba(var(--primary-rgb), 0.4)),
    url("assets/hero_c46275b26ce9.jpg") center / cover no-repeat;
}
.video-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  border-radius: 50%;
  background: rgba(var(--secondary-rgb), 0.95);
  z-index: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.video-container::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 4px);
  width: 0;
  height: 0;
  margin: -16px 0 0 -8px;
  border-style: solid;
  border-width: 16px 0 16px 26px;
  border-color: transparent transparent transparent var(--primary-dark);
  z-index: 0;
  pointer-events: none;
}
.video-container > iframe,
.video-container > video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
}

/* =========================================================
   STEPS
   ========================================================= */
.steps {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  counter-reset: step;
}
.step {
  background: var(--background);
  border-radius: var(--radius);
  padding: 32px 28px 30px;
  border: 1px solid var(--border-light);
  position: relative;
}
.step__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 4px 14px;
  background: var(--secondary);
  border-radius: 10px;
}
.step h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.18rem;
}
.step p {
  color: var(--text);
  margin: 0;
  font-size: 0.96rem;
  opacity: 0.8;
}
.step p a { color: var(--primary); font-weight: 600; }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.faq__head { position: sticky; top: calc(var(--header-h) + 24px); }
.faq__head p { color: var(--text); opacity: 0.78; }
.faq__head a { font-weight: 600; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: var(--border); }
.faq-item__q {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  color: var(--primary);
  position: relative;
  font-weight: 400;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  background: var(--surface);
  border-radius: 50%;
  transition: all var(--transition);
}
.faq-item[open] .faq-item__q::after {
  content: "×";
  background: var(--secondary);
  transform: translateY(-50%) rotate(0deg);
}
.faq-item__a {
  padding: 0 24px 22px;
  color: var(--text);
  opacity: 0.88;
}
.faq-item__a p { margin: 0; }

/* =========================================================
   CTA BAND
   ========================================================= */
.section--cta {
  background:
    linear-gradient(135deg,
      rgba(var(--primary-dark-rgb), 0.95),
      rgba(var(--primary-rgb), 0.92)),
    url("assets/hero_c46275b26ce9.jpg") center / cover no-repeat;
  color: var(--background);
}
.cta-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-band__text h2 {
  color: var(--background);
  margin-bottom: 10px;
}
.cta-band__text p {
  color: rgba(var(--background-rgb), 0.92);
  margin: 0;
  font-size: 1.08rem;
  max-width: 540px;
}
.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--primary-dark);
  color: var(--background);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-top: 72px;
  padding-bottom: 56px;
}
.site-footer__brand p {
  color: rgba(var(--background-rgb), 0.82);
  font-size: 0.95rem;
  margin: 16px 0 24px;
  max-width: 360px;
}
.site-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--background);
  text-decoration: none;
}
.site-footer__brand-link:hover { color: var(--secondary); }
.site-footer__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.site-footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--background);
  line-height: 1.1;
}
.site-footer__social {
  display: flex;
  gap: 10px;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(var(--background-rgb), 0.1);
  color: var(--background);
  transition: all var(--transition);
}
.site-footer__social a:hover {
  background: var(--secondary);
  color: var(--primary-dark);
}
.site-footer__col h3 {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}
.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__col a {
  color: rgba(var(--background-rgb), 0.82);
  font-size: 0.95rem;
}
.site-footer__col a:hover { color: var(--secondary); }

.site-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__contact li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: rgba(var(--background-rgb), 0.82);
}
.site-footer__contact strong {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-footer__contact a {
  color: var(--background);
  font-weight: 500;
}
.site-footer__contact a:hover { color: var(--secondary); }

.site-footer__bottom {
  border-top: 1px solid rgba(var(--background-rgb), 0.12);
  padding: 22px 0;
}
.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer__bottom p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(var(--background-rgb), 0.7);
}
.site-footer__legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
}
.site-footer__legal a {
  color: rgba(var(--background-rgb), 0.7);
  font-size: 0.88rem;
}
.site-footer__legal a:hover { color: var(--secondary); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .welcome { grid-template-columns: 1fr; gap: 48px; }
  .welcome__media { min-height: 380px; }
  .tour { grid-template-columns: 1fr; gap: 40px; }
  .faq { grid-template-columns: 1fr; gap: 32px; }
  .faq__head { position: static; }
  .experience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .experience-card--featured { transform: none; }
  .experience-card--featured:hover { transform: translateY(-6px); }
  .amenities-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-band { grid-template-columns: 1fr; gap: 28px; }
  .cta-band__actions { justify-content: flex-start; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .topbar__inner { justify-content: center; text-align: center; gap: 4px 18px; padding: 8px 0; }
  .topbar__left { display: none; }

  .nav-toggle { display: inline-flex; }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 12px;
    box-shadow: 0 12px 24px rgba(var(--primary-rgb), 0.12);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    border-top: 1px solid var(--border-light);
  }
  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .primary-nav__list {
    flex-direction: column;
    gap: 0;
  }
  .primary-nav__list a {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 1.02rem;
  }
  .primary-nav__list a.active::after { display: none; }
  .primary-nav__list a.active {
    background: var(--surface);
  }
  .nav-cta {
    align-self: stretch;
    text-align: center;
  }

  .navbar__inner { position: relative; }

  .hero { min-height: 80vh; }
  .hero__content { padding: 80px 24px 100px; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .brand__logo { height: 52px; }
  .topbar { font-size: 0.78rem; }
  .topbar__right { gap: 12px; }

  .hero__ctas .btn { width: 100%; }
  .hero__trust { gap: 6px 16px; font-size: 0.82rem; }

  .experience-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }

  .welcome__media { grid-template-columns: 1fr; min-height: auto; }
  .welcome__image-frame--offset { transform: none; }

  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; padding-top: 56px; }
  .site-footer__bottom-inner { justify-content: center; text-align: center; }

  .cta-band__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__scroll span { animation: none; }
}


/* =========================================================
   ROOMS & RATES — page-scoped (body.page-rooms)
   ========================================================= */

body.page-rooms .page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--background);
  isolation: isolate;
}
body.page-rooms .page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
body.page-rooms .page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body.page-rooms .page-hero__media .page-hero__fallback-img {
  position: absolute;
  inset: 0;
}
body.page-rooms .page-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (prefers-reduced-motion: reduce) {
  body.page-rooms .page-hero__video { display: none; }
}
body.page-rooms .page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(var(--primary-dark-rgb), 0.92) 0%,
      rgba(var(--primary-dark-rgb), 0.82) 50%,
      rgba(var(--primary-dark-rgb), 0.94) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.60) 100%);
  z-index: -1;
}
body.page-rooms .page-hero__content {
  padding: 96px 24px 96px;
  max-width: 820px;
  position: relative;
  z-index: 1;
}
body.page-rooms .page-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(var(--secondary-rgb), 0.5);
  border-radius: 999px;
  background: rgba(var(--primary-dark-rgb), 0.4);
}
body.page-rooms .page-hero__title {
  color: var(--background);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.65), 0 2px 6px rgba(0,0,0,0.4);
}
body.page-rooms .page-hero__lede {
  font-size: clamp(1.05rem, 1vw + 0.8rem, 1.25rem);
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--background);
  text-shadow: 0 2px 6px rgba(0,0,0,0.8), 0 1px 2px rgba(0,0,0,0.7);
  font-weight: 500;
}
body.page-rooms .page-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
body.page-rooms .page-hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 0.9rem;
  color: rgba(var(--background-rgb), 0.92);
}
body.page-rooms .page-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
body.page-rooms .page-hero__trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  display: inline-block;
}

/* Scenario intro (NarrativeWorkflow lead) */
body.page-rooms .section--scenario { background: var(--background); }
body.page-rooms .scenario {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
body.page-rooms .scenario__text { max-width: 620px; }
body.page-rooms .scenario__list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: scenario;
}
body.page-rooms .scenario__list li {
  position: relative;
  padding: 16px 18px 16px 64px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  counter-increment: scenario;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.55;
}
body.page-rooms .scenario__list li::before {
  content: counter(scenario, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  background: var(--secondary);
  color: var(--primary-dark);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
body.page-rooms .scenario__list strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 1.04rem;
}
body.page-rooms .scenario__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--surface-dark);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
body.page-rooms .scenario__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body.page-rooms .scenario__media-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(var(--primary-dark-rgb), 0.88);
  color: var(--background);
  padding: 14px 18px;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
body.page-rooms .scenario__media-tag-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
}
body.page-rooms .scenario__media-tag-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--background);
}

/* Includes grid (dark band) */
body.page-rooms .section--includes { /* relies on .section--dark for surface */ }
body.page-rooms .includes-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
body.page-rooms .includes-card {
  background: rgba(var(--primary-dark-rgb), 0.55);
  border: 1px solid rgba(var(--secondary-rgb), 0.28);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  color: var(--background);
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
body.page-rooms .includes-card:hover {
  background: rgba(var(--primary-dark-rgb), 0.72);
  border-color: rgba(var(--secondary-rgb), 0.55);
  transform: translateY(-3px);
}
body.page-rooms .includes-card__num,
body.page-rooms .includes-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}
body.page-rooms .includes-card__icon svg {
  display: block;
}
body.page-rooms .includes-card h3 {
  color: var(--background);
  font-size: 1.18rem;
  margin-bottom: 8px;
}
body.page-rooms .includes-card p {
  color: rgba(var(--background-rgb), 0.86);
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
}

/* Process section (steps band) */
body.page-rooms .section--process { background: var(--bg-alt); }

/* Responsive */
@media (max-width: 1024px) {
  body.page-rooms .scenario { grid-template-columns: 1fr; gap: 40px; }
  body.page-rooms .scenario__media {
    aspect-ratio: 16 / 11;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: auto;
  }
  body.page-rooms .includes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  body.page-rooms .page-hero { min-height: 52vh; }
  body.page-rooms .page-hero__content { padding: 72px 18px 72px; }
  body.page-rooms .page-hero__ctas .btn { width: 100%; }
  body.page-rooms .page-hero__trust { gap: 6px 16px; font-size: 0.82rem; }
  body.page-rooms .includes-grid { grid-template-columns: 1fr; }
  body.page-rooms .scenario__list li { padding-left: 60px; }
}

/* =========================================================
   DAY PASSES — page-scoped (body.page-day-passes)
   ========================================================= */

/* Page hero (mirrors page-rooms structure) */
body.page-day-passes .page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--background);
  isolation: isolate;
}
body.page-day-passes .page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
body.page-day-passes .page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body.page-day-passes .page-hero__media .page-hero__fallback-img {
  position: absolute;
  inset: 0;
}
body.page-day-passes .page-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (prefers-reduced-motion: reduce) {
  body.page-day-passes .page-hero__video { display: none; }
}
body.page-day-passes .page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(var(--primary-dark-rgb), 0.92) 0%,
      rgba(var(--primary-rgb), 0.88) 50%,
      rgba(var(--primary-dark-rgb), 0.95) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.72) 100%);
  z-index: -1;
}
body.page-day-passes .page-hero__content {
  padding: 96px 24px 96px;
  max-width: 820px;
  position: relative;
  z-index: 1;
}
body.page-day-passes .page-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(var(--secondary-rgb), 0.65);
  border-radius: 999px;
  background: rgba(var(--primary-dark-rgb), 0.62);
  text-shadow: 0 1px 2px rgba(0,0,0,0.55);
}
body.page-day-passes .page-hero__title {
  color: var(--background);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow: 0 4px 22px rgba(0,0,0,0.78), 0 2px 6px rgba(0,0,0,0.6);
}
body.page-day-passes .page-hero__lede {
  font-size: clamp(1.05rem, 1vw + 0.8rem, 1.25rem);
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--background);
  text-shadow: 0 2px 8px rgba(0,0,0,0.85), 0 1px 2px rgba(0,0,0,0.75);
  font-weight: 500;
}
body.page-day-passes .page-hero__ctas .btn--secondary {
  color: #000;
  font-weight: 700;
  border-color: var(--primary-dark);
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
body.page-day-passes .page-hero__ctas .btn--secondary:hover {
  color: #000;
}
body.page-day-passes .page-hero__ctas .btn--light {
  color: #000;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}
body.page-day-passes .page-hero__ctas .btn--light:hover {
  color: #000;
}
body.page-day-passes .page-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
body.page-day-passes .page-hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 0.9rem;
  color: rgba(var(--background-rgb), 0.92);
}
body.page-day-passes .page-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
body.page-day-passes .page-hero__trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  display: inline-block;
}

/* Quick-answers (ConversationalFAQ lead) */
body.page-day-passes .section--quick-answers { background: var(--background); }
body.page-day-passes .qa-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
body.page-day-passes .qa-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius);
  padding: 26px 28px 22px;
  transition: box-shadow var(--transition), transform var(--transition);
}
body.page-day-passes .qa-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
body.page-day-passes .qa-card__q {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.12rem;
  margin: 0 0 10px;
  position: relative;
  padding-left: 36px;
  line-height: 1.35;
}
body.page-day-passes .qa-card__q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  background: var(--secondary);
  color: var(--primary-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-heading);
}
body.page-day-passes .qa-card__a {
  margin: 0;
  color: var(--text);
  opacity: 0.86;
  font-size: 0.96rem;
  padding-left: 36px;
  position: relative;
  line-height: 1.55;
}
body.page-day-passes .qa-card__a::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  background: rgba(var(--primary-rgb), 0.10);
  color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

/* Day cases grid (scenario_intro component) */
body.page-day-passes .section--day-cases { background: var(--surface); }
body.page-day-passes .day-cases-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
body.page-day-passes .day-case {
  background: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  padding: 26px 24px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
body.page-day-passes .day-case:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
body.page-day-passes .day-case__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
body.page-day-passes .day-case h3 {
  color: var(--primary);
  font-size: 1.18rem;
  margin-bottom: 8px;
}
body.page-day-passes .day-case p {
  margin: 0;
  color: var(--text);
  opacity: 0.84;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Day process (service_process component) */
body.page-day-passes .section--day-process { background: var(--background); }

/* Day includes (dark band with image cards) */
body.page-day-passes .day-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
body.page-day-passes .day-include {
  background: rgba(var(--primary-dark-rgb), 0.55);
  border: 1px solid rgba(var(--secondary-rgb), 0.28);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--background);
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}
body.page-day-passes .day-include:hover {
  background: rgba(var(--primary-dark-rgb), 0.72);
  border-color: rgba(var(--secondary-rgb), 0.55);
  transform: translateY(-3px);
}
body.page-day-passes .day-include__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
body.page-day-passes .day-include__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 500ms ease;
}
body.page-day-passes .day-include:hover .day-include__media img {
  transform: scale(1.05);
}
body.page-day-passes .day-include__body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.page-day-passes .day-include__body h3 {
  color: var(--background);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
body.page-day-passes .day-include__body p {
  color: rgba(var(--background-rgb), 0.86);
  font-size: 0.95rem;
  margin: 0 0 14px;
  line-height: 1.55;
}
body.page-day-passes .day-include__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.page-day-passes .day-include__list li {
  position: relative;
  padding-left: 22px;
  color: rgba(var(--background-rgb), 0.92);
  font-size: 0.92rem;
}
body.page-day-passes .day-include__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 8px;
  border-left: 2px solid var(--secondary);
  border-bottom: 2px solid var(--secondary);
  transform: rotate(-45deg);
}

/* Banner overlay reinforcement (Sun-up to sundown) */
body.page-day-passes .section--banner .banner__overlay {
  background:
    linear-gradient(90deg,
      rgba(var(--primary-dark-rgb), 0.92) 0%,
      rgba(var(--primary-dark-rgb), 0.78) 60%,
      rgba(var(--primary-dark-rgb), 0.92) 100%);
}
body.page-day-passes .section--banner .banner__title {
  text-shadow: 0 3px 10px rgba(0,0,0,0.7);
}
body.page-day-passes .section--banner .banner__sub {
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}
body.page-day-passes .section--banner .btn--secondary {
  color: #000;
  font-weight: 700;
  border-color: var(--primary-dark);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
body.page-day-passes .section--banner .btn--secondary:hover {
  color: #000;
}

/* Distinct CTA band (bottom contact band) */
body.page-day-passes .section--cta {
  background:
    linear-gradient(135deg,
      rgba(var(--primary-dark-rgb), 0.96),
      rgba(var(--primary-rgb), 0.94)),
    url("assets/hero_c46275b26ce9.jpg") center / cover no-repeat;
  position: relative;
  border-top: 4px solid var(--secondary);
  border-bottom: 4px solid var(--secondary);
  padding-top: 64px;
  padding-bottom: 64px;
}
body.page-day-passes .section--cta::before {
  content: "Plan your day";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--secondary);
  opacity: 0.92;
}
body.page-day-passes .section--cta .cta-band__text h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
body.page-day-passes .section--cta .cta-band__text p {
  text-shadow: 0 1px 3px rgba(0,0,0,0.45);
}
body.page-day-passes .section--cta .btn--secondary {
  color: #000;
  font-weight: 700;
  border-color: var(--primary-dark);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
body.page-day-passes .section--cta .btn--secondary:hover {
  color: #000;
}
body.page-day-passes .section--cta .btn--light {
  color: #000;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
body.page-day-passes .section--cta .btn--light:hover {
  color: #000;
}

/* Responsive */
@media (max-width: 1024px) {
  body.page-day-passes .qa-grid { grid-template-columns: 1fr; }
  body.page-day-passes .day-cases-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.page-day-passes .day-includes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  body.page-day-passes .page-hero { min-height: 52vh; }
  body.page-day-passes .page-hero__content { padding: 72px 18px 72px; }
  body.page-day-passes .page-hero__ctas .btn { width: 100%; }
  body.page-day-passes .page-hero__trust { gap: 6px 16px; font-size: 0.82rem; }
  body.page-day-passes .day-cases-grid { grid-template-columns: 1fr; }
  body.page-day-passes .day-includes-grid { grid-template-columns: 1fr; }
  body.page-day-passes .qa-card__q,
  body.page-day-passes .qa-card__a { padding-left: 32px; }
}

/* =========================================================
   NIGHT PASSES — page-scoped (body.page-night-passes)
   ========================================================= */

body.page-night-passes .page-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  color: var(--background);
  overflow: hidden;
  margin-top: var(--header-h);
}
body.page-night-passes .page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
body.page-night-passes .page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body.page-night-passes .page-hero__media .page-hero__fallback-img {
  position: absolute;
  inset: 0;
}
body.page-night-passes .page-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (prefers-reduced-motion: reduce) {
  body.page-night-passes .page-hero__video { display: none; }
}
body.page-night-passes .page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(var(--primary-dark-rgb), 0.92) 0%, rgba(var(--primary-rgb), 0.82) 50%, rgba(0,0,0,0.88) 100%);
}
body.page-night-passes .page-hero__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
body.page-night-passes .page-hero__content {
  position: relative;
  z-index: 1;
  padding: 96px 24px 96px;
  max-width: 900px;
}
body.page-night-passes .page-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(var(--secondary-rgb), 0.55);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
}
body.page-night-passes .page-hero__title {
  font-size: clamp(2.6rem, 5vw + 1rem, 4.6rem);
  color: var(--background);
  margin: 0 0 18px;
  text-shadow: 0 3px 14px rgba(0,0,0,0.75), 0 2px 4px rgba(0,0,0,0.6);
}
body.page-night-passes .page-hero__lede {
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.2rem);
  line-height: 1.7;
  color: rgba(var(--background-rgb), 0.98);
  margin: 0 0 28px;
  max-width: 720px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 1px 2px rgba(0,0,0,0.5);
}
body.page-night-passes .page-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
body.page-night-passes .page-hero__ctas .btn--secondary {
  color: #000;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
body.page-night-passes .page-hero__call {
  background: rgba(0, 0, 0, 0.32);
  border: 2px solid rgba(var(--background-rgb), 0.85);
  color: var(--background);
  backdrop-filter: blur(4px);
}
body.page-night-passes .page-hero__call:hover {
  background: var(--background);
  color: var(--primary-dark);
  border-color: var(--background);
}
body.page-night-passes .page-hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 0.9rem;
  color: rgba(var(--background-rgb), 0.92);
}
body.page-night-passes .page-hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
}
body.page-night-passes .page-hero__trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  display: inline-block;
  box-shadow: 0 0 8px rgba(var(--secondary-rgb), 0.6);
}

/* Night Intro — LongDocument prose + facts sidebar */
body.page-night-passes .section--night-intro { background: var(--background); }
body.page-night-passes .night-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
body.page-night-passes .night-intro__prose h2 {
  font-size: clamp(1.7rem, 1.4vw + 1rem, 2.4rem);
  margin: 0 0 18px;
  line-height: 1.25;
}
body.page-night-passes .night-intro__prose p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 18px;
}
body.page-night-passes .night-intro__prose .lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text);
  font-weight: 500;
  border-left: 3px solid var(--secondary);
  padding-left: 18px;
  margin-bottom: 22px;
}
body.page-night-passes .night-intro__prose strong { color: var(--primary); font-weight: 700; }
body.page-night-passes .night-intro__facts {
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--background);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-lg);
}
body.page-night-passes .night-intro__facts-head { margin-bottom: 20px; }
body.page-night-passes .night-intro__facts-head h3 {
  color: var(--background);
  margin: 0;
  font-size: 1.35rem;
}
body.page-night-passes .night-intro__list {
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 14px;
}
body.page-night-passes .night-intro__row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(var(--secondary-rgb), 0.22);
}
body.page-night-passes .night-intro__row:last-child { border-bottom: none; padding-bottom: 0; }
body.page-night-passes .night-intro__row dt {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  padding-top: 3px;
}
body.page-night-passes .night-intro__row dd {
  margin: 0;
  color: rgba(var(--background-rgb), 0.94);
  font-size: 0.95rem;
  line-height: 1.55;
}
body.page-night-passes .night-intro__cta {
  width: 100%;
  background: var(--secondary);
  color: var(--primary-dark);
  border-color: var(--secondary);
}
body.page-night-passes .night-intro__cta:hover {
  background: var(--secondary-light);
  border-color: var(--secondary-light);
  color: var(--primary-dark);
}

/* Night Criteria — decision two-column */
body.page-night-passes .section--night-criteria { background: var(--bg-alt); }
body.page-night-passes .night-criteria {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 16px;
}
body.page-night-passes .night-criteria__col {
  background: var(--background);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
body.page-night-passes .night-criteria__col--yes {
  border-top: 4px solid var(--primary);
}
body.page-night-passes .night-criteria__col--no {
  border-top: 4px solid var(--text-light);
  background: var(--surface);
}
body.page-night-passes .night-criteria__head {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--border);
}
body.page-night-passes .night-criteria__head h3 {
  font-size: 1.35rem;
  margin: 8px 0 0;
  color: var(--primary);
}
body.page-night-passes .night-criteria__col--no .night-criteria__head h3 { color: var(--text-light); }
body.page-night-passes .night-criteria__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  padding: 5px 11px;
  border-radius: 999px;
}
body.page-night-passes .night-criteria__tag--alt {
  color: var(--text-light);
  background: rgba(var(--text-light-rgb), 0.12);
}
body.page-night-passes .night-criteria__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.page-night-passes .night-criteria__list li {
  position: relative;
  padding-left: 30px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text);
}
body.page-night-passes .night-criteria__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
body.page-night-passes .night-criteria__list--alt li::before {
  background-color: var(--text-light);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><line x1='18' y1='6' x2='6' y2='18'/><line x1='6' y1='6' x2='18' y2='18'/></svg>");
}
body.page-night-passes .night-criteria__list strong { color: var(--primary); font-weight: 700; }
body.page-night-passes .night-criteria__list a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(var(--primary-rgb), 0.35);
}
body.page-night-passes .night-criteria__list a:hover { color: var(--primary-light); }
body.page-night-passes .night-criteria__note {
  margin: 28px 0 0;
  text-align: center;
  font-size: 0.96rem;
  color: var(--text);
  font-style: italic;
}
body.page-night-passes .night-criteria__note a { color: var(--primary); font-weight: 600; font-style: normal; }

/* Night Arc — chronological timeline */
body.page-night-passes .section--night-arc {
  background:
    radial-gradient(circle at 15% 10%, rgba(var(--accent-rgb), 0.18) 0%, transparent 45%),
    linear-gradient(180deg, var(--primary-dark) 0%, #1a0510 100%);
  color: var(--background);
}
body.page-night-passes .section--night-arc .section__head { color: var(--background); }
body.page-night-passes .section--night-arc h2,
body.page-night-passes .section--night-arc h3 { color: var(--background); }
body.page-night-passes .section--night-arc .section__sub { color: rgba(var(--background-rgb), 0.95); opacity: 1; }
body.page-night-passes .night-arc {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
body.page-night-passes .night-arc::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--secondary) 0%, rgba(var(--secondary-rgb), 0.2) 100%);
}
body.page-night-passes .night-arc__beat {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 24px 0 24px 60px;
}
body.page-night-passes .night-arc__beat::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 32px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 4px rgba(var(--secondary-rgb), 0.25), 0 0 16px rgba(var(--secondary-rgb), 0.55);
}
body.page-night-passes .night-arc__marker {
  display: flex;
  align-items: flex-start;
  padding-top: 6px;
}
body.page-night-passes .night-arc__time {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary-light);
  padding: 8px 18px;
  border: 1px solid rgba(var(--secondary-rgb), 0.75);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(var(--secondary-rgb), 0.18);
}
body.page-night-passes .night-arc__body h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  color: var(--background);
}
body.page-night-passes .night-arc__body p {
  margin: 0;
  color: rgba(var(--background-rgb), 0.96);
  line-height: 1.7;
  font-size: 1.05rem;
}
body.page-night-passes .night-arc__body em {
  color: var(--secondary);
  font-style: italic;
}
body.page-night-passes .night-arc__note {
  margin: 32px 0 0 60px;
  font-size: 1rem;
  color: rgba(var(--background-rgb), 0.88);
  font-style: italic;
}

/* Night Process — reuse .steps but page background */
body.page-night-passes .section--night-process { background: var(--background); }

/* Night Spaces — 2-card grid */
body.page-night-passes .section--night-spaces { background: var(--surface); }
body.page-night-passes .night-spaces {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 12px;
}
body.page-night-passes .night-space {
  background: var(--background);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
body.page-night-passes .night-space:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
body.page-night-passes .night-space__media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
body.page-night-passes .night-space__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92);
  transition: transform 600ms ease, filter 300ms ease;
}
body.page-night-passes .night-space:hover .night-space__media img {
  transform: scale(1.04);
  filter: brightness(1);
}
body.page-night-passes .night-space__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--background);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
body.page-night-passes .night-space__badge--alt {
  background: var(--secondary);
  color: var(--primary-dark);
}
body.page-night-passes .night-space__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.page-night-passes .night-space__body h3 {
  margin: 0;
  font-size: 1.55rem;
  color: var(--primary);
}
body.page-night-passes .night-space__lede {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}
body.page-night-passes .night-space__list {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.page-night-passes .night-space__list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}
body.page-night-passes .night-space__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  border: 2px solid var(--primary);
}
body.page-night-passes .night-space__list strong {
  color: var(--primary);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  body.page-night-passes .night-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  body.page-night-passes .night-intro__facts {
    position: static;
  }
  body.page-night-passes .night-criteria { grid-template-columns: 1fr; }
  body.page-night-passes .night-spaces { grid-template-columns: 1fr; }
  body.page-night-passes .night-arc__beat {
    grid-template-columns: 180px 1fr;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  body.page-night-passes .page-hero { min-height: 56vh; }
  body.page-night-passes .page-hero__content { padding: 72px 18px 72px; }
  body.page-night-passes .page-hero__ctas .btn { width: 100%; }
  body.page-night-passes .page-hero__trust { gap: 6px 16px; font-size: 0.82rem; }
  body.page-night-passes .night-intro__row { grid-template-columns: 80px 1fr; gap: 10px; }
  body.page-night-passes .night-criteria__col { padding: 24px; }
  body.page-night-passes .night-arc::before { left: 18px; }
  body.page-night-passes .night-arc__beat {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 50px;
  }
  body.page-night-passes .night-arc__beat::before {
    left: 10px;
    top: 28px;
    width: 16px;
    height: 16px;
  }
  body.page-night-passes .night-arc__note { margin-left: 50px; }
  body.page-night-passes .night-space__body { padding: 22px; }
}

/* =========================================================
   AMENITIES — page-scoped (body.page-amenities)
   ========================================================= */

body.page-amenities .page-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--background);
  isolation: isolate;
}
body.page-amenities .page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
body.page-amenities .page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
body.page-amenities .page-hero__media .page-hero__fallback-img {
  position: absolute;
  inset: 0;
}
body.page-amenities .page-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
@media (prefers-reduced-motion: reduce) {
  body.page-amenities .page-hero__video { display: none; }
}
body.page-amenities .page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg,
      rgba(var(--primary-dark-rgb), 0.98) 0%,
      rgba(var(--primary-dark-rgb), 0.94) 55%,
      rgba(var(--primary-dark-rgb), 0.99) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.88) 100%);
  z-index: -1;
}
body.page-amenities .page-hero__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.60) 100%);
  pointer-events: none;
}
body.page-amenities .page-hero__content {
  padding: 96px 24px 96px;
  max-width: 820px;
  position: relative;
  z-index: 1;
}
body.page-amenities .page-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 18px;
  padding: 7px 16px;
  border: 1px solid rgba(var(--secondary-rgb), 0.7);
  border-radius: 999px;
  background: var(--text);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
body.page-amenities .page-hero__title {
  color: var(--background);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 18px;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 0.85), 0 0 12px rgba(0, 0, 0, 0.7);
}
body.page-amenities .page-hero__lede {
  font-size: clamp(1.05rem, 1vw + 0.8rem, 1.25rem);
  max-width: 660px;
  margin-bottom: 28px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.55);
  padding: 16px 20px;
  border-radius: 10px;
  border-left: 3px solid var(--secondary);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.95);
  font-weight: 500;
  line-height: 1.55;
}
body.page-amenities .page-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
body.page-amenities .page-hero__ctas .btn--secondary {
  color: #000;
  font-weight: 700;
  border-color: var(--secondary-dark);
}
body.page-amenities .page-hero__ctas .btn--secondary:hover {
  color: #000;
}
body.page-amenities .page-hero__ctas .btn--light {
  color: #000;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
body.page-amenities .page-hero__ctas .btn--light:hover {
  color: #000;
}
body.page-amenities .page-hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 0.9rem;
  color: rgba(var(--background-rgb), 0.92);
}
body.page-amenities .page-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
body.page-amenities .page-hero__trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  display: inline-block;
}

/* ---- Moments (NarrativeWorkflow lead — when each amenity is needed) ---- */
body.page-amenities .section--moments { background: var(--background); }
body.page-amenities .amenities-moments__intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
body.page-amenities .amenities-moments__intro h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  margin-bottom: 14px;
}
body.page-amenities .amenities-moments__intro .lead {
  color: var(--text);
  opacity: 0.9;
}
body.page-amenities .amenities-moments__intro em {
  font-style: italic;
  color: var(--primary);
}
body.page-amenities .moments-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
body.page-amenities .moment {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  position: relative;
  transition: all var(--transition);
}
body.page-amenities .moment:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary-rgb), 0.18);
}
body.page-amenities .moment__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
body.page-amenities .moment__when {
  color: var(--primary);
}
body.page-amenities .moment__amenity {
  color: var(--text);
  opacity: 0.55;
  position: relative;
  padding-left: 14px;
}
body.page-amenities .moment__amenity::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
}
body.page-amenities .moment h3 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-style: italic;
}
body.page-amenities .moment p {
  color: var(--text);
  opacity: 0.88;
  line-height: 1.6;
  font-size: 0.96rem;
  margin: 0;
}

/* ---- Walk: walk-through tour (service_process) ---- */
body.page-amenities .section--walk { background: var(--bg-alt); }
body.page-amenities .amenities-route {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: route;
}
body.page-amenities .route-stop {
  background: var(--background);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 24px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}
body.page-amenities .route-stop:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary-rgb), 0.2);
}
body.page-amenities .route-stop__marker {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.25);
}
body.page-amenities .route-stop__body { flex: 1; min-width: 0; }
body.page-amenities .route-stop__where {
  display: block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
body.page-amenities .route-stop h3 {
  font-size: 1.12rem;
  margin: 0 0 8px;
  color: var(--primary-dark);
  line-height: 1.3;
}
body.page-amenities .route-stop p {
  color: var(--text);
  opacity: 0.88;
  line-height: 1.55;
  font-size: 0.93rem;
  margin: 0;
}
body.page-amenities .amenities-route__note {
  margin: 28px auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--text);
  opacity: 0.72;
  font-size: 0.94rem;
  font-style: italic;
}

/* ---- Spaces deep-dive (dark section, alternating rows) ---- */
body.page-amenities .section--spaces { /* uses .section--dark for surface */ }
body.page-amenities .space-deepdive {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 40px;
}
body.page-amenities .space-card {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
  background: rgba(var(--background-rgb), 0.06);
  border: 1px solid rgba(var(--background-rgb), 0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
}
body.page-amenities .space-card--reverse {
  grid-template-columns: 1fr 1.05fr;
}
body.page-amenities .space-card--reverse .space-card__media {
  order: 2;
}
body.page-amenities .space-card--reverse .space-card__body {
  order: 1;
}
body.page-amenities .space-card__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(0,0,0,0.2);
}
body.page-amenities .space-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
body.page-amenities .space-card:hover .space-card__media img {
  transform: scale(1.04);
}
body.page-amenities .space-card__body {
  padding: 8px 16px 8px 8px;
  color: var(--background);
}
body.page-amenities .space-card__index {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--secondary);
  margin-bottom: 10px;
}
body.page-amenities .space-card__body h3 {
  font-size: clamp(1.4rem, 1.8vw, 1.75rem);
  color: var(--background);
  margin: 0 0 12px;
  line-height: 1.2;
}
body.page-amenities .space-card__body p {
  color: rgba(var(--background-rgb), 0.88);
  line-height: 1.62;
  margin: 0 0 16px;
}
body.page-amenities .space-card__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(var(--background-rgb), 0.18);
}
body.page-amenities .space-card__facts > div { margin: 0; }
body.page-amenities .space-card__facts dt {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 4px;
}
body.page-amenities .space-card__facts dd {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--background);
  margin: 0;
  line-height: 1.35;
}

/* Banner overlay tweak for amenities palette */
body.page-amenities .section--banner .banner__overlay {
  background:
    linear-gradient(135deg,
      rgba(var(--primary-dark-rgb), 0.86) 0%,
      rgba(var(--primary-rgb), 0.78) 100%);
}
body.page-amenities .section--banner .btn--secondary {
  color: #000;
  font-weight: 700;
  border-color: var(--secondary-dark);
}
body.page-amenities .section--banner .btn--secondary:hover {
  color: #000;
}

/* CTA-band button overrides — keep text dark on yellow for AA contrast */
body.page-amenities .section--cta .btn--secondary {
  color: #000;
  font-weight: 700;
  border-color: var(--secondary-dark);
}
body.page-amenities .section--cta .btn--secondary:hover {
  color: #000;
}
body.page-amenities .section--cta .btn--light {
  color: #000;
  font-weight: 700;
}
body.page-amenities .section--cta .btn--light:hover {
  color: #000;
}

/* Responsive */
@media (max-width: 1024px) {
  body.page-amenities .moments-grid { grid-template-columns: 1fr; }
  body.page-amenities .amenities-route { grid-template-columns: 1fr; }
  body.page-amenities .space-card,
  body.page-amenities .space-card--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  body.page-amenities .space-card--reverse .space-card__media { order: 0; }
  body.page-amenities .space-card--reverse .space-card__body { order: 0; }
  body.page-amenities .space-card__body { padding: 8px; }
}
@media (max-width: 640px) {
  body.page-amenities .page-hero { min-height: 52vh; }
  body.page-amenities .page-hero__content { padding: 72px 18px 72px; }
  body.page-amenities .page-hero__ctas .btn { width: 100%; }
  body.page-amenities .page-hero__trust { gap: 6px 16px; font-size: 0.82rem; }
  body.page-amenities .moment { padding: 22px 20px; }
  body.page-amenities .route-stop { padding: 20px; }
  body.page-amenities .route-stop__marker { width: 38px; height: 38px; font-size: 1rem; }
  body.page-amenities .space-card { padding: 16px; }
  body.page-amenities .space-card__facts { grid-template-columns: 1fr; gap: 10px; }
}

/* =========================================================
   CONTACT — page-scoped (body.page-contact)
   ========================================================= */

/* Page hero (mirrors page-rooms structure) */
body.page-contact .page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--background);
  isolation: isolate;
}
body.page-contact .page-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
body.page-contact .page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
body.page-contact .page-hero__media .page-hero__fallback-img {
  position: absolute;
  inset: 0;
}
body.page-contact .page-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
@media (prefers-reduced-motion: reduce) {
  body.page-contact .page-hero__video { display: none; }
}
body.page-contact .page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.78) 55%,
      rgba(0, 0, 0, 0.68) 100%),
    linear-gradient(125deg,
      rgba(var(--primary-dark-rgb), 0.94) 0%,
      rgba(var(--primary-rgb), 0.86) 55%,
      rgba(var(--primary-dark-rgb), 0.94) 100%);
  z-index: -1;
}
body.page-contact .page-hero__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
body.page-contact .page-hero__content {
  padding: 88px 24px 88px;
  max-width: 780px;
  position: relative;
  z-index: 1;
}
body.page-contact .page-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(var(--secondary-rgb), 0.65);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
body.page-contact .page-hero__title {
  color: var(--background);
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.06;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 2px 6px rgba(0,0,0,0.55);
}
body.page-contact .page-hero__lede {
  font-size: clamp(1.05rem, 1vw + 0.8rem, 1.2rem);
  max-width: 640px;
  margin-bottom: 26px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.55);
  padding: 16px 20px;
  border-radius: 10px;
  border-left: 3px solid var(--secondary);
  text-shadow: 0 2px 8px rgba(0,0,0,0.95), 0 1px 3px rgba(0,0,0,0.9);
  font-weight: 500;
  line-height: 1.55;
}
body.page-contact .page-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
body.page-contact .page-hero__ctas .btn--secondary {
  color: #000;
  font-weight: 700;
  border-color: var(--secondary-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
body.page-contact .page-hero__ctas .btn--light {
  color: var(--primary-dark);
  font-weight: 700;
  border: 2px solid var(--secondary);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}
body.page-contact .page-hero__ctas .btn--light:hover {
  color: var(--primary-dark);
  border-color: var(--secondary-light);
}
body.page-contact .page-hero__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 0.9rem;
  color: rgba(var(--background-rgb), 0.94);
}
body.page-contact .page-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
body.page-contact .page-hero__trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  display: inline-block;
}

/* Contact ways (three direct-contact cards) */
body.page-contact .section--contact-ways { background: var(--background); }
body.page-contact .contact-ways {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
body.page-contact .contact-way {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
body.page-contact .contact-way:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary-rgb), 0.2);
}
body.page-contact .contact-way__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary);
  margin-bottom: 6px;
}
body.page-contact .contact-way__icon svg {
  width: 26px;
  height: 26px;
}
body.page-contact .contact-way__title {
  font-family: var(--font-heading);
  color: var(--primary);
  margin: 0 0 4px;
  font-size: 1.25rem;
}
body.page-contact .contact-way__value {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--primary-dark);
  word-break: break-word;
  text-decoration: none;
}
a.contact-way__value:hover { color: var(--primary-light); }
body.page-contact .contact-way__hint {
  color: var(--text);
  opacity: 0.82;
  margin: 4px 0 14px;
  font-size: 0.96rem;
  line-height: 1.55;
}
body.page-contact .contact-way__action {
  margin-top: auto;
  align-self: flex-start;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
}
body.page-contact .contact-way__action:hover {
  color: var(--primary-light);
  border-color: var(--secondary-dark);
}

/* Visit / location panel */
body.page-contact .section--visit { background: var(--surface); }
body.page-contact .visit {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
body.page-contact .visit__info { max-width: 620px; }
body.page-contact .visit__info h2 { margin-bottom: 14px; }
body.page-contact .visit__info p {
  color: var(--text);
  opacity: 0.86;
  margin-bottom: 24px;
  font-size: 1.02rem;
  line-height: 1.65;
}
body.page-contact .visit__list {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--background);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
}
body.page-contact .visit__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  padding: 16px 22px;
  align-items: baseline;
  border-bottom: 1px solid var(--border-light);
}
body.page-contact .visit__row:last-child { border-bottom: none; }
body.page-contact .visit__row dt {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
body.page-contact .visit__row dd {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
}
body.page-contact .visit__row dd a {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px dotted rgba(var(--primary-rgb), 0.45);
}
body.page-contact .visit__row dd a:hover {
  color: var(--primary-light);
  border-color: var(--primary-light);
}

/* Map placeholder (image-based location card) */
body.page-contact .visit__map {
  position: sticky;
  top: 180px;
  background: var(--background);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
body.page-contact .visit__map-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
body.page-contact .visit__map-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) brightness(0.92);
}
body.page-contact .visit__map-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      rgba(var(--primary-dark-rgb), 0.35) 0%,
      rgba(var(--primary-dark-rgb), 0.12) 50%,
      rgba(var(--primary-dark-rgb), 0.55) 100%);
}
body.page-contact .visit__map-pin {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--background);
  color: var(--primary-dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  border: 2px solid var(--secondary);
}
body.page-contact .visit__map-pin svg {
  color: var(--primary);
  flex-shrink: 0;
}
body.page-contact .visit__map-caption {
  padding: 22px 24px 24px;
}
body.page-contact .visit__map-caption strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
body.page-contact .visit__map-caption p {
  color: var(--text);
  opacity: 0.82;
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.55;
}
body.page-contact .visit__map-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--background);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background var(--transition), transform var(--transition);
}
body.page-contact .visit__map-cta:hover {
  background: var(--primary-light);
  color: var(--background);
  transform: translateY(-2px);
}

/* Contact form */
body.page-contact .section--contact-form { background: var(--bg-alt); }
body.page-contact .contact-form {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
body.page-contact .contact-form__intro { max-width: 420px; }
body.page-contact .contact-form__intro h2 { margin-bottom: 14px; }
body.page-contact .contact-form__intro p {
  color: var(--text);
  opacity: 0.86;
  margin-bottom: 22px;
  line-height: 1.65;
}
body.page-contact .contact-form__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.page-contact .contact-form__bullets li {
  position: relative;
  padding-left: 26px;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.55;
}
body.page-contact .contact-form__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 9px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}
body.page-contact .contact-form__bullets a {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px dotted rgba(var(--primary-rgb), 0.45);
}
body.page-contact .contact-form__form {
  background: var(--background);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.page-contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
body.page-contact .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.page-contact .form-field--full { grid-column: 1 / -1; }
body.page-contact .form-field__label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
body.page-contact .form-field__optional {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
  text-transform: none;
}
body.page-contact .form-field__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  padding: 12px 14px;
  border: 1.5px solid rgba(var(--primary-rgb), 0.32);
  border-radius: var(--radius-sm);
  background: var(--background);
  transition: border-color var(--transition), box-shadow var(--transition);
}
body.page-contact .form-field__input:hover {
  border-color: rgba(var(--primary-rgb), 0.5);
}
body.page-contact .form-field__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.16);
}
body.page-contact .form-field__textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.55;
}
body.page-contact .form-field__select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--primary) 50%),
                    linear-gradient(135deg, var(--primary) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
body.page-contact .form-field--check {
  flex-direction: row;
}
body.page-contact .form-field__check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
  cursor: pointer;
}
body.page-contact .form-field__check input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}
body.page-contact .form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-top: 4px;
}
body.page-contact .form-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}
body.page-contact .form-note a {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px dotted rgba(var(--primary-rgb), 0.45);
}

/* Quick contact band (bottom of page) */
body.page-contact .section--quick-contact {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--background);
  padding: 56px 0;
}
body.page-contact .quick-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
body.page-contact .quick-contact__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
}
body.page-contact .quick-contact__label {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
}
body.page-contact .quick-contact__value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--background);
  text-decoration: none;
}
a.quick-contact__value:hover { color: var(--secondary); }
body.page-contact .quick-contact__divider {
  width: 1px;
  height: 44px;
  background: rgba(var(--background-rgb), 0.22);
}

/* Responsive */
@media (max-width: 1024px) {
  body.page-contact .contact-ways { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.page-contact .visit { grid-template-columns: 1fr; gap: 40px; }
  body.page-contact .visit__map { position: static; }
  body.page-contact .contact-form { grid-template-columns: 1fr; gap: 32px; }
  body.page-contact .quick-contact { justify-content: flex-start; }
  body.page-contact .quick-contact__divider { display: none; }
}
@media (max-width: 720px) {
  body.page-contact .contact-ways { grid-template-columns: 1fr; }
  body.page-contact .form-row { grid-template-columns: 1fr; gap: 18px; }
  body.page-contact .visit__row { grid-template-columns: 1fr; gap: 4px; padding: 16px 18px; }
  body.page-contact .visit__row dt { font-size: 0.74rem; }
  body.page-contact .contact-form__form { padding: 24px; }
}
@media (max-width: 640px) {
  body.page-contact .page-hero { min-height: 50vh; }
  body.page-contact .page-hero__content { padding: 64px 18px 64px; }
  body.page-contact .page-hero__ctas { gap: 10px; }
  body.page-contact .page-hero__ctas .btn { width: 100%; }
  body.page-contact .page-hero__trust { gap: 6px 16px; font-size: 0.82rem; }
  body.page-contact .contact-way { padding: 26px 22px; }
}
