@font-face {
  font-family: "Yanova Serif";
  src: url("../assets/fonts/noto-serif-var.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Yanova Sans";
  src: url("../assets/fonts/inter-display-regular.ttf") format("truetype");
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --black: #0a0a08;
  --black-soft: #131410;
  --paper: #f0ecdf;
  --paper-deep: #ded6c4;
  --ink: #171714;
  --red: #d12f22;
  --red-dark: #9e1d16;
  --gold: #bc9a58;
  --muted-dark: #8f8d83;
  --muted-light: #5e5b53;
  --serif: "Yanova Serif", Georgia, serif;
  --sans: "Yanova Sans", Inter, Arial, sans-serif;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --wrap: min(1440px, calc(100vw - 8vw));
  --header-h: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--black);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

em {
  font-weight: 350;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

.page-progress {
  position: fixed;
  z-index: 301;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 300;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  padding: 0 4vw;
  border-bottom: 1px solid rgba(240, 236, 223, .13);
  transition: height 220ms var(--ease-out), background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(10, 10, 8, .88);
  border-color: rgba(240, 236, 223, .1);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  font-family: var(--serif);
  font-size: 1.3rem;
  letter-spacing: -.03em;
  text-decoration: none;
}

.wordmark-seal {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff7ec;
  font-family: var(--serif);
  font-size: 1rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a,
.header-status {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  color: #bdb9ad;
}

.desktop-nav a::after {
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease-out);
}

.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-status {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
}

.header-status i,
.footer-open i {
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #58a66a;
  box-shadow: 0 0 0 5px rgba(88, 166, 106, .12);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(209, 47, 34, .12), transparent 31%),
    var(--black);
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  width: min(760px, 48vw);
  margin: 40px 0 110px 4vw;
  padding-top: var(--header-h);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 28px;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kicker::before {
  width: 30px;
  height: 1px;
  background: var(--red);
  content: "";
}

.kicker span {
  color: var(--red);
}

.hero-kicker span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9ed1a7;
}

.hero-kicker span::before {
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #69bf79;
  box-shadow: 0 0 0 5px rgba(105, 191, 121, .11);
  content: "";
}

.hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 9.1vw, 10.4rem);
  font-weight: 480;
  letter-spacing: -.075em;
  line-height: .77;
}

.hero-line {
  display: block;
}

.hero-line-accent {
  color: var(--red);
  font-style: italic;
  white-space: nowrap;
}

.hero-intro {
  max-width: 475px;
  margin: 42px 0 34px;
  color: #bbb8ae;
  font-size: clamp(1rem, 1.12vw, 1.16rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.hero-insight {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: end;
  gap: 34px;
  max-width: 610px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(240, 236, 223, .17);
}

.hero-insight > p {
  max-width: 330px;
  margin: 0;
  color: #8f8c83;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.35;
}

.hero-insight > div {
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-insight > div span {
  padding: 7px 10px;
  border: 1px solid rgba(240, 236, 223, .18);
  color: #aaa79d;
  font-size: .53rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  color: inherit;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms var(--ease-out), background-color 200ms ease, color 200ms ease;
}

.button:active,
.text-link:active {
  transform: scale(.97);
}

.button-red {
  background: var(--red);
  color: #fff8ed;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  color: #c9c5bb;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms var(--ease-out), color 180ms ease;
}

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 45.5vw;
  height: 100%;
  overflow: visible;
}

.hero-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--black) 0, rgba(10, 10, 8, .15) 30%, transparent 62%),
    linear-gradient(0deg, rgba(10, 10, 8, .48), transparent 42%);
  content: "";
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
  transform: scale(1.035);
}

.hero-seal {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 0;
  display: grid;
  width: 126px;
  aspect-ratio: 1;
  place-content: center;
  border: 8px solid var(--black);
  border-radius: 50%;
  background: var(--red);
  color: #fff8ed;
  text-align: center;
  transform: translate(-50%, -50%) rotate(-9deg);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .32);
}

.hero-seal span {
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: .05em;
  line-height: 1;
}

.hero-seal small {
  margin-top: 8px;
  font-size: .48rem;
  letter-spacing: .28em;
}

.hero-foot {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  padding: 0 4vw 28px;
  color: #77776f;
  font-size: .59rem;
  letter-spacing: .11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-foot p {
  margin: 0;
}

.hero-foot a {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #d1cec3;
  text-decoration: none;
}

.hero-foot a i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(240, 236, 223, .28);
  border-radius: 50%;
  font-style: normal;
}

.arrival {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 11vw, 190px) 0 clamp(100px, 9vw, 160px);
  background: var(--paper);
  color: var(--ink);
}

.arrival-head,
.menu-intro,
.atmosphere-head {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr);
  gap: 4vw;
  align-items: end;
}

.section-no {
  margin: 0;
  color: #777268;
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.arrival h2,
.menu-intro h2,
.atmosphere h2,
.origin h2,
.location h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.7rem, 6.35vw, 7.5rem);
  font-weight: 460;
  letter-spacing: -.065em;
  line-height: .91;
}

.arrival h2 em,
.menu-intro h2 em,
.atmosphere h2 em,
.origin h2 em,
.location h2 em {
  color: var(--red);
}

.arrival-copy {
  max-width: 420px;
  margin: 0 0 9px;
  color: var(--muted-light);
  font-size: 1.03rem;
}

.arrival-stage {
  position: relative;
  isolation: isolate;
  width: min(1740px, calc(100vw - 8vw));
  height: clamp(860px, 69vw, 1180px);
  margin: clamp(80px, 8vw, 140px) auto 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--red) 0 25%, var(--black) 25% 100%);
}

.arrival-stage::before {
  position: absolute;
  z-index: 0;
  top: 8%;
  left: 2.4%;
  color: rgba(255, 248, 237, .19);
  content: "宴";
  font-family: var(--serif);
  font-size: clamp(12rem, 24vw, 30rem);
  line-height: .8;
}

.arrival-stage::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  width: 43%;
  height: 1px;
  background: rgba(240, 236, 223, .2);
  content: "";
}

.arrival-shot {
  position: absolute;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
}

.arrival-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arrival-shot-room {
  top: 9%;
  left: 8%;
  width: 51%;
  height: 64%;
}

.arrival-shot-room img {
  object-position: center 52%;
}

.arrival-shot-bonsai {
  top: 0;
  right: 6%;
  width: 25%;
  height: 45%;
}

.arrival-shot-bonsai img {
  object-position: center 52%;
}

.arrival-shot-mark {
  bottom: 6%;
  left: 3.5%;
  width: 17%;
  height: 31%;
  transform: rotate(-3deg);
}

.arrival-shot-mark img {
  object-position: center 63%;
}

.arrival-shot-material {
  bottom: 0;
  left: 26%;
  width: 34%;
  height: 22%;
}

.arrival-shot-material img {
  object-position: center 62%;
}

.arrival-shot figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 18px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .78));
  color: #d5d0c4;
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.arrival-stage-copy {
  position: absolute;
  z-index: 3;
  right: 6%;
  bottom: 7%;
  width: 28%;
  padding: clamp(28px, 3vw, 50px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .3);
}

.arrival-stage-copy > span {
  color: var(--red);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.arrival-stage-copy h3 {
  margin: 18px 0 14px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 3.5vw, 4.3rem);
  font-weight: 470;
  letter-spacing: -.06em;
  line-height: .92;
}

.arrival-stage-copy p {
  margin: 0;
  color: var(--muted-light);
}

.arrival-triad {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #cbc2b2;
}

.arrival-triad b {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .59rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.arrival-triad b::before {
  width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.arrival-open-badge {
  position: absolute;
  z-index: 4;
  top: 47%;
  left: 55%;
  display: grid;
  width: clamp(116px, 10vw, 168px);
  aspect-ratio: 1;
  place-content: center;
  border: 7px solid var(--black);
  border-radius: 50%;
  background: var(--red);
  color: #fff8ed;
  text-align: center;
  transform: rotate(9deg);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .34);
}

.arrival-open-badge span {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.8rem);
  font-style: italic;
  line-height: .85;
}

.arrival-open-badge b {
  margin-top: 5px;
  font-size: .56rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(240, 236, 223, .11);
  border-bottom: 1px solid rgba(240, 236, 223, .11);
  background: #11110f;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  color: rgba(240, 236, 223, .76);
  font-family: var(--sans);
  font-size: clamp(.68rem, .78vw, .92rem);
  font-weight: 600;
  letter-spacing: .3em;
  line-height: 1;
  text-transform: uppercase;
  animation: ticker 34s linear infinite;
}

.ticker-group,
.ticker-unit {
  display: flex;
  flex: none;
  align-items: center;
}

.ticker-group {
  padding: 17px 0;
}

.ticker-track i {
  margin: 0 2.8em 0 2.45em;
  color: var(--red);
  font-size: .48em;
  font-style: normal;
}

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

.menu-story {
  position: relative;
  overflow: clip;
  padding-top: clamp(110px, 10vw, 180px);
  background: var(--black);
}

.menu-intro {
  min-height: 430px;
  padding-bottom: 90px;
}

.menu-intro-copy {
  align-self: end;
  max-width: 390px;
  color: #aaa79d;
}

.menu-intro-copy p {
  margin: 0 0 32px;
}

.menu-intro-copy span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #716f68;
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.menu-intro-copy span::before {
  width: 30px;
  height: 1px;
  background: var(--red);
  content: "";
}

.menu-pin {
  position: relative;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
}

.menu-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  gap: 2.4vw;
  padding: 5vh 4vw 7vh;
  will-change: transform;
}

.menu-card {
  position: relative;
  flex: 0 0 auto;
  width: min(39vw, 650px);
  height: min(75vh, 790px);
  min-height: 560px;
  overflow: hidden;
  background: #1a1a16;
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  padding: 60px 28px 26px;
  background: linear-gradient(transparent, rgba(8, 8, 6, .9));
}

.menu-card-copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 450;
  letter-spacing: -.06em;
  line-height: 1;
}

.menu-card-copy p {
  margin: 4px 0 0;
  color: #b4b0a6;
  font-size: .84rem;
}

.menu-card-cover {
  width: min(43vw, 720px);
}

.menu-card-cover img {
  object-position: center;
}

.menu-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .84), transparent 50%);
}

.menu-card-cover > p {
  position: absolute;
  right: 34px;
  bottom: 28px;
  left: 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 0;
}

.menu-card-cover p span {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5vw, 6rem);
  letter-spacing: -.06em;
  line-height: .9;
}

.menu-card-cover p b {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
}

.menu-card-end {
  display: grid;
  width: min(45vw, 760px);
  place-content: center;
  padding: 50px;
  background: var(--red);
  text-align: center;
}

.menu-end-mark {
  margin-bottom: 16px;
  color: rgba(255, 248, 237, .3);
  font-family: var(--serif);
  font-size: clamp(8rem, 14vw, 15rem);
  line-height: .8;
}

.menu-card-end p {
  max-width: 500px;
  margin: 0 auto 30px;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.3vw, 4.8rem);
  letter-spacing: -.055em;
  line-height: .94;
}

.menu-card-end .button {
  justify-self: center;
}

.manifesto {
  position: relative;
  padding: clamp(110px, 11vw, 190px) 4vw clamp(100px, 10vw, 170px);
  overflow: hidden;
  background: var(--red);
  color: #fff8ed;
}

.manifesto > .section-no {
  color: rgba(255, 248, 237, .65);
}

.manifesto h2 {
  width: 100%;
  max-width: 1900px;
  margin: clamp(18px, 3vw, 48px) auto clamp(70px, 7vw, 120px);
  font-family: var(--serif);
  font-size: clamp(4.3rem, 10vw, 12rem);
  font-weight: 470;
  letter-spacing: -.075em;
  line-height: .82;
  text-align: center;
}

.manifesto h2 span {
  display: block;
}

.manifesto h2 span:nth-child(1),
.manifesto h2 span:nth-child(3) {
  transform: translateX(-7vw);
}

.manifesto h2 span:nth-child(2),
.manifesto h2 span:nth-child(4) {
  transform: translateX(7vw);
}

.manifesto h2 em {
  color: #32110d;
}

.manifesto-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  max-width: 980px;
  color: #f5cec6;
}

.manifesto-bottom p {
  margin: 0;
}

.atmosphere {
  padding: clamp(110px, 11vw, 190px) 0;
  overflow: hidden;
  background: var(--black);
  color: var(--paper);
}

.atmosphere-head {
  align-items: end;
}

.atmosphere-head > div {
  grid-column: auto;
}

.atmosphere-intro {
  max-width: 410px;
  margin: 0 0 8px;
  color: #aaa79d;
}

.atmosphere-stage {
  position: relative;
  isolation: isolate;
  width: min(1740px, calc(100vw - 8vw));
  height: clamp(880px, 72vw, 1240px);
  margin-top: clamp(80px, 9vw, 150px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(240, 236, 223, .14);
  background: #11120f;
}

.atmosphere-stage::before {
  position: absolute;
  z-index: 0;
  top: -18%;
  right: -13%;
  width: min(72vw, 1120px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.atmosphere-stage::after {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 4%;
  width: 1px;
  height: 100%;
  background: rgba(240, 236, 223, .16);
  content: "";
}

.atmo-photo {
  position: absolute;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
}

.atmo-photo img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}

.atmo-photo-room {
  top: 7%;
  left: 7%;
  width: 61%;
  height: 71%;
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
}

.atmo-photo-room img {
  object-position: center 50%;
}

.atmo-photo-moss {
  top: 0;
  right: 5%;
  width: 24%;
  height: 43%;
  transform: rotate(2.5deg);
}

.atmo-photo-table {
  right: 9%;
  bottom: 0;
  width: 31%;
  height: 39%;
  transform: rotate(-2deg);
}

.atmo-statement {
  position: absolute;
  z-index: 3;
  bottom: 4%;
  left: 3%;
  width: min(38%, 590px);
  padding: clamp(30px, 3.5vw, 58px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .36);
}

.atmo-statement > span {
  color: var(--red);
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.atmo-statement p {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  letter-spacing: -.06em;
  line-height: .88;
}

.atmo-statement .atmo-line {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
  white-space: nowrap;
}

.atmo-statement em {
  color: var(--red);
}

.atmo-statement small {
  display: block;
  max-width: 340px;
  margin-top: 28px;
  color: #777268;
  font-size: .61rem;
  letter-spacing: .1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.atmo-seal {
  position: absolute;
  z-index: 4;
  top: 48%;
  right: 29%;
  display: grid;
  width: clamp(110px, 10vw, 160px);
  aspect-ratio: 1;
  place-content: center;
  border: 7px solid var(--black);
  border-radius: 50%;
  background: var(--red);
  color: #fff8ed;
  text-align: center;
  transform: rotate(9deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.atmo-seal span {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: .8;
}

.atmo-seal b {
  margin-top: 10px;
  font-size: .5rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.origin {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  min-height: 92svh;
  background: var(--black-soft);
}

.origin-image {
  position: relative;
  min-height: 750px;
  overflow: hidden;
}

.origin-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--black-soft));
  content: "";
}

.origin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.8) brightness(.62);
}

.origin-copy {
  align-self: center;
  max-width: 720px;
  padding: 110px 5vw 110px 4vw;
}

.origin-copy > p:not(.section-no, .kicker) {
  max-width: 520px;
  margin: 34px 0 0;
  color: #aaa79d;
}

.origin-title-main {
  display: block;
}

.origin-title-tail::before {
  content: " ";
}

.origin .section-no {
  margin-bottom: 60px;
}

.origin-route {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 70px;
  color: #77766f;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.origin-route i {
  position: relative;
  flex: 1;
  height: 1px;
  background: #4e4e48;
}

.origin-route i::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.origin-route b {
  color: var(--paper);
}

.location {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  grid-template-columns: minmax(0, 1.08fr) minmax(520px, .92fr);
  overflow: hidden;
  background: var(--black);
}

.location-map {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  background:
    radial-gradient(circle at 41% 59%, rgba(209, 47, 34, .11), transparent 27%),
    linear-gradient(135deg, #191916, #0a0a08 64%);
}

.location-map::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(240, 236, 223, .018) 1px, transparent 1px),
    linear-gradient(rgba(240, 236, 223, .018) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(135deg, #000, transparent 75%);
}

.location-map::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -15%;
  color: rgba(240, 236, 223, .025);
  content: "宴";
  font-family: var(--serif);
  font-size: clamp(22rem, 34vw, 44rem);
  line-height: .8;
  transform: translateX(14%);
}

.location-map-art {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.location-grid {
  fill: none;
  stroke: rgba(240, 236, 223, .09);
  stroke-width: 2;
}

.location-line-shadow,
.location-line {
  fill: none;
  stroke-linecap: round;
}

.location-line-shadow {
  stroke: rgba(0, 0, 0, .72);
  stroke-width: 24;
}

.location-line {
  stroke: #006eb8;
  stroke-width: 11;
}

.location-stop {
  fill: var(--paper);
  stroke: #006eb8;
  stroke-width: 9;
}

.location-pulse {
  fill: none;
  stroke: rgba(240, 236, 223, .42);
  stroke-width: 2;
}

.location-station {
  position: absolute;
  z-index: 4;
  top: 53%;
  left: 43%;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translate(28px, 24px);
}

.location-station span {
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: #006eb8;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.location-station p {
  margin: 0;
  color: var(--paper);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.location-destination {
  position: absolute;
  z-index: 5;
  top: calc(53% - 105px);
  left: calc(43% - 116px);
  display: grid;
  width: 148px;
  aspect-ratio: 1;
  place-content: center;
  border: 7px solid #0d0d0b;
  border-radius: 50%;
  background: var(--red);
  color: #fff8ed;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
}

.location-destination span {
  font-family: var(--serif);
  font-size: 2.45rem;
  line-height: .8;
}

.location-destination p {
  margin: 7px 0 4px;
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: -.04em;
  line-height: 1;
}

.location-destination i {
  font-size: .48rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.location-map-note {
  position: absolute;
  z-index: 4;
  bottom: 48px;
  left: 5vw;
  margin: 0;
  color: rgba(240, 236, 223, .46);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.location-copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(90px, 8vw, 150px) clamp(46px, 5.5vw, 112px);
  overflow: hidden;
  background: var(--red);
  color: #fff8ed;
}

.location-copy > * {
  position: relative;
  z-index: 1;
}

.location .kicker {
  color: #ffd8cf;
}

.location .kicker span {
  color: #ffd8cf;
}

.location .kicker::before {
  background: #32110d;
}

.location h2 {
  margin: clamp(42px, 5vw, 78px) 0 clamp(48px, 5vw, 76px);
  color: #fff8ed;
  font-size: clamp(3.8rem, 5.7vw, 7rem);
  line-height: 1.02;
}

.location h2 span,
.location h2 em {
  display: block;
  white-space: nowrap;
}

.location h2 em {
  color: #32110d;
}

.location-details {
  display: grid;
  grid-template-columns: minmax(170px, .78fr) 1.22fr;
  gap: clamp(28px, 3.5vw, 60px);
  padding-top: 28px;
  border-top: 1px solid rgba(255, 248, 237, .3);
}

.location address {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.35vw, 1.5rem);
  font-style: normal;
  line-height: 1.45;
}

.location address span {
  white-space: nowrap;
}

.location-details p {
  max-width: 390px;
  margin: 0;
  color: #f5cec6;
  font-size: clamp(.82rem, .9vw, 1rem);
}

.location .button {
  align-self: flex-start;
  margin-top: 42px;
}

.location-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: auto;
  padding-top: clamp(70px, 8vh, 110px);
  color: rgba(255, 248, 237, .65);
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-footer {
  padding: 90px 0 24px;
  background: var(--paper);
  color: var(--ink);
}

.footer-top {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  padding-bottom: 70px;
  border-bottom: 1px solid #c6bead;
}

.footer-top p {
  width: min(100%, 360px);
  margin: 0;
  color: var(--muted-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4vw;
  padding: 70px 0 100px;
}

.footer-grid > div > span {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-grid address,
.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0;
  color: #605d55;
  font-style: normal;
  text-decoration: none;
}

.footer-open {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid #c6bead;
  color: #888278;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-bottom a {
  text-decoration: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

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

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

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

  .button-red:hover {
    background: var(--red-dark);
  }

  .button-light:hover {
    background: #fffaf0;
  }

  .text-link:hover,
  .footer-grid a:hover,
  .footer-bottom a:hover {
    color: var(--red);
  }
}

@media (max-width: 1100px) {
  :root {
    --wrap: min(920px, calc(100vw - 48px));
  }

  .arrival-head,
  .menu-intro,
  .atmosphere-head {
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, .7fr);
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero-copy {
    width: 53vw;
  }

  .hero-visual {
    width: 43vw;
  }

  .menu-card {
    width: 51vw;
  }
}

@media (max-width: 820px) {
  :root {
    --wrap: min(100% - 40px, 720px);
    --header-h: 72px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: var(--header-h);
    padding: 0 20px;
  }

  .site-header.is-scrolled {
    height: 64px;
  }

  .desktop-nav,
  .header-status {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: transparent;
    place-content: center;
  }

  .menu-toggle span {
    display: block;
    width: 23px;
    height: 1px;
    margin: 3px 0;
    background: var(--paper);
    transition: transform 200ms var(--ease-out), opacity 150ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: 250;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 92px 24px 50px;
    background:
      radial-gradient(circle at 82% 15%, rgba(209, 47, 34, .2), transparent 32%),
      rgba(10, 10, 8, .985);
    opacity: 0;
    transform: translateY(-2%);
    transition: opacity 220ms ease, transform 220ms var(--ease-out);
    pointer-events: none;
  }

  .mobile-nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .mobile-nav-kicker {
    margin: 0 0 42px;
    color: var(--red);
    font-size: .62rem;
    letter-spacing: .16em;
    text-transform: uppercase;
  }

  .mobile-nav a {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 9px 0;
    font-family: var(--serif);
    font-size: clamp(2.7rem, 12vw, 5.4rem);
    letter-spacing: -.05em;
    line-height: 1;
    text-decoration: none;
  }

  .mobile-nav a span {
    color: var(--red);
    font-family: var(--sans);
    font-size: .58rem;
    letter-spacing: .12em;
  }

  .hero {
    min-height: 920px;
  }

  .hero-visual {
    z-index: 0;
    width: 100%;
    height: 62%;
  }

  .hero-photo::after {
    background:
      linear-gradient(0deg, var(--black) 0, rgba(10, 10, 8, .25) 52%, rgba(10, 10, 8, .12)),
      linear-gradient(90deg, rgba(10, 10, 8, .28), transparent);
  }

  .hero-photo img {
    object-position: center 52%;
  }

  .hero-copy {
    align-self: end;
    width: auto;
    margin: 0 24px 154px;
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(4.25rem, 16vw, 7.4rem);
  }

  .hero-intro {
    max-width: 520px;
    margin-top: 28px;
  }

  .hero-seal {
    top: auto;
    right: 21px;
    bottom: -48px;
    left: auto;
    width: 96px;
    border-width: 6px;
    transform: rotate(8deg);
  }

  .hero-seal span {
    font-size: 1.55rem;
  }

  .hero-foot {
    grid-template-columns: 1fr auto;
    padding: 0 24px 22px;
  }

  .hero-foot p:nth-child(2) {
    display: none;
  }

  .arrival-head,
  .menu-intro,
  .atmosphere-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .arrival h2,
  .menu-intro h2,
  .atmosphere h2,
  .origin h2 {
    font-size: clamp(3.2rem, 11vw, 5.5rem);
  }

  .arrival-copy,
  .menu-intro-copy {
    margin-top: 34px;
  }

  .arrival-stage {
    display: grid;
    width: var(--wrap);
    height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
    background:
      linear-gradient(180deg, var(--red) 0 24%, var(--black) 24% 100%);
  }

  .arrival-stage::before {
    top: 18px;
    left: 18px;
    font-size: 16rem;
  }

  .arrival-shot {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    transform: none;
  }

  .arrival-shot-room {
    grid-column: 1 / -1;
    aspect-ratio: 1.05;
  }

  .arrival-shot-bonsai,
  .arrival-shot-mark {
    aspect-ratio: .78;
  }

  .arrival-shot-material {
    grid-column: 1 / -1;
    aspect-ratio: 2.1;
  }

  .arrival-stage-copy {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    width: auto;
    margin: 18px 0 0 12%;
    padding: 36px;
  }

  .arrival-open-badge {
    top: min(56vw, 430px);
    right: 3%;
    left: auto;
  }

  .arrival-stage-copy h3 {
    font-size: clamp(2.7rem, 8vw, 4.4rem);
  }

  .arrival-stage-copy p {
    max-width: 560px;
  }

  .arrival-triad {
    grid-template-columns: repeat(3, 1fr);
    grid-column: 1 / -1;
  }

  .arrival {
    padding-bottom: 0;
  }

  .arrival-stage::after {
    display: none;
  }

  .menu-intro {
    min-height: 0;
    padding-bottom: 70px;
  }

  .menu-pin {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .menu-track {
    display: grid;
    width: var(--wrap);
    height: auto;
    gap: 26px;
    margin-inline: auto;
    padding: 0 0 90px;
    transform: none !important;
  }

  .menu-card,
  .menu-card-cover,
  .menu-card-end {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: .84;
  }

  .menu-card:nth-child(3),
  .menu-card:nth-child(5) {
    margin-left: 10%;
    width: 90%;
  }

  .menu-card-end {
    aspect-ratio: 1;
  }

  .manifesto h2 {
    line-height: .86;
  }

  .manifesto h2 span:nth-child(n) {
    transform: none;
  }

  .manifesto-bottom {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .atmosphere-head > div {
    grid-column: auto;
  }

  .atmosphere-intro {
    max-width: 560px;
    margin-top: 32px;
  }

  .atmosphere-stage {
    display: grid;
    width: var(--wrap);
    grid-template-columns: 1.25fr .75fr;
    height: auto;
    gap: 16px;
    padding: 18px;
  }

  .atmosphere-stage::before {
    top: 24%;
    right: -32%;
    width: 90vw;
  }

  .atmo-photo {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    clip-path: none;
    transform: none;
  }

  .atmo-photo img {
    height: 100%;
    transform: none !important;
  }

  .atmo-photo-room {
    grid-row: 1 / span 2;
    aspect-ratio: .77;
  }

  .atmo-photo-moss,
  .atmo-photo-table {
    aspect-ratio: .8;
  }

  .atmo-statement {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
    width: auto;
    margin: 20px 0 0 8%;
    padding: 42px;
  }

  .atmo-seal {
    top: min(70vw, 540px);
    right: 4%;
  }

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

  .origin-image {
    min-height: 58svh;
  }

  .origin-image::after {
    background: linear-gradient(0deg, var(--black-soft), transparent 55%);
  }

  .origin-copy {
    max-width: none;
    padding: 80px 24px 110px;
  }

  .location {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 72svh;
  }

  .location-copy {
    min-height: 760px;
    padding: 90px 24px 40px;
  }

  .location h2 {
    font-size: clamp(4.3rem, 13vw, 7.4rem);
  }

  .location-map-note {
    left: 24px;
  }

  .location-meta {
    padding-top: 84px;
  }

  .footer-top {
    justify-content: flex-start;
  }

  .footer-top p {
    margin-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 52px 30px;
  }
}

@media (max-width: 520px) {
  :root {
    --wrap: calc(100% - 32px);
  }

  .wordmark {
    font-size: 1.16rem;
  }

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

  .hero {
    min-height: 860px;
  }

  .hero-visual {
    height: 57%;
  }

  .hero-copy {
    margin-inline: 16px;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-foot {
    padding-inline: 16px;
  }

  .hero-foot a span {
    display: none;
  }

  .kicker {
    font-size: .57rem;
  }

  .arrival h2,
  .menu-intro h2,
  .atmosphere h2,
  .origin h2 {
    font-size: clamp(2.9rem, 13.8vw, 4.7rem);
  }

  .arrival-stage {
    width: 100%;
    gap: 10px;
    padding: 12px;
  }

  .arrival-shot-room {
    aspect-ratio: .86;
  }

  .arrival-shot-bonsai,
  .arrival-shot-mark {
    aspect-ratio: .72;
  }

  .arrival-shot-material {
    aspect-ratio: 1.7;
  }

  .arrival-shot figcaption {
    padding: 28px 10px 9px;
    font-size: .49rem;
  }

  .arrival-shot-room figcaption span:first-child {
    display: none;
  }

  .arrival-open-badge {
    top: 88vw;
    right: 1px;
    width: 104px;
    border-width: 6px;
  }

  .arrival-stage-copy {
    margin: 10px 0 0;
    padding: 32px 22px;
  }

  .arrival-stage-copy h3 {
    font-size: 2.9rem;
  }

  .arrival-triad {
    grid-template-columns: 1fr;
  }

  .ticker-track {
    font-size: .6rem;
    letter-spacing: .26em;
  }

  .ticker-group {
    padding: 13px 0;
  }

  .menu-card:nth-child(3),
  .menu-card:nth-child(5) {
    width: 94%;
    margin-left: 6%;
  }

  .menu-card-copy {
    padding-inline: 18px;
  }

  .menu-card-end {
    padding: 30px 20px;
  }

  .manifesto {
    padding-inline: 16px;
  }

  .manifesto h2 {
    font-size: clamp(3.25rem, 15.6vw, 4.8rem);
    line-height: .92;
    text-align: left;
  }

  .atmosphere-stage {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding: 10px;
  }

  .atmo-photo-room {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: .9;
  }

  .atmo-seal {
    top: 90vw;
    right: 1px;
    width: 102px;
    border-width: 6px;
  }

  .atmo-statement {
    margin: 12px 0 0;
    padding: 34px 22px;
  }

  .atmo-statement p {
    font-size: 2.75rem;
  }

  .origin-image {
    min-height: 45svh;
  }

  .origin-copy {
    padding-inline: 16px;
  }

  .origin h2 {
    font-size: clamp(2.55rem, 11.8vw, 4rem);
  }

  .origin h2 em,
  .origin h2 em span {
    display: block;
  }

  .origin h2 em span {
    white-space: nowrap;
  }

  .origin-title-tail::before {
    content: none;
  }

  .origin .section-no {
    margin-bottom: 40px;
  }

  .location {
    min-height: 0;
  }

  .location-map {
    min-height: 600px;
  }

  .location h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .location-copy {
    min-height: 720px;
    padding: 78px 16px 34px;
  }

  .location-details {
    grid-template-columns: 1fr;
  }

  .location-destination {
    top: calc(53% - 90px);
    left: calc(43% - 93px);
    width: 126px;
  }

  .location-station {
    left: 40%;
  }

  .location-map-note {
    bottom: 28px;
    left: 16px;
  }

  .location-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-top: 70px;
  }

  .site-footer {
    padding-top: 70px;
  }

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

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

@media (min-width: 2100px) {
  :root {
    --wrap: min(1880px, calc(100vw - 12vw));
  }

  body {
    font-size: 19px;
  }

  .site-header {
    padding-inline: 6vw;
  }

  .hero-copy {
    width: min(960px, 49vw);
    margin-left: 6vw;
  }

  .hero-visual {
    width: 45vw;
  }

  .hero-foot {
    padding-inline: 6vw;
  }

  .hero h1 {
    font-size: clamp(10rem, 8.5vw, 13rem);
  }

  .menu-card {
    width: min(35vw, 820px);
  }

  .menu-card-cover,
  .menu-card-end {
    width: min(39vw, 900px);
  }

  .location h2 {
    font-size: clamp(8rem, 5.5vw, 13rem);
  }

  .location address {
    font-size: 1.8rem;
  }

  .location-details p {
    max-width: 520px;
    font-size: 1.15rem;
  }

  .location-destination {
    width: 220px;
  }

  .location-destination span {
    font-size: 3.4rem;
  }

  .location-destination p {
    font-size: 1.75rem;
  }

  .location-station span {
    width: 78px;
    font-size: 1.3rem;
  }

  .location-station p {
    font-size: .82rem;
  }
}

@media (min-width: 821px) {
  .atmosphere h2 em {
    white-space: nowrap;
  }
}

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

  .ticker-track {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-photo img,
  .atmo-photo img,
  .menu-track {
    transform: none !important;
  }

  .page-progress {
    display: none;
  }
}

/* Legal pages */
.legal-shell {
  background: var(--paper);
  color: var(--ink);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--wrap);
  height: 82px;
  margin: auto;
  border-bottom: 1px solid #d2c7b5;
}

.legal-header .brand {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  text-decoration: none;
}

.legal-header > a:last-child {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-main {
  width: min(800px, calc(100% - 40px));
  min-height: 70svh;
  margin: auto;
  padding: 100px 0 140px;
}

.legal-main .eyebrow {
  color: var(--red);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-main h1 {
  margin: 0 0 50px;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 470;
  letter-spacing: -.06em;
  line-height: .9;
}

.legal-main h2 {
  margin: 50px 0 12px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 550;
}

.legal-main p,
.legal-main li {
  color: #4e4b44;
}

.legal-main a {
  color: var(--red);
}

.demo-notice {
  margin: 0 0 45px;
  padding: 18px 20px;
  border-left: 3px solid var(--red);
  background: #e4ddcf;
}

.legal-footer {
  padding: 30px 0;
  background: var(--black);
  color: #aaa79d;
}

.legal-footer > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.legal-footer a {
  text-decoration: none;
}

@media (max-width: 600px) {
  .legal-main {
    padding-top: 70px;
  }

  .legal-footer > div {
    flex-direction: column;
  }
}
