:root {
  --paper: #fff;
  --ivory: #f5f1e9;
  --ink: #2f2925;
  --muted: #716960;
  --copper: #a96f59;
  --gold: #9a844a;
  --green: #536257;
  --green-deep: #3f4b43;
  --line: rgba(47, 41, 37, .16);
  --serif: "Noto Serif KR", "Nanum Myeongjo", "Batang", Georgia, serif;
  --sans: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  --header: 64px;
  --mobile-bar: 58px;
  --pad: clamp(20px, 4vw, 64px);
  --content: 1280px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 24px); }
body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image: repeating-linear-gradient(102deg, rgba(47, 41, 37, .014) 0 1px, transparent 1px 11px);
  font-family: var(--sans);
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: break-word;
}
h1 { font-size: 68px; line-height: 1.22; }
h2 { font-size: 52px; }
h3 { font-size: 26px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 9px 15px;
  color: #fff;
  background: var(--green-deep);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header);
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: stretch;
  background: rgba(245, 241, 233, .97);
  border-bottom: 1px solid rgba(47, 41, 37, .08);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 26px rgba(47, 41, 37, .08); }
.header-intro {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.header-intro::before { content: ""; width: 28px; height: 1px; flex: none; background: var(--copper); }
.brand {
  min-width: 210px;
  display: grid;
  grid-template-columns: 38px auto;
  place-content: center;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  border-inline: 1px solid rgba(47, 41, 37, .1);
  line-height: 1;
}
.brand-symbol {
  width: 36px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--copper);
  border: 1px solid rgba(169, 111, 89, .55);
  font-family: Georgia, serif;
  font-size: 14px;
}
.brand-wordmark strong { display: block; font-family: Georgia, serif; font-size: 18px; font-weight: 500; }
.brand-wordmark small { display: block; margin-top: 5px; color: var(--muted); font-size: 9px; font-weight: 700; text-align: center; }
.header-actions { display: flex; justify-content: flex-end; align-items: stretch; min-width: 0; }
.header-link {
  min-width: 108px;
  display: grid;
  place-items: center;
  padding: 0 18px;
  border-left: 1px solid rgba(47, 41, 37, .1);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}
.header-link.reserve { min-width: 156px; color: #fff; background: var(--gold); }
.menu-toggle, .menu-close {
  width: 64px;
  border: 0;
  border-left: 1px solid rgba(47, 41, 37, .1);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}
.menu-icon { width: 22px; height: 14px; display: grid; align-content: space-between; margin: auto; }
.menu-icon span { width: 100%; height: 1px; display: block; background: var(--ink); }

.menu-overlay {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  grid-template-rows: var(--header) 1fr;
  background: var(--ivory);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.menu-overlay.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.menu-top { display: grid; grid-template-columns: 1fr auto; align-items: center; border-bottom: 1px solid var(--line); }
.menu-top .brand { width: max-content; border-left: 0; }
.menu-close { position: relative; height: var(--header); }
.menu-close::before, .menu-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1px;
  background: var(--ink);
}
.menu-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.menu-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.menu-body {
  width: min(var(--content), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(280px, .46fr);
  gap: clamp(40px, 8vw, 120px);
  align-content: center;
  padding: 44px var(--pad);
}
.menu-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 50px; }
.menu-nav a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
}
.menu-nav small { color: var(--copper); font-family: Georgia, serif; font-size: 11px; }
.menu-nav span { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.menu-nav b { font-size: 16px; font-weight: 400; }
.menu-reserve {
  align-self: stretch;
  display: grid;
  align-content: center;
  padding: clamp(28px, 4vw, 54px);
  color: #fff;
  background: var(--green-deep);
}
.menu-reserve small, .section-kicker, .vertical-label {
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}
.menu-reserve strong {
  margin: 18px 0 28px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.5;
  word-break: keep-all;
}
.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
}

.hero { padding-top: var(--header); }
.hero-stage {
  position: relative;
  min-height: calc(100vh - var(--header));
  min-height: calc(100svh - var(--header));
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  color: #fff;
  background: #bbb5a9;
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity 1s ease; }
.hero-slide:nth-child(1) { background: #bbb5a9; }
.hero-slide:nth-child(2) { background: #8f968f; }
.hero-slide:nth-child(3) { background: #b6a79e; }
.hero-slide.is-active { opacity: 1; }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: rgba(31, 28, 25, .34); }
.hero-slide .managed-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide.has-media > span { display: none; }
.hero-slide > span {
  position: absolute;
  z-index: 2;
  top: 26px;
  right: var(--pad);
  padding: 8px 10px;
  color: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .5);
  font-family: Georgia, serif;
  font-size: 10px;
  text-transform: uppercase;
}
.hero-copy {
  position: relative;
  z-index: 4;
  width: min(var(--content), 100%);
  margin: auto;
  align-self: end;
  padding: 54px var(--pad) clamp(116px, 13vh, 170px);
}
.hero-copy .section-kicker { display: flex; align-items: center; gap: 18px; color: rgba(255, 255, 255, .88); }
.hero-copy .section-kicker::before { content: ""; width: 46px; height: 1px; background: var(--copper); }
.hero-copy h1 { max-width: 760px; margin-top: 18px; text-shadow: 0 2px 20px rgba(0, 0, 0, .2); }
.hero-copy p {
  max-width: 540px;
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.8;
  word-break: keep-all;
}
.hero-controls {
  position: absolute;
  z-index: 6;
  right: var(--pad);
  bottom: 112px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-controls button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  background: rgba(0, 0, 0, .12);
  cursor: pointer;
}
.hero-count { min-width: 48px; margin-left: 4px; font-family: Georgia, serif; font-size: 11px; text-align: center; }
.occasion-picker { position: relative; z-index: 8; color: var(--ink); background: rgba(255, 255, 255, .96); }
.occasion-picker-inner {
  width: min(var(--content), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px repeat(6, minmax(0, 1fr));
  padding-inline: var(--pad);
}
.occasion-title {
  min-height: 92px;
  display: grid;
  align-content: center;
  padding-right: 22px;
  border-right: 1px solid var(--line);
}
.occasion-title small { color: var(--copper); font-family: Georgia, serif; font-size: 10px; text-transform: uppercase; }
.occasion-title strong { margin-top: 5px; font-family: var(--serif); font-size: 15px; font-weight: 600; }
.occasion-picker a {
  min-width: 0;
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  transition: color .2s ease, background .2s ease;
}
.occasion-picker a small { color: var(--copper); font-size: 9px; font-weight: 800; }
.occasion-picker a b { min-width: 0; font-family: var(--serif); font-size: 15px; font-weight: 600; white-space: nowrap; }
.occasion-picker a:hover, .occasion-picker a:focus-visible { color: #fff; background: var(--green); outline: 0; }
.occasion-picker a:hover small, .occasion-picker a:focus-visible small { color: rgba(255, 255, 255, .76); }

main { overflow: hidden; }
.section { padding: clamp(86px, 11vw, 160px) var(--pad); }
.section-shell { width: min(var(--content), 100%); margin: 0 auto; }
.section-kicker { margin-bottom: 14px; color: var(--copper); letter-spacing: 2px; }
.section-lead { margin: 0; color: var(--muted); font-size: 15px; line-height: 2; word-break: keep-all; }
.split-heading {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(260px, 390px);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}
.vertical-label { justify-self: center; color: var(--copper); writing-mode: vertical-rl; letter-spacing: 4px; }
.oryun-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(46px, 7vw, 86px);
  border-block: 1px solid var(--line);
}
.oryun-grid > div {
  min-width: 0;
  min-height: 178px;
  display: grid;
  align-content: space-between;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}
.oryun-grid > div:first-child { border-left: 1px solid var(--line); }
.oryun-grid small, .event-card small { color: var(--copper); font-size: 10px; font-weight: 800; }
.oryun-grid strong { font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1.55; word-break: keep-all; }

.feature { padding: 0 var(--pad) clamp(100px, 12vw, 170px); }
.feature-shell {
  width: min(var(--content), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}
.feature.reverse .feature-media { order: 2; }
.feature-copy { max-width: 520px; }
.feature-copy .section-lead { margin-top: 26px; }
.feature-copy .text-link { margin-top: 30px; }
.photo-slot {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  overflow: hidden;
  color: rgba(47, 41, 37, .58);
  background: #ebe8e1;
  border: 1px solid rgba(47, 41, 37, .1);
}
.photo-slot::before, .photo-slot::after { content: ""; position: absolute; background: rgba(47, 41, 37, .12); pointer-events: none; }
.photo-slot::before { width: 1px; height: 140%; transform: rotate(34deg); }
.photo-slot::after { width: 140%; height: 1px; transform: rotate(34deg); }
.photo-slot span {
  position: relative;
  z-index: 2;
  padding: 9px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(47, 41, 37, .2);
  font-family: Georgia, serif;
  font-size: 10px;
  text-transform: uppercase;
}
.photo-slot .managed-media {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-slot.has-media::before, .photo-slot.has-media::after, .photo-slot.has-media > span { display: none; }
.feature-media { aspect-ratio: 4 / 5; min-height: 540px; }
.media-pair { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .68fr); gap: 18px; align-items: end; }
.media-pair .photo-slot:first-child { aspect-ratio: 4 / 5; }
.media-pair .photo-slot:last-child { aspect-ratio: 3 / 4; margin-bottom: -42px; }
.table { padding-block: clamp(100px, 12vw, 170px); }

.quote-band { padding: clamp(74px, 8vw, 108px) var(--pad); color: #fff; background: var(--green-deep); text-align: center; }
.quote-band p { margin: 0; font-family: var(--serif); font-size: 38px; line-height: 1.65; word-break: keep-all; }
.quote-band small { display: block; margin-top: 20px; color: rgba(255, 255, 255, .7); font-size: 11px; }

.events { background: var(--ivory); }
.event-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 420px); gap: 40px; align-items: end; }
.event-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2vw, 28px); margin-top: clamp(46px, 6vw, 76px); }
.event-card { min-width: 0; background: #fff; }
.event-card .photo-slot { aspect-ratio: 4 / 3; border: 0; }
.event-card-body { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: end; padding: 24px; border-top: 1px solid var(--line); }
.event-card h3 { margin-top: 6px; font-size: 21px; }
.event-card b { font-size: 17px; font-weight: 400; }

.house-layout { display: grid; grid-template-columns: minmax(280px, .58fr) minmax(0, 1.42fr); gap: clamp(40px, 7vw, 100px); align-items: start; }
.house-copy { position: sticky; top: calc(var(--header) + 40px); }
.house-copy .section-lead { margin-top: 24px; }
.house-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.house-gallery .photo-slot { aspect-ratio: 4 / 5; }
.house-gallery .photo-slot:nth-child(2) { margin-top: 88px; }
.house-gallery .photo-slot:nth-child(3) { margin-top: -88px; }
.facility-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 26px;
  border-block: 1px solid var(--line);
}
.facility-list span {
  min-height: 80px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 14px;
  text-align: center;
}
.facility-list span:first-child { border-left: 1px solid var(--line); }

.access { color: #fff; background: var(--green); }
.access-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(36px, 7vw, 96px); align-items: stretch; }
.access .section-kicker { color: #d9c6a3; }
.access-address { margin: 28px 0 0; font-family: var(--serif); font-size: 24px; line-height: 1.7; }
.access-meta { margin: 20px 0 0; color: rgba(255, 255, 255, .78); font-size: 13px; line-height: 1.9; }
.access-links { display: flex; flex-wrap: wrap; gap: 20px 28px; margin-top: 34px; }
.access .text-link { margin-top: 0; }
.access-map { min-height: 420px; color: rgba(47, 41, 37, .6); background: #d7d9d2; border-color: rgba(255, 255, 255, .34); }

.reservation { padding: clamp(86px, 10vw, 142px) var(--pad); background: var(--ivory); }
.reservation-grid {
  width: min(var(--content), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  gap: clamp(44px, 8vw, 110px);
}
.reservation-copy p { margin: 26px 0 0; color: var(--muted); font-size: 14px; word-break: keep-all; }
.reservation-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 20px; }
.field { min-width: 0; display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label, .occasion-field legend { color: var(--muted); font-size: 11px; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 4px;
  border: 0;
  border-bottom: 1px solid rgba(47, 41, 37, .32);
  border-radius: 0;
  background: transparent;
  outline: 0;
}
.field textarea { min-height: 108px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--copper); }
.occasion-field { min-width: 0; grid-column: 1 / -1; margin: 0; padding: 0; border: 0; }
.occasion-options { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); margin-top: 10px; border: 1px solid var(--line); }
.occasion-options label {
  position: relative;
  min-width: 0;
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 8px;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 12px;
  text-align: center;
  cursor: pointer;
}
.occasion-options label:last-child { border-right: 0; }
.occasion-options input { position: absolute; opacity: 0; pointer-events: none; }
.occasion-options label:has(input:checked) { color: #fff; background: var(--green); }
.submit-row { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; margin-top: 8px; }
.submit-button {
  min-width: 190px;
  min-height: 56px;
  padding: 0 26px;
  color: #fff;
  border: 0;
  border-radius: 0;
  background: var(--gold);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.submit-button:disabled { cursor: default; opacity: .56; }
.form-status { margin: 0; color: var(--green-deep); font-size: 12px; }

.footer { padding: 54px var(--pad) calc(54px + env(safe-area-inset-bottom)); color: rgba(255, 255, 255, .76); background: #2f342f; }
.footer-grid { width: min(var(--content), 100%); margin: 0 auto; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 40px; }
.footer-brand { color: #fff; font-family: Georgia, serif; font-size: 23px; font-weight: 500; }
.footer p { margin: 14px 0 0; font-size: 12px; line-height: 1.9; }
.footer-nav { display: grid; align-content: start; gap: 9px; font-size: 12px; }
.footer-nav strong { margin-bottom: 4px; color: #d9c6a3; font-family: Georgia, serif; font-size: 10px; font-weight: 500; text-transform: uppercase; }
.mobile-bar { display: none; }

@media (max-width: 1120px) {
  h1 { font-size: 58px; }
  h2 { font-size: 46px; }
  .header-intro span { display: none; }
  .header-link:not(.reserve) { display: none; }
  .occasion-picker-inner { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .occasion-title { display: none; }
  .split-heading { grid-template-columns: 74px minmax(0, 1fr) minmax(240px, 330px); gap: 34px; }
  .oryun-grid { grid-template-columns: repeat(5, minmax(150px, 1fr)); overflow-x: auto; }
  .occasion-options { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .occasion-options label:nth-child(3) { border-right: 0; }
  .occasion-options label:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 900px) {
  :root { --header: 58px; }
  h1 { font-size: 44px; }
  h2 { font-size: 38px; }
  h3 { font-size: 24px; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-intro, .header-link { display: none; }
  .brand { min-width: 0; width: fit-content; grid-template-columns: 30px auto; justify-self: start; padding: 0 16px; border: 0; }
  .brand-symbol { width: 30px; font-size: 11px; }
  .brand-wordmark strong { font-size: 16px; }
  .brand-wordmark small { display: none; }
  .menu-toggle, .menu-close { width: 58px; height: 58px; }
  .menu-body { grid-template-columns: 1fr; gap: 30px; align-content: start; overflow-y: auto; }
  .menu-nav span { font-size: 21px; }
  .menu-nav a { min-height: 64px; }
  .menu-reserve { min-height: 220px; }
  .hero-copy { padding-bottom: 52px; }
  .hero-controls { bottom: 148px; }
  .occasion-picker-inner { grid-template-columns: repeat(3, minmax(0, 1fr)); padding-inline: 0; }
  .occasion-picker a { min-height: 66px; border-top: 1px solid var(--line); }
  .occasion-picker a:nth-child(4), .occasion-picker a:nth-child(7) { border-right: 0; }
  .split-heading, .feature-shell, .event-heading, .house-layout, .access-grid, .reservation-grid { grid-template-columns: 1fr; }
  .vertical-label { justify-self: start; writing-mode: horizontal-tb; letter-spacing: 2px; }
  .split-heading { gap: 20px; }
  .oryun-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; }
  .oryun-grid > div { min-height: 136px; border-bottom: 1px solid var(--line); }
  .oryun-grid > div:last-child { grid-column: 1 / -1; }
  .feature-shell { gap: 38px; }
  .feature.reverse .feature-media { order: 0; }
  .feature-copy { max-width: none; }
  .feature-media { min-height: 0; }
  .media-pair .photo-slot:last-child { margin-bottom: -26px; }
  .event-grid { grid-template-columns: 1fr; }
  .event-card { display: grid; grid-template-columns: minmax(0, 1fr) minmax(190px, .8fr); }
  .event-card .photo-slot { min-height: 220px; }
  .event-card-body { align-content: end; border-top: 0; border-left: 1px solid var(--line); }
  .house-copy { position: static; }
  .facility-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .facility-list span:nth-child(3) { border-right: 0; }
  .facility-list span:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .access-map { min-height: 320px; }
  .reservation-form { grid-template-columns: 1fr; }
  .field.full, .occasion-field, .submit-row { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --pad: 18px; }
  h1 { font-size: 34px; }
  h2 { font-size: 30px; }
  h3 { font-size: 21px; }
  .hero-stage {
    min-height: calc(100vh - var(--header) - var(--mobile-bar));
    min-height: calc(100svh - var(--header) - var(--mobile-bar) - env(safe-area-inset-bottom));
  }
  .hero-copy { padding-top: 34px; padding-bottom: 44px; }
  .hero-copy p { max-width: 330px; font-size: 14px; }
  .hero-controls { right: 18px; bottom: 142px; }
  .occasion-picker a { min-height: 64px; padding: 10px 12px; }
  .occasion-picker a b { font-size: 13px; }
  .menu-nav { grid-template-columns: 1fr; }
  .menu-nav a { min-height: 58px; }
  .menu-reserve strong { font-size: 24px; }
  .oryun-grid { grid-template-columns: 1fr; }
  .oryun-grid > div, .oryun-grid > div:last-child { grid-column: auto; min-height: 112px; grid-template-columns: 84px 1fr; align-items: center; align-content: center; }
  .media-pair { gap: 10px; }
  .media-pair .photo-slot:last-child { margin-bottom: -18px; }
  .event-card { grid-template-columns: 1fr; }
  .event-card .photo-slot { min-height: 0; }
  .event-card-body { border-top: 1px solid var(--line); border-left: 0; }
  .house-gallery { gap: 10px; }
  .house-gallery .photo-slot:nth-child(2) { margin-top: 44px; }
  .house-gallery .photo-slot:nth-child(3) { margin-top: -44px; }
  .facility-list span { min-height: 68px; font-size: 12px; }
  .occasion-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .occasion-options label:nth-child(3) { border-right: 1px solid var(--line); }
  .occasion-options label:nth-child(2n) { border-right: 0; }
  .occasion-options label:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .submit-row { align-items: stretch; flex-direction: column; }
  .submit-button { width: 100%; }
  .footer { padding-bottom: calc(92px + env(safe-area-inset-bottom)); }
  .mobile-bar {
    position: fixed;
    z-index: 45;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: env(safe-area-inset-bottom);
    background: #fff;
    box-shadow: 0 -8px 28px rgba(47, 41, 37, .12);
  }
  .mobile-bar a { min-height: 58px; display: grid; place-items: center; font-size: 12px; font-weight: 800; }
  .mobile-bar a:last-child { color: #fff; background: var(--gold); }
}

@media (max-width: 900px) and (max-height: 650px) {
  h1 { font-size: 34px; }
  .menu-body { gap: 18px; padding-top: 18px; padding-bottom: calc(18px + env(safe-area-inset-bottom)); }
  .menu-nav a { min-height: 48px; }
  .menu-reserve { min-height: 150px; padding: 22px; }
  .menu-reserve strong { margin: 10px 0 16px; font-size: 22px; line-height: 1.45; }
  .hero-copy { padding-top: 14px; padding-bottom: 14px; }
  .hero-copy .section-kicker { gap: 10px; font-size: 9px; }
  .hero-copy .section-kicker::before { width: 24px; }
  .hero-copy h1 { margin-top: 8px; line-height: 1.25; }
  .hero-copy p { margin-top: 8px; font-size: 12px; line-height: 1.6; }
  .hero-controls { top: 12px; right: var(--pad); bottom: auto; }
  .hero-controls button { width: 32px; height: 32px; }
  .occasion-picker a { min-height: 56px; padding-block: 8px; }
}

@media (max-width: 560px) and (max-height: 650px) {
  h1 { font-size: 29px; }
}

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