:root {
  --wine: #8f111d;
  --wine-deep: #690912;
  --ink: #1a1714;
  --paper: #f3eddf;
  --paper-light: #fbf7ee;
  --gold: #d7ac50;
  --line: rgba(26, 23, 20, 0.18);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Helvetica Neue", "Avenir Next", Avenir, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

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

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  transform-origin: left;
  background: var(--gold);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  min-height: 112px;
  padding: 16px clamp(24px, 5vw, 78px);
  color: var(--paper-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  width: 132px;
  height: 74px;
  filter: brightness(0) invert(1);
}

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

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 46px);
}

.site-nav a,
.header-cta {
  position: relative;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--gold);
  transition: transform 300ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gold);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.82fr);
  align-items: center;
  min-height: min(940px, 100svh);
  overflow: hidden;
  padding: 150px clamp(24px, 5vw, 78px) 54px;
  color: var(--paper-light);
  background:
    radial-gradient(circle at 18% 16%, rgba(200, 64, 56, 0.32), transparent 28%),
    linear-gradient(120deg, var(--wine) 0%, #790a16 48%, #4d050c 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 26%;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(23, 3, 5, 0.45));
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 780px;
  padding-top: 38px;
}

.eyebrow,
.small-caps {
  margin: 0;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  color: #f3d89d;
}

.hero-eyebrow span {
  width: 38px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 6.5vw, 105px);
  font-weight: 400;
  line-height: 0.87;
  letter-spacing: -0.055em;
}

.hero h1 em,
.house-statement h2 em {
  color: #f3d89d;
  font-weight: 400;
}

.hero-intro {
  max-width: 550px;
  margin: 34px 0 0;
  font-family: var(--serif);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.45;
  color: rgba(255, 250, 239, 0.78);
}

.hero-actions,
.footer-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-solid {
  color: var(--wine);
  background: var(--paper-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  font-family: var(--serif);
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-scene {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(36vw, 550px);
  min-width: 420px;
  transform: translateY(24px);
}

.hero-frame {
  position: relative;
  height: min(70vh, 680px);
  min-height: 540px;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(244, 216, 157, 0.7);
  box-shadow: 0 40px 90px rgba(35, 0, 5, 0.38);
}

.hero-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-character {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  transition: transform 900ms cubic-bezier(.2, .7, .2, 1);
}

.hero-scene:hover .hero-character {
  transform: scale(1.025);
}

.scene-note {
  position: absolute;
  z-index: 3;
  margin: 0;
  padding: 8px 12px;
  color: #f3d89d;
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.06em;
  background: var(--wine);
}

.scene-note-top {
  top: 36px;
  right: -34px;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right top;
}

.scene-note-bottom {
  right: 28px;
  bottom: 34px;
  max-width: 190px;
  text-align: right;
}

.hero-index {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 5vw, 78px);
  bottom: 22px;
  display: flex;
  gap: 18px;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}

.house-intro {
  position: relative;
  display: grid;
  grid-template-columns: 0.4fr 1.5fr 0.8fr;
  gap: clamp(30px, 5vw, 88px);
  min-height: 720px;
  align-items: center;
  padding: 120px clamp(24px, 7vw, 110px);
  background:
    linear-gradient(90deg, transparent 49.94%, rgba(26, 23, 20, .08) 50%, transparent 50.06%),
    var(--paper);
}

.section-number {
  position: absolute;
  top: 36px;
  left: clamp(24px, 7vw, 110px);
  font-family: var(--serif);
  font-size: 14px;
  color: var(--wine);
}

.house-kicker {
  align-self: start;
  padding-top: 90px;
}

.ornament {
  display: block;
  margin-bottom: 18px;
  color: var(--wine);
}

.house-kicker p {
  max-width: 120px;
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.house-statement h2 {
  max-width: 850px;
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.7vw, 88px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.house-statement h2 em {
  color: var(--wine);
}

.house-detail {
  align-self: end;
  max-width: 320px;
  padding-bottom: 60px;
}

.house-detail>p {
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
}

.round-link {
  display: inline-flex;
  width: 112px;
  height: 112px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--paper-light);
  border-radius: 50%;
  background: var(--wine);
  transition: transform 400ms ease;
}

.round-link:hover {
  transform: rotate(-8deg);
}

.round-link span {
  font-family: var(--serif);
  font-size: 13px;
}

.round-link b {
  align-self: flex-end;
  font-size: 20px;
  font-weight: 400;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms ease, transform 900ms cubic-bezier(.2, .7, .2, 1);
}

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

.moving-ribbon {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  color: #f2d895;
  background: var(--wine);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.moving-ribbon>div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 42px;
  padding: 24px 20px;
  animation: ribbon-move 24s linear infinite;
}

.moving-ribbon span {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}

.moving-ribbon b {
  font-size: 10px;
  font-weight: 400;
}

@keyframes ribbon-move {
  to {
    transform: translateX(-50%);
  }
}

.menu-section {
  position: relative;
  overflow: hidden;
  padding: 130px clamp(24px, 6vw, 94px) 150px;
  background:
    radial-gradient(circle at 9% 16%, rgba(143, 17, 29, 0.055), transparent 25%),
    var(--paper-light);
}

.menu-section::after {
  content: "LA ROTONDE";
  position: absolute;
  right: -34px;
  bottom: 70px;
  color: rgba(143, 17, 29, 0.035);
  font-family: var(--serif);
  font-size: clamp(100px, 16vw, 240px);
  line-height: 0.7;
  white-space: nowrap;
}

.menu-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 80px;
}

.menu-heading>div {
  display: flex;
  min-height: 130px;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 20px;
  border-left: 1px solid var(--wine);
}

.menu-heading .small-caps {
  color: var(--wine);
}

.menu-heading>div>span {
  max-width: 190px;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.35;
}

.menu-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6.8vw, 100px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.menu-heading h2 em {
  color: var(--wine);
  font-weight: 400;
}

.menu-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: clamp(18px, 2.8vw, 42px);
}

.menu-card {
  min-width: 0;
  padding: 15px;
  color: var(--ink);
  border: 1px solid rgba(26, 23, 20, 0.26);
  background: rgba(250, 246, 237, 0.85);
}

.menu-card-lunch {
  margin-top: 70px;
}

.menu-card-evening {
  margin-top: 20px;
}

.menu-card-top,
.menu-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.menu-card-top {
  height: 48px;
  padding: 0 4px 12px;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(26, 23, 20, 0.2);
}

.menu-card-top span:first-child {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 15px;
}

.menu-card-art,
.menu-card-photo {
  position: relative;
  height: clamp(340px, 39vw, 550px);
  overflow: hidden;
  margin: 15px 0;
  background: var(--wine);
}

.menu-card-art {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(215, 172, 80, 0.08) 25%, transparent 25%) 0 0 / 26px 26px,
    linear-gradient(315deg, rgba(215, 172, 80, 0.08) 25%, transparent 25%) 0 0 / 26px 26px,
    var(--wine);
}

.menu-card-art::before,
.menu-card-art::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(242, 216, 149, 0.62);
}

.menu-card-art::after {
  inset: 25px;
  border-color: rgba(242, 216, 149, 0.2);
}

.menu-card-art>p,
.menu-card-photo>p {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 25px;
  left: 28px;
  margin: 0;
  color: #f2d895;
  font-family: var(--serif);
  font-size: clamp(25px, 2.6vw, 39px);
  font-style: italic;
  line-height: 1;
}

.sun-mark {
  position: relative;
  z-index: 2;
  display: grid;
  width: 156px;
  height: 156px;
  place-items: center;
  color: #f2d895;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow:
    0 0 0 9px var(--wine),
    0 0 0 10px rgba(242, 216, 149, 0.38);
}

.sun-mark::before,
.sun-mark::after {
  content: "✦  ✦  ✦  ✦";
  position: absolute;
  top: -38px;
  font-size: 10px;
  letter-spacing: 12px;
}

.sun-mark::after {
  top: auto;
  bottom: -38px;
}

.sun-mark span {
  font-family: var(--serif);
  font-size: 46px;
}

.menu-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, rgba(5, 7, 7, 0.82));
}

.menu-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  transition: transform 800ms cubic-bezier(.2, .7, .2, 1);
}

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

.menu-card-photo>p {
  color: white;
}

.evening-art {
  background:
    radial-gradient(circle at center, rgba(215, 172, 80, 0.15), transparent 42%),
    var(--ink);
}

.glass-mark {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.glass-mark i {
  position: relative;
  display: block;
  width: 28px;
  height: 82px;
  border: 1px solid #f2d895;
  border-radius: 5px 5px 13px 13px;
}

.glass-mark i::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 4px;
  left: 3px;
  height: 38%;
  border-radius: 2px 2px 9px 9px;
  background: var(--wine);
}

.glass-mark i:nth-child(2) {
  height: 108px;
}

.menu-card-bottom {
  min-height: 90px;
  padding: 15px 6px 2px;
  border-top: 1px solid rgba(26, 23, 20, 0.2);
}

.menu-card-bottom p {
  max-width: 86%;
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.45;
}

.menu-card-bottom>span {
  color: var(--wine);
  font-size: 20px;
}

.wood-menu-stage {
  position: relative;
  z-index: 2;
  min-height: 760px;
  overflow: hidden;
  padding: clamp(70px, 8.5vw, 132px) clamp(82px, 10vw, 160px);
  background-image:
    linear-gradient(rgba(40, 13, 4, 0.13), rgba(40, 13, 4, 0.32)),
    url("./assets/wood-board-wide.webp");
  background-position: center;
  background-size: cover;
  box-shadow:
    0 40px 90px rgba(53, 24, 8, 0.22),
    inset 0 0 0 1px rgba(241, 209, 145, 0.16);
}

.wood-menu-stage::after {
  content: "";
  position: absolute;
  inset: 5.8% 6.6%;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(242, 216, 149, 0.18);
}

.wood-menu-inner {
  position: relative;
  z-index: 3;
  min-height: 520px;
  padding: clamp(44px, 5.5vw, 84px);
  color: var(--paper-light);
  border: 1px solid rgba(242, 216, 149, 0.54);
  background:
    radial-gradient(circle at 50% 20%, rgba(184, 97, 47, 0.2), transparent 42%),
    rgba(42, 18, 9, 0.8);
  box-shadow:
    inset 0 0 0 7px rgba(52, 22, 9, 0.28),
    0 24px 70px rgba(24, 8, 2, 0.24);
  backdrop-filter: blur(2px);
}

.wood-menu-inner::before,
.wood-menu-inner::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.wood-menu-inner::before {
  inset: 14px;
  border: 1px solid rgba(242, 216, 149, 0.18);
}

.wood-menu-inner::after {
  top: 29px;
  right: 29px;
  bottom: 29px;
  left: 29px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.wood-menu-title {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  margin-bottom: 62px;
  text-align: center;
}

.wood-menu-title>span {
  color: #f2d895;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.wood-menu-title strong {
  margin-top: 5px;
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 400;
  line-height: 1;
}

.wood-menu-title p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.wood-menu-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 68px);
}

.wood-menu-group+.wood-menu-group {
  padding-left: clamp(22px, 3vw, 48px);
  border-left: 1px solid rgba(242, 216, 149, 0.18);
}

.wood-menu-group-heading {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(242, 216, 149, 0.26);
}

.wood-menu-group-heading>span {
  padding-top: 5px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 12px;
}

.wood-menu-group h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 400;
  line-height: 1;
}

.wood-menu-group-heading p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
}

.wood-menu-group ul {
  display: grid;
  gap: 19px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.wood-menu-group li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: clamp(15px, 1.35vw, 19px);
}

.wood-menu-group li i {
  height: 1px;
  flex: 1;
  opacity: 0.23;
  background: #f2d895;
}

.wood-menu-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid rgba(242, 216, 149, 0.26);
}

.wood-menu-bottom p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
}

.button-ivory-outline {
  color: #f2d895;
  border: 1px solid rgba(242, 216, 149, 0.62);
}

.button-ivory-outline:hover {
  color: #4d1d0b;
  background: #f2d895;
}

.wood-menu-emblem {
  position: absolute;
  top: clamp(52px, 6.6vw, 104px);
  left: clamp(46px, 6vw, 92px);
  z-index: 4;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: rgba(242, 216, 149, 0.7);
  border: 1px solid currentColor;
  border-radius: 50%;
}

.wood-menu-emblem span {
  font-family: var(--serif);
  font-size: 20px;
}

.wood-menu-line-lamp {
  position: absolute;
  right: 5.2%;
  bottom: -21%;
  z-index: 2;
  width: min(13vw, 180px);
  opacity: 0.13;
  pointer-events: none;
}

.moments-section {
  position: relative;
  padding-top: 80px;
  color: var(--paper-light);
  background: var(--ink);
}

.moments-intro {
  display: flex;
  justify-content: space-between;
  padding: 0 clamp(24px, 6vw, 94px) 44px;
  color: rgba(255, 255, 255, .56);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.moments-intro .small-caps {
  color: var(--gold);
}

.moments-intro>p:last-child {
  margin: 0;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.moments-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.moment-sticky {
  position: sticky;
  top: 0;
  align-self: start;
  height: 100svh;
  padding: 54px clamp(30px, 6vw, 90px);
}

.moment-stage {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(215, 172, 80, 0.55);
  background: #0d0c0b;
}

.moment-stage::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 5;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .18);
}

.moment-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.055);
  transition: opacity 800ms ease, transform 1.2s cubic-bezier(.2, .7, .2, 1);
}

.moment-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 48%, rgba(4, 4, 3, 0.82));
}

.moment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moment-image-one img {
  object-position: 50% 44%;
}

.moment-image-two img {
  object-position: 50% 58%;
  filter: sepia(.12) saturate(.84);
}

.moment-image-three img {
  object-position: 50% 48%;
  filter: brightness(.7) saturate(.82);
}

.moment-stage[data-active="0"] .moment-image-one,
.moment-stage[data-active="1"] .moment-image-two,
.moment-stage[data-active="2"] .moment-image-three {
  opacity: 1;
  transform: scale(1);
}

.moment-badge {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 6;
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: white;
}

.moment-badge span {
  font-family: var(--serif);
  font-size: 48px;
}

.moment-badge b {
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
}

.moment-signature {
  position: absolute;
  right: 34px;
  bottom: 30px;
  left: 34px;
  z-index: 6;
  margin: 0;
  color: #f2d895;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 43px);
  font-style: italic;
  text-align: right;
}

.moment-copies {
  padding-right: clamp(24px, 6vw, 94px);
}

.moment-copy {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: 110px 0 110px clamp(30px, 5vw, 76px);
  opacity: 0.32;
  border-left: 1px solid rgba(255, 255, 255, .12);
  transition: opacity 500ms ease;
}

.moment-copy.is-active {
  opacity: 1;
}

.moment-copy>span {
  width: fit-content;
  margin-bottom: 52px;
  padding-bottom: 10px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 15px;
  border-bottom: 1px solid var(--gold);
}

.moment-copy .small-caps {
  color: rgba(255, 255, 255, .55);
}

.moment-copy h3 {
  max-width: 530px;
  margin: 17px 0 28px;
  font-family: var(--serif);
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.045em;
}

.moment-copy>p:last-child {
  max-width: 420px;
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .68);
}

.gallery-section {
  position: relative;
  overflow: hidden;
  padding: 135px clamp(24px, 6vw, 94px) 150px;
  background:
    radial-gradient(circle at 88% 7%, rgba(143, 17, 29, 0.08), transparent 22%),
    var(--paper-light);
}

.gallery-section::before {
  content: "LA MAISON";
  position: absolute;
  top: 90px;
  right: -25px;
  color: rgba(143, 17, 29, 0.035);
  font-family: var(--serif);
  font-size: clamp(110px, 17vw, 245px);
  line-height: 0.72;
  white-space: nowrap;
}

.gallery-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 82px;
}

.gallery-heading>div {
  display: flex;
  min-height: 135px;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 20px;
  border-left: 1px solid var(--wine);
}

.gallery-heading .small-caps {
  color: var(--wine);
}

.gallery-heading>div>span {
  max-width: 180px;
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.4;
}

.gallery-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 6.3vw, 94px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.gallery-heading h2 em {
  color: var(--wine);
  font-weight: 400;
}

.gallery-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.78fr;
  grid-template-rows: 520px 570px;
  gap: clamp(14px, 2vw, 30px);
}

.gallery-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(26, 23, 20, 0.2);
  background: var(--ink);
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(transparent 62%, rgba(10, 6, 4, 0.8));
}

.gallery-tile>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2, .7, .2, 1);
}

.gallery-tile:hover>img:first-child {
  transform: scale(1.025);
}

.gallery-tile figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.gallery-tile figcaption span {
  color: #f2d895;
  font-family: var(--sans);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.18em;
}

.gallery-gazebo {
  grid-column: 1 / 3;
  background:
    radial-gradient(circle at 50% 40%, rgba(219, 92, 72, 0.18), transparent 34%),
    var(--wine-deep);
}

.gallery-gazebo>img {
  /* padding: 45px 55px 70px; */
  object-fit: cover;
  filter: drop-shadow(0 30px 30px rgba(25, 0, 3, 0.24));
}

.gallery-madame {
  grid-column: 3;
  grid-row: 1 / 3;
}

.gallery-madame>img {
  object-position: 50% 48%;
}

.gallery-wood {
  grid-column: 1;
  grid-row: 2;
  background: #512510;
}

.gallery-wood .gallery-wood-background {
  position: absolute;
  inset: 0;
  object-position: center;
}

.gallery-wood .gallery-line-lamp {
  position: absolute;
  inset: 10% 24% 15%;
  z-index: 1;
  width: 52%;
  height: 75%;
  object-fit: contain;
  opacity: 0.72;
  filter: sepia(1) saturate(.75) brightness(1.75);
}

.gallery-gentleman {
  grid-column: 2;
  grid-row: 2;
}

.gallery-gentleman>img {
  object-position: 50% 55%;
}

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  min-height: 900px;
  overflow: hidden;
  color: var(--paper-light);
  background:
    radial-gradient(circle at 75% 25%, rgba(223, 103, 85, .23), transparent 28%),
    var(--wine);
}

.manifesto-image {
  position: relative;
  margin: 80px 0 80px clamp(24px, 6vw, 94px);
  overflow: hidden;
  border: 1px solid rgba(242, 216, 149, .58);
}

.manifesto-image::before {
  content: "";
  position: absolute;
  inset: 13px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .2);
}

.manifesto-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(40, 0, 5, .58));
}

.manifesto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.manifesto-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px clamp(28px, 7vw, 110px);
}

.manifesto-copy .small-caps {
  color: #f2d895;
}

.manifesto blockquote {
  margin: 32px 0 30px;
  font-family: var(--serif);
  font-size: clamp(54px, 6.4vw, 96px);
  font-weight: 400;
  line-height: .93;
  letter-spacing: -.045em;
}

.manifesto blockquote em {
  color: #f2d895;
  font-weight: 400;
}

.manifesto-copy>p:last-child {
  max-width: 430px;
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
}

.manifesto-stamp {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .56);
}

.manifesto-stamp b {
  color: var(--gold);
  font-weight: 400;
}

.address-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 680px;
  align-items: center;
  gap: 50px;
  overflow: hidden;
  padding: 110px clamp(24px, 8vw, 124px) 190px;
  background:
    linear-gradient(90deg, transparent 49.94%, rgba(26, 23, 20, .08) 50%, transparent 50.06%),
    var(--paper);
}

.address-copy {
  max-width: 700px;
}

.address-copy .small-caps {
  color: var(--wine);
}

.address-copy h2 {
  margin: 24px 0 28px;
  font-family: var(--serif);
  font-size: clamp(57px, 7vw, 104px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: -.05em;
}

.address-copy>p {
  max-width: 530px;
  margin: 0 0 36px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
}

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

.address-seal {
  position: relative;
  display: grid;
  width: min(32vw, 410px);
  height: min(32vw, 410px);
  place-items: center;
  justify-self: center;
  color: var(--wine);
  border: 1px solid var(--wine);
  border-radius: 50%;
}

.address-seal::before,
.address-seal::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(143, 17, 29, .36);
  border-radius: 50%;
}

.address-seal::after {
  inset: 23%;
  border-color: var(--wine);
}

.address-seal strong {
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(70px, 10vw, 150px);
  font-weight: 400;
}

.address-seal span {
  position: absolute;
  z-index: 2;
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.address-seal span:first-child {
  top: 18%;
}

.address-seal span:last-child {
  bottom: 18%;
}

.contact-section {
  position: relative;
  display: grid;
  min-height: 940px;
  place-items: center;
  overflow: hidden;
  padding: 135px clamp(24px, 9vw, 150px) 210px;
  background:
    linear-gradient(rgba(46, 18, 6, 0.3), rgba(24, 7, 2, 0.52)),
    url("./assets/wood-panels.webp") center / cover no-repeat;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow:
    inset 0 34px 70px rgba(13, 3, 0, 0.3),
    inset 0 -70px 110px rgba(13, 3, 0, 0.42);
}

.contact-panel {
  position: relative;
  z-index: 4;
  width: min(100%, 790px);
  padding: clamp(55px, 6vw, 86px);
  text-align: center;
  color: var(--ink);
  border: 1px solid rgba(215, 172, 80, 0.78);
  background:
    radial-gradient(circle at 50% 0, rgba(215, 172, 80, 0.11), transparent 35%),
    var(--paper-light);
  box-shadow:
    0 50px 100px rgba(17, 4, 0, 0.48),
    inset 0 0 0 10px var(--paper-light),
    inset 0 0 0 11px rgba(143, 17, 29, 0.15);
}

.contact-panel::before,
.contact-panel::after {
  content: "✦";
  position: absolute;
  left: 50%;
  z-index: 2;
  width: 36px;
  color: var(--wine);
  background: var(--paper-light);
  transform: translateX(-50%);
}

.contact-panel::before {
  top: -8px;
}

.contact-panel::after {
  bottom: -8px;
}

.contact-panel>.small-caps {
  color: var(--wine);
}

.contact-panel h2 {
  margin: 22px 0 24px;
  font-family: var(--serif);
  font-size: clamp(62px, 7vw, 104px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.contact-panel h2 em {
  color: var(--wine);
  font-weight: 400;
}

.contact-intro {
  max-width: 550px;
  margin: 0 auto 43px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
}

.contact-details {
  border-top: 1px solid rgba(26, 23, 20, 0.18);
}

.contact-details>a,
.contact-details>div {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 25px;
  padding: 18px 4px;
  text-align: left;
  border-bottom: 1px solid rgba(26, 23, 20, 0.18);
}

.contact-details span {
  color: var(--wine);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-details strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.contact-details>a strong {
  transition: color 250ms ease;
}

.contact-details>a:hover strong {
  color: var(--wine);
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 38px;
}

.contact-actions .button-solid {
  color: white;
  background: var(--wine);
}

.contact-actions .text-link {
  color: var(--ink);
  border-color: rgba(26, 23, 20, 0.38);
}

.contact-instagram {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
  color: rgba(26, 23, 20, 0.65);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-lamp {
  position: absolute;
  bottom: -14%;
  z-index: 3;
  height: 92%;
  width: auto;
  pointer-events: none;
  filter: drop-shadow(0 28px 30px rgba(10, 2, 0, 0.48));
}

.contact-lamp-left {
  left: clamp(-80px, 1vw, 20px);
}

.contact-lamp-right {
  right: clamp(-80px, 1vw, 20px);
  transform: scaleX(-1);
}

.site-footer {
  z-index: 2;
  --footer-lamp-shift: 0px;
  --footer-lamp-far-shift: 0px;
  position: relative;
  min-height: 610px;
  isolation: isolate;
  padding: 160px clamp(24px, 7vw, 110px) 28px;
  color: var(--paper-light);
  background:
    radial-gradient(circle at 50% 13%, rgba(217, 172, 80, 0.13), transparent 32%),
    linear-gradient(110deg, rgba(49, 2, 8, 0.18), transparent 28% 72%, rgba(49, 2, 8, 0.18)),
    var(--wine-deep);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(105, 9, 18, 0.78) 33% 67%, transparent),
    linear-gradient(0deg, rgba(39, 2, 6, 0.52), transparent 42%);
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 54px;
  left: 50%;
  z-index: 1;
  width: min(66vw, 860px);
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(215, 172, 80, 0.34), transparent);
  transform: translateX(-50%);
}

.footer-lamp-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.footer-lamp-scene::before,
.footer-lamp-scene::after {
  content: "";
  position: absolute;
  top: 210px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 194, 98, 0.14), transparent 68%);
  filter: blur(10px);
}

.footer-lamp-scene::before {
  left: clamp(18px, 7vw, 120px);
}

.footer-lamp-scene::after {
  right: clamp(18px, 7vw, 120px);
}

.footer-lamp {
  position: absolute;
  bottom: -38%;
  width: clamp(230px, 22vw, 360px);
  height: auto;
  opacity: 0.22;
  mix-blend-mode: screen;
  filter:
    sepia(1) saturate(1.35) hue-rotate(348deg) brightness(1.14) drop-shadow(0 0 10px rgba(238, 194, 98, 0.12));
  transform: translate3d(0, var(--footer-lamp-shift), 0);
  transition: transform 90ms linear;
  will-change: transform;
}

.footer-lamp-left {
  left: clamp(-105px, -4vw, -42px);
}

.footer-lamp-right {
  right: clamp(-105px, -4vw, -42px);
  transform: translate3d(0, var(--footer-lamp-shift), 0) scaleX(-1);
}

.footer-lamp-far-left,
.footer-lamp-far-right {
  bottom: -27%;
  width: clamp(150px, 14vw, 220px);
  opacity: 0.085;
  filter:
    sepia(1) saturate(1.2) hue-rotate(348deg) brightness(1.05);
}

.footer-lamp-far-left {
  left: clamp(120px, 17vw, 300px);
  transform: translate3d(0, var(--footer-lamp-far-shift), 0);
}

.footer-lamp-far-right {
  right: clamp(120px, 17vw, 300px);
  transform: translate3d(0, var(--footer-lamp-far-shift), 0) scaleX(-1);
}

.footer-crown {
  position: absolute;
  top: -118px;
  left: 50%;
  z-index: 3;
  width: 290px;
  height: 150px;
  overflow: hidden;
  transform: translateX(-50%);
  border-radius: 160px 160px 0 0;
  background: var(--wine-deep);
  border: 1px solid rgba(215, 172, 80, 0.55);
  border-bottom: 0;
}

.footer-crown img {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 238px;
  transform: translateX(-50%);
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-inner .eyebrow {
  color: #f3d89d;
}

.footer-inner h2 {
  margin: 20px 0 36px;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 400;
  line-height: 0.95;
}

.footer-meta {
  display: flex;
  justify-content: center;
  gap: 46px;
  font-family: var(--serif);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-actions {
  justify-content: center;
}

.button-light {
  color: var(--wine);
  background: var(--paper-light);
}

.text-link.light {
  color: var(--paper-light);
}

.footer-bottom {
  position: absolute;
  right: clamp(24px, 5vw, 78px);
  bottom: 26px;
  left: clamp(24px, 5vw, 78px);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 18px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.footer-bottom span:nth-child(2) {
  text-align: center;
}

.footer-bottom span:last-child {
  text-align: right;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 92px;
  }

  .brand {
    width: 110px;
    height: 60px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 7px;
    color: white;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 34px;
    opacity: 0;
    visibility: hidden;
    background: var(--wine-deep);
    transition: opacity 250ms ease, visibility 250ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }

  .hero {
    grid-template-columns: 1fr 0.78fr;
  }

  .hero-scene {
    width: 42vw;
    min-width: 360px;
  }

  .house-intro {
    grid-template-columns: 0.28fr 1.2fr;
  }

  .house-detail {
    grid-column: 2;
    max-width: 560px;
  }

  .menu-heading {
    grid-template-columns: .44fr 1.56fr;
  }

  .menu-grid {
    gap: 14px;
  }

  .menu-card {
    padding: 10px;
  }

  .menu-card-art,
  .menu-card-photo {
    height: 430px;
  }

  .wood-menu-stage {
    min-height: 700px;
    padding: 76px 70px;
  }

  .wood-menu-inner {
    padding: 55px 42px;
  }

  .wood-menu-grid {
    gap: 25px;
  }

  .wood-menu-group+.wood-menu-group {
    padding-left: 23px;
  }

  .wood-menu-group li {
    font-size: 15px;
  }

  .moments-layout {
    grid-template-columns: 1fr 1fr;
  }

  .moment-sticky {
    padding: 44px 28px;
  }

  .moment-copies {
    padding-right: 28px;
  }

  .moment-copy {
    padding-left: 38px;
  }

  .manifesto {
    min-height: 760px;
  }

  .manifesto-image {
    margin-left: 30px;
  }

  .manifesto-copy {
    padding-right: 36px;
    padding-left: 44px;
  }

  .gallery-grid {
    grid-template-rows: 440px 500px;
  }

  .gallery-gazebo>img {
    padding: 45px 35px 65px;
  }

  .contact-lamp {
    bottom: -7%;
    height: 70%;
    opacity: 0.78;
  }

  .contact-lamp-left {
    left: -11%;
  }

  .contact-lamp-right {
    right: -11%;
  }
}

@media (max-width: 720px) {
  .hero {
    display: block;
    min-height: 100svh;
    padding-top: 128px;
  }

  .hero h1 {
    font-size: clamp(49px, 14vw, 72px);
    line-height: 0.92;
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 30px;
  }

  .hero-scene {
    width: 78vw;
    min-width: 0;
    margin: 52px 0 0 auto;
  }

  .hero-frame {
    height: 56vh;
    min-height: 460px;
  }

  .scene-note-bottom {
    right: 18px;
    bottom: 25px;
  }

  .hero-index {
    display: none;
  }

  .house-intro {
    display: block;
    min-height: 0;
    padding-top: 110px;
    padding-bottom: 110px;
    background: var(--paper);
  }

  .house-kicker {
    padding-top: 32px;
  }

  .house-statement {
    margin-top: 54px;
  }

  .house-statement h2 {
    font-size: clamp(43px, 12vw, 66px);
  }

  .house-detail {
    margin-top: 48px;
    padding-bottom: 0;
  }

  .moving-ribbon>div {
    gap: 28px;
    padding: 19px 14px;
  }

  .menu-section {
    padding-top: 95px;
    padding-bottom: 110px;
  }

  .menu-heading {
    display: block;
    margin-bottom: 58px;
  }

  .menu-heading>div {
    min-height: 0;
    gap: 24px;
    margin-bottom: 44px;
  }

  .menu-heading h2 {
    font-size: clamp(48px, 13vw, 68px);
  }

  .menu-grid {
    display: flex;
    width: calc(100vw - 24px);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .menu-grid::-webkit-scrollbar {
    display: none;
  }

  .menu-card {
    width: 82vw;
    min-width: 82vw;
    margin-top: 0;
    scroll-snap-align: start;
  }

  .menu-card-art,
  .menu-card-photo {
    height: 490px;
  }

  .wood-menu-stage {
    min-height: 0;
    padding: 78px 34px;
    background-image:
      linear-gradient(rgba(40, 13, 4, 0.1), rgba(40, 13, 4, 0.28)),
      url("./assets/wood-board-portrait.webp");
  }

  .wood-menu-stage::after {
    inset: 3.5%;
  }

  .wood-menu-inner {
    padding: 54px 25px;
  }

  .wood-menu-title {
    margin-bottom: 48px;
  }

  .wood-menu-title strong {
    font-size: 55px;
  }

  .wood-menu-grid {
    display: block;
  }

  .wood-menu-group+.wood-menu-group {
    margin-top: 35px;
    padding: 35px 0 0;
    border-top: 1px solid rgba(242, 216, 149, 0.18);
    border-left: 0;
  }

  .wood-menu-group h3 {
    font-size: 34px;
  }

  .wood-menu-group li {
    font-size: 16px;
  }

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

  .wood-menu-emblem {
    top: 34px;
    left: 19px;
    width: 46px;
    height: 46px;
  }

  .wood-menu-line-lamp {
    right: 3%;
    bottom: -5%;
    width: 27%;
    opacity: 0.08;
  }

  .moments-section {
    padding-top: 60px;
  }

  .moments-intro {
    padding-bottom: 30px;
  }

  .moments-intro>p:last-child {
    display: none;
  }

  .moments-layout {
    display: block;
  }

  .moment-sticky {
    z-index: 2;
    height: 62svh;
    padding: 20px 20px 0;
    background: var(--ink);
  }

  .moment-stage {
    height: 100%;
  }

  .moment-badge {
    top: 25px;
    left: 25px;
  }

  .moment-badge span {
    font-size: 36px;
  }

  .moment-signature {
    right: 24px;
    bottom: 22px;
    left: 24px;
    font-size: 26px;
  }

  .moment-copies {
    position: relative;
    z-index: 3;
    padding: 0 20px;
    background: var(--ink);
  }

  .moment-copy {
    min-height: 72svh;
    padding: 105px 12px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
  }

  .moment-copy h3 {
    max-width: 430px;
    font-size: clamp(48px, 13vw, 66px);
  }

  .manifesto {
    display: block;
    min-height: 0;
    padding: 24px 20px 90px;
  }

  .manifesto-image {
    height: 68svh;
    margin: 0;
  }

  .manifesto-copy {
    padding: 80px 2px 20px;
  }

  .manifesto blockquote {
    font-size: clamp(49px, 13vw, 67px);
  }

  .manifesto-stamp {
    right: 20px;
    bottom: 24px;
  }

  .gallery-section {
    padding-top: 100px;
    padding-bottom: 110px;
  }

  .gallery-heading {
    display: block;
    margin-bottom: 56px;
  }

  .gallery-heading>div {
    min-height: 0;
    gap: 24px;
    margin-bottom: 42px;
  }

  .gallery-heading h2 {
    font-size: clamp(47px, 12.5vw, 66px);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 18px;
  }

  .gallery-gazebo,
  .gallery-madame,
  .gallery-wood,
  .gallery-gentleman {
    grid-column: 1;
    grid-row: auto;
    height: 67svh;
    min-height: 500px;
  }

  .gallery-gazebo {
    height: 48svh;
    min-height: 390px;
  }

  .gallery-gazebo>img {
    padding: 38px 24px 58px;
  }

  .address-section {
    display: block;
    min-height: 0;
    padding-top: 100px;
    padding-bottom: 190px;
    background: var(--paper);
  }

  .address-copy h2 {
    font-size: clamp(55px, 15vw, 77px);
  }

  .address-seal {
    width: 76vw;
    height: 76vw;
    margin: 78px auto 0;
  }

  .contact-section {
    min-height: 980px;
    padding: 90px 20px 170px;
    background-position: center;
  }

  .contact-panel {
    width: 100%;
    padding: 58px 24px;
  }

  .contact-panel h2 {
    font-size: clamp(58px, 16vw, 78px);
  }

  .contact-details>a,
  .contact-details>div {
    grid-template-columns: 1fr;
    gap: 7px;
    text-align: center;
  }

  .contact-actions {
    flex-direction: column;
    gap: 8px;
  }

  .contact-lamp {
    bottom: -3%;
    height: 45%;
    opacity: 0.48;
  }

  .contact-lamp-left {
    left: -28%;
  }

  .contact-lamp-right {
    right: -28%;
  }

  .site-footer {
    min-height: 660px;
    padding-top: 140px;
  }

  .site-footer::after {
    top: 38px;
    width: 82vw;
  }

  .footer-lamp {
    bottom: -16%;
    width: clamp(170px, 44vw, 250px);
    opacity: 0.15;
  }

  .footer-lamp-left {
    left: -24%;
  }

  .footer-lamp-right {
    right: -24%;
  }

  .footer-lamp-far-left,
  .footer-lamp-far-right {
    display: none;
  }

  .footer-lamp-scene::before,
  .footer-lamp-scene::after {
    top: 230px;
    width: 100px;
    height: 100px;
  }

  .footer-crown {
    top: -98px;
    width: 240px;
    height: 125px;
  }

  .footer-crown img {
    width: 200px;
  }

  .footer-meta {
    align-items: center;
    flex-direction: column;
    gap: 6px;
  }

  .footer-actions {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    row-gap: 8px;
  }

  .footer-bottom span:nth-child(2) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}