:root {
  --ink: #080705;
  --ink-soft: #100e0b;
  --panel: #15120e;
  --panel-raised: #1c1812;
  --gold: #c6a257;
  --gold-bright: #efd58f;
  --gold-dark: #735626;
  --ivory: #f2ead9;
  --paper: #dcd0b9;
  --muted: #9f9581;
  --line: rgb(210 177 104 / 0.24);
  --display: "Bodoni 72", Didot, "Iowan Old Style", "Times New Roman", serif;
  --serif: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --page: min(1360px, calc(100vw - 96px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 15%, rgb(168 124 48 / 0.06), transparent 34rem),
    var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 5px;
}

.page-shell {
  width: var(--page);
  margin-inline: auto;
}

.top-quote {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  height: 34px;
  border-bottom: 1px solid rgb(229 195 119 / 0.22);
  background: rgb(6 5 4 / 0.9);
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  letter-spacing: 0.16em;
  line-height: 34px;
  text-align: center;
}

.site-header {
  position: absolute;
  top: 34px;
  right: 0;
  left: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgb(8 7 5 / 0.76);
  backdrop-filter: blur(16px);
}

.site-header-overlay {
  background: linear-gradient(to bottom, rgb(8 7 5 / 0.76), rgb(8 7 5 / 0.16));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  width: 45px;
  height: 45px;
  transform: rotate(45deg);
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -0.05em;
}

.brand-mark::first-line {
  transform: rotate(-45deg);
}

.brand-mark {
  text-indent: -1px;
}

.brand-mark > * {
  transform: rotate(-45deg);
}

.brand-name {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.06em;
}

.brand-mark {
  writing-mode: horizontal-tb;
}

.brand-mark::after {
  position: absolute;
  transform: rotate(-45deg);
  content: "K4";
}

.brand-mark {
  color: transparent;
  position: relative;
}

.brand-mark::after {
  color: var(--gold-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 50px);
}

.nav-links a {
  position: relative;
  color: rgb(242 234 217 / 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

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

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-bright);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.eyebrow {
  margin: 0;
  color: rgb(242 234 217 / 0.72);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.25em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.gold {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #090806;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center 50%;
  animation: hero-reveal 1.4s cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(to bottom, rgb(5 4 3 / 0.38) 0%, rgb(5 4 3 / 0.08) 34%, rgb(5 4 3 / 0.82) 100%),
    linear-gradient(to right, rgb(5 4 3 / 0.36), transparent 48%, rgb(5 4 3 / 0.16));
}

.hero::after {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), transparent);
  content: "";
}

.hero-content {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 190px;
  padding-bottom: clamp(96px, 13vh, 146px);
}

.hero-content h1 {
  max-width: 1050px;
  margin: 6px 0 12px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(88px, 15.5vw, 230px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.8;
  text-shadow: 0 15px 55px rgb(0 0 0 / 0.42);
}

.hero-bottomline {
  display: grid;
  grid-template-columns: minmax(280px, 560px) auto;
  gap: 42px;
  align-items: end;
  justify-content: space-between;
  margin-top: clamp(16px, 3vh, 36px);
}

.hero-bottomline > p {
  max-width: 580px;
  margin: 0;
  color: rgb(242 234 217 / 0.77);
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.48;
}

.round-link {
  display: flex;
  width: 148px;
  height: 148px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgb(7 6 4 / 0.24);
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.round-link span:last-child {
  font-size: 17px;
  font-weight: 300;
}

.round-link:hover {
  transform: translateY(-5px);
  background: var(--gold);
  color: var(--ink);
}

.hero-side-note {
  position: absolute;
  top: 50%;
  right: 18px;
  display: flex;
  gap: 18px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
  color: rgb(242 234 217 / 0.46);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-side-note span + span::before {
  display: inline-block;
  width: 32px;
  height: 1px;
  margin: 0 18px 3px 0;
  background: var(--gold-dark);
  content: "";
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 13px;
  transform: translateX(-50%);
  color: rgb(242 234 217 / 0.5);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll-cue span:last-child {
  color: var(--gold);
  font-size: 14px;
}

.story-section {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 14vw, 220px) 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 52%, rgb(183 139 61 / 0.09), transparent 28rem),
    var(--ink-soft);
}

.story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(70px, 10vw, 180px);
  align-items: start;
}

.section-intro h2,
.section-heading-row h2,
.invitation-copy h2,
.rules-section-heading h2,
.poster-copy h2 {
  margin: 18px 0 0;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(50px, 6.2vw, 92px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.story-copy {
  padding-top: 40px;
}

.story-copy p {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.75;
}

.story-copy .dropcap {
  color: var(--paper);
}

.dropcap::first-letter {
  float: left;
  margin: 12px 12px 0 0;
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 86px;
  line-height: 0.62;
}

.story-monogram {
  position: absolute;
  right: -0.08em;
  bottom: -0.3em;
  color: rgb(198 162 87 / 0.035);
  font-family: var(--display);
  font-size: min(38vw, 560px);
  letter-spacing: -0.16em;
  line-height: 1;
  pointer-events: none;
}

.principles-section {
  padding: clamp(100px, 11vw, 170px) 0;
  background:
    linear-gradient(130deg, transparent 52%, rgb(207 170 89 / 0.045)),
    #0b0907;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: clamp(64px, 7vw, 100px);
}

.section-heading-row h2 {
  font-size: clamp(50px, 5.7vw, 82px);
}

.section-aside {
  max-width: 330px;
  margin: 0 0 10px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.55;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.principle-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px clamp(28px, 3vw, 46px) 42px;
  border-right: 1px solid var(--line);
  transition: background 240ms ease;
}

.principle-card:first-child {
  border-left: 1px solid var(--line);
}

.principle-card:hover {
  background: linear-gradient(to bottom, rgb(196 159 79 / 0.1), transparent);
}

.principle-number {
  color: var(--gold);
  font-family: var(--display);
  font-size: 28px;
}

.principle-card h3 {
  margin: 0 0 14px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 400;
  line-height: 1.2;
}

.principle-card p {
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.booking-invitation {
  padding: clamp(90px, 11vw, 165px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 50%, rgb(218 175 83 / 0.11), transparent 30rem),
    #090806;
}

.booking-invitation-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(520px, 1.15fr);
  gap: clamp(70px, 10vw, 160px);
  align-items: center;
}

.booking-invitation h2 {
  max-width: 680px;
  margin: 18px 0 30px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(54px, 6.5vw, 96px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.booking-invitation-grid > div:first-child > p:not(.eyebrow) {
  max-width: 570px;
  margin: 0 0 38px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
}

.booking-table-mini {
  padding: 38px 18px;
  overflow: hidden;
}

.mini-seats {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}

.mini-seats span {
  aspect-ratio: 1;
  border: 1px solid var(--gold-dark);
  border-radius: 50% 50% 38% 38%;
  background: #14110d;
  box-shadow: inset 0 0 0 3px #090806;
}

.mini-table {
  position: relative;
  display: grid;
  height: 145px;
  margin: 13px 0;
  place-items: center;
  border: 1px solid #d4ad5c;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgb(255 239 177 / 0.1), transparent 14%, transparent 86%, rgb(255 239 177 / 0.1)),
    linear-gradient(135deg, #59401d, #c39a48 46%, #705126 100%);
  box-shadow: 0 28px 55px rgb(0 0 0 / 0.48), inset 0 0 0 7px rgb(37 23 7 / 0.22);
}

.mini-table::before {
  position: absolute;
  inset: 9px;
  border: 1px solid rgb(255 239 189 / 0.38);
  border-radius: 11px;
  content: "";
}

.mini-table span {
  color: #1a1004;
  font-family: var(--display);
  font-size: 46px;
  text-shadow: 0 1px rgb(255 239 177 / 0.35);
}

.rules-invitation {
  padding: clamp(110px, 13vw, 210px) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 40%, rgb(208 167 80 / 0.09), transparent 29rem),
    var(--panel);
}

.rules-invitation-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.8fr) minmax(380px, 1.15fr);
  gap: clamp(80px, 11vw, 180px);
  align-items: center;
}

.decree-frame,
.poster-frame {
  position: relative;
  padding: clamp(12px, 1.4vw, 20px);
  border: 1px solid var(--gold-dark);
  background: #070604;
  box-shadow: 0 42px 85px rgb(0 0 0 / 0.5);
}

.decree-frame::before,
.decree-frame::after,
.poster-frame::before,
.poster-frame::after {
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: var(--gold);
  content: "";
}

.decree-frame::before,
.poster-frame::before {
  top: -7px;
  left: -7px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.decree-frame::after,
.poster-frame::after {
  right: -7px;
  bottom: -7px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.decree-frame img,
.poster-frame img {
  width: 100%;
  border: 1px solid rgb(211 176 97 / 0.45);
}

.invitation-copy {
  position: relative;
}

.giant-ten {
  position: absolute;
  top: -0.46em;
  right: 0;
  color: rgb(218 181 99 / 0.08);
  font-family: var(--display);
  font-size: clamp(150px, 19vw, 320px);
  line-height: 1;
}

.invitation-copy h2 {
  position: relative;
  margin-top: 100px;
}

.invitation-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 34px 0 38px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 27px;
  color: #fff2c6;
}

.closing-quote {
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 15vw, 230px) 0;
  text-align: center;
  background:
    linear-gradient(rgb(8 7 5 / 0.86), rgb(8 7 5 / 0.95)),
    url("/golden-long-table.png") center 66% / cover no-repeat;
}

.closing-quote::before {
  position: absolute;
  inset: 22px;
  border: 1px solid var(--line);
  content: "";
  pointer-events: none;
}

.quote-mark {
  display: block;
  height: 70px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 110px;
  line-height: 1;
}

.closing-quote blockquote {
  max-width: 1000px;
  margin: 12px auto 34px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(46px, 6.6vw, 94px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.closing-quote p {
  margin: 0;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-footer {
  padding: 78px 0 54px;
  border-top: 1px solid var(--line);
  background: #060504;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 0.8fr;
  gap: clamp(50px, 8vw, 130px);
}

.footer-brand {
  margin-bottom: 28px;
}

.footer-grid > div:first-child > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 16px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav .eyebrow {
  margin-bottom: 10px;
}

.footer-nav a {
  width: fit-content;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 15px;
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: var(--gold-bright);
}

.footer-signoff {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
}

.footer-signoff p {
  margin: 0 0 5px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-signoff span {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

/* Bordregler */
.rules-page {
  background: var(--ink);
}

.rules-hero {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: end;
  overflow: hidden;
  padding: 230px 0 100px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(to right, rgb(7 6 4 / 0.72), rgb(7 6 4 / 0.96)),
    url("/golden-long-table.png") center 48% / cover no-repeat;
}

.rules-hero::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent calc(20% - 1px), rgb(222 186 103 / 0.035) 20%);
  content: "";
}

.rules-hero-glow {
  position: absolute;
  top: 17%;
  left: 12%;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(190 145 54 / 0.13), transparent 67%);
  filter: blur(20px);
}

.rules-hero-content {
  position: relative;
  z-index: 2;
}

.rules-hero h1 {
  max-width: 900px;
  margin: 25px 0 28px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(100px, 15vw, 220px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.rules-lede {
  max-width: 620px;
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.6;
}

.rules-hero-seal {
  position: absolute;
  right: max(48px, calc((100vw - 1360px) / 2));
  bottom: 86px;
  display: grid;
  width: 190px;
  height: 190px;
  transform: rotate(4deg);
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgb(9 7 4 / 0.42);
  box-shadow: inset 0 0 0 8px rgb(190 151 72 / 0.06);
  color: var(--gold-bright);
  text-align: center;
}

.rules-hero-seal::before {
  position: absolute;
  inset: 10px;
  border: 1px dotted var(--gold-dark);
  border-radius: 50%;
  content: "";
}

.rules-hero-seal span {
  align-self: end;
  font-family: var(--display);
  font-size: 67px;
  line-height: 1;
}

.rules-hero-seal small {
  align-self: start;
  max-width: 110px;
  font-size: 7px;
  font-weight: 650;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.rules-list-section {
  padding: clamp(110px, 12vw, 190px) 0;
  background:
    radial-gradient(circle at 50% 25%, rgb(198 155 72 / 0.065), transparent 38rem),
    var(--ink-soft);
}

.rules-section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: clamp(70px, 8vw, 120px);
}

.rules-section-heading h2 {
  font-size: clamp(60px, 7.4vw, 110px);
}

.rules-section-heading > p {
  max-width: 420px;
  margin: 0 0 8px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: var(--line);
  list-style: none;
}

.rule-card {
  position: relative;
  display: grid;
  min-height: 240px;
  grid-template-columns: 88px 1fr;
  gap: 26px;
  align-items: start;
  padding: clamp(34px, 4vw, 58px);
  overflow: hidden;
  background: #0d0b08;
  transition: background 220ms ease;
}

.rule-card::after {
  position: absolute;
  right: -28px;
  bottom: -90px;
  width: 170px;
  height: 170px;
  border: 1px solid rgb(202 164 82 / 0.1);
  border-radius: 50%;
  content: "";
  transition: transform 400ms ease;
}

.rule-card:hover {
  background: #15110c;
}

.rule-card:hover::after {
  transform: scale(1.5);
}

.rule-number {
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
}

.rule-card p {
  max-width: 480px;
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(20px, 1.9vw, 27px);
  line-height: 1.45;
}

.rule-card-final {
  grid-column: 1 / -1;
  min-height: 280px;
  grid-template-columns: 128px minmax(0, 800px);
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(110deg, rgb(183 141 56 / 0.12), transparent 45%),
    #0d0b08;
}

.rule-card-final .rule-number {
  color: var(--gold-bright);
  font-size: clamp(60px, 7vw, 100px);
}

.rule-card-final p {
  max-width: 800px;
  color: var(--ivory);
  font-size: clamp(24px, 2.5vw, 36px);
}

.poster-section {
  padding: clamp(110px, 14vw, 220px) 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgb(183 141 56 / 0.05), transparent 45%),
    #090704;
}

.poster-grid {
  display: grid;
  grid-template-columns: 0.75fr minmax(360px, 0.85fr);
  gap: clamp(80px, 13vw, 210px);
  align-items: center;
}

.poster-copy h2 {
  margin-bottom: 30px;
}

.poster-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0 0 38px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
}

/* Setebooking */
.reservation-page {
  background: var(--ink);
}

.reservation-hero {
  position: relative;
  display: flex;
  min-height: 650px;
  align-items: end;
  overflow: hidden;
  padding: 220px 0 92px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(to right, rgb(6 5 3 / 0.9), rgb(6 5 3 / 0.52), rgb(6 5 3 / 0.9)),
    url("/golden-long-table.png") center 54% / cover no-repeat;
}

.reservation-hero::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgb(211 175 95 / 0.18);
  content: "";
}

.reservation-hero-content {
  position: relative;
  z-index: 1;
}

.reservation-hero h1 {
  margin: 18px 0 24px;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(90px, 13.5vw, 195px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.84;
  text-shadow: 0 18px 50px rgb(0 0 0 / 0.55);
}

.reservation-hero-content > p:last-child {
  max-width: 690px;
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.6;
}

.reservation-section {
  padding: clamp(100px, 12vw, 180px) 0;
  background:
    radial-gradient(circle at 50% 42%, rgb(193 148 61 / 0.075), transparent 44rem),
    var(--ink-soft);
}

.reservation-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 34px;
}

.reservation-heading h2 {
  margin: 16px 0 0;
  color: var(--ivory);
  font-family: var(--display);
  font-size: clamp(58px, 7vw, 104px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.seat-summary {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seat-summary span {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.seat-summary strong {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
}

.seat-summary button {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--gold-dark);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.seat-summary button:disabled {
  cursor: wait;
  opacity: 0.5;
}

.seat-legend {
  display: flex;
  gap: 24px;
  margin: 0 0 38px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seat-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.seat-legend i {
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
}

.legend-free { background: #15120e; }
.legend-selected { background: var(--gold-bright); }
.legend-reserved { background: #3c3020; opacity: 0.55; }

.seat-map-scroll {
  margin-inline: calc((100vw - var(--page)) / -2);
  padding-inline: calc((100vw - var(--page)) / 2);
  overflow-x: auto;
  scrollbar-color: var(--gold-dark) #0c0a07;
}

.seat-map {
  display: grid;
  min-width: 760px;
  grid-template-columns: minmax(190px, 1fr) minmax(240px, 0.9fr) minmax(190px, 1fr);
  gap: 24px;
  align-items: stretch;
  padding: 22px 0 36px;
}

.seat-side {
  display: grid;
}

.seat-column {
  display: grid;
  grid-template-rows: repeat(8, minmax(76px, 1fr));
  gap: 10px;
}

.seat {
  position: relative;
  display: flex;
  min-height: 76px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px 5px;
  border: 1px solid var(--gold-dark);
  border-radius: 42%;
  background: linear-gradient(145deg, #1b1711, #0e0c09);
  box-shadow: inset 0 0 0 4px #090806, 0 12px 22px rgb(0 0 0 / 0.3);
  color: var(--paper);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.seat-side-window .seat {
  border-radius: 48% 30% 30% 48%;
}

.seat-side-canteen .seat {
  border-radius: 30% 48% 48% 30%;
}

.seat-side-window .seat:hover:not(:disabled) {
  transform: translateX(5px);
  border-color: var(--gold-bright);
}

.seat-side-canteen .seat:hover:not(:disabled) {
  transform: translateX(-5px);
  border-color: var(--gold-bright);
}

.seat-selected {
  border-color: var(--gold-bright);
  background: linear-gradient(145deg, #e8cb83, #9e7432);
  box-shadow: inset 0 0 0 4px rgb(65 43 13 / 0.35), 0 0 28px rgb(214 172 79 / 0.25);
  color: #110c04;
}

.seat-reserved {
  border-color: rgb(115 86 38 / 0.45);
  background: #15110c;
  box-shadow: inset 0 0 0 4px #0c0a07;
  color: #877c68;
  cursor: not-allowed;
  opacity: 0.78;
}

.seat > span {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
}

.seat small {
  display: block;
  width: calc(100% - 16px);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
}

.seat em {
  margin-top: 4px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.03em;
}

.long-table {
  position: relative;
  display: grid;
  min-height: 735px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e0bd6c;
  border-radius: 25px;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 12.3%, rgb(83 53 13 / 0.15) 12.5%),
    linear-gradient(160deg, #6d4d1d, #d0aa58 25%, #8d672b 54%, #d1ad60 77%, #5c411b);
  box-shadow: 0 40px 70px rgb(0 0 0 / 0.48), inset 0 0 0 9px rgb(42 25 6 / 0.24), inset 0 0 45px rgb(255 225 147 / 0.18);
}

.table-direction {
  position: absolute;
  left: 50%;
  z-index: 1;
  color: #2d1c08;
  font-family: var(--serif);
  font-size: clamp(16px, 1.7vw, 22px);
  font-style: italic;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.table-direction-top {
  top: 25px;
  transform: translateX(-50%);
}

.table-direction-bottom {
  bottom: 58px;
  transform: translateX(-50%);
}

.long-table::before {
  position: absolute;
  inset: 13px;
  border: 1px solid rgb(255 238 184 / 0.42);
  border-radius: 15px;
  content: "";
}

.long-table::after {
  position: absolute;
  top: 4%;
  bottom: 4%;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgb(62 39 8 / 0.42), transparent);
  content: "";
}

.table-monogram {
  z-index: 1;
  display: grid;
  width: 105px;
  height: 105px;
  place-items: center;
  border: 1px solid rgb(52 32 5 / 0.62);
  border-radius: 50%;
  color: #281803;
  font-family: var(--display);
  font-size: 50px;
  text-shadow: 0 1px rgb(255 238 184 / 0.4);
}

.table-copy {
  position: absolute;
  right: 50%;
  bottom: 30px;
  transform: translateX(50%);
  white-space: nowrap;
  color: rgb(43 26 4 / 0.75);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.reservation-form {
  display: grid;
  grid-template-columns: 150px minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: end;
  max-width: 980px;
  margin: 80px auto 0;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  background: linear-gradient(125deg, rgb(190 148 62 / 0.08), transparent 45%), #0c0a07;
}

.selected-seat-display {
  display: flex;
  min-height: 88px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.selected-seat-display span,
.reservation-form label > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.selected-seat-display strong {
  color: var(--ivory);
  font-family: var(--display);
  font-size: 47px;
  font-weight: 400;
  line-height: 1;
}

.reservation-form label {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.reservation-form input {
  min-height: 52px;
  padding: 0 16px;
  border: 0;
  border-bottom: 1px solid var(--gold-dark);
  border-radius: 0;
  outline: 0;
  background: rgb(255 255 255 / 0.025);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 18px;
}

.reservation-form input:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 8px 18px -12px var(--gold);
}

.reservation-form input::placeholder {
  color: #665f52;
}

.reservation-submit {
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.reservation-submit:hover:not(:disabled) {
  background: var(--gold-bright);
}

.reservation-submit:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.reservation-note {
  grid-column: 2 / -1;
  margin: -10px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
}

.reservation-feedback {
  grid-column: 1 / -1;
  min-height: 24px;
}

.reservation-feedback p {
  margin: 0;
  font-size: 13px;
}

.form-error { color: #e3a493; }
.form-success { color: var(--gold-bright); }

@keyframes hero-reveal {
  from {
    transform: scale(1.045);
    filter: brightness(0.6);
  }
  to {
    transform: scale(1);
    filter: brightness(1);
  }
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 48px, 880px);
  }

  .story-grid,
  .rules-invitation-grid,
  .poster-grid,
  .booking-invitation-grid {
    grid-template-columns: 1fr;
  }

  .booking-table-mini {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .story-grid {
    gap: 38px;
  }

  .story-copy {
    max-width: 700px;
    padding-top: 0;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principle-card,
  .principle-card:first-child {
    min-height: 240px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .decree-frame {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .invitation-copy {
    padding-top: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 0.5fr;
  }

  .footer-signoff {
    grid-column: 1 / -1;
    align-items: flex-start;
    text-align: left;
  }

  .rules-hero-seal {
    display: none;
  }

  .rules-section-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .rules-grid {
    grid-template-columns: 1fr;
  }

  .rule-card-final {
    grid-column: auto;
  }

  .poster-frame {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .reservation-heading {
    display: block;
  }

  .seat-summary {
    margin-top: 28px;
  }

  .reservation-form {
    grid-template-columns: 120px 1fr;
  }

  .reservation-submit {
    grid-column: 2;
  }

  .reservation-note {
    grid-column: 2;
  }
}

@media (max-width: 680px) {
  :root {
    --page: calc(100vw - 36px);
  }

  .top-quote {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .site-nav {
    height: 76px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    display: none;
  }

  .nav-links {
    gap: 13px;
  }

  .nav-links a {
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .nav-links a:nth-child(2) {
    display: none;
  }

  .hero-content {
    padding-top: 150px;
    padding-bottom: 106px;
  }

  .hero-content h1 {
    font-size: clamp(78px, 27vw, 132px);
  }

  .hero-bottomline {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .round-link {
    width: 112px;
    height: 112px;
  }

  .hero-side-note {
    display: none;
  }

  .scroll-cue {
    left: 18px;
    transform: none;
  }

  .section-heading-row {
    display: block;
  }

  .section-aside {
    margin-top: 30px;
  }

  .principle-card {
    min-height: 220px;
    padding: 28px;
  }

  .invitation-copy h2 {
    margin-top: 74px;
  }

  .closing-quote::before {
    inset: 12px;
  }

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

  .footer-signoff {
    grid-column: auto;
  }

  .rules-hero {
    min-height: 630px;
    padding-top: 180px;
    padding-bottom: 70px;
  }

  .rules-hero h1 {
    font-size: clamp(86px, 27vw, 138px);
  }

  .rule-card,
  .rule-card-final {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px 28px 46px;
  }

  .rule-card-final .rule-number {
    font-size: 56px;
  }

  .poster-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .booking-table-mini {
    padding: 24px 0;
  }

  .mini-seats {
    gap: 4px;
  }

  .mini-table {
    height: 105px;
    margin-block: 8px;
  }

  .reservation-hero {
    min-height: 590px;
    padding: 180px 0 70px;
  }

  .reservation-hero::before {
    inset: 12px;
  }

  .reservation-hero h1 {
    font-size: clamp(78px, 25vw, 126px);
  }

  .seat-summary {
    flex-wrap: wrap;
    gap: 16px 22px;
  }

  .seat-legend {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .seat-map-scroll {
    margin-inline: -18px;
    padding-inline: 18px;
  }

  .seat-map {
    min-width: 680px;
    grid-template-columns: minmax(175px, 1fr) minmax(205px, 0.85fr) minmax(175px, 1fr);
    gap: 15px;
  }

  .seat-column {
    grid-template-rows: repeat(8, 72px);
    gap: 8px;
  }

  .long-table {
    min-height: 632px;
  }

  .reservation-form {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 55px;
  }

  .selected-seat-display {
    min-height: auto;
    padding-bottom: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .reservation-submit,
  .reservation-note,
  .reservation-feedback {
    grid-column: 1;
  }

  .reservation-note {
    margin-top: -8px;
  }
}

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

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