:root {
  --ink: #171512;
  --ink-2: #28231e;
  --ink-3: #4f473f;
  --paper: #f7f2e9;
  --paper-2: #efe7da;
  --paper-3: #fffdf8;
  --line: rgba(30, 25, 20, 0.14);
  --red: #922c2c;
  --red-dark: #6f1f1f;
  --gold: #c9a45b;
  --gold-light: #ead6a5;
  --jade: #345a4a;
  --white: #ffffff;
  --success: #356b4b;
  --shadow-sm: 0 12px 30px rgba(29, 23, 16, 0.08);
  --shadow-md: 0 24px 70px rgba(29, 23, 16, 0.14);
  --shadow-lg: 0 38px 100px rgba(15, 11, 8, 0.22);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shell: 1240px;
  --header-height: 82px;
  --ease: cubic-bezier(.2,.75,.22,1);
  --sans: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: "Noto Serif KR", "Nanum Myeongjo", "Batang", serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.018em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.dialog-open { overflow: hidden; }
img { display: block; max-width: 100%; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(201, 164, 91, .6);
  outline-offset: 3px;
}
::selection { color: #fff; background: var(--red); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 10000;
  left: 16px;
  top: -80px;
  padding: 12px 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section { position: relative; padding: 132px 0; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
}
.kicker::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section-heading { margin-bottom: 54px; }
.section-heading h2,
.reason-content h2,
.location-content h2,
.faq-intro h2,
.final-cta h2,
.dialog-header h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: -0.055em;
}
.section-heading p,
.reason-content > p,
.location-content > p,
.faq-intro > p {
  margin: 22px 0 0;
  color: var(--ink-3);
  font-size: 18px;
  line-height: 1.75;
}
.section-heading.centered { max-width: 780px; margin-inline: auto; text-align: center; }
.section-heading.centered .kicker { justify-content: center; }
.section-heading.centered p { max-width: 620px; margin-inline: auto; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr); gap: 80px; align-items: end; }
.split-heading p { margin: 0 0 8px; }

.page-progress {
  position: fixed;
  z-index: 2000;
  inset: 0 0 auto 0;
  height: 3px;
  background: transparent;
  pointer-events: none;
}
.page-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gold), var(--red)); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, border-color .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-sm { min-height: 44px; padding-inline: 20px; font-size: 14px; }
.button-lg { min-height: 60px; padding-inline: 30px; font-size: 16px; }
.button-primary { color: #fff; background: var(--red); box-shadow: 0 14px 30px rgba(146, 44, 44, .24); }
.button-primary:hover { background: var(--red-dark); box-shadow: 0 18px 38px rgba(111, 31, 31, .3); }
.button-secondary { color: var(--ink); border-color: var(--line); background: rgba(255, 255, 255, .72); }
.button-secondary:hover { border-color: rgba(146, 44, 44, .35); background: #fff; }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.button-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.12); }
.button-light { color: var(--ink); background: var(--paper-3); }
.button-quiet { color: var(--ink-2); border-color: transparent; background: transparent; }
.button-block { width: 100%; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  color: var(--red);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto 0;
  height: var(--header-height);
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: height .25s ease, color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(250, 247, 241, .92);
  border-color: rgba(29, 23, 16, .08);
  box-shadow: 0 12px 30px rgba(20, 16, 12, .06);
  backdrop-filter: blur(16px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-seal {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.08em;
}
.site-header.is-scrolled .brand-seal { color: var(--red); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-size: 17px; letter-spacing: -.04em; }
.brand-copy small { margin-top: 4px; color: currentColor; opacity: .62; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 32px); margin-left: auto; }
.desktop-nav a { position: relative; font-size: 14px; font-weight: 700; opacity: .82; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.desktop-nav a:hover { opacity: 1; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.icon-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.site-header.is-scrolled .icon-button { border-color: var(--line); background: #fff; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; border-radius: 2px; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { color: var(--ink); background: rgba(250,247,241,.98); border-top: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.mobile-nav[hidden] { display: none; }
.mobile-nav-inner { display: grid; padding-block: 24px 30px; }
.mobile-nav a { padding: 12px 2px; border-bottom: 1px solid var(--line); font-weight: 800; }
.mobile-nav .button { margin-top: 20px; }

.hero {
  position: relative;
  min-height: 970px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 22% 15%, rgba(146,44,44,.22), transparent 32%),
    linear-gradient(135deg, #191714 0%, #0e0d0c 70%);
  padding: calc(var(--header-height) + 90px) 0 54px;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(45deg, transparent 47%, rgba(255,255,255,.28) 48%, rgba(255,255,255,.28) 52%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, rgba(255,255,255,.2) 48%, rgba(255,255,255,.2) 52%, transparent 53%);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 58%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -130px;
  top: 120px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(201,164,91,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(201,164,91,.035), 0 0 0 144px rgba(201,164,91,.022);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr); gap: 74px; align-items: center; }
.hero-copy { padding-top: 20px; }
.eyebrow { display: flex; align-items: center; gap: 22px; margin-bottom: 30px; color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.eyebrow span + span { position: relative; }
.eyebrow span + span::before { content: ""; position: absolute; left: -13px; top: 50%; width: 4px; height: 4px; border-radius: 50%; background: currentColor; transform: translateY(-50%); }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(52px, 5.35vw, 78px); font-weight: 700; line-height: 1.17; letter-spacing: -0.065em; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-lead { max-width: 620px; margin: 30px 0 0; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.8; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.hero-note { display: flex; align-items: center; gap: 10px; margin: 20px 0 0; color: rgba(255,255,255,.54); font-size: 13px; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(201,164,91,.5); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 9px rgba(201,164,91,0); } 100% { box-shadow: 0 0 0 0 rgba(201,164,91,0); } }
.hero-visual { position: relative; min-height: 640px; }
.hero-image-wrap {
  position: absolute;
  inset: 0 0 0 56px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 48% 48% 28px 28px;
  box-shadow: var(--shadow-lg);
  background: #2b241f;
}
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(12,10,8,.48)); pointer-events: none; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.hero-image-badge { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 24px; display: flex; align-items: center; gap: 14px; color: #fff; }
.hero-image-badge span { display: grid; place-items: center; width: 54px; height: 54px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.62); border-radius: 50%; font-family: var(--serif); font-size: 15px; }
.hero-image-badge strong { font-family: var(--serif); font-size: 20px; letter-spacing: -.04em; }
.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 215px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  color: #fff;
  background: rgba(27,23,20,.72);
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  backdrop-filter: blur(16px);
}
.floating-card svg { width: 24px; height: 24px; flex: 0 0 auto; fill: none; stroke: var(--gold-light); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.floating-card span { display: flex; flex-direction: column; color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.5; }
.floating-card strong { color: #fff; font-size: 13px; }
.floating-card-top { top: 80px; left: 0; }
.floating-card-bottom { right: -18px; bottom: 62px; }
.trust-rail { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin-top: 70px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(255,255,255,.12); }
.trust-item { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 106px; padding: 18px 10px; background: rgba(18,16,14,.84); }
.trust-item strong { color: var(--gold-light); font-family: var(--serif); font-size: 30px; line-height: 1; }
.trust-item span { margin-top: 9px; color: rgba(255,255,255,.66); font-size: 12px; font-weight: 700; }
.trust-source { position: absolute; right: 18px; bottom: 8px; margin: 0; color: rgba(255,255,255,.32); font-size: 9px; }

.planner-section { overflow: hidden; background: var(--paper-3); }
.planner-section::before { content: "胡同"; position: absolute; left: -20px; top: 24px; color: rgba(146,44,44,.035); font-family: var(--serif); font-size: 240px; font-weight: 700; letter-spacing: -.1em; line-height: 1; pointer-events: none; }
.planner-card { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-md); }
.planner-controls { display: grid; gap: 38px; padding: 48px; }
.planner-controls fieldset { margin: 0; padding: 0; border: 0; }
.planner-controls legend { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-size: 16px; font-weight: 900; }
.planner-controls legend span { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; color: #fff; background: var(--ink); font-size: 12px; }
.choice-grid { display: grid; gap: 10px; }
.choice-grid-3 { grid-template-columns: repeat(3, 1fr); }
.choice, .budget-choice {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s var(--ease);
}
.choice:hover, .budget-choice:hover { transform: translateY(-2px); border-color: rgba(146,44,44,.28); }
.choice.is-active, .budget-choice.is-active { border-color: rgba(146,44,44,.52); background: #fff8f4; box-shadow: inset 0 0 0 1px rgba(146,44,44,.14); }
.choice { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; text-align: left; }
.choice svg { width: 27px; height: 27px; fill: none; stroke: var(--red); stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.choice span { font-weight: 900; }
.budget-choice { position: relative; display: grid; place-items: center; align-content: center; text-align: center; }
.budget-choice small { position: absolute; left: 10px; top: 10px; padding: 3px 8px; border-radius: 999px; color: var(--ink-3); background: var(--paper-2); font-size: 10px; font-weight: 900; }
.budget-choice.is-active small { color: #fff; background: var(--red); }
.budget-choice strong { font-family: var(--serif); font-size: 22px; letter-spacing: -.04em; }
.budget-choice span { color: var(--ink-3); font-size: 11px; }
.range-control { display: flex; align-items: center; gap: 26px; }
.range-control input { width: 100%; accent-color: var(--red); }
.range-control output { display: flex; align-items: baseline; min-width: 92px; color: var(--ink-3); }
.range-control output strong { margin-right: 3px; color: var(--red); font-family: var(--serif); font-size: 42px; line-height: 1; }
.range-labels { display: flex; justify-content: space-between; padding-right: 118px; margin-top: 6px; color: #92877c; font-size: 11px; }
.planner-result { position: relative; display: flex; flex-direction: column; padding: 50px 42px; color: #fff; background: linear-gradient(155deg, #2b2722, #171512 66%); }
.planner-result::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(45deg, transparent 47%, rgba(255,255,255,.2) 48%, rgba(255,255,255,.2) 52%, transparent 53%); background-size: 32px 32px; mask-image: linear-gradient(180deg, #000, transparent 80%); pointer-events: none; }
.planner-result > * { position: relative; z-index: 1; }
.result-label { align-self: flex-start; padding: 6px 11px; border: 1px solid rgba(201,164,91,.42); border-radius: 999px; color: var(--gold-light); font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.result-heading { margin-top: 28px; }
.result-heading h3 { margin: 0; font-family: var(--serif); font-size: 36px; letter-spacing: -.05em; }
.result-heading span { display: block; margin-top: 5px; color: rgba(255,255,255,.52); font-size: 13px; }
.result-features { display: grid; gap: 11px; padding: 0; margin: 28px 0 36px; list-style: none; }
.result-features li { position: relative; padding-left: 24px; color: rgba(255,255,255,.74); font-size: 14px; }
.result-features li::before { content: ""; position: absolute; left: 1px; top: .75em; width: 11px; height: 6px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.result-price { margin-top: auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.13); }
.result-price span { display: block; color: rgba(255,255,255,.5); font-size: 12px; }
.result-price strong { display: block; margin-top: 4px; color: var(--gold-light); font-family: var(--serif); font-size: 36px; line-height: 1.2; }
.result-price small { display: block; margin-top: 5px; color: rgba(255,255,255,.42); }
.result-disclaimer { margin: 18px 0 22px; color: rgba(255,255,255,.45); font-size: 11px; line-height: 1.65; }

.packages-section { background: var(--paper); }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.package-card { position: relative; min-height: 470px; padding: 40px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.65); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease; }
.package-card:hover { transform: translateY(-6px); border-color: rgba(146,44,44,.22); box-shadow: var(--shadow-md); }
.package-featured { color: #fff; border-color: var(--ink); background: var(--ink); transform: translateY(-18px); box-shadow: var(--shadow-md); }
.package-featured:hover { transform: translateY(-24px); }
.recommended-badge { position: absolute; top: -13px; right: 24px; padding: 7px 14px; border-radius: 999px; color: #fff; background: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .04em; }
.package-number { color: var(--red); font-family: var(--serif); font-size: 13px; font-weight: 700; letter-spacing: .12em; }
.package-featured .package-number { color: var(--gold-light); }
.package-topline { margin-top: 28px; }
.package-topline span { display: block; color: var(--ink-3); font-size: 12px; }
.package-featured .package-topline span { color: rgba(255,255,255,.45); }
.package-topline strong { display: block; margin-top: 4px; font-family: var(--serif); font-size: 30px; letter-spacing: -.05em; }
.package-price { display: flex; align-items: baseline; gap: 5px; margin-top: 26px; }
.package-price strong { color: var(--red); font-family: var(--serif); font-size: 38px; letter-spacing: -.04em; }
.package-featured .package-price strong { color: var(--gold-light); }
.package-price span { color: var(--ink-3); font-size: 12px; }
.package-featured .package-price span { color: rgba(255,255,255,.45); }
.package-card ul { display: grid; gap: 11px; padding: 23px 0 26px; margin: 26px 0 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.package-featured ul { border-color: rgba(255,255,255,.12); }
.package-card li { position: relative; padding-left: 17px; color: var(--ink-3); font-size: 14px; }
.package-featured li { color: rgba(255,255,255,.66); }
.package-card li::before { content: ""; position: absolute; left: 0; top: .7em; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }
.package-featured li::before { background: var(--gold); }
.package-featured .text-link { color: var(--gold-light); }
.package-footnote { margin: 24px 0 0; text-align: center; color: #81766c; font-size: 12px; }

.reason-section { color: #fff; background: var(--ink); overflow: hidden; }
.reason-section::after { content: ""; position: absolute; right: -120px; bottom: -120px; width: 520px; height: 520px; border: 1px solid rgba(201,164,91,.12); border-radius: 50%; box-shadow: 0 0 0 64px rgba(201,164,91,.025), 0 0 0 128px rgba(201,164,91,.015); }
.reason-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(400px, .9fr) minmax(0, 1.1fr); gap: 96px; align-items: center; }
.reason-image { position: relative; min-height: 690px; }
.reason-image img { width: calc(100% - 48px); height: 650px; object-fit: cover; border-radius: 180px 180px 26px 26px; box-shadow: var(--shadow-lg); }
.reason-caption { position: absolute; right: 0; bottom: 16px; max-width: 310px; padding: 22px 24px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(24,22,19,.78); backdrop-filter: blur(14px); box-shadow: var(--shadow-md); }
.reason-caption strong { display: block; font-family: var(--serif); font-size: 18px; }
.reason-caption span { display: block; margin-top: 4px; color: rgba(255,255,255,.54); font-size: 11px; }
.reason-content .kicker { color: var(--gold-light); }
.reason-content h2 em { color: var(--gold-light); font-style: normal; }
.reason-content > p { color: rgba(255,255,255,.6); }
.reason-list { display: grid; gap: 0; margin-top: 48px; border-top: 1px solid rgba(255,255,255,.12); }
.reason-item { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.reason-item > span { color: var(--gold); font-family: var(--serif); font-size: 12px; letter-spacing: .08em; }
.reason-item strong { display: block; font-size: 17px; }
.reason-item p { margin: 7px 0 0; color: rgba(255,255,255,.5); font-size: 14px; }

.menu-section { background: var(--paper-3); }
.menu-showcase { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 340px; gap: 14px; }
.menu-card { position: relative; overflow: hidden; border-radius: 24px; background: #d7ccbd; }
.menu-card-large { grid-row: span 2; grid-column: span 2; }
.menu-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.menu-card:hover img { transform: scale(1.045); }
.menu-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 36%, rgba(12,10,8,.82)); pointer-events: none; }
.menu-overlay { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 21px; color: #fff; }
.menu-overlay > span { display: inline-flex; margin-bottom: 8px; padding: 4px 9px; border-radius: 999px; color: var(--ink); background: var(--gold-light); font-size: 9px; font-weight: 900; }
.menu-overlay h3 { display: inline; margin: 0; font-family: var(--serif); font-size: 26px; letter-spacing: -.04em; }
.menu-card-large .menu-overlay h3 { font-size: 36px; }
.menu-overlay p { margin: 4px 0 0; color: rgba(255,255,255,.62); font-size: 12px; }
.menu-overlay strong { display: block; margin-top: 7px; color: var(--gold-light); font-size: 13px; }
.menu-actions { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }

.audience-section { background: var(--paper); }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.audience-card { min-height: 355px; padding: 36px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255,255,255,.55); transition: transform .3s var(--ease), background .3s ease, box-shadow .3s var(--ease); }
.audience-card:hover { transform: translateY(-6px); background: #fff; box-shadow: var(--shadow-md); }
.audience-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; color: var(--red); background: #f1e1d8; }
.audience-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.audience-card > span { display: block; margin-top: 28px; color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .05em; }
.audience-card h3 { margin: 8px 0 0; font-family: var(--serif); font-size: 26px; letter-spacing: -.045em; }
.audience-card p { margin: 16px 0 0; color: var(--ink-3); font-size: 14px; line-height: 1.8; }

.space-section { overflow: hidden; color: #fff; background: #211e1a; }
.space-section .kicker { color: var(--gold-light); }
.space-section .split-heading p { color: rgba(255,255,255,.54); }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: repeat(2, 315px); gap: 14px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: 22px; background: #181511; cursor: zoom-in; }
.gallery-wide { grid-row: 1 / span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .35s ease; }
.gallery-item:hover img { transform: scale(1.045); filter: brightness(.86); }
.gallery-item::after { content: "＋"; position: absolute; right: 18px; top: 18px; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(0,0,0,.2); opacity: 0; transform: translateY(-4px); transition: opacity .25s ease, transform .25s ease; }
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.gallery-item > span { position: absolute; left: 18px; bottom: 16px; padding: 6px 11px; border-radius: 999px; color: #fff; background: rgba(20,17,14,.72); font-size: 10px; font-weight: 900; backdrop-filter: blur(10px); }
.gallery-item:nth-child(1) img { object-position: center 42%; }
.gallery-item:nth-child(2) img { object-position: center 48%; }
.gallery-item:nth-child(4) img { object-position: center 54%; }

.process-section { background: var(--paper-3); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.process-grid::before { content: ""; position: absolute; top: 48px; left: 17%; right: 17%; height: 1px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); }
.process-grid article { position: relative; padding: 0 28px; text-align: center; }
.process-grid article > span { position: absolute; right: 20px; top: 0; color: rgba(146,44,44,.14); font-family: var(--serif); font-size: 50px; font-weight: 700; line-height: 1; }
.process-icon { position: relative; z-index: 1; display: grid; place-items: center; width: 96px; height: 96px; margin: 0 auto; border: 1px solid var(--line); border-radius: 50%; color: var(--red); background: var(--paper-3); box-shadow: 0 14px 30px rgba(30,25,20,.06); }
.process-icon svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.process-grid h3 { margin: 24px 0 0; font-family: var(--serif); font-size: 24px; letter-spacing: -.04em; }
.process-grid p { margin: 12px auto 0; max-width: 280px; color: var(--ink-3); font-size: 14px; }

.location-section { background: var(--paper); }
.location-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr); gap: 86px; align-items: center; }
.location-photo { position: relative; min-height: 610px; }
.location-photo img { width: 100%; height: 610px; object-fit: cover; border-radius: 28px 170px 28px 28px; box-shadow: var(--shadow-md); }
.location-marker { position: absolute; left: -18px; bottom: 36px; display: flex; align-items: center; gap: 13px; padding: 15px 18px; border-radius: 16px; color: #fff; background: var(--red); box-shadow: 0 18px 38px rgba(111,31,31,.25); }
.location-marker span { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-size: 10px; font-weight: 900; }
.location-marker strong { font-family: var(--serif); font-size: 16px; }
.location-details { margin: 38px 0 0; }
.location-details > div { display: grid; grid-template-columns: 76px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.location-details dt { color: var(--red); font-size: 12px; font-weight: 900; }
.location-details dd { margin: 0; font-size: 16px; font-weight: 700; }
.location-details dd small { color: var(--ink-3); font-size: 12px; font-weight: 500; }
.location-details a { text-decoration: underline; text-underline-offset: 4px; }
.location-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }

.faq-section { background: var(--paper-3); }
.faq-grid { display: grid; grid-template-columns: minmax(300px, .65fr) minmax(0, 1.35fr); gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro .button { margin-top: 30px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 25px 4px; font-size: 17px; font-weight: 800; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { position: relative; width: 22px; height: 22px; flex: 0 0 auto; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; left: 4px; top: 10px; width: 14px; height: 1.5px; background: var(--red); transition: transform .25s ease; }
.accordion summary span::after { transform: rotate(90deg); }
.accordion details[open] summary span::after { transform: rotate(0); }
.accordion p { margin: 0; padding: 0 44px 26px 4px; color: var(--ink-3); font-size: 14px; line-height: 1.8; }

.final-cta { position: relative; overflow: hidden; padding: 136px 0; color: #fff; background: #171512; text-align: center; }
.final-cta-bg { position: absolute; inset: 0; opacity: .28; background: linear-gradient(rgba(12,10,8,.65), rgba(12,10,8,.82)), url("../images/hero.webp") center 46% / cover no-repeat; transform: scale(1.02); }
.final-cta::before, .final-cta::after { content: ""; position: absolute; top: 50%; width: 360px; height: 360px; border: 1px solid rgba(201,164,91,.16); border-radius: 50%; transform: translateY(-50%); }
.final-cta::before { left: -180px; }
.final-cta::after { right: -180px; }
.final-cta-inner { position: relative; z-index: 1; }
.final-cta .kicker { color: var(--gold-light); justify-content: center; }
.final-cta h2 { font-size: clamp(46px, 5vw, 70px); }
.final-cta p { margin: 24px 0 0; color: rgba(255,255,255,.62); font-size: 17px; }
.final-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 11px; margin-top: 36px; }

.site-footer { padding: 58px 0 110px; color: rgba(255,255,255,.68); background: #0e0d0c; }
.footer-grid { display: grid; grid-template-columns: 1fr .9fr .45fr; gap: 60px; align-items: start; }
.brand-footer { color: #fff; }
.footer-brand p { max-width: 360px; margin: 18px 0 0; font-size: 13px; }
.footer-info { display: grid; gap: 7px; }
.footer-info p { margin: 0; font-size: 12px; }
.footer-info strong { display: inline-block; min-width: 44px; color: #fff; }
.footer-links { display: grid; justify-items: start; gap: 9px; }
.footer-links a, .footer-links button { padding: 0; border: 0; color: rgba(255,255,255,.74); background: transparent; font-size: 12px; font-weight: 700; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.34); font-size: 10px; }

.mobile-sticky-cta { display: none; }

/* Dialogs */
dialog { padding: 0; border: 0; }
dialog::backdrop { background: rgba(10,8,6,.72); backdrop-filter: blur(6px); }
.booking-dialog {
  width: min(760px, calc(100% - 28px));
  max-height: min(900px, calc(100dvh - 28px));
  overflow: auto;
  border-radius: 30px;
  color: var(--ink);
  background: var(--paper-3);
  box-shadow: 0 40px 120px rgba(0,0,0,.36);
}
.dialog-shell { position: relative; padding: 48px; }
.dialog-close { position: absolute; z-index: 3; right: 22px; top: 22px; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.75); cursor: pointer; }
.dialog-close span { position: absolute; left: 12px; top: 20px; width: 17px; height: 1.5px; background: var(--ink); }
.dialog-close span:first-child { transform: rotate(45deg); }
.dialog-close span:last-child { transform: rotate(-45deg); }
.dialog-header { padding-right: 44px; margin-bottom: 34px; }
.dialog-header h2 { font-size: 44px; }
.dialog-header p { margin: 16px 0 0; color: var(--ink-3); font-size: 13px; }
.dialog-header p strong { color: var(--red); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.field { display: grid; gap: 8px; }
.field-wide { grid-column: 1 / -1; }
.field > span, .option-fieldset legend { font-size: 12px; font-weight: 900; }
.field em, .consent em { color: var(--red); font-style: normal; }
.field small, .option-fieldset small { color: #9a8e84; font-size: 10px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input, .field select { height: 52px; padding: 0 15px; }
.field textarea { min-height: 96px; padding: 13px 15px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(146,44,44,.55); box-shadow: 0 0 0 4px rgba(146,44,44,.08); }
.field-suffix { position: relative; }
.field-suffix input { padding-right: 46px; }
.field-suffix span { position: absolute; right: 16px; top: 50%; color: var(--ink-3); transform: translateY(-50%); font-size: 13px; }
.option-fieldset { margin: 22px 0 0; padding: 0; border: 0; }
.check-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 10px; }
.check-grid label { position: relative; }
.check-grid input { position: absolute; opacity: 0; pointer-events: none; }
.check-grid span { display: grid; place-items: center; min-height: 48px; padding: 8px; border: 1px solid var(--line); border-radius: 12px; background: #fff; font-size: 11px; font-weight: 800; cursor: pointer; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.check-grid input:checked + span { color: var(--red); border-color: rgba(146,44,44,.48); background: #fff6f2; }
#booking-form > .field { margin-top: 20px; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; color: var(--ink-3); font-size: 10px; line-height: 1.65; cursor: pointer; }
.consent input { margin-top: 4px; accent-color: var(--red); }
.form-error { padding: 12px 14px; margin-bottom: 12px; border-radius: 10px; color: #7d1c1c; background: #fbe8e4; font-size: 12px; font-weight: 700; }
.form-note { margin: 12px 0 0; color: #948980; font-size: 10px; text-align: center; }
.booking-result { text-align: center; }
.result-check { display: grid; place-items: center; width: 64px; height: 64px; margin: 10px auto 20px; border-radius: 50%; color: #fff; background: var(--success); }
.result-check svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.booking-result h3 { margin: 0; font-family: var(--serif); font-size: 30px; letter-spacing: -.04em; }
.booking-result > p { color: var(--ink-3); font-size: 13px; }
.booking-result textarea { width: 100%; padding: 16px; margin-top: 14px; border: 1px solid var(--line); border-radius: 14px; color: var(--ink-2); background: #fff; font-size: 12px; line-height: 1.65; resize: none; }
.result-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.booking-result > .text-link { margin-top: 18px; }
.image-dialog, .menu-dialog {
  width: min(980px, calc(100% - 30px));
  max-height: calc(100dvh - 30px);
  overflow: auto;
  border-radius: 22px;
  color: #fff;
  background: #0e0d0c;
  box-shadow: 0 40px 120px rgba(0,0,0,.45);
}
.image-dialog img { width: 100%; max-height: calc(100dvh - 110px); object-fit: contain; }
.image-dialog p, .menu-dialog p { margin: 0; padding: 16px 20px; color: rgba(255,255,255,.62); font-size: 12px; text-align: center; }
.image-dialog-close { position: fixed; z-index: 2; right: 26px; top: 22px; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; color: #fff; background: rgba(0,0,0,.48); font-size: 28px; line-height: 1; cursor: pointer; backdrop-filter: blur(8px); }
.menu-dialog { width: min(760px, calc(100% - 30px)); padding-top: 52px; }
.menu-dialog img { width: min(100%, 620px); margin-inline: auto; max-height: calc(100dvh - 135px); object-fit: contain; }
.toast { position: fixed; z-index: 5000; left: 50%; bottom: 34px; min-width: 240px; padding: 12px 18px; border-radius: 999px; color: #fff; background: rgba(23,21,18,.94); box-shadow: var(--shadow-md); font-size: 12px; font-weight: 800; text-align: center; transform: translateX(-50%); }

[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --shell: 980px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); gap: 46px; }
  .hero-visual { min-height: 590px; }
  .hero-image-wrap { left: 28px; }
  .floating-card-bottom { right: 0; }
  .planner-card { grid-template-columns: 1fr .72fr; }
  .planner-controls { padding: 38px; }
  .planner-result { padding: 42px 32px; }
  .reason-grid { gap: 60px; }
  .location-grid { gap: 56px; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .shell { width: min(calc(100% - 36px), var(--shell)); }
  .section { padding: 98px 0; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .split-heading p { max-width: 640px; }
  .hero { padding-top: calc(var(--header-height) + 64px); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; padding-top: 0; }
  .hero h1 { font-size: clamp(54px, 9vw, 76px); }
  .hero-visual { min-height: 650px; }
  .hero-image-wrap { inset: 0 50px 0 120px; }
  .floating-card-top { left: 60px; }
  .floating-card-bottom { right: 20px; }
  .trust-rail { grid-template-columns: repeat(5, minmax(130px, 1fr)); overflow-x: auto; }
  .planner-card { grid-template-columns: 1fr; }
  .planner-result { min-height: 520px; }
  .package-grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .package-card { min-height: auto; }
  .package-featured { transform: none; }
  .package-featured:hover { transform: translateY(-6px); }
  .reason-grid { grid-template-columns: 1fr; }
  .reason-image { order: 2; max-width: 720px; min-height: auto; }
  .reason-image img { height: 620px; }
  .menu-showcase { grid-template-columns: repeat(2, 1fr); }
  .menu-card-large { grid-row: span 2; grid-column: span 1; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 280px 280px; }
  .gallery-wide { grid-column: 1 / -1; grid-row: auto; }
  .gallery-item:nth-child(4) { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: 1fr; gap: 50px; }
  .process-grid::before { display: none; }
  .process-grid article { max-width: 520px; margin-inline: auto; }
  .location-grid { grid-template-columns: 1fr; }
  .location-photo { min-height: 520px; }
  .location-photo img { height: 520px; }
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-intro { position: static; max-width: 620px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; grid-auto-flow: column; justify-content: start; gap: 20px; }
}

@media (max-width: 640px) {
  :root { --radius-lg: 28px; }
  body { font-size: 15px; padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .reason-content h2,
  .location-content h2,
  .faq-intro h2,
  .dialog-header h2 { font-size: 38px; }
  .section-heading p,
  .reason-content > p { font-size: 15px; }
  .site-header, .site-header.is-scrolled { height: 66px; }
  .brand-seal { width: 40px; height: 40px; font-size: 12px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy small { font-size: 8px; }
  .header-actions .icon-button, .desktop-booking { display: none; }
  .menu-toggle { width: 40px; height: 40px; }
  .hero { min-height: auto; padding: 112px 0 34px; }
  .hero::after { width: 300px; height: 300px; right: -150px; top: 110px; }
  .hero-grid { gap: 40px; }
  .eyebrow { margin-bottom: 22px; font-size: 10px; }
  .hero h1 { font-size: 42px; line-height: 1.2; }
  .hero-lead { margin-top: 22px; font-size: 15px; line-height: 1.75; }
  .hero-buttons { display: grid; margin-top: 30px; }
  .hero-buttons .button { width: 100%; }
  .hero-note { font-size: 10px; }
  .hero-visual { min-height: 470px; }
  .hero-image-wrap { inset: 0 8px 0 40px; border-radius: 44% 44% 22px 22px; }
  .hero-image-badge { left: 17px; right: 17px; bottom: 17px; }
  .hero-image-badge span { width: 44px; height: 44px; font-size: 12px; }
  .hero-image-badge strong { font-size: 15px; }
  .floating-card { min-width: 174px; padding: 11px 13px; }
  .floating-card-top { left: 0; top: 52px; }
  .floating-card-bottom { right: 0; bottom: 45px; }
  .floating-card svg { width: 20px; height: 20px; }
  .floating-card strong { font-size: 11px; }
  .floating-card span { font-size: 9px; }
  .trust-rail { grid-template-columns: repeat(5, 122px); margin-top: 42px; border-radius: 16px; }
  .trust-item { min-height: 88px; }
  .trust-item strong { font-size: 25px; }
  .trust-item span { font-size: 10px; white-space: nowrap; }
  .trust-source { display: none; }
  .planner-section::before { font-size: 130px; }
  .planner-card { border-radius: 24px; }
  .planner-controls { gap: 32px; padding: 24px 18px; }
  .choice-grid-3 { grid-template-columns: 1fr; }
  .choice { min-height: 72px; flex-direction: row; align-items: center; justify-content: flex-start; gap: 14px; }
  .choice svg { width: 25px; height: 25px; }
  [data-planner-budget].choice-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .budget-choice { min-height: 96px; padding: 12px 6px; }
  .budget-choice strong { font-size: 18px; }
  .range-control { gap: 14px; }
  .range-control output { min-width: 76px; }
  .range-control output strong { font-size: 34px; }
  .range-labels { padding-right: 88px; }
  .planner-result { min-height: 460px; padding: 34px 22px; }
  .result-heading h3 { font-size: 31px; }
  .result-price strong { font-size: 31px; }
  .package-card { padding: 30px 24px; }
  .package-topline strong { font-size: 27px; }
  .package-price strong { font-size: 33px; }
  .reason-grid { gap: 46px; }
  .reason-image { min-height: 510px; }
  .reason-image img { width: calc(100% - 22px); height: 510px; border-radius: 130px 130px 22px 22px; }
  .reason-caption { max-width: 270px; padding: 16px 18px; }
  .reason-list { margin-top: 34px; }
  .reason-item { grid-template-columns: 40px 1fr; }
  .menu-showcase { grid-template-columns: 1fr 1fr; grid-auto-rows: 250px; gap: 9px; }
  .menu-card-large { grid-column: 1 / -1; grid-row: span 1; }
  .menu-card:nth-child(4), .menu-card:nth-child(5) { grid-column: span 1; }
  .menu-overlay { left: 15px; right: 15px; bottom: 14px; }
  .menu-overlay h3 { font-size: 20px; }
  .menu-card-large .menu-overlay h3 { font-size: 26px; }
  .menu-overlay p { display: none; }
  .menu-overlay strong { font-size: 10px; }
  .menu-actions { display: grid; }
  .audience-card { padding: 28px 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 330px 220px 220px; gap: 9px; }
  .gallery-item:nth-child(4) { grid-column: 1 / -1; }
  .location-photo { min-height: 420px; }
  .location-photo img { height: 420px; border-radius: 22px 110px 22px 22px; }
  .location-marker { left: -5px; bottom: 18px; }
  .location-details > div { grid-template-columns: 58px 1fr; }
  .location-actions { display: grid; }
  .location-actions .button { width: 100%; }
  .accordion summary { padding-block: 21px; font-size: 15px; }
  .final-cta { padding: 92px 0; }
  .final-cta h2 { font-size: 40px; }
  .final-buttons { display: grid; }
  .final-buttons .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-links { grid-column: auto; grid-auto-flow: row; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .mobile-sticky-cta {
    position: fixed;
    z-index: 1500;
    left: 10px;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 74px 1fr;
    min-height: 60px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(24,22,19,.94);
    box-shadow: 0 18px 50px rgba(0,0,0,.3);
    backdrop-filter: blur(16px);
  }
  .mobile-sticky-cta a, .mobile-sticky-cta button { display: flex; align-items: center; justify-content: center; gap: 7px; min-width: 0; padding: 0 12px; border: 0; color: #fff; background: transparent; font-size: 12px; font-weight: 900; cursor: pointer; }
  .mobile-sticky-cta a { flex-direction: column; gap: 2px; border-right: 1px solid rgba(255,255,255,.12); font-size: 9px; }
  .mobile-sticky-cta button { background: var(--red); }
  .mobile-sticky-cta svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .booking-dialog { width: calc(100% - 16px); max-height: calc(100dvh - 16px); border-radius: 24px; }
  .dialog-shell { padding: 38px 18px 26px; }
  .dialog-close { right: 13px; top: 13px; }
  .dialog-header { padding-right: 34px; margin-bottom: 26px; }
  .dialog-header h2 { font-size: 34px; }
  .form-grid { grid-template-columns: 1fr; gap: 13px; }
  .field-wide { grid-column: auto; }
  .check-grid { grid-template-columns: repeat(2, 1fr); }
  .result-actions { grid-template-columns: 1fr; }
  .toast { bottom: 84px; max-width: calc(100% - 32px); }
}

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