:root {
  --cream: #f4ead8;
  --paper: #fffaf0;
  --ink: #1f160f;
  --muted: rgba(31, 22, 15, .68);
  --wood: #2a1d12;
  --wood-2: #3d2a1c;
  --wood-soft: #ebdfca;
  --line: rgba(31, 22, 15, .11);
  --gold: #d4b890;
  --accent: #a9481f;
  --accent-2: #c65a28;
  --shadow: 0 28px 70px -42px rgba(31, 22, 15, .46);
  --radius: 8px;
  --max: 1580px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: "Bitter", "PT Serif", Georgia, serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(rgba(31, 22, 15, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 22, 15, .018) 1px, transparent 1px);
  background-size: 32px 32px;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--ink);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: var(--radius);
}
.skip-link:focus { transform: translateY(0); }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(22px, 4vw, 64px);
  border-bottom: 1px solid rgba(31, 22, 15, .08);
  background: rgba(244, 234, 216, .9);
  backdrop-filter: blur(12px) saturate(140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wood);
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
}
.brand-eyebrow,
.brand-name {
  display: block;
  line-height: 1.15;
}
.brand-eyebrow {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  color: rgba(31, 22, 15, .62);
  font-size: 32px;
}
.brand-name {
  font-weight: 700;
  letter-spacing: .03em;
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(31, 22, 15, .74);
  font-size: 16px;
}
.nav a {
  text-decoration: none;
  transition: color .18s ease;
}
.nav a:hover { color: var(--ink); }
.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.phone-link {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark {
  background: var(--ink);
  color: var(--cream);
}
.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 18px 34px -22px rgba(200, 99, 42, .8);
}
.btn-accent:hover { background: var(--accent-2); }
.btn-glass {
  color: var(--cream);
  border: 1px solid rgba(244, 234, 216, .36);
  background: rgba(244, 234, 216, .09);
}

.hero {
  position: relative;
  min-height: min(860px, calc(100svh - 73px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: var(--wood);
}
.hero-slideshow,
.hero-slide,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slideshow {
  overflow: hidden;
}
.hero-slide {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 1200ms ease, transform 7200ms ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide:first-child {
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}
.hero-slide:not(:first-child) {
  filter: saturate(1.08) contrast(1.04);
}
.hero-scrim {
  background:
    linear-gradient(90deg, rgba(14, 9, 5, .9) 0%, rgba(14, 9, 5, .58) 42%, rgba(14, 9, 5, .2) 100%),
    linear-gradient(0deg, rgba(14, 9, 5, .76) 0%, transparent 46%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 5vw, 72px);
  padding: 110px 0 142px;
}
.hero h1,
.section-head h2,
.included-copy h2,
.text-flow h2,
.rules-section h2,
.story-copy h2,
.contact-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: .98;
}
.hero h1 {
  margin: 0;
  font-size: clamp(56px, 8vw, 116px);
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.hero p {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(244, 234, 216, .84);
  font-size: clamp(17px, 1.6vw, 21px);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-facts {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4vw, 56px);
  bottom: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 14px;
  width: min(760px, calc(100% - 36px));
}
.hero-facts div {
  min-height: 122px;
  padding: 22px;
  border: 1px solid rgba(244, 234, 216, .16);
  border-radius: var(--radius);
  background: rgba(31, 22, 15, .42);
  backdrop-filter: blur(10px);
}
.hero-facts strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 3.4vw, 68px);
  line-height: 1;
  color: var(--gold);
}
.hero-facts span {
  display: block;
  margin-top: 10px;
  color: rgba(244, 234, 216, .74);
  font-size: 19px;
  line-height: 1.35;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-style: italic;
}
.eyebrow span {
  width: 48px;
  height: 1px;
  background: currentColor;
}
.eyebrow.light { color: var(--gold); }

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 6vw, 88px) 0;
}
.section-head {
  max-width: 850px;
  margin-bottom: 30px;
}
.section-head h2,
.included-copy h2,
.text-flow h2,
.rules-section h2,
.story-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.price-card {
  min-height: 188px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.price-card.featured {
  background: var(--wood);
  color: var(--cream);
}
.price-card.featured strong { color: var(--gold); }
.card-label {
  display: block;
  color: var(--muted);
  font-size: 24px;
}
.featured .card-label { color: rgba(244, 234, 216, .65); }
.price-card strong {
  display: block;
  margin-top: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 500;
  line-height: .92;
  color: var(--accent);
}
.price-card span:last-child {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}
.featured span:last-child { color: rgba(244, 234, 216, .76); }
.price-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.price-section {
  padding-bottom: clamp(28px, 3vw, 48px);
}
.price-note p {
  margin: 0;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .72);
  border: 1px solid var(--line);
}

.included-section,
.master-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.included-section {
  padding-top: clamp(28px, 3vw, 48px);
}
.master-section {
  padding-bottom: clamp(34px, 3vw, 52px);
}
.included-media,
.master-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--wood);
}
.included-media { aspect-ratio: 4 / 5; }
.master-media { aspect-ratio: 4 / 5.2; }
.included-media img,
.master-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.check-list,
.text-flow ul {
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.check-list li,
.text-flow li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 13px;
}
.check-list li::before,
.text-flow li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.bonus {
  margin: 26px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 250, 240, .78);
}

.calc-section {
  width: 100%;
  max-width: none;
  padding: clamp(54px, 5.6vw, 82px) clamp(20px, 4vw, 56px);
  background: var(--wood);
  color: var(--cream);
}
.calc-section .section-head {
  width: min(var(--max), 100%);
  margin-inline: auto;
}
.calc-section .eyebrow { color: var(--gold); }
.booking-grid {
  width: min(1660px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(340px, 1fr) minmax(310px, .9fr);
  gap: 16px;
  align-items: start;
}
.booking-card,
.summary-card {
  border-radius: var(--radius);
  padding: clamp(22px, 2.4vw, 32px);
}
.booking-card {
  border: 1px solid rgba(244, 234, 216, .12);
  background: rgba(255, 255, 255, .055);
}
.booking-card h3,
.summary-card h3 {
  margin: 0 0 20px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(244, 234, 216, .12);
}
.calc-row.last { border-bottom: 0; }
.calc-label { font-weight: 700; }
.calc-sublabel {
  margin-top: 2px;
  color: rgba(244, 234, 216, .58);
  font-size: 13px;
}
.booking-card .stepper {
  background: rgba(255, 255, 255, .1);
  color: var(--cream);
}
.booking-card .stepper button:hover { background: rgba(255, 255, 255, .1); }
.booking-card .toggle { --tg-off: rgba(255, 255, 255, .18); --tg-on: var(--accent); }

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.cal-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
}
.cal-prev,
.cal-next {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255, 255, 255, .1);
}
.cal-cell { color: var(--cream); }
.cal-cell:not(.dow):not(.empty):not(.disabled):hover { background: rgba(255, 255, 255, .1); }
.cal-cell.selected {
  background: var(--accent);
  color: white;
}
.time-row {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 234, 216, .12);
}
.time-row .label {
  margin-bottom: 10px;
  color: rgba(244, 234, 216, .62);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.time-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.booking-card .time-pill {
  --tp-bg: rgba(255, 255, 255, .075);
  --tp-fg: var(--cream);
  --tp-border: rgba(255, 255, 255, .14);
  --tp-sel-bg: var(--accent);
  --tp-sel-fg: #fff;
}
.summary-card {
  background: var(--accent);
  color: white;
}
.calc-summary-list {
  display: grid;
  gap: 8px;
}
.sum-row,
.total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.sum-row {
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
}
.sum-val { font-weight: 700; white-space: nowrap; }
.total-row {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .28);
}
.calc-total {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(40px, 4vw, 58px);
  line-height: .95;
}
.summary-date,
.summary-foot {
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
}
.summary-cta {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 800;
}
.summary-cta:disabled {
  opacity: .72;
  cursor: wait;
}
.booking-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.booking-form .form-row {
  margin: 0;
}
.booking-form label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
}
.booking-form input,
.booking-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .94);
  color: var(--ink);
  font: inherit;
  outline: none;
}
.booking-form textarea {
  min-height: 92px;
  resize: vertical;
}
.booking-form input:focus,
.booking-form textarea:focus {
  border-color: rgba(255, 255, 255, .86);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .18);
}
.form-success {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(31, 22, 15, .18);
}
.form-success h4 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
}
.form-success p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
}

.attention-band {
  margin: 0 auto;
  padding: 22px clamp(20px, 4vw, 56px);
  background: var(--accent);
  color: white;
  text-align: center;
  font-size: 32px;
  line-height: 1.35;
}
.attention-band strong { color: white; }

.text-flow p,
.rules-copy p,
.story-copy p {
  color: rgba(31, 22, 15, .78);
  font-size: 17px;
}
.text-flow p:first-of-type { margin-top: 28px; }
.rules-section {
  width: 100%;
  max-width: none;
  padding: clamp(42px, 4.4vw, 68px) clamp(20px, 4vw, 56px);
  background: linear-gradient(180deg, var(--cream), var(--wood-soft));
}
.rules-section .section-head {
  width: min(1260px, 100%);
  margin-inline: auto;
}
.rules-copy {
  width: min(1260px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.rule-card {
  padding: 22px 24px;
  border: 1px solid rgba(31, 22, 15, .1);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .72);
}
.rule-card.lead {
  grid-column: 1 / -1;
  background: var(--paper);
  font-size: 19px;
}
.rule-card.accent {
  border-color: rgba(200, 99, 42, .32);
  background: rgba(200, 99, 42, .08);
}
.rule-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.05;
}
.rule-card p {
  margin: 0;
  color: rgba(31, 22, 15, .76);
}
.rule-card p + p { margin-top: 12px; }
.rule-card.compact {
  grid-column: 1 / -1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 205px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: var(--wood);
  cursor: pointer;
}
.gallery-item.tall,
.gallery-item.wide {
  grid-row: span 1;
  grid-column: span 1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.story-section {
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 4vw, 56px);
  background: var(--wood-soft);
}
.story-copy {
  width: min(900px, 100%);
  margin: 0 auto;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(72px, 8vw, 112px) clamp(20px, 4vw, 56px);
  background: var(--wood);
  color: var(--cream);
}
.contact-copy h2 { color: var(--cream); }
.contact-list {
  display: grid;
  gap: 18px;
  margin: 34px 0;
}
.contact-list p {
  margin: 0;
  color: rgba(244, 234, 216, .82);
}
.contact-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.25em;
}
.contact-map {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, .72);
  background: #2f3b2f;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.modal-card h2 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
}
.modal-card {
  max-width: 560px;
  max-height: calc(100svh - 40px);
  overflow: auto;
  border-radius: var(--radius);
}
.modal-calc {
  margin: 0 0 16px;
  padding: 16px;
  border: 1px solid rgba(31, 22, 15, .1);
  border-radius: var(--radius);
  background: rgba(244, 234, 216, .42);
}
.modal-calc legend {
  padding: 0 6px;
  font-weight: 700;
  color: var(--ink);
}
.modal-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal-calc label span,
.modal-check span {
  display: block;
  font-size: 13px;
  color: rgba(31, 22, 15, .7);
  margin-bottom: 6px;
}
.modal-stepper {
  display: grid;
  grid-template-columns: 38px minmax(44px, 1fr) 38px;
  align-items: center;
  min-height: 44px;
  overflow: hidden;
  border: 1px solid rgba(31, 22, 15, .12);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .86);
}
.modal-stepper button {
  width: 38px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.modal-stepper button:hover {
  background: rgba(31, 22, 15, .06);
}
.modal-stepper .val {
  display: block;
  color: var(--ink);
  font-family: "Bitter", "PT Serif", Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.modal-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.modal-check input {
  width: 18px;
  height: 18px;
}
.modal-check span {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}
.modal-estimate {
  margin: 0 0 16px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--wood);
  color: var(--cream);
}
.modal-estimate span {
  display: block;
  color: rgba(244, 234, 216, .68);
  font-size: 14px;
}
.modal-estimate strong {
  display: block;
  margin-top: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
}
.modal-estimate p {
  margin: 10px 0 0;
  color: rgba(244, 234, 216, .76);
  font-size: 14px;
  line-height: 1.4;
}
.modal-lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
}
.modal-submit {
  width: 100%;
  margin-top: 4px;
}

@media (max-width: 1180px) {
  .nav { display: none; }
  .booking-grid { grid-template-columns: 1fr 1fr; }
  .summary-card { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1315px) {
  .hero {
    min-height: auto;
    display: block;
  }
  .hero-content {
    width: min(840px, calc(100% - 56px));
    margin-left: clamp(20px, 5vw, 72px);
    padding: clamp(96px, 12vw, 150px) 0 34px;
  }
  .hero-facts {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: min(1060px, calc(100% - 56px));
    margin: 0 auto;
    padding-bottom: clamp(38px, 5vw, 62px);
  }
  .hero-facts div {
    min-height: 116px;
  }
  .hero-facts strong {
    font-size: clamp(42px, 4vw, 58px);
  }
  .hero-facts span {
    font-size: 18px;
  }
}

@media (max-width: 860px) {
  .topbar {
    align-items: center;
    gap: 14px;
  }
  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }
  .brand > span:last-child { min-width: 0; }
  .brand-eyebrow,
  .brand-name {
    overflow-wrap: anywhere;
  }
  .top-actions {
    min-width: 0;
    flex: 0 0 auto;
  }
  .top-actions .phone-link { display: none; }
  .hero { min-height: auto; align-items: center; }
  .hero-content {
    width: min(100% - 32px, 680px);
    margin: 0 auto;
    padding: 88px 0 22px;
  }
  .hero-facts {
    left: auto;
    right: auto;
    bottom: auto;
    width: min(100% - 32px, 680px);
    padding-bottom: 24px;
    grid-template-columns: 1fr;
  }
  .hero-facts div {
    min-height: auto;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
  }
  .hero-facts span { text-align: right; }
  .price-grid,
  .price-note,
  .included-section,
  .master-section,
  .booking-grid,
  .contact-section,
  .rules-copy {
    grid-template-columns: 1fr;
  }
  .rule-card.lead,
  .rule-card.compact { grid-column: auto; }
  .included-media,
  .master-media {
    aspect-ratio: 16 / 10;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }
  .gallery-item.wide { grid-column: span 1; }
  .contact-map,
  .contact-map iframe { min-height: 340px; }
}

@media (max-width: 540px) {
  body { font-size: 15px; }
  .topbar { padding: 12px 16px; }
  .brand-mark { width: 40px; height: 40px; }
  .top-actions { display: none; }
  .hero h1 { font-size: clamp(48px, 15vw, 64px); }
  .hero p { font-size: 16px; }
  .hero-cta .btn { width: 100%; }
  .section { width: min(100% - 32px, var(--max)); }
  .section-head h2,
  .included-copy h2,
  .text-flow h2,
  .rules-section h2,
  .story-copy h2,
  .contact-copy h2 {
    font-size: 42px;
  }
  .price-card { min-height: 168px; }
  .booking-card,
  .summary-card { padding: 20px; }
  .calc-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .cal-cell { font-size: 13px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .gallery-item.tall { grid-row: span 1; }
  .modal-calc-grid { grid-template-columns: 1fr; }
}

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

/* ─── Privacy consent + modal ─── */
.form-consent {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .82);
  text-align: center;
}
.privacy-link {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color .15s;
}
.privacy-link:hover { color: #fff; }

.privacy-modal .privacy-card {
  max-width: 720px;
  max-height: 86vh;
  overflow-y: auto;
  padding: 40px 40px 32px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Bitter", "PT Serif", Georgia, serif;
}
.privacy-card h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 28px;
  color: var(--accent);
  padding-right: 36px;
}
.privacy-body {
  font-size: 14px;
  line-height: 1.6;
}
.privacy-body p { margin: 0 0 12px; }
.privacy-body strong { color: var(--ink); }
.privacy-body a { color: var(--accent); text-decoration: underline; }

@media (max-width: 600px) {
  .privacy-modal .privacy-card { padding: 32px 22px 24px; border-radius: 16px; }
  .privacy-card h3 { font-size: 24px; }
  .privacy-body { font-size: 13px; }
}
