:root {
  --glaze: #173f8f;
  --glaze-deep: #0d2b63;
  --glaze-ink: #081b3f;
  --chalk: #f7f4ea;
  --chalk-blue: #e8edf2;
  --cherry: #321713;
  --cherry-soft: #5a2b24;
  --gold: #b39555;
  --ink: #172239;
  --muted: #687183;
  --line: rgba(23, 63, 143, 0.24);
  --line-light: rgba(247, 244, 234, 0.28);
  --display: "Newsreader", Georgia, serif;
  --body: "Work Sans", Arial, sans-serif;
  --utility: "DM Mono", monospace;
  --page: min(1280px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--chalk);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--chalk);
  color: var(--glaze);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  width: var(--page);
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.02em;
}

.wordmark-seal {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--glaze);
  border-radius: 50%;
  color: var(--glaze);
  font-family: var(--utility);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  gap: 34px;
  font-family: var(--utility);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

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

.hero {
  width: var(--page);
  min-height: 710px;
  margin: 0 auto;
  padding: 56px 0 70px;
}

.ceramic-frame {
  position: relative;
  min-height: 585px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 30px;
  overflow: hidden;
  border: 2px solid var(--glaze);
  text-align: center;
}

.ceramic-frame::before,
.ceramic-frame::after {
  content: "";
  position: absolute;
  right: 20px;
  left: 20px;
  height: 20px;
  background:
    radial-gradient(ellipse at center, var(--glaze) 0 22%, transparent 24%) 0 0 / 40px 16px repeat-x,
    linear-gradient(90deg, transparent 9px, var(--glaze) 10px 12px, transparent 13px) 0 13px / 40px 6px repeat-x;
  opacity: 0.95;
}

.ceramic-frame::before {
  top: 18px;
}

.ceramic-frame::after {
  bottom: 18px;
  transform: rotate(180deg);
}

.frame-corner {
  position: absolute;
  top: 55px;
  bottom: 55px;
  width: 20px;
  background:
    radial-gradient(ellipse at center, var(--glaze) 0 22%, transparent 24%) 2px 0 / 16px 40px repeat-y;
}

.frame-corner-a {
  left: 18px;
}

.frame-corner-b {
  right: 18px;
  transform: rotate(180deg);
}

.kicker,
.section-marker,
.chapter-title > span,
.detail-label {
  margin: 0;
  color: var(--glaze);
  font-family: var(--utility);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 44px 0 18px;
  color: var(--glaze);
  font-family: var(--display);
  font-size: clamp(90px, 13vw, 180px);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.68;
}

.hero h1 em {
  position: relative;
  left: 0.12em;
  color: var(--cherry);
  font-weight: 400;
}

.hero-note {
  margin: 28px 0;
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.45;
}

.quiet-action {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 13px 0 7px;
  border-bottom: 1px solid var(--glaze);
  color: var(--glaze);
  font-family: var(--utility);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quiet-action span {
  transition: transform 200ms ease;
}

.quiet-action:hover span {
  transform: translate(3px, 3px);
}

.full-bleed {
  height: min(72vw, 820px);
  margin: 0;
}

.image-with-caption {
  position: relative;
}

.image-with-caption::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 27, 63, 0.46), transparent 35%);
  pointer-events: none;
}

.image-with-caption figcaption {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 24px;
  left: 32px;
  display: flex;
  justify-content: space-between;
  color: var(--chalk);
  font-family: var(--utility);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.salon {
  display: grid;
  grid-template-columns: 0.6fr 1.05fr 1fr;
  gap: 64px;
  padding: 150px 0;
  align-items: start;
}

.section-marker {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.section-marker.light {
  color: var(--chalk);
  border-color: var(--line-light);
}

h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6.5vw, 102px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.salon-copy .lead {
  margin: 42px 0 26px;
  color: var(--cherry);
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.36;
}

.salon-copy > p:last-child {
  max-width: 520px;
  color: var(--muted);
}

.inset-figure {
  margin: 125px 0 0;
}

.inset-figure img {
  aspect-ratio: 3 / 4;
}

.inset-figure figcaption,
.chapter-image figcaption,
.dessert-figure figcaption {
  padding-top: 11px;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-section {
  padding: 145px 0 130px;
  background: var(--glaze);
  color: var(--chalk);
}

.menu-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}

.menu-heading p {
  max-width: 430px;
  margin: 8px 0 0;
  color: rgba(247, 244, 234, 0.74);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.45;
}

.menu-ledger {
  width: var(--page);
  margin: 110px auto 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.menu-ledger li {
  min-height: 110px;
  display: grid;
  grid-template-columns: 0.55fr 1.35fr 1fr;
  gap: 64px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
}

.course-number {
  font-family: var(--utility);
  font-size: 10px;
}

.menu-ledger strong {
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
}

.menu-ledger li > span:last-child {
  color: rgba(247, 244, 234, 0.7);
  font-size: 14px;
}

.studies {
  display: grid;
  grid-template-columns: 0.6fr 1.05fr 1fr;
  gap: 64px;
  padding: 150px 0 170px;
}

.studies-title p {
  max-width: 510px;
  margin: 36px 0 0;
  color: var(--muted);
}

.study-plate {
  grid-row: span 2;
  margin: 40px 0 0;
}

.plate-ring {
  padding: 7%;
  border: 1px solid var(--glaze);
  border-radius: 50%;
}

.plate-ring img {
  aspect-ratio: 1;
  border-radius: 50%;
}

.study-plate figcaption {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.study-plate figcaption strong {
  color: var(--glaze);
  font-family: var(--display);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.chef-note {
  grid-column: 2 / 3;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 8px 24px;
  align-items: start;
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.signature-stroke {
  grid-row: span 2;
  color: var(--glaze);
  font-family: var(--display);
  font-size: 64px;
  font-style: italic;
  line-height: 0.8;
}

.chef-note p {
  margin: 0;
  color: var(--cherry);
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.4;
}

.chef-note > span:last-child {
  color: var(--muted);
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dessert {
  display: grid;
  grid-template-columns: 0.6fr 1.05fr 1fr;
  gap: 64px;
  padding: 20px 0 150px;
  align-items: end;
}

.dessert-figure {
  margin: 0;
}

.dessert-figure img {
  aspect-ratio: 4 / 5;
}

.dessert-copy h2 {
  color: var(--cherry);
  font-size: clamp(50px, 5.4vw, 82px);
}

.dessert-copy > p {
  margin: 34px 0;
  color: var(--muted);
}

.drink-notes {
  margin: 0;
  border-top: 1px solid var(--line);
}

.drink-notes div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.drink-notes dt,
.drink-notes dd {
  margin: 0;
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.drink-notes dd {
  color: var(--muted);
  text-align: right;
}

.booking-band {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 110px;
  padding: 120px max(32px, calc((100vw - min(1280px, 100vw - 64px)) / 2));
  background: var(--cherry);
  color: var(--chalk);
}

.booking-band h2 {
  margin-top: 45px;
  font-size: clamp(50px, 6.4vw, 92px);
}

.booking-copy {
  align-self: end;
}

.booking-copy p {
  max-width: 470px;
  color: rgba(247, 244, 234, 0.72);
}

.light-link {
  margin-top: 24px;
  border-color: var(--gold);
  color: var(--chalk);
}

.casino-passage {
  width: var(--page);
  min-height: 170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.casino-passage > span {
  color: var(--muted);
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.casino-passage a {
  display: flex;
  gap: 80px;
  color: var(--glaze);
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 46px);
}

.casino-passage a span {
  transition: transform 220ms ease;
}

.casino-passage a:hover span {
  transform: translateX(8px);
}

.site-footer {
  width: var(--page);
  min-height: 300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1.3fr;
  gap: 36px;
  align-items: center;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.07em;
  line-height: 1.7;
  text-transform: uppercase;
}

.maker-mark {
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glaze);
  border-radius: 50%;
  color: var(--glaze);
}

.maker-mark span {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}

.maker-mark small {
  margin-top: 7px;
  font-size: 7px;
}

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

.footer-links a {
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
}

.maker-signature {
  color: var(--glaze);
  text-align: right;
}

/* Casino */
.casino-page {
  background: var(--glaze-ink);
  color: var(--chalk);
}

.casino-header {
  border-color: var(--line-light);
}

.casino-page .wordmark-seal {
  border-color: var(--gold);
  color: var(--gold);
}

.casino-hero {
  width: var(--page);
  min-height: 700px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.casino-title .kicker {
  color: var(--gold);
}

.casino-title h1 {
  margin: 35px 0 20px;
  font-family: var(--display);
  font-size: clamp(105px, 15vw, 210px);
  font-weight: 400;
  letter-spacing: -0.085em;
  line-height: 0.78;
}

.casino-title > p:last-child {
  max-width: 600px;
  color: rgba(247, 244, 234, 0.7);
  font-family: var(--display);
  font-size: 22px;
}

.door-mark {
  aspect-ratio: 0.7;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
}

.door-mark::before,
.door-mark::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(179, 149, 85, 0.5);
}

.door-mark::after {
  inset: 32px;
}

.door-mark span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 60px;
}

.door-mark i {
  position: absolute;
  right: 14%;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.table-chapter {
  padding: 145px max(32px, calc((100vw - min(1280px, 100vw - 64px)) / 2));
}

.table-one {
  background: var(--chalk);
  color: var(--ink);
}

.chapter-title {
  display: grid;
  grid-template-columns: 0.6fr 1.05fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
}

.chapter-title h2 {
  color: var(--glaze);
}

.chapter-title > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 22px;
}

.chapter-image {
  margin: 0;
}

.chapter-image.wide img {
  height: min(60vw, 730px);
}

.two-columns {
  max-width: 850px;
  margin: 60px 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  color: var(--muted);
}

.two-columns strong {
  color: var(--cherry);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
}

.table-two {
  background: var(--glaze);
}

.table-two .chapter-title h2,
.table-two .chapter-title > p,
.table-two .chapter-title > span {
  color: var(--chalk);
}

.gaming-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.chapter-image.portrait img {
  min-height: 820px;
}

.table-two figcaption {
  color: rgba(247, 244, 234, 0.6);
}

.game-notes .large-copy {
  margin: 0 0 75px;
  color: var(--chalk);
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1.18;
}

.game-notes article {
  padding: 27px 0;
  border-top: 1px solid var(--line-light);
}

.game-notes article > span {
  color: var(--gold);
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-notes h3 {
  margin: 10px 0;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
}

.game-notes article p {
  margin: 0;
  color: rgba(247, 244, 234, 0.66);
  font-size: 14px;
}

.table-three {
  background: var(--glaze-ink);
}

.table-three .chapter-title h2 {
  color: var(--gold);
}

.table-three .chapter-title > span {
  color: var(--gold);
}

.table-three .chapter-title > p {
  color: rgba(247, 244, 234, 0.6);
}

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

.guidance-grid article {
  min-height: 330px;
  padding: 34px;
  border-right: 1px solid var(--line-light);
}

.guidance-grid article:last-child {
  border-right: 0;
}

.guidance-index {
  color: var(--gold);
  font-family: var(--utility);
  font-size: 10px;
}

.guidance-grid h3 {
  margin: 70px 0 18px;
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
}

.guidance-grid p {
  color: rgba(247, 244, 234, 0.64);
  font-size: 14px;
}

.responsible-note {
  max-width: 720px;
  margin: 90px 0 0 auto;
}

.responsible-note > p {
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.45;
}

.casino-footer {
  color: rgba(247, 244, 234, 0.58);
  border-top: 1px solid var(--line-light);
}

.casino-footer .maker-mark {
  border-color: var(--gold);
  color: var(--gold);
}

.casino-footer .maker-signature {
  color: var(--gold);
}

/* Contact */
.contact-page {
  background-color: var(--chalk-blue);
  background-image:
    linear-gradient(rgba(23, 63, 143, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 63, 143, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.contact-main {
  width: var(--page);
  margin: 90px auto 140px;
}

.reservation-card {
  position: relative;
  padding: 70px;
  border: 2px solid var(--glaze);
  background: var(--chalk);
}

.reservation-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid var(--line);
  pointer-events: none;
}

.card-heading {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 36px;
  align-items: center;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.card-seal {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid var(--glaze);
  border-radius: 50%;
  color: var(--glaze);
  font-family: var(--display);
  font-size: 30px;
}

.card-heading h1 {
  margin: 6px 0 0;
  color: var(--glaze);
  font-family: var(--display);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.card-heading p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
}

.card-number {
  align-self: start;
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reservation-form {
  position: relative;
}

.reservation-form fieldset {
  margin: 0;
  padding: 55px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.reservation-form legend {
  padding: 0;
  color: var(--glaze);
  font-family: var(--utility);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.reservation-form label > span {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: 400 16px var(--body);
}

.reservation-form input,
.reservation-form select {
  height: 44px;
}

.reservation-form textarea {
  padding: 12px 0;
  resize: vertical;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 35px;
}

.choice-row label {
  cursor: pointer;
}

.choice-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-row label span {
  margin: 0;
  padding: 11px 16px;
  border: 1px solid var(--line);
  color: var(--ink);
}

.choice-row input:checked + span {
  border-color: var(--glaze);
  background: var(--glaze);
  color: var(--chalk);
}

.wide-label {
  display: block;
}

.form-end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 45px;
}

.consent {
  display: flex;
  align-items: flex-start;
  max-width: 560px;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 2px 12px 0 0;
}

.consent span {
  margin: 0 !important;
  line-height: 1.5;
}

.form-end button {
  min-width: 210px;
  padding: 16px 20px;
  border: 1px solid var(--glaze);
  background: var(--glaze);
  color: var(--chalk);
  cursor: pointer;
  font-family: var(--utility);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.form-end button:hover {
  background: transparent;
  color: var(--glaze);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 234, 0.52);
}

.contact-details article {
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.contact-details article:last-child {
  border-right: 0;
}

.contact-details h2 {
  margin: 50px 0 24px;
  color: var(--glaze);
  font-size: 27px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.contact-details p {
  color: var(--muted);
  font-size: 13px;
}

.contact-details a {
  color: var(--glaze);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
}

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

  .salon,
  .menu-heading,
  .studies,
  .dessert,
  .chapter-title {
    grid-template-columns: 0.45fr 1fr;
    gap: 36px;
  }

  .salon-copy,
  .studies-title,
  .dessert-figure,
  .chapter-title h2 {
    grid-column: 2;
  }

  .inset-figure,
  .study-plate,
  .dessert-copy,
  .chapter-title > p {
    grid-column: 2;
    margin-top: 30px;
  }

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

  .menu-heading p {
    grid-column: 2;
  }

  .menu-ledger li {
    grid-template-columns: 0.45fr 1fr;
    gap: 36px;
    padding: 22px 0;
  }

  .menu-ledger li > span:last-child {
    grid-column: 2;
  }

  .booking-band {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .site-footer {
    grid-template-columns: repeat(3, 1fr);
    padding: 60px 0;
  }

  .maker-signature {
    text-align: left;
  }

  .casino-hero {
    grid-template-columns: 1.4fr 0.6fr;
  }

  .gaming-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
  }

  .chapter-image.portrait img {
    min-height: 680px;
  }

  .guidance-grid,
  .contact-details {
    grid-template-columns: 1fr 1fr;
  }

  .guidance-grid article:nth-child(2),
  .contact-details article:nth-child(2) {
    border-right: 0;
  }

  .guidance-grid article:last-child {
    border-top: 1px solid var(--line-light);
  }

  .contact-details article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

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

  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 74px;
  }

  .wordmark {
    font-size: 17px;
  }

  .wordmark-seal {
    width: 31px;
    height: 31px;
  }

  .main-nav {
    gap: 14px;
    font-size: 8px;
  }

  .main-nav a:first-child {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 28px 0;
  }

  .ceramic-frame {
    min-height: 570px;
    padding: 75px 36px;
  }

  .hero h1 {
    margin-top: 58px;
    font-size: clamp(70px, 25vw, 104px);
    line-height: 0.74;
  }

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

  .image-with-caption figcaption {
    right: 14px;
    bottom: 12px;
    left: 14px;
    font-size: 7px;
  }

  .salon,
  .menu-heading,
  .studies,
  .dessert,
  .chapter-title {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .salon,
  .studies {
    padding: 90px 0;
  }

  .section-marker,
  .salon-copy,
  .studies-title,
  .inset-figure,
  .study-plate,
  .chef-note,
  .dessert-figure,
  .dessert-copy,
  .chapter-title h2,
  .chapter-title > p,
  .menu-heading p {
    grid-column: 1;
  }

  h2 {
    font-size: 54px;
  }

  .inset-figure {
    margin-top: 24px;
  }

  .menu-section {
    padding: 90px 0;
  }

  .menu-ledger {
    margin-top: 65px;
  }

  .menu-ledger li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .menu-ledger strong {
    font-size: 24px;
  }

  .menu-ledger li > span:last-child {
    grid-column: 2;
  }

  .study-plate {
    margin-top: 15px;
  }

  .dessert {
    padding: 20px 0 90px;
  }

  .booking-band {
    padding: 80px 20px;
  }

  .booking-band h2 {
    font-size: 48px;
  }

  .casino-passage {
    min-height: 135px;
  }

  .casino-passage a {
    gap: 20px;
    font-size: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .maker-mark {
    width: 72px;
    height: 72px;
  }

  .casino-hero {
    min-height: 640px;
    grid-template-columns: 1fr;
    padding: 70px 0;
  }

  .casino-title h1 {
    font-size: 28vw;
  }

  .door-mark {
    width: 170px;
    justify-self: end;
  }

  .table-chapter {
    padding: 90px 20px;
  }

  .chapter-title {
    margin-bottom: 50px;
  }

  .two-columns,
  .gaming-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .two-columns {
    margin-top: 45px;
  }

  .chapter-image.portrait img {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .game-notes .large-copy {
    margin: 35px 0 55px;
  }

  .guidance-grid,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .guidance-grid article,
  .guidance-grid article:nth-child(2),
  .contact-details article,
  .contact-details article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .guidance-grid h3 {
    margin-top: 35px;
  }

  .contact-main {
    margin: 30px auto 80px;
  }

  .reservation-card {
    padding: 42px 28px;
  }

  .card-heading {
    grid-template-columns: 1fr;
  }

  .card-seal {
    width: 65px;
    height: 65px;
  }

  .card-number {
    position: absolute;
    top: 0;
    right: 0;
  }

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

  .form-end {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-details article {
    border-color: var(--line);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
