:root {
  --font-serif: "Cormorant Garamond";
  --font-sans: "Manrope";
  --ink: #1d2420;
  --forest: #24362e;
  --deep-forest: #17251f;
  --wine: #8f1428;
  --wine-dark: #6e0e1d;
  --cream: #f4efe5;
  --paper: #fbf8f1;
  --stone: #c8bdac;
  --gold: #b79a64;
  --line: rgba(29, 36, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: min(1320px, calc(100% - 96px));
  margin-inline: auto;
}

.section-pad {
  padding-block: 140px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-serif), Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

h2 {
  font-size: clamp(54px, 6vw, 92px);
}

h1 em,
h2 em {
  color: var(--wine);
  font-weight: 400;
}

.lead {
  font-family: var(--font-serif), Georgia, serif;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.28;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--wine);
  gap: 44px;
}

.light-link {
  color: white;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-light {
  background: var(--cream);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  background: white;
}

.button-dark {
  background: var(--deep-forest);
  color: white;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--wine);
}

/* Hero */

.hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: #0d211a;
  color: white;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(0.82) contrast(1.06) brightness(0.92);
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.015);
  animation: reveal-image 1.2s ease-out both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 69% 6%, rgba(225, 196, 141, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(5, 28, 21, 0.98) 0%, rgba(7, 29, 22, 0.88) 24%, rgba(7, 25, 19, 0.47) 49%, rgba(7, 21, 16, 0.15) 77%),
    linear-gradient(0deg, rgba(5, 19, 14, 0.64) 0%, transparent 49%, rgba(5, 18, 14, 0.28) 100%);
}

.hero-frame {
  position: absolute;
  z-index: 2;
  inset: 26px;
  border: 1px solid rgba(226, 208, 163, 0.86);
  border-radius: 24px 0 24px 0;
  pointer-events: none;
}

.site-header {
  position: absolute;
  top: 35px;
  left: 50%;
  z-index: 10;
  display: grid;
  width: min(1500px, calc(100% - 112px));
  min-height: 82px;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(226, 208, 163, 0.28);
  transform: translateX(-50%);
}

.brand {
  display: flex;
  width: 250px;
  height: 72px;
  align-items: center;
  justify-self: start;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.2vw, 50px);
}

.desktop-nav a {
  position: relative;
  padding-block: 16px;
  color: #eadbc4;
  font-family: var(--font-serif), Georgia, serif;
  font-size: clamp(17px, 1.2vw, 19px);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.34);
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: #b33a4d;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff7e8;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: white;
  color: var(--ink);
}

.mobile-menu {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: max(760px, 100svh);
  padding-top: clamp(170px, 20vh, 235px);
  padding-bottom: 120px;
  flex-direction: column;
  justify-content: center;
}

.hero-title-lockup {
  width: min(790px, 62vw);
  margin-left: 0;
}

.hero h1 {
  color: #f6eedc;
  font-size: clamp(67px, 7vw, 112px);
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.34);
}

.hero h1 span {
  display: block;
}

.title-ornament {
  display: grid;
  width: min(610px, 78%);
  margin: 0 0 36px 54px;
  grid-template-columns: 1fr 16px 1fr;
  align-items: center;
  gap: 14px;
  color: #9c2637;
}

.title-ornament span {
  height: 1px;
  background: currentColor;
}

.title-ornament i {
  width: 13px;
  height: 13px;
  background: currentColor;
  transform: rotate(45deg);
}

.title-ornament-bottom {
  margin-top: 34px;
  margin-bottom: 26px;
}

.hero-subtitle {
  display: flex;
  margin: 0 0 0 38px;
  align-items: center;
  gap: 18px;
  color: #d7b988;
  font-size: clamp(10px, 1.15vw, 17px);
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-subtitle i {
  color: #9c2637;
  font-style: normal;
}

.hero-actions {
  position: absolute;
  right: 355px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 26px;
  display: flex;
  min-width: 325px;
  min-height: 58px;
  align-items: center;
  gap: 13px;
  padding: 16px 32px;
  background: rgba(11, 34, 25, 0.92);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-note strong {
  margin-left: 8px;
  color: #eadbc4;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9fbe82;
  box-shadow: 0 0 0 4px rgba(159, 190, 130, 0.13);
}

/* History */

.history-chapter {
  position: relative;
  overflow: hidden;
  padding-block: 150px 120px;
  background:
    radial-gradient(circle at 86% 15%, rgba(183, 154, 100, 0.13), transparent 25%),
    linear-gradient(135deg, #17261f 0%, #102019 55%, #0c1813 100%);
  color: white;
}

.history-chapter::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(24px, 4vw, 70px);
  width: 1px;
  background: linear-gradient(transparent, rgba(226, 208, 163, 0.35) 12%, rgba(226, 208, 163, 0.35) 88%, transparent);
  content: "";
}

.history-year {
  position: absolute;
  top: 36px;
  right: -0.03em;
  color: rgba(234, 219, 196, 0.045);
  font-family: var(--font-serif), Georgia, serif;
  font-size: clamp(170px, 24vw, 380px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.8;
  pointer-events: none;
}

.history-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 9vw;
}

.history-intro h2 {
  color: #f6eedc;
}

.history-intro h2 em {
  color: #d7b988;
}

.history-copy {
  padding-bottom: 6px;
}

.history-copy .lead {
  margin: 0 0 28px;
  color: #f1e6d4;
  font-size: clamp(25px, 2.2vw, 34px);
}

.history-copy > p:not(.lead) {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.history-stage {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: 100px;
  grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.75fr);
  align-items: stretch;
  gap: clamp(46px, 6vw, 90px);
}

.history-image {
  position: relative;
  margin: 0;
}

.history-image::before {
  position: absolute;
  z-index: -1;
  inset: -22px 22px 22px -22px;
  border: 1px solid rgba(215, 185, 136, 0.35);
  content: "";
}

.history-image img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) contrast(1.04) brightness(0.88);
}

.history-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 18, 13, 0.58), transparent 42%);
  content: "";
  pointer-events: none;
}

.history-image figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.history-timeline {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.history-timeline article {
  position: relative;
  display: grid;
  padding: 34px 0;
  border-top: 1px solid rgba(226, 208, 163, 0.22);
  grid-template-columns: 92px 1fr;
  gap: 24px;
}

.history-timeline article:last-child {
  border-bottom: 1px solid rgba(226, 208, 163, 0.22);
}

.history-timeline article::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--wine);
  content: "";
  transform: rotate(45deg);
}

.history-timeline time {
  color: #d7b988;
  font-family: var(--font-serif), Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.history-timeline h3 {
  margin-bottom: 13px;
  color: #f6eedc;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.history-timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.history-footer {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.history-footer > p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 23px;
  line-height: 1.35;
}

/* Welcome */

.welcome {
  background: var(--paper);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10vw;
  align-items: start;
}

.welcome-copy {
  max-width: 540px;
  padding-top: 46px;
}

.welcome-copy .lead {
  margin: 0 0 30px;
}

.welcome-copy > p:not(.lead) {
  max-width: 500px;
  margin: 0 0 34px;
  color: #5f625e;
}

.water-frame {
  position: relative;
  margin-top: 110px;
}

.water-frame::before {
  position: absolute;
  top: -34px;
  left: 5%;
  color: rgba(143, 20, 40, 0.1);
  content: "W";
  font-family: var(--font-serif), Georgia, serif;
  font-size: 240px;
  font-style: italic;
  line-height: 1;
  transform: translateY(-50%);
}

.water-frame img {
  width: 100%;
  height: min(64vw, 760px);
  object-fit: cover;
  object-position: center;
}

.water-caption {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
  color: #77736b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Rooms */

.rooms {
  background: var(--cream);
}

.section-heading-row {
  display: grid;
  grid-template-columns: 1fr 350px;
  align-items: end;
  gap: 80px;
}

.section-heading-row > p {
  margin: 0 0 10px;
  color: #65655e;
}

.room-grid {
  display: grid;
  margin-top: 90px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 78px 28px;
}

.room-card:nth-child(even) {
  margin-top: 100px;
}

.room-image-wrap {
  position: relative;
  overflow: hidden;
  background: #d8d0c2;
}

.room-image-wrap img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.room-card:hover img {
  transform: scale(1.035);
}

.room-number {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(250, 247, 240, 0.92);
  color: var(--wine);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 15px;
}

.room-card-copy {
  position: relative;
  padding: 24px 40px 0 0;
}

.room-card-copy > p {
  margin: 0 0 12px;
  color: var(--wine);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-card-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(38px, 4vw, 58px);
}

.room-card-copy > span {
  display: block;
  max-width: 520px;
  color: #64655f;
  font-size: 14px;
}

/* Culinary */

.culinary {
  background: var(--paper);
}

.culinary-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 9vw;
}

.culinary-image {
  position: relative;
}

.culinary-image::before {
  position: absolute;
  inset: -22px 22px 22px -22px;
  border: 1px solid rgba(143, 20, 40, 0.22);
  content: "";
}

.culinary-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 660px;
  object-fit: cover;
}

.seal {
  position: absolute;
  z-index: 2;
  right: -40px;
  bottom: 50px;
  display: flex;
  width: 120px;
  height: 120px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: var(--wine);
  color: white;
  flex-direction: column;
  box-shadow: 0 15px 40px rgba(35, 14, 17, 0.24);
}

.seal span {
  font-family: var(--font-serif), Georgia, serif;
  font-size: 45px;
  font-style: italic;
  line-height: 0.8;
}

.seal small {
  margin-top: 7px;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.culinary-copy .lead {
  max-width: 540px;
  margin: 38px 0;
}

.menu-links {
  border-top: 1px solid var(--line);
}

.menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 2px;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, padding 180ms ease;
}

.menu-links a:hover,
.menu-links a:focus-visible {
  padding-inline: 10px;
  color: var(--wine);
}

.menu-links a span {
  display: flex;
  flex-direction: column;
}

.menu-links b {
  font-family: var(--font-serif), Georgia, serif;
  font-size: 26px;
  font-weight: 500;
}

.menu-links small {
  color: #76766f;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.small-note {
  margin: 22px 0 0;
  color: #77766f;
  font-size: 11px;
}

/* Celebrations */

.celebrations {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: white;
}

.celebrations-bg,
.celebrations-shade {
  position: absolute;
  inset: 0;
}

.celebrations-bg {
  background: url("/images/gildensaal.jpg") center / cover no-repeat;
}

.celebrations-shade {
  background: linear-gradient(90deg, rgba(22, 24, 20, 0.88), rgba(22, 24, 20, 0.26) 70%), linear-gradient(0deg, rgba(20, 20, 17, 0.62), transparent 50%);
}

.celebrations-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 820px;
  padding-block: 120px 90px;
  flex-direction: column;
  justify-content: space-between;
}

.celebrations h2 {
  max-width: 930px;
  color: white;
  font-size: clamp(62px, 7vw, 110px);
}

.celebrations h2 em {
  color: #eadbc4;
}

.celebrations-bottom {
  display: flex;
  max-width: 830px;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.celebrations-bottom p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.registry-note {
  background: var(--wine);
  color: white;
}

.registry-grid {
  display: grid;
  min-height: 180px;
  grid-template-columns: 80px 210px 1fr auto;
  align-items: center;
  gap: 34px;
}

.registry-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #eadbc4;
  font-size: 23px;
}

.registry-grid .eyebrow {
  margin: 0;
  color: white;
}

.registry-grid > p:nth-of-type(2) {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.registry-grid .text-link {
  color: white;
}

.registry-grid .text-link:hover,
.registry-grid .text-link:focus-visible {
  color: #eadbc4;
}

/* Visit */

.visit {
  background: var(--paper);
}

.visit-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10vw;
}

.visit-intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 38px 0 30px;
  color: #66665f;
}

.phone-link {
  display: inline-block;
  color: var(--wine);
  font-family: var(--font-serif), Georgia, serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.detail-block {
  padding: 38px;
  background: var(--cream);
}

.detail-block .eyebrow {
  margin-bottom: 36px;
}

.detail-block dl {
  margin: 0;
}

.detail-block dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.detail-block dt,
.detail-block dd {
  margin: 0;
  font-size: 12px;
}

.detail-block dd {
  font-weight: 700;
  text-align: right;
}

.kings-hours {
  margin: 25px 0 0;
  color: #66665f;
  font-size: 11px;
}

.kings-hours span {
  display: block;
  color: var(--wine);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.address-block {
  display: flex;
  background: var(--deep-forest);
  color: white;
  flex-direction: column;
}

.address-block .eyebrow {
  color: #d9c6aa;
}

.address-block address {
  margin-bottom: auto;
  font-family: var(--font-serif), Georgia, serif;
  font-size: 30px;
  font-style: normal;
  line-height: 1.35;
}

.address-block .button {
  margin-top: 60px;
  border-color: rgba(255, 255, 255, 0.42);
}

/* Footer */

.site-footer {
  background: #121a16;
  color: white;
}

.footer-top {
  display: grid;
  min-height: 300px;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-brand {
  display: flex;
  width: 290px;
  min-height: 102px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
}

.footer-logo {
  width: 100%;
  height: auto;
}

.footer-top > p {
  max-width: 400px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 25px;
  line-height: 1.35;
}

.social-links {
  display: flex;
  flex-direction: column;
}

.social-links a {
  display: flex;
  min-width: 170px;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  gap: 30px;
}

@keyframes reveal-image {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1.015); }
}

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

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto auto; gap: 18px; }
  .hero-title-lockup { width: min(700px, 72vw); }
  .hero-actions { right: 330px; }
  .mobile-menu { position: relative; display: block; }
  .mobile-menu summary { display: flex; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.45); cursor: pointer; flex-direction: column; gap: 6px; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 19px; height: 1px; background: white; }
  .mobile-menu nav { position: absolute; top: 56px; right: 0; display: flex; width: 280px; padding: 18px 22px; background: var(--paper); color: var(--ink); box-shadow: 0 20px 50px rgba(0,0,0,.22); flex-direction: column; }
  .mobile-menu nav a { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--deep-forest); font-family: var(--font-serif), Georgia, serif; font-size: 20px; font-weight: 600; letter-spacing: .015em; line-height: 1.15; }
  .history-intro { grid-template-columns: 1fr; align-items: start; gap: 52px; }
  .history-copy { max-width: 680px; }
  .history-stage { grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); gap: 46px; }
  .history-timeline article { grid-template-columns: 78px 1fr; gap: 18px; }
  .registry-grid { grid-template-columns: 70px 190px 1fr; padding-block: 32px; }
  .registry-grid .text-link { grid-column: 3; justify-self: start; }
  .visit-grid { grid-template-columns: 1fr; gap: 80px; }
}

@media (max-width: 820px) {
  .page-shell { width: min(100% - 40px, 680px); }
  .section-pad { padding-block: 90px; }
  .hero { min-height: max(720px, 100svh); }
  .hero-frame { inset: 12px; border-radius: 16px 0 16px 0; }
  .hero-video { object-position: 68% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5, 27, 20, .98), rgba(6, 25, 19, .8) 53%, rgba(6, 22, 17, .28)), linear-gradient(0deg, rgba(5, 19, 14, .7), transparent 50%); }
  .site-header { top: 18px; width: calc(100% - 52px); min-height: 72px; }
  .header-cta { display: none; }
  .brand { width: 215px; height: 62px; padding: 0; }
  .hero-content { min-height: max(720px, 100svh); padding-top: 145px; padding-bottom: 90px; }
  .hero-title-lockup { width: 100%; }
  .hero h1 { font-size: clamp(48px, 13vw, 78px); line-height: .92; }
  .title-ornament { width: 88%; margin: 0 0 28px; grid-template-columns: 1fr 12px 1fr; gap: 10px; }
  .title-ornament i { width: 10px; height: 10px; }
  .title-ornament-bottom { margin-top: 28px; margin-bottom: 22px; }
  .hero-subtitle { margin-left: 0; gap: 10px; flex-wrap: wrap; font-size: 9px; letter-spacing: .17em; }
  .hero-actions { position: static; margin-top: 48px; flex-wrap: wrap; }
  .hero-note { right: 12px; bottom: 12px; left: 12px; min-width: 0; width: auto; min-height: 52px; padding: 14px 18px; }
  .history-chapter { padding-block: 100px 85px; }
  .history-chapter::before { left: 12px; }
  .history-intro { gap: 38px; }
  .history-stage { margin-top: 70px; grid-template-columns: 1fr; gap: 48px; }
  .history-image img { min-height: 560px; }
  .history-timeline article { grid-template-columns: 88px 1fr; }
  .history-footer { margin-top: 48px; align-items: flex-start; flex-direction: column; gap: 28px; }
  .welcome-grid, .culinary-grid { grid-template-columns: 1fr; gap: 65px; }
  .welcome-copy { padding-top: 0; }
  .water-frame { margin-top: 75px; }
  .water-frame img { height: 78vw; }
  .section-heading-row { grid-template-columns: 1fr; gap: 35px; }
  .room-grid { grid-template-columns: 1fr; margin-top: 60px; gap: 60px; }
  .room-card:nth-child(even) { margin-top: 0; }
  .room-image-wrap img { aspect-ratio: 1.1 / 1; }
  .culinary-image { margin-left: 20px; }
  .culinary-image img { min-height: 520px; }
  .seal { right: -18px; width: 100px; height: 100px; }
  .celebrations, .celebrations-inner { min-height: 700px; }
  .celebrations-inner { padding-block: 90px 75px; }
  .celebrations-bottom { align-items: flex-start; flex-direction: column; gap: 30px; }
  .registry-grid { grid-template-columns: 60px 1fr; gap: 22px; }
  .registry-grid > p:nth-of-type(2), .registry-grid .text-link { grid-column: 2; }
  .visit-details { grid-template-columns: 1fr; }
  .detail-block { min-height: 420px; }
  .footer-top { grid-template-columns: 1fr; padding-block: 70px; gap: 38px; }
  .footer-brand { width: 250px; min-height: 88px; }
  .footer-top > p { margin: 0; }
  .footer-bottom { padding-block: 25px; align-items: flex-start; flex-direction: column; gap: 15px; }
}

@media (max-width: 480px) {
  .page-shell { width: calc(100% - 30px); }
  .site-header { width: calc(100% - 42px); }
  .brand { width: 185px; height: 54px; }
  .hero h1 { font-size: 14vw; letter-spacing: .02em; }
  .hero-subtitle { max-width: 300px; line-height: 1.8; }
  .history-chapter { padding-block: 82px 70px; }
  .history-copy .lead { font-size: 24px; }
  .history-image::before { inset: -12px 12px 12px -12px; }
  .history-image img { min-height: 430px; }
  .history-image figcaption { right: 16px; bottom: 14px; left: 16px; flex-direction: column; gap: 3px; }
  .history-timeline article { padding-block: 28px; grid-template-columns: 1fr; gap: 12px; }
  .history-timeline h3 { font-size: 29px; }
  h2 { font-size: 48px; }
  .button { width: 100%; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .text-link { align-self: flex-start; }
  .water-frame::before { font-size: 150px; }
  .room-card-copy { padding-right: 0; }
  .culinary-image img { min-height: 430px; }
  .seal { right: -5px; bottom: 24px; width: 86px; height: 86px; }
  .celebrations h2 { font-size: 50px; }
  .registry-icon { width: 50px; height: 50px; }
  .registry-grid { grid-template-columns: 50px 1fr; }
  .detail-block { padding: 28px; }
  .address-block address { font-size: 27px; }
}
