:root {
  --forest-950: #0b1f15;
  --forest-900: #10291d;
  --forest-800: #183d2a;
  --forest-700: #245a3d;
  --green: #2f7d50;
  --green-bright: #55a873;
  --purple: #74529a;
  --purple-soft: #a98ac8;
  --sage: #dfe9dc;
  --paper: #f2f5ee;
  --paper-warm: #f8f5ee;
  --white: #ffffff;
  --ink: #12251a;
  --muted: #617067;
  --line: rgba(16, 41, 29, .13);
  --line-dark: rgba(255, 255, 255, .14);
  --shadow: 0 24px 70px rgba(10, 32, 20, .14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --rail: 238px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--purple); color: white; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 999;
  background: white;
  color: var(--forest-950);
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.desktop-only { display: block; }
.mobile-only { display: none; }

/* --------------------------------------------------------------------------
   Shared rail / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  width: var(--rail);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 28px 22px 24px;
  background:
    radial-gradient(circle at 15% 10%, rgba(116,82,154,.20), transparent 30%),
    linear-gradient(180deg, var(--forest-900), var(--forest-950));
  color: white;
  border-right: 1px solid var(--line-dark);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(169,138,200,.72);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .85rem;
  letter-spacing: .04em;
}
.brand-name { font-size: 1rem; }
.menu-toggle { display: none; }
.site-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: clamp(52px, 10vh, 108px);
}
.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  border-radius: 12px;
  color: rgba(255,255,255,.68);
  font-size: .92rem;
  font-weight: 700;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: white;
  background: rgba(255,255,255,.07);
  transform: translateX(2px);
}
.site-nav a.active,
.site-nav a[aria-current="page"] {
  color: white;
  background: rgba(85,168,115,.17);
}
.site-nav a.active::before,
.site-nav a[aria-current="page"]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  bottom: 11px;
  width: 3px;
  border-radius: 99px;
  background: var(--purple-soft);
}
.site-nav .nav-cta {
  margin-top: 10px;
  justify-content: center;
  color: white;
  background: var(--green);
}
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: #378a59;
  transform: translateY(-1px);
}
.rail-social {
  margin-top: auto;
  padding: 18px 13px 0;
  border-top: 1px solid var(--line-dark);
  color: rgba(255,255,255,.62);
  font-size: .78rem;
  line-height: 1.55;
}
.rail-social a {
  display: inline-block;
  margin-top: 8px;
  color: white;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   Desktop viewport shell
   -------------------------------------------------------------------------- */
.viewport-main {
  margin-left: var(--rail);
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  padding: 22px;
}
.stage-frame {
  width: min(100%, 1560px);
  height: 100%;
  margin: 0 auto;
}
.eyebrow {
  margin: 0 0 13px;
  color: var(--green);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--purple-soft); }
h1, h2, h3, p { text-wrap: pretty; }
.display-title,
.stage-intro h1,
.mobile-hero h1,
.mobile-page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.06em;
}
.display-title em,
.stage-intro h1 em,
.mobile-hero h1 em,
.mobile-page-hero h1 em {
  color: var(--purple-soft);
  font-weight: inherit;
}
.button-row { display: flex; flex-wrap: wrap; gap: 10px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  font-size: .87rem;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: white; }
.button-primary:hover { background: #378a59; box-shadow: 0 10px 28px rgba(47,125,80,.2); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.35); }
.button-ghost:hover { border-color: rgba(16,41,29,.32); background: rgba(255,255,255,.72); }
.button-light { background: white; color: var(--forest-900); }
.button-disabled { opacity: .48; cursor: not-allowed; pointer-events: none; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.muted { color: var(--muted); }

.photo-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  text-align: center;
  border: 1px dashed rgba(16,41,29,.22);
  background:
    radial-gradient(circle at 75% 20%, rgba(116,82,154,.16), transparent 30%),
    linear-gradient(145deg, rgba(47,125,80,.13), rgba(255,255,255,.48));
}
.placeholder-kicker {
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .58;
}

/* Home desktop: intentionally no page scrolling */
.home-desktop {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(430px, 1.08fr) minmax(380px, .92fr);
  gap: 18px;
}
.hero-panel {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 5vw, 72px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: white;
  background:
    radial-gradient(circle at 83% 13%, rgba(116,82,154,.30), transparent 31%),
    radial-gradient(circle at 15% 92%, rgba(85,168,115,.17), transparent 25%),
    linear-gradient(145deg, #173c29, #0b1f15 68%);
  box-shadow: var(--shadow);
}
.hero-panel::after {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  right: -130px;
  bottom: -130px;
  border: 1px solid rgba(169,138,200,.24);
  border-radius: 50%;
}
.hero-panel .display-title {
  position: relative;
  z-index: 2;
  font-size: clamp(5.6rem, 8.7vw, 9.4rem);
  line-height: .76;
}
.hero-panel .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero-panel .hero-lede {
  max-width: 610px;
  margin: 25px 0 28px;
  color: rgba(255,255,255,.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.8vw, 1.85rem);
  line-height: 1.28;
}
.hero-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-tag {
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(255,255,255,.68);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-stack {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
}
.portrait-panel {
  position: relative;
  min-height: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.portrait-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 4rem);
  font-weight: 500;
}
.portrait-panel small { color: var(--muted); }
.portrait-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(16,41,29,.86);
  color: white;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quick-card {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.64);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.quick-card:hover {
  transform: translateY(-3px);
  background: white;
  border-color: rgba(47,125,80,.27);
  box-shadow: 0 15px 35px rgba(10,32,20,.08);
}
.quick-card .quick-number {
  color: var(--purple);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.quick-card strong {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}
.quick-card strong span { color: var(--green); font-family: inherit; }

/* Interior desktop pages */
.detail-stage {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(520px, 1.38fr);
  gap: 18px;
}
.stage-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 56px);
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: white;
  background:
    radial-gradient(circle at 85% 12%, rgba(116,82,154,.27), transparent 30%),
    linear-gradient(150deg, #183d2a, #0c2116 74%);
  box-shadow: var(--shadow);
}
.stage-intro::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -120px;
  bottom: -120px;
  border: 1px solid rgba(169,138,200,.2);
  border-radius: 50%;
}
.stage-intro h1 {
  position: relative;
  z-index: 2;
  font-size: clamp(4.1rem, 6.5vw, 7.3rem);
  line-height: .79;
}
.stage-intro .stage-lede {
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.7);
  font-size: .96rem;
  line-height: 1.7;
}
.stage-intro-footer {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}
.stage-intro-footer .button { justify-self: start; }
.stage-kicker {
  color: rgba(255,255,255,.45);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.stage-workspace {
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.68);
  box-shadow: 0 20px 60px rgba(10,32,20,.08);
}
.tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 2px;
}
.tab-button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: .79rem;
  font-weight: 850;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}
.tab-button:hover { color: var(--forest-900); }
.tab-button.is-active,
.tab-button[aria-selected="true"] {
  color: var(--forest-900);
  background: white;
  border-color: var(--line);
  box-shadow: 0 5px 18px rgba(10,32,20,.06);
}
.tab-panels { min-height: 0; }
.tab-panel {
  display: none;
  height: 100%;
  min-height: 0;
  overflow: auto;
  padding: clamp(18px, 2.2vw, 32px);
  scrollbar-width: thin;
  scrollbar-color: rgba(47,125,80,.34) transparent;
}
.tab-panel.is-active { display: block; }
.panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.panel-heading h2,
.content-block h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 3.4vw, 4rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .98;
}
.panel-heading p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
}

.act-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.act-card {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(248,250,246,.8);
}
.act-art {
  height: clamp(190px, 26vh, 280px);
  margin-bottom: 14px;
  border-radius: 14px;
  color: rgba(255,255,255,.78);
  border-color: rgba(255,255,255,.17);
  background:
    radial-gradient(circle at 70% 20%, rgba(116,82,154,.25), transparent 30%),
    linear-gradient(150deg, #245a3d, #10291d);
}
.act-card:nth-child(2) .act-art { background: linear-gradient(150deg, #2b6746, #142d20); }
.act-card:nth-child(3) .act-art { background: radial-gradient(circle at 35% 75%, rgba(169,138,200,.25), transparent 27%), linear-gradient(150deg, #1f4c34, #0d2418); }
.act-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.act-card h3,
.info-card h3,
.epk-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}
.act-card p,
.info-card p,
.epk-card p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}

.panel-two-col {
  min-height: 100%;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  align-items: center;
}
.panel-visual {
  min-height: 330px;
  height: min(52vh, 500px);
  border-radius: var(--radius-lg);
}
.content-block p {
  color: var(--muted);
  line-height: 1.72;
}
.content-block .eyebrow { color: var(--purple); }
.detail-list {
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.detail-list li {
  display: grid;
  grid-template-columns: minmax(120px, .38fr) 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.detail-list strong { font-size: .78rem; }
.detail-list span { color: var(--muted); font-size: .82rem; line-height: 1.5; }
.info-grid,
.epk-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 13px;
}
.info-card,
.epk-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(248,250,246,.82);
}
.info-card .card-label,
.epk-card .card-label {
  margin-bottom: 24px;
  color: var(--purple);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.epk-card .button { align-self: flex-start; margin-top: auto; padding-inline: 14px; min-height: 38px; font-size: .74rem; }
.placeholder-strip {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 30px;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  background: linear-gradient(145deg, rgba(47,125,80,.08), rgba(116,82,154,.08));
}
.placeholder-strip strong { font-family: Georgia, serif; font-size: 2rem; font-weight: 500; }

/* Booking desktop */
.booking-stage {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(300px, .62fr) minmax(560px, 1.38fr);
  gap: 18px;
}
.booking-workspace {
  min-height: 0;
  overflow: auto;
  padding: clamp(20px, 2.6vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.72);
  box-shadow: 0 20px 60px rgba(10,32,20,.08);
}
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .02em;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(248,250,246,.92);
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(116,82,154,.56);
  background: white;
  box-shadow: 0 0 0 4px rgba(116,82,154,.08);
}
.form-status {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Mobile / tablet: normal scrolling website
   -------------------------------------------------------------------------- */
@media (max-width: 959px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block; }
  body { overflow-x: hidden; }
  .site-header {
    position: sticky;
    inset: 0;
    width: 100%;
    min-height: 70px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 18px;
    background: rgba(16,41,29,.96);
    backdrop-filter: blur(15px);
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .brand-mark { width: 38px; height: 38px; }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 999px;
    background: transparent;
    color: white;
    font-size: .78rem;
    font-weight: 850;
  }
  .site-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 18px;
    background: rgba(11,31,21,.985);
    opacity: 0;
    pointer-events: none;
    transition: max-height .24s ease, opacity .18s ease, padding .24s ease;
  }
  .site-nav.open {
    max-height: 430px;
    padding-block: 16px 22px;
    opacity: 1;
    pointer-events: auto;
    border-bottom: 1px solid var(--line-dark);
  }
  .site-nav a { min-height: 46px; }
  .site-nav a:hover,
  .site-nav a:focus-visible { transform: none; }
  .site-nav .nav-cta { margin-top: 8px; }

  .viewport-main {
    margin-left: 0;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 0;
  }
  .stage-frame { width: 100%; height: auto; }

  .mobile-hero,
  .mobile-page-hero {
    padding: 64px 20px 52px;
  }
  .mobile-hero {
    background:
      radial-gradient(circle at 82% 12%, rgba(116,82,154,.16), transparent 30%),
      var(--paper);
  }
  .mobile-page-hero {
    color: white;
    background:
      radial-gradient(circle at 86% 10%, rgba(116,82,154,.28), transparent 30%),
      linear-gradient(150deg, #183d2a, #0c2116 78%);
  }
  .mobile-hero h1,
  .mobile-page-hero h1 {
    font-size: clamp(4.2rem, 21vw, 7rem);
    line-height: .77;
  }
  .mobile-page-hero .eyebrow { color: var(--purple-soft); }
  .mobile-lede {
    max-width: 650px;
    margin: 25px 0 0;
    color: var(--muted);
    font-family: Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.35;
  }
  .mobile-page-hero .mobile-lede { color: rgba(255,255,255,.72); }
  .mobile-hero .button-row,
  .mobile-page-hero .button-row { margin-top: 26px; }

  .mobile-section {
    padding: 54px 20px;
  }
  .mobile-section.alt { background: var(--paper-warm); }
  .mobile-section.dark { background: var(--forest-950); color: white; }
  .mobile-section-heading { margin-bottom: 24px; }
  .mobile-section-heading h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(2.5rem, 11vw, 4.4rem);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: .98;
  }
  .mobile-section-heading p {
    margin: 15px 0 0;
    color: var(--muted);
    line-height: 1.7;
  }
  .mobile-section.dark .mobile-section-heading p { color: rgba(255,255,255,.62); }
  .mobile-photo {
    min-height: 420px;
    margin-top: 28px;
    border-radius: var(--radius-lg);
  }
  .mobile-photo strong { font-family: Georgia, serif; font-size: 2.4rem; font-weight: 500; }

  .mobile-link-grid,
  .mobile-card-grid,
  .mobile-act-grid,
  .mobile-epk-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .mobile-link-card,
  .mobile-info-card,
  .mobile-epk-card {
    display: block;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.62);
  }
  .mobile-link-card strong,
  .mobile-info-card h3,
  .mobile-epk-card h3 {
    margin: 0 0 8px;
    font-family: Georgia, serif;
    font-size: 1.55rem;
    font-weight: 500;
  }
  .mobile-link-card p,
  .mobile-info-card p,
  .mobile-epk-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
  }
  .mobile-link-card span {
    display: block;
    margin-top: 18px;
    color: var(--green);
    font-weight: 900;
  }
  .mobile-act-grid .act-card { background: rgba(255,255,255,.72); }
  .mobile-act-grid .act-art { height: 360px; }
  .mobile-section.dark .act-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.13); color: white; }
  .mobile-section.dark .act-card p,
  .mobile-section.dark .act-meta { color: rgba(255,255,255,.6); }
  .mobile-section.dark .act-card h3 { color: white; }

  .mobile-two-col { display: grid; gap: 24px; }
  .mobile-two-col .placeholder-strip { min-height: 330px; }
  .mobile-content h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(2.4rem, 10vw, 4.2rem);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: .98;
  }
  .mobile-content p { color: var(--muted); line-height: 1.75; }
  .mobile-section.dark .mobile-content p { color: rgba(255,255,255,.62); }
  .detail-list li { grid-template-columns: 1fr; gap: 5px; }

  .booking-mobile { padding: 48px 20px 70px; }
  .booking-form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-status { grid-column: auto; }

  .site-footer {
    display: grid;
    gap: 24px;
    padding: 38px 20px 45px;
    border-top: 1px solid var(--line);
    background: var(--paper-warm);
  }
  .site-footer .brand { color: var(--forest-900); }
  .site-footer .brand-mark { border-color: rgba(116,82,154,.42); }
  .footer-links { display: flex; flex-wrap: wrap; gap: 16px; font-weight: 800; font-size: .82rem; }
  .copyright { margin: 0; color: var(--muted); font-size: .72rem; }
}

@media (max-width: 520px) {
  .brand-name { font-size: .94rem; }
  .mobile-hero,
  .mobile-page-hero { padding-inline: 17px; }
  .mobile-section,
  .booking-mobile { padding-inline: 17px; }
  .mobile-act-grid .act-art { height: 310px; }
}

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