:root {
  --ink: #141414;
  --charcoal: #1b1a18;
  --green-950: #071612;
  --green-900: #0f241d;
  --green-800: #18352d;
  --green-700: #21443a;
  --gold: #c7a15b;
  --gold-soft: #e2c78a;
  --cream: #f6f0e5;
  --stone: #d7c6ad;
  --muted: #a99f91;
  --burgundy: #642f35;
  --line: rgba(246, 240, 229, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--green-950);
  color: var(--cream);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(226, 199, 138, 0.28);
  background: linear-gradient(90deg, rgba(7, 18, 15, 0.98), rgba(12, 28, 23, 0.98));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  min-height: 94px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 218px;
  max-width: 28vw;
  height: auto;
  max-height: 82px;
  object-fit: contain;
  object-position: center;
  border: 0;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(246, 240, 229, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--gold-soft);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  font-weight: 800;
}

.btn {
  padding: 11px 18px;
  background: #c59a41;
  color: #17130d;
  box-shadow: 0 10px 26px rgba(82, 62, 25, 0.18);
}

.btn:hover {
  background: var(--gold-soft);
}

.btn.ghost {
  border-color: rgba(226, 199, 138, 0.56);
  background: transparent;
  color: var(--cream);
  box-shadow: none;
}

.light .btn.ghost {
  border-color: rgba(20, 20, 20, 0.28);
  color: var(--ink);
}

.text-link {
  min-height: 0;
  color: var(--gold-soft);
  gap: 8px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(226, 199, 138, 0.36);
  background: transparent;
  color: var(--cream);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 94px 0 auto 0;
  z-index: 35;
  display: block;
  min-height: calc(100dvh - 94px);
  padding: 24px 20px 34px;
  background: linear-gradient(180deg, rgba(8, 20, 17, 0.99), rgba(14, 31, 26, 0.99));
  border-top: 1px solid rgba(226, 199, 138, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
}

.mobile-panel a::after {
  color: var(--gold);
  content: ">";
  font-family: Inter, Arial, sans-serif;
  font-size: 18px;
}

.mobile-panel a.btn::after {
  content: none;
}

.mobile-panel .btn {
  width: 100%;
  margin-top: 26px;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 94px);
  overflow: hidden;
  background: var(--green-950);
}

.hero.short {
  min-height: 420px;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 15, 0.82) 0%, rgba(7, 18, 15, 0.52) 38%, rgba(7, 18, 15, 0.12) 74%, rgba(7, 18, 15, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 18, 15, 0.08) 0%, rgba(7, 18, 15, 0.42) 100%);
  content: "";
  z-index: 1;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.94) brightness(0.98) contrast(1.02);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  filter: saturate(0.94) brightness(0.98) contrast(1.02);
  transition: opacity 480ms ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: inherit;
  margin: 0 auto;
  padding: 72px 0 96px;
}

.hero.short .hero-inner {
  padding: 58px 0 66px;
}

.hero-copy {
  max-width: 690px;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.42);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-image {
    animation: heroImageSettle 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .lead,
  .hero-actions {
    animation: riseFade 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }

  .hero-copy h1 {
    animation-delay: 80ms;
  }

  .hero-copy .lead {
    animation-delay: 160ms;
  }

  .hero-actions {
    animation-delay: 240ms;
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(56px, 8vw, 118px);
}

.hero.short h1 {
  max-width: 760px;
  font-size: clamp(44px, 5.6vw, 76px);
}

.hero.short .lead {
  max-width: 590px;
  font-size: clamp(17px, 1.6vw, 20px);
}

h2 {
  font-size: clamp(42px, 5vw, 78px);
}

h3 {
  font-size: 32px;
}

p {
  margin: 0;
}

.rich-text {
  min-width: 0;
}

.rich-text > :first-child {
  margin-top: 0;
}

.rich-text > :last-child {
  margin-bottom: 0;
}

.rich-text p {
  margin: 0 0 0.85em;
  color: inherit;
  font: inherit;
  line-height: inherit;
}

.rich-text ul {
  margin: 0.65em 0 1em;
  padding-left: 1.25em;
}

.rich-text li + li {
  margin-top: 0.35em;
}

.rich-text a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.16em;
}

.rich-text.compact p {
  margin-bottom: 0.35em;
}

.lead {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(246, 240, 229, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.section {
  padding: 94px 0;
}

.section.alt {
  background: #10231d;
}

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

.section.light h2,
.section.light h3 {
  color: var(--ink);
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 42px;
}

.section-head p {
  max-width: 520px;
  color: rgba(246, 240, 229, 0.72);
}

.light .section-head p,
.light .muted,
.light .menu-item p {
  color: rgba(20, 20, 20, 0.66);
}

.identity-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 22, 18, 0.96), rgba(15, 36, 29, 0.9)),
    url("assets/alesund-building-night.jpg") center / cover;
}

.identity-section::before {
  position: absolute;
  inset: 0;
  background: var(--gold);
  content: "";
  opacity: 0.04;
  pointer-events: none;
}

.identity-head {
  position: relative;
  align-items: start;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(226, 199, 138, 0.28);
}

.identity-head > h2 + .rich-text {
  margin-top: 24px;
}

.identity-head::before {
  position: absolute;
  top: 0.15em;
  bottom: 30px;
  left: -28px;
  width: 3px;
  background: var(--gold);
  content: "";
}

.signature-list {
  position: relative;
  display: grid;
}

.signature-list article {
  display: grid;
  grid-template-columns: 82px 0.85fr 1fr;
  gap: 28px;
  align-items: center;
  min-height: 126px;
  border-bottom: 1px solid rgba(226, 199, 138, 0.22);
}

.signature-list article > span {
  color: rgba(226, 199, 138, 0.7);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 54px;
  line-height: 1;
}

.signature-list article > div > strong {
  display: block;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signature-list article > div > h3 {
  margin-top: 6px;
}

.signature-list p {
  color: rgba(246, 240, 229, 0.72);
}

.signature-link {
  display: inline-flex;
  margin-top: 14px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.panel,
.menu-item,
.event-item,
.contact-panel {
  border: 1px solid rgba(226, 199, 138, 0.24);
  background: rgba(246, 240, 229, 0.04);
}

.panel {
  padding: 28px;
}

.panel strong,
.stat strong {
  display: block;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.panel p {
  margin-top: 14px;
  color: rgba(246, 240, 229, 0.72);
}

.feature-row {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 199, 138, 0.26);
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.9);
}

[hidden] {
  display: none !important;
}

.gallery-section {
  border-top: 1px solid var(--line);
  background: #0b1b16;
}

.gallery-heading {
  align-items: end;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
}

.gallery-item {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(226, 199, 138, 0.24);
  background: #07120f;
  cursor: zoom-in;
}

.gallery-item:nth-child(5n + 1),
.gallery-item:nth-child(5n + 5) {
  grid-column: span 8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease, filter 450ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(180deg, transparent 60%, rgba(7, 18, 15, 0.35));
  content: "";
  transition: border-color 220ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: brightness(0.82);
  transform: scale(1.035);
}

.gallery-item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gallery-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 76px;
  align-items: center;
  padding: 38px;
  background: rgba(3, 10, 8, 0.96);
  backdrop-filter: blur(10px);
}

.gallery-lightbox figure {
  display: grid;
  justify-items: center;
  gap: 16px;
  max-width: 1400px;
  max-height: calc(100vh - 76px);
  margin: auto;
}

.gallery-lightbox img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 130px);
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  color: rgba(246, 240, 229, 0.78);
  font-size: 14px;
}

.gallery-nav,
.gallery-close {
  border: 1px solid rgba(226, 199, 138, 0.45);
  background: rgba(7, 18, 15, 0.7);
  color: var(--cream);
  cursor: pointer;
}

.gallery-nav {
  width: 52px;
  height: 52px;
  margin: auto;
  font-size: 25px;
}

.gallery-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 30px;
  line-height: 1;
}

.gallery-nav:hover,
.gallery-close:hover,
.gallery-nav:focus-visible,
.gallery-close:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.gallery-open {
  overflow: hidden;
}

.content-stack {
  display: grid;
  gap: 24px;
}

.content-stack p {
  color: rgba(246, 240, 229, 0.74);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--line);
}

.stat span,
.stat .rich-text {
  display: block;
  margin-top: 8px;
  color: rgba(246, 240, 229, 0.72);
}

.menu-list {
  display: grid;
  gap: 16px;
}

.menu-category-title {
  margin: 0 0 4px;
  color: var(--gold-soft);
  font-family: Inter, Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 22px;
}

.menu-item h3 {
  font-size: 27px;
}

.menu-item p {
  margin-top: 8px;
  color: rgba(246, 240, 229, 0.68);
}

.menu-allergens,
.event-status {
  display: block;
  margin-top: 10px;
  color: rgba(226, 199, 138, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  color: var(--gold-soft);
  font-weight: 900;
  white-space: nowrap;
}

.split-band {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  min-height: 580px;
  border-top: 1px solid rgba(226, 199, 138, 0.22);
  background: #0b1915;
}

.split-band .image-side {
  min-height: 480px;
  background: url("assets/mingling-toast.webp") center / cover;
  filter: saturate(0.9) brightness(0.82);
}

.split-band .text-side {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 72px 40px;
  background:
    linear-gradient(135deg, rgba(15, 36, 29, 0.98), rgba(7, 22, 18, 0.98));
  color: var(--cream);
}

.split-band .text-side > * {
  width: min(100%, 480px);
}

.split-band h2 {
  color: var(--cream);
}

.split-band .text-side > h2 + .rich-text {
  margin-top: 24px;
}

.split-band p {
  max-width: 560px;
  margin-top: 22px;
  color: rgba(246, 240, 229, 0.72);
}

.event-list {
  display: grid;
  gap: 16px;
}

.event-item {
  display: grid;
  grid-template-columns: 128px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px;
}

.event-date {
  color: var(--gold-soft);
  font-weight: 900;
  text-transform: uppercase;
}

.event-item h3 {
  font-size: 30px;
}

.event-item p {
  color: rgba(246, 240, 229, 0.72);
}

.quote-band {
  padding: 82px 20px;
  background: var(--burgundy);
  text-align: center;
}

.quote-band blockquote {
  max-width: 920px;
  margin: 0 auto;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.98;
}

.quote-band-copy p {
  margin: 0;
}

.quote-band-copy p + p {
  margin-top: 0.25em;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.contact-panel {
  padding: 28px;
}

.contact-panel dl {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
}

.contact-panel dt {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 4px 0 0;
  color: rgba(246, 240, 229, 0.76);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-message {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border: 1px solid rgba(226, 199, 138, 0.26);
  background: rgba(246, 240, 229, 0.08);
  color: var(--cream);
  font-weight: 800;
}

.form-message.success {
  border-color: rgba(226, 199, 138, 0.56);
  background: rgba(226, 199, 138, 0.14);
}

.form-message.error {
  border-color: rgba(190, 80, 60, 0.7);
  background: rgba(190, 80, 60, 0.14);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: rgba(246, 240, 229, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.booking-form label.full {
  grid-column: 1 / -1;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  border: 1px solid rgba(226, 199, 138, 0.24);
  background: rgba(246, 240, 229, 0.08);
  color: var(--cream);
  font: inherit;
  min-height: 48px;
  padding: 12px 13px;
}

.booking-form option {
  color: var(--ink);
}

.booking-form textarea {
  min-height: 130px;
  resize: vertical;
}

.booking-form button {
  grid-column: 1 / -1;
  cursor: pointer;
}

.site-footer {
  padding: 54px 0 30px;
  border-top: 1px solid rgba(226, 199, 138, 0.2);
  background: #07120f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}

.footer-grid h3 {
  color: var(--gold-soft);
  font-family: Inter, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin-top: 8px;
  color: rgba(246, 240, 229, 0.68);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(246, 240, 229, 0.48);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--gold-soft);
  font-weight: 800;
}

.footer-bottom a:hover {
  color: var(--cream);
}

.reveal-item {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-item {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 620ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
  }

  .reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .panel,
  .menu-item,
  .event-item,
  .stat,
  .signature-list article {
    transition-delay: var(--reveal-delay, 0ms);
  }
}

@keyframes riseFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageSettle {
  from {
    transform: scale(1.035);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-open .mobile-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(7, 18, 15, 0.86) 0%, rgba(7, 18, 15, 0.58) 72%, rgba(7, 18, 15, 0.24) 100%),
      linear-gradient(180deg, rgba(7, 18, 15, 0.08) 0%, rgba(7, 18, 15, 0.48) 100%);
  }

  .section-head,
  .feature-row,
  .contact-layout,
  .split-band {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }

  .signature-list article {
    grid-template-columns: 64px 1fr;
    align-items: start;
    padding: 24px 0;
  }

  .signature-list article > p,
  .signature-list article > .rich-text,
  .signature-list article > .signature-body {
    grid-column: 2;
  }

  .grid.three,
  .grid.two,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .event-item {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 190px;
  }
}

@media (max-width: 680px) {
  .nav-wrap,
  .wrap,
  .hero-inner {
    width: min(100% - 28px, 1180px);
  }

  .brand-logo {
    width: 166px;
    height: auto;
    max-width: 48vw;
    max-height: 68px;
  }

  .hero,
  .hero.short {
    min-height: auto;
  }

  .hero-inner {
    padding: 82px 0 74px;
  }

  .hero.short .hero-inner {
    padding: 58px 0 52px;
  }

  h1 {
    font-size: clamp(48px, 16vw, 74px);
  }

  .hero.short h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .lead {
    font-size: 18px;
  }

  .section {
    padding: 68px 0;
  }

  .grid.three,
  .grid.two,
  .stats,
  .footer-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .menu-item {
    grid-template-columns: 1fr;
  }

  .price {
    white-space: normal;
  }

  .signature-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .signature-list article > p,
  .signature-list article > .rich-text,
  .signature-list article > .signature-body {
    grid-column: auto;
  }

  .signature-list article > span {
    font-size: 36px;
  }

  .split-band .text-side {
    padding: 58px 20px;
  }

  .photo-frame img {
    min-height: 330px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 165px;
    gap: 10px;
  }

  .gallery-item,
  .gallery-item:nth-child(5n + 1),
  .gallery-item:nth-child(5n + 5) {
    grid-column: span 1;
  }

  .gallery-item:first-child {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .gallery-lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    padding: 20px 8px;
  }

  .gallery-lightbox figure {
    max-height: calc(100vh - 40px);
  }

  .gallery-lightbox img {
    max-height: calc(100vh - 105px);
  }

  .gallery-lightbox figcaption {
    gap: 18px;
    padding: 0 4px;
  }

  .gallery-nav {
    width: 42px;
    height: 48px;
  }

  .gallery-close {
    top: 14px;
    right: 14px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) and (prefers-reduced-motion: no-preference) {
  .hero-image {
    animation: none;
  }

  .reveal-item {
    transform: translateY(12px);
    transition-duration: 460ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
    transition: none;
  }
}

.document-section { margin-top: 4rem; }
.document-list { display: grid; gap: 1rem; }
.document-item { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; padding: 1.4rem; border: 1px solid rgba(0,0,0,.14); }
.document-item h3 { margin: .25rem 0; }
.document-item p { margin: 0; }
@media (max-width: 640px) { .document-item { grid-template-columns: 1fr; } }
/* CMS-driven menu and event archives */
.archive-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.archive-card{display:flex;flex-direction:column;min-height:100%;border:1px solid rgba(198,164,91,.35);background:rgba(255,255,255,.025);color:inherit;text-decoration:none;transition:transform .2s ease,border-color .2s ease}
.archive-card:hover{transform:translateY(-3px);border-color:#c6a45b}
.archive-card img{width:100%;aspect-ratio:4/3;object-fit:cover}
.archive-card-copy{display:flex;flex:1;flex-direction:column;padding:24px}
.archive-card-copy h2,.archive-card-copy h3{margin:.25rem 0 .65rem}
.archive-card-copy p{margin:0;color:var(--muted,#aaa)}
.archive-card-copy .text-link{margin-top:auto;padding-top:20px;color:#d6b96f;font-weight:800}
.detail-intro,.prose,.detail-block>.wrap{max-width:1180px}
.detail-intro{display:grid;gap:24px}
.detail-meta{display:flex;flex-wrap:wrap;gap:10px 24px;color:#d6b96f;font-weight:800;text-transform:uppercase;letter-spacing:.08em}
.prose{max-width:850px}
.prose h2{margin:0 0 24px}.prose p{max-width:74ch}
.detail-image{margin:0}.detail-image img{display:block;width:100%;max-height:760px;object-fit:cover}.detail-image figcaption{padding-top:10px;color:var(--muted,#aaa)}
.detail-menu-list{display:grid;gap:0;border-top:1px solid rgba(198,164,91,.35)}
.detail-menu-list .menu-item{display:grid;grid-template-columns:1fr auto;gap:8px 24px;padding:24px clamp(18px,2.4vw,32px);border-bottom:1px solid rgba(198,164,91,.25)}
.detail-menu-list .menu-item h3,.detail-menu-list .menu-item p{margin:0}.detail-menu-list .menu-item .price{font-weight:800;color:#d6b96f}
.download-module{display:grid;grid-template-columns:1fr auto;align-items:center;gap:28px;padding:34px;border:1px solid rgba(198,164,91,.45)}
.download-module h2,.download-module p{margin:0}.download-module p{margin-top:8px}
.gallery-section .gallery-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.gallery-section img{width:100%;aspect-ratio:4/3;object-fit:cover}
.instagram-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}.instagram-grid img{display:block;width:100%;aspect-ratio:1;object-fit:cover}.instagram-grid a{display:block}
.practical-block dl{display:grid;grid-template-columns:minmax(130px,.35fr) 1fr;gap:12px 24px}.practical-block dt{font-weight:800;color:#d6b96f}.practical-block dd{margin:0}
@media(max-width:900px){.archive-grid{grid-template-columns:1fr 1fr}.download-module{grid-template-columns:1fr}.gallery-section .gallery-grid{grid-template-columns:1fr 1fr}.instagram-grid{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.archive-grid{grid-template-columns:1fr}.gallery-section .gallery-grid{grid-template-columns:1fr}.detail-menu-list .menu-item{grid-template-columns:1fr;padding:20px 16px}.download-module{padding:24px}.practical-block dl{grid-template-columns:1fr;gap:6px}.practical-block dd{margin-bottom:14px}}

/* Reusable CMS page-builder sections */
.booking-section{padding-top:clamp(110px,12vw,180px)}
.booking-frame{overflow:hidden;border:1px solid rgba(198,164,91,.45);background:#fff;box-shadow:0 18px 60px rgba(0,0,0,.22)}
.booking-frame iframe{display:block;width:100%;min-height:400px;border:0;background:#fff}
.event-list{display:grid;gap:16px}
.event-controls{display:grid;grid-template-columns:minmax(180px,260px) minmax(220px,300px) 1fr;align-items:end;gap:18px;margin:0 0 28px;padding:22px;border:1px solid rgba(198,164,91,.35);background:rgba(255,255,255,.025)}
.event-controls label{display:grid;gap:8px}.event-controls label>span{color:#d6b96f;font-size:.75rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase}
.event-controls select{width:100%;min-height:48px;padding:0 42px 0 14px;border:1px solid rgba(198,164,91,.55);border-radius:0;background:#0b1915;color:#f3efe5;font:inherit}
.event-result-count{justify-self:end;margin:0 0 13px;color:var(--muted,#aaa)}
.event-list .event-item{display:grid;grid-template-columns:minmax(130px,190px) 1fr auto;align-items:center;gap:24px;padding:24px;border:1px solid rgba(198,164,91,.35)}
.event-list .event-item h3,.event-list .event-item p{margin:0}.event-list .event-item p{margin-top:8px;color:var(--muted,#aaa)}
.event-list .event-item[hidden]{display:none}.event-list .event-type{margin:0 0 7px;color:#d6b96f;font-size:.75rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase}
@media(max-width:780px){.event-controls{grid-template-columns:1fr 1fr}.event-result-count{grid-column:1/-1;justify-self:start;margin:0}.booking-section{padding-top:96px}.event-list .event-item{grid-template-columns:1fr}}
@media(max-width:520px){.event-controls{grid-template-columns:1fr}}
