:root {
  --ink: #12150f;
  --muted: #6f716a;
  --paper: #f7f4ed;
  --paper-2: #eee9df;
  --white: #ffffff;
  --olive: #202a1b;
  --olive-2: #2f3b29;
  --olive-3: #7d876d;
  --gold: #b49350;
  --line: rgba(18, 21, 15, 0.13);
  --line-light: rgba(255, 255, 255, 0.28);
  --shadow-sm: 0 12px 28px rgba(31, 36, 27, 0.10);
  --shadow-md: 0 28px 70px rgba(31, 36, 27, 0.16);
  --shadow-lg: 0 45px 110px rgba(31, 36, 27, 0.22);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: #e9e6df;
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--olive);
}
.skip-link:focus { transform: translateY(0); }

.page-shell {
  position: relative;
  width: min(calc(100% - 20px), 1500px);
  min-height: 860px;
  margin: 10px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background:
    radial-gradient(circle at 38% 34%, rgba(255,255,255,.92), rgba(255,255,255,0) 36%),
    linear-gradient(135deg, #fbf9f4 0%, #f3eee5 60%, #eee8dc 100%);
  box-shadow: var(--shadow-md);
}

.page-shell::after {
  position: absolute;
  z-index: 0;
  right: -8%;
  bottom: -22%;
  width: 66%;
  height: 52%;
  border-radius: 50%;
  content: "";
  background: rgba(255,255,255,.52);
  transform: rotate(-9deg);
}

.site-header {
  position: relative;
  z-index: 80;
  display: grid;
  grid-template-columns: 230px 1fr 220px;
  min-height: 86px;
  align-items: center;
  padding: 0 52px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 13px;
}
.brand img {
  width: 55px;
  height: 44px;
  object-fit: contain;
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.brand-copy span {
  margin-top: 5px;
  color: #77776f;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.site-nav { justify-self: center; }
.site-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 39px;
  list-style: none;
}
.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.nav-book {
  display: inline-flex;
  min-height: 46px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.43);
  border-radius: 8px;
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.nav-book:hover, .nav-book:focus-visible { color: var(--olive); background: #fff; }
.menu-toggle {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.43);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block;
  width: 14px;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform .2s ease;
}
.menu-toggle span { position: relative; }
.menu-toggle span::before { position: absolute; top: -5px; }
.menu-toggle span::after { position: absolute; top: 5px; }

.mobile-menu {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  visibility: hidden;
  place-items: center;
  padding: 30px;
  color: #fff;
  background: rgba(20, 29, 17, .98);
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; }
.mobile-menu nav { display: grid; gap: 20px; text-align: center; }
.mobile-menu nav a { font-family: var(--serif); font-size: clamp(2rem, 7vw, 4.4rem); }
.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.dashboard-hero {
  position: relative;
  z-index: 1;
  height: 774px;
}
.olive-shape {
  position: absolute;
  z-index: 0;
  top: -105px;
  right: -72px;
  width: 46%;
  height: 530px;
  overflow: hidden;
  border-radius: 52% 0 0 56%;
  background:
    radial-gradient(circle at 25% 62%, rgba(255,255,255,.05), rgba(255,255,255,0) 32%),
    linear-gradient(145deg, #2c3827 0%, #172014 74%);
  transform: rotate(-4deg);
}
.olive-shape::before,
.olive-shape::after {
  position: absolute;
  width: 260px;
  height: 1px;
  content: "";
  background: rgba(255,255,255,.09);
  box-shadow: 0 24px rgba(255,255,255,.06), 0 48px rgba(255,255,255,.04);
  transform: rotate(55deg);
}
.olive-shape::before { top: 130px; right: -38px; }
.olive-shape::after { top: 30px; right: 110px; transform: rotate(68deg); }

.hero-copy {
  position: absolute;
  z-index: 8;
  top: 5px;
  left: 6.2%;
  width: 36%;
  max-width: 475px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #8f7540;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.eyebrow::after { width: 42px; height: 1px; content: ""; background: currentColor; opacity: .72; }
.hero-copy h1 {
  margin: 23px 0 15px;
  font-family: var(--serif);
  font-size: clamp(3.45rem, 4.15vw, 4.1rem);
  font-weight: 400;
  line-height: .89;
  letter-spacing: -.055em;
}
.hero-copy h1 em { font-weight: 400; }
.hero-copy p {
  max-width: 380px;
  margin: 0 0 20px;
  color: #64665f;
  font-size: .78rem;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.btn {
  display: inline-flex;
  min-height: 49px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn::after { content: "→"; font-size: .85rem; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-dark { color: #fff; background: var(--olive); box-shadow: 0 14px 25px rgba(32,42,27,.18); }
.btn-dark:hover, .btn-dark:focus-visible { background: #34422d; }
.btn-light { border-color: var(--line); background: rgba(255,255,255,.78); }
.btn-ghost { padding: 0; border: 0; background: transparent; }

.plate-scene {
  position: absolute;
  z-index: 3;
  top: -4px;
  left: 47%;
  width: 40%;
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate3d(var(--plate-x, 0), var(--plate-y, 0), 0) rotate(-2deg);
  transition: transform .25s ease-out;
}
.plate-scene::before {
  position: absolute;
  z-index: -1;
  inset: 10% 10% 9%;
  border-radius: 50%;
  content: "";
  box-shadow: 0 40px 90px rgba(29, 34, 25, .25);
}
.plate-scene img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 35px 50px rgba(31,36,27,.18)); }

.highlight-stack {
  position: absolute;
  z-index: 12;
  top: 31px;
  right: 7.8%;
  display: grid;
  width: 213px;
  gap: 10px;
}
.highlight-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  min-height: 72px;
  padding: 12px 14px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 13px;
  color: #fff;
  background: rgba(255,255,255,.08);
  box-shadow: 0 12px 28px rgba(14,20,12,.13);
  backdrop-filter: blur(13px);
}
.highlight-card .icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: var(--olive);
  background: rgba(255,255,255,.86);
  font-size: .72rem;
  font-weight: 800;
}
.highlight-card .icon img { width: 100%; height: 100%; object-fit: cover; }
.highlight-card strong { display: block; font-size: .71rem; line-height: 1.2; }
.highlight-card small { display: block; margin-top: 4px; color: rgba(255,255,255,.76); font-size: .49rem; line-height: 1.35; }

.scroll-cue {
  position: absolute;
  z-index: 14;
  top: 291px;
  left: 49.2%;
  display: grid;
  justify-items: center;
  color: #a9a69d;
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.scroll-cue span {
  display: grid;
  width: 39px;
  height: 39px;
  margin-bottom: 8px;
  place-items: center;
  border: 1px solid rgba(18,21,15,.18);
  border-radius: 50%;
  color: #74766e;
  background: rgba(255,255,255,.55);
  animation: floatCue 2.2s ease-in-out infinite;
}
@keyframes floatCue { 50% { transform: translateY(5px); } }


/* Layered homepage motion */
.motion-card {
  --motion-x: 0px;
  --motion-y: 0px;
  --motion-scroll: 0px;
  --motion-rx: 0deg;
  --motion-ry: 0deg;
  --motion-lift: 0px;
  transform:
    perspective(1000px)
    translate3d(
      var(--motion-x),
      calc(var(--motion-y) + var(--motion-scroll) + var(--motion-lift)),
      0
    )
    rotateX(var(--motion-rx))
    rotateY(var(--motion-ry));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease;
}
.motion-card:hover,
.motion-card:focus-visible {
  --motion-lift: -7px;
}
.event-preview.motion-card:hover,
.event-preview.motion-card:focus-visible,
.dining-home.motion-card:hover,
.dining-home.motion-card:focus-visible {
  box-shadow: 0 28px 58px rgba(31,36,27,.18);
}
.private-preview.motion-card:hover,
.private-preview.motion-card:focus-visible {
  box-shadow: 0 30px 62px rgba(20,27,17,.28);
}

.glass-card {
  border: 1px solid rgba(255,255,255,.84);
  border-radius: 18px;
  background: rgba(255,255,255,.73);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}
.card-label {
  display: block;
  margin-bottom: 14px;
  color: #6b6c65;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.event-preview {
  position: absolute;
  z-index: 18;
  top: 347px;
  left: 3.3%;
  width: 250px;
  padding: 18px;
}
.event-preview .event-ticket {
  display: flex;
  min-height: 48px;
  padding: 10px 12px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 8px 22px rgba(31,36,27,.08);
}
.event-ticket strong { font-size: .66rem; }
.event-ticket small { display: block; color: #73756e; font-size: .49rem; }
.event-ticket .status {
  padding: 4px 7px;
  border-radius: 999px;
  color: #687644;
  background: #eef3d9;
  font-size: .42rem;
  font-weight: 800;
}
.event-feature {
  position: relative;
  min-height: 103px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  background: #202a1b;
}
.event-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.event-feature::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(19,25,17,.84), rgba(19,25,17,.15)); }
.event-feature div { position: relative; z-index: 2; width: 72%; padding: 17px 15px; }
.event-feature small { font-size: .45rem; font-weight: 800; text-transform: uppercase; }
.event-feature strong { display: block; margin: 3px 0; font-family: var(--serif); font-size: 1rem; line-height: 1; }
.event-feature span { font-size: .48rem; }

.contact-preview {
  position: absolute;
  z-index: 18;
  top: 610px;
  left: 3.3%;
  display: grid;
  grid-template-columns: 1fr 78px;
  width: 250px;
  min-height: 132px;
  padding: 17px;
  gap: 12px;
}
.contact-preview p { margin: 0 0 10px; color: #6e7068; font-size: .56rem; line-height: 1.5; }
.contact-preview .mini-link {
  display: inline-flex;
  min-height: 32px;
  padding: 0 11px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.contact-preview img { width: 100%; height: 100%; border-radius: 9px; object-fit: cover; }

.floorplan-stage {
  position: absolute;
  z-index: 10;
  top: 342px;
  left: 28.5%;
  width: 44%;
  height: 360px;
  transform: perspective(1100px) rotateX(4deg) rotateZ(-1.2deg) translate3d(var(--floor-x,0), var(--floor-y,0),0);
  transform-origin: center bottom;
  transition: transform .22s ease-out;
}
.floorplan-stage::before {
  position: absolute;
  z-index: -1;
  inset: 10% 7% 2%;
  border-radius: 45%;
  content: "";
  background: rgba(255,255,255,.75);
  filter: blur(30px);
}
.floorplan-stage img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 30px 52px rgba(31,36,27,.23);
}
.floorplan-stage:hover img { box-shadow: 0 38px 66px rgba(31,36,27,.28); }
.floor-chip {
  position: absolute;
  z-index: 5;
  right: 32%;
  bottom: 29%;
  display: grid;
  min-width: 112px;
  padding: 10px 13px;
  border: 1px solid #d7bd7e;
  border-radius: 8px;
  background: rgba(255,251,240,.94);
  box-shadow: 0 9px 26px rgba(31,36,27,.14);
}
.floor-chip strong { font-size: .64rem; }
.floor-chip small { color: #77786f; font-size: .45rem; }
.floor-selector {
  position: absolute;
  top: 18%;
  right: -24px;
  display: grid;
  overflow: hidden;
  border-radius: 14px;
  color: #fff;
  background: rgba(64,73,56,.72);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(9px);
}
.floor-selector span { display: grid; width: 48px; height: 42px; place-items: center; border-bottom: 1px solid rgba(255,255,255,.16); font-size: .58rem; }
.floor-selector span:first-child { height: 34px; font-size: .42rem; text-transform: uppercase; }
.floor-selector span:last-child { border-bottom: 0; }
.map-controls { position: absolute; right: -4px; bottom: 67px; display: grid; gap: 8px; }
.map-controls button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 18px rgba(31,36,27,.12);
  cursor: pointer;
}
.floorplan-link-label {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(32,42,27,.82);
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dining-home {
  position: absolute;
  z-index: 19;
  top: 347px;
  right: 4.7%;
  width: 226px;
  min-height: 205px;
  padding: 19px;
}
.dining-home h3 { margin: 4px 0 7px; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; line-height: 1; }
.dining-home p { margin: 0 0 15px; color: #666860; font-size: .58rem; line-height: 1.5; }
.dining-home img { width: 100%; height: 62px; margin-bottom: 13px; border-radius: 9px; object-fit: cover; }
.dining-home .mini-link, .private-preview .mini-link { color: #8f722f; font-size: .52rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.private-preview {
  position: absolute;
  z-index: 19;
  top: 610px;
  right: 2.1%;
  display: grid;
  grid-template-columns: 47% 1fr;
  width: 310px;
  min-height: 132px;
  overflow: hidden;
  border-radius: 17px;
  color: #fff;
  background: var(--olive);
  box-shadow: var(--shadow-sm);
}
.private-preview img { width: 100%; height: 100%; object-fit: cover; }
.private-preview div { padding: 18px 15px; }
.private-preview small { font-size: .46rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.private-preview h3 { margin: 8px 0 6px; font-family: var(--serif); font-size: 1rem; font-weight: 400; }
.private-preview p { margin: 0 0 12px; color: rgba(255,255,255,.72); font-size: .48rem; line-height: 1.5; }

.feature-row {
  position: absolute;
  z-index: 22;
  right: 25%;
  bottom: 14px;
  left: 28.5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
}
.feature-item { display: grid; grid-template-columns: 25px 1fr; gap: 8px; align-items: start; }
.feature-item .feature-icon { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; line-height: 1; }
.feature-item strong { display: block; font-size: .48rem; letter-spacing: .05em; text-transform: uppercase; }
.feature-item small { display: block; margin-top: 4px; color: #77786f; font-size: .39rem; line-height: 1.45; }

.content-wrap {
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
}
.section { padding: 105px 0; background: #f8f6f1; }
.section.alt { background: #ece8df; }
.section.dark { color: #fff; background: var(--olive); }
.section-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; margin-bottom: 46px; }
.section-heading h2, .page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.045em;
}
.section-heading p { margin: 0; color: #6a6d65; font-size: 1rem; line-height: 1.8; }
.dark .section-heading p { color: rgba(255,255,255,.72); }
.editorial-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.editorial-card { position: relative; min-height: 470px; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow-sm); }
.editorial-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.editorial-card:hover img { transform: scale(1.035); }
.editorial-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(15,19,14,0) 35%, rgba(15,19,14,.82)); }
.editorial-copy { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 34px; color: #fff; }
.editorial-copy h3 { margin: 5px 0 9px; font-family: var(--serif); font-size: 2.35rem; font-weight: 400; line-height: 1; }
.editorial-copy p { max-width: 520px; margin: 0 0 17px; color: rgba(255,255,255,.77); }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: .68rem; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.text-link::after { content: "→"; }

.visit-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 24px; }
.visit-card { padding: 44px; border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); }
.visit-card h2 { margin: 0 0 25px; font-family: var(--serif); font-size: 3.4rem; font-weight: 400; line-height: 1; }
.contact-list { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; }
.contact-list small { display: block; color: #8a8b84; font-size: .65rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.contact-list span, .contact-list a { display: block; margin-top: 4px; }
.map-frame { position: relative; min-height: 520px; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow-sm); }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: sepia(.2) saturate(.75) contrast(.95); }
.map-float { position: absolute; right: 22px; bottom: 22px; left: 22px; display: flex; padding: 18px 20px; align-items: center; justify-content: space-between; gap: 15px; border-radius: 16px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }

.site-footer { padding: 75px 0 30px; color: #fff; background: #151c12; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr .9fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 60px; filter: invert(1); }
.footer-brand strong { display: block; font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.footer-grid h3 { margin: 0 0 16px; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid p, .footer-grid a { color: rgba(255,255,255,.67); font-size: .82rem; }
.footer-links { display: grid; gap: 9px; }
.footer-bottom { display: flex; margin-top: 55px; padding-top: 22px; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: .72rem; }

/* Inner pages */
.inner-body { background: #efebe3; }
.inner-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 230px 1fr 220px;
  min-height: 86px;
  padding: 0 max(32px, calc((100vw - 1380px)/2));
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(248,246,241,.9);
  backdrop-filter: blur(18px);
}
.inner-header .nav-book { border-color: var(--line); color: var(--olive); }
.inner-header .menu-toggle { border-color: var(--line); color: var(--olive); }
.page-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: var(--olive);
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .56; }
.page-hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(19,26,16,.9), rgba(19,26,16,.28)); }
.page-hero .content-wrap { position: relative; z-index: 2; display: grid; min-height: 520px; align-content: center; }
.page-hero h1 { max-width: 760px; }
.page-hero p { max-width: 620px; margin: 22px 0 0; color: rgba(255,255,255,.76); font-size: 1.08rem; line-height: 1.8; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card { overflow: hidden; border-radius: 23px; background: #fff; box-shadow: var(--shadow-sm); }
.info-card img { width: 100%; height: 240px; object-fit: cover; }
.info-card .info-copy { padding: 27px; }
.info-card h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.info-card p { color: #696b64; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.menu-card { display: grid; min-height: 410px; padding: 28px; align-content: end; overflow: hidden; border-radius: 25px; color: #fff; background: var(--olive); box-shadow: var(--shadow-sm); }
.menu-card::before { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(20,26,17,.06), rgba(20,26,17,.85)); }
.menu-card { position: relative; background-size: cover; background-position: center; }
.menu-card > * { position: relative; z-index: 2; }
.menu-card { isolation: isolate; transition: transform .35s ease, box-shadow .35s ease; }
.menu-card:hover, .menu-card:focus-visible { transform: translateY(-8px); box-shadow: 0 28px 58px rgba(31,36,27,.2); }
.menu-card::after { position: absolute; inset: 0; z-index: 1; content: ""; border: 1px solid rgba(255,255,255,.24); border-radius: inherit; pointer-events: none; }
.menu-card .menu-number { position: absolute; top: 26px; right: 26px; color: rgba(255,255,255,.76); font-family: var(--serif); font-size: 1rem; letter-spacing: .08em; }
.menu-card h3 { margin: 7px 0 9px; font-family: var(--serif); font-size: clamp(1.9rem, 2.8vw, 2.55rem); font-weight: 400; line-height: 1; }
.menu-card p { color: rgba(255,255,255,.74); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.prose h2 { font-family: var(--serif); font-size: clamp(2.4rem,4vw,4.2rem); font-weight: 400; line-height: 1; }
.prose h3 { margin-top: 30px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.prose p, .prose li { color: #666960; line-height: 1.8; }
.price-box { padding: 32px; border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.price-line { display: flex; padding: 17px 0; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.price-line:last-child { border-bottom: 0; }
.price-line strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.form-card { padding: 34px; border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .66rem; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 49px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: #fbfaf7; }
.field textarea { min-height: 140px; resize: vertical; }
.form-note { margin-top: 14px; color: #757770; font-size: .75rem; }
.reservation-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; }
.reservation-map { position: relative; overflow: hidden; min-height: 610px; border-radius: 25px; background: #fff; box-shadow: var(--shadow-sm); }
.reservation-map img { width: 100%; height: 100%; object-fit: cover; transform: scale(var(--map-scale,1)); transform-origin: center; transition: transform .2s ease; }
.reservation-map .map-controls { right: 18px; bottom: 18px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { padding: 14px 0; border-bottom: 1px solid var(--line); text-align: left; }
.hours-table th { width: 48%; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .site-header, .inner-header { grid-template-columns: 200px 1fr 180px; padding-inline: 30px; }
  .site-nav ul { gap: 23px; }
  .hero-copy { left: 5%; }
  .highlight-stack { right: 4%; }
  .event-preview, .contact-preview { left: 2%; }
  .floorplan-stage { left: 24%; width: 48%; }
  .dining-home { right: 2.5%; }
  .feature-row { left: 24%; right: 25%; }
}

@media (max-width: 980px) {
  .page-shell { min-height: 0; overflow: visible; border-radius: 22px; }
  .site-header, .inner-header { grid-template-columns: 1fr auto; }
  .site-nav, .nav-book { display: none; }
  .header-actions { grid-column: 2; }
  .menu-toggle { border-color: var(--line); color: var(--olive); }
  .dashboard-hero { display: grid; height: auto; padding: 35px 24px 50px; gap: 20px; }
  .olive-shape { top: 0; right: -30%; width: 70%; height: 420px; }
  .hero-copy, .plate-scene, .highlight-stack, .scroll-cue, .event-preview, .contact-preview, .floorplan-stage, .dining-home, .private-preview, .feature-row {
    position: relative;
    inset: auto;
    width: auto;
    max-width: none;
    transform: none;
  }
  .motion-card { transform: none !important; }
  .hero-copy { z-index: 5; width: min(100%, 560px); padding: 35px 5px 5px; }
  .hero-copy h1 { font-size: clamp(3.6rem, 11vw, 6.3rem); }
  .plate-scene { z-index: 3; width: min(78vw, 620px); margin: -110px -120px -40px auto; }
  .highlight-stack { z-index: 8; grid-template-columns: repeat(3,1fr); width: 100%; }
  .highlight-card { color: var(--ink); background: rgba(255,255,255,.8); border-color: rgba(255,255,255,.9); }
  .highlight-card small { color: #6d6f67; }
  .scroll-cue { display: none; }
  .event-preview, .contact-preview, .dining-home, .private-preview { z-index: 8; width: 100%; }
  .floorplan-stage { z-index: 6; width: 100%; height: auto; aspect-ratio: 1.45; }
  .floor-selector { right: 12px; }
  .map-controls { right: 14px; }
  .feature-row { z-index: 8; grid-template-columns: repeat(2,1fr); padding: 16px 2px 0; }
  .section-heading, .editorial-grid, .visit-grid, .two-col, .reservation-layout { grid-template-columns: 1fr; }
  .cards-3, .menu-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 650px) {
  .page-shell { width: 100%; margin: 0; border: 0; border-radius: 0; }
  .site-header, .inner-header { min-height: 76px; padding-inline: 18px; }
  .brand img { width: 46px; height: 38px; }
  .brand-copy strong { font-size: 1rem; }
  .dashboard-hero { padding-inline: 16px; }
  .hero-copy { padding-top: 15px; }
  .hero-copy h1 { font-size: clamp(3.15rem, 17vw, 4.8rem); }
  .hero-copy p { font-size: .82rem; }
  .plate-scene { width: 95vw; margin: -70px -105px -60px auto; }
  .highlight-stack { grid-template-columns: 1fr; }
  .event-preview, .contact-preview, .dining-home, .private-preview { border-radius: 15px; }
  .contact-preview, .private-preview { grid-template-columns: 1fr; }
  .contact-preview img { height: 130px; }
  .private-preview img { height: 180px; }
  .feature-row { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .content-wrap { width: min(calc(100% - 28px), 1240px); }
  .section-heading { gap: 22px; }
  .cards-3, .menu-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .editorial-card { min-height: 390px; }
  .map-float { align-items: flex-start; flex-direction: column; }
  .footer-bottom { flex-direction: column; }
  .field.full { grid-column: auto; }
}

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

@media (max-width: 650px) {
  .olive-shape {
    top: 455px;
    right: -48%;
    width: 112%;
    height: 360px;
    border-radius: 55% 0 0 55%;
  }
}


.location-return {
  position: fixed;
  z-index: 420;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 36px;
  padding: 0 14px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  color: #fff;
  background: rgba(24,32,22,.82);
  box-shadow: 0 12px 28px rgba(18,21,15,.18);
  backdrop-filter: blur(12px);
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.location-return:hover,
.location-return:focus-visible {
  transform: translateY(-2px);
  background: #33412d;
}
.contact-page-hero img {
  object-position: center;
  filter: grayscale(1) sepia(.4) hue-rotate(46deg) saturate(.65) contrast(1.08);
}
.contact-page-hero::after {
  background:
    linear-gradient(90deg, rgba(19,26,16,.96), rgba(19,26,16,.42)),
    linear-gradient(180deg, rgba(19,26,16,.1), rgba(180,146,73,.16));
}
.contact-preview img {
  filter: grayscale(1) sepia(.35) hue-rotate(46deg) saturate(.7) contrast(1.04);
}
@media (max-width: 650px) {
  .location-return {
    right: 12px;
    bottom: 12px;
    min-height: 33px;
    padding: 0 11px;
    font-size: .5rem;
  }
}


/* Woodkirk uses one real floor only. Preserve the full supplied plan without cropping. */
.floorplan-stage {
  aspect-ratio: 1.4;
  height: auto;
}
.floorplan-stage img,
.reservation-map img {
  object-fit: contain;
  background: #eee9df;
}
.reservation-map {
  min-height: 0;
  aspect-ratio: 1.4;
}


/* Current event boards and poster cards */
.event-board-link { text-decoration: none; white-space: nowrap; }
.event-board-list { display: grid; gap: 8px; margin-top: 10px; }
.event-mini-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  min-height: 72px;
  overflow: hidden;
  align-items: stretch;
  border: 1px solid rgba(63,76,54,.10);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255,255,255,.88);
  box-shadow: 0 7px 18px rgba(31,36,27,.07);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.event-mini-card:hover, .event-mini-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(104,118,68,.28);
  box-shadow: 0 11px 24px rgba(31,36,27,.12);
}
.event-mini-card img { width: 54px; height: 100%; min-height: 72px; object-fit: cover; object-position: center top; }
.event-mini-card > span { display: block; min-width: 0; padding: 9px 10px; }
.event-mini-card small { display: block; color: #7a805f; font-size: .43rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.event-mini-card strong { display: block; margin: 2px 0 3px; font-family: var(--serif); font-size: .72rem; line-height: 1.05; }
.event-mini-card em { display: block; color: #6f7169; font-size: .43rem; font-style: normal; line-height: 1.35; }

.current-events-section { background: linear-gradient(180deg, #f5f2e9 0%, #fff 100%); }
.event-poster-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.event-poster-card {
  display: grid;
  grid-template-columns: minmax(210px, .86fr) minmax(0, 1.14fr);
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(63,76,54,.10);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.event-poster-link { position: relative; display: block; min-height: 100%; overflow: hidden; background: #171b15; }
.event-poster-link img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: center top; transition: transform .45s ease; }
.event-poster-link:hover img, .event-poster-link:focus-visible img { transform: scale(1.025); }
.poster-open {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  color: #fff;
  background: rgba(16,22,14,.74);
  backdrop-filter: blur(10px);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.event-poster-copy { display: flex; flex-direction: column; justify-content: center; padding: 34px; }
.event-poster-copy h3 { margin: 7px 0 13px; font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.75rem); font-weight: 400; line-height: 1; }
.event-poster-copy p { margin: 0 0 20px; color: #696b64; line-height: 1.75; }
.event-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px; }
.event-meta span { padding: 7px 10px; border-radius: 999px; color: #53613b; background: #eef2df; font-size: .67rem; font-weight: 800; }

@media (max-width: 1180px) {
  .event-poster-grid { grid-template-columns: 1fr; }
  .event-poster-card { grid-template-columns: 300px 1fr; min-height: 430px; }
  .event-poster-link img { min-height: 430px; }
}

@media (max-width: 650px) {
  .event-mini-card { grid-template-columns: 68px 1fr; min-height: 82px; }
  .event-mini-card img { width: 68px; min-height: 82px; }
  .event-mini-card small, .event-mini-card em { font-size: .54rem; }
  .event-mini-card strong { font-size: .92rem; }
  .event-poster-card { grid-template-columns: 1fr; min-height: 0; }
  .event-poster-link { aspect-ratio: 3 / 4; min-height: 0; }
  .event-poster-link img { min-height: 0; }
  .event-poster-copy { padding: 26px 22px 30px; }
}


/* Home Dining web menu */
.home-dining-hero::after {
  background: linear-gradient(90deg, rgba(19,26,16,.94), rgba(19,26,16,.48) 58%, rgba(19,26,16,.20));
}
.home-dining-hero img { filter: saturate(.78) contrast(.94); }
.home-dining-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.home-dining-hero-meta span {
  display: inline-flex;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.08);
  font-size: .72rem;
  backdrop-filter: blur(10px);
}
.home-dining-hero-meta strong { color: #fff; }
.menu-jump {
  position: sticky;
  z-index: 75;
  top: 86px;
  border-bottom: 1px solid var(--line);
  background: rgba(247,244,237,.94);
  backdrop-filter: blur(16px);
}
.menu-jump .content-wrap {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 26px;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-jump .content-wrap::-webkit-scrollbar { display: none; }
.menu-jump a {
  flex: 0 0 auto;
  padding: 20px 0 17px;
  border-bottom: 2px solid transparent;
  color: #696b64;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .065em;
  text-transform: uppercase;
}
.menu-jump a:hover, .menu-jump a:focus-visible { color: var(--olive); border-bottom-color: var(--gold); }
.home-menu-intro { padding-bottom: 68px; }
.home-menu-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-outline {
  display: inline-flex;
  min-height: 48px;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--olive);
  background: transparent;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.btn-outline:hover, .btn-outline:focus-visible { border-color: var(--olive); background: rgba(32,42,27,.04); }
.home-menu-section {
  padding: 86px 0;
  background: #f8f6f1;
  scroll-margin-top: 145px;
}
.home-menu-section.home-menu-alt { background: #ece8df; }
.home-menu-section-head {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 32px;
}
.home-menu-section-head h2 {
  margin: 3px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}
.home-menu-section-head p { margin: 0; color: #6a6d65; line-height: 1.8; }
.home-menu-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: start; }
.home-menu-columns.two-menu-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.home-menu-panel {
  padding: 30px;
  border: 1px solid rgba(18,21,15,.07);
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
}
.home-menu-alt .home-menu-panel { background: rgba(255,255,255,.74); }
.home-menu-panel h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}
.menu-note {
  margin: 8px 0 3px;
  color: #898a82;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.dish {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 20px 0;
  align-items: start;
  border-bottom: 1px solid var(--line);
}
.dish:last-child { padding-bottom: 0; border-bottom: 0; }
.dish strong { display: block; font-size: .92rem; line-height: 1.35; }
.dish p { max-width: 620px; margin: 5px 0 0; color: #777970; font-size: .78rem; line-height: 1.65; }
.dish > span {
  color: var(--olive);
  font-family: var(--serif);
  font-size: 1.08rem;
  white-space: nowrap;
}
.home-menu-cta {
  display: flex;
  margin-top: 28px;
  padding: 32px 36px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 24px;
  color: #fff;
  background: var(--olive);
  box-shadow: var(--shadow-sm);
}
.home-menu-cta h3 { margin: 4px 0 7px; font-family: var(--serif); font-size: 2.2rem; font-weight: 400; }
.home-menu-cta p { margin: 0; color: rgba(255,255,255,.7); }
.home-menu-cta .btn-dark { color: var(--olive); background: #fff; }
.home-menu-cta .btn-outline { border-color: rgba(255,255,255,.3); color: #fff; }
.home-menu-cta .btn-outline:hover, .home-menu-cta .btn-outline:focus-visible { border-color: #fff; background: rgba(255,255,255,.08); }

@media (min-width: 981px) {
  .home-menu-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .menu-jump { top: 76px; }
  .home-menu-section-head { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 650px) {
  .home-dining-hero .content-wrap { min-height: 470px; }
  .home-dining-hero-meta { gap: 7px; }
  .home-dining-hero-meta span { font-size: .65rem; }
  .menu-jump .content-wrap { width: 100%; padding: 0 16px; gap: 22px; }
  .home-menu-section { padding: 66px 0; }
  .home-menu-columns, .home-menu-columns.two-menu-cols { grid-template-columns: 1fr; }
  .home-menu-panel { padding: 23px 20px; border-radius: 18px; }
  .dish { gap: 14px; }
  .home-menu-cta { align-items: flex-start; flex-direction: column; padding: 27px 22px; }
}

/* Dedicated event photography */
.event-page-hero img { object-position: center center; }
@media (max-width: 760px) {
  .event-page-hero img { object-position: 55% center; }
}
