:root {
  color-scheme: light;
  --paper: #fffafb;
  --paper-warm: #fffdfb;
  --blush: #f7eaed;
  --blush-deep: #eed9de;
  --rose: #b9828d;
  --rose-dark: #7a5660;
  --ink: #5b464c;
  --muted: #8c767c;
  --line: rgba(122, 86, 96, 0.2);
  --white: #ffffff;
  --serif: "Bodoni 72", Didot, "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Avenir Next", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --page: min(1180px, calc(100vw - 80px));
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.035em;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--rose-dark);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  transform: translateY(-150%);
  color: var(--white);
  background: var(--rose-dark);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5vw;
  background: rgba(255, 250, 251, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: height 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  height: 76px;
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(122, 86, 96, 0.05);
}

.brand,
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--rose-dark);
  text-decoration: none;
  line-height: 1;
}

.brand-main {
  font-family: var(--serif);
  font-size: 23px;
  letter-spacing: 0.15em;
}

.brand-sub {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 9px;
  font-style: italic;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.8vw, 48px);
}

.site-nav a {
  position: relative;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.site-nav > a:not(.nav-reserve)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--rose);
  transition: right 0.25s ease;
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  right: 0;
}

.nav-reserve {
  display: grid;
  min-width: 122px;
  min-height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--rose-dark);
  border: 1px solid var(--rose-dark);
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-reserve:hover {
  color: var(--rose-dark);
  background: transparent;
}

.nav-toggle {
  display: none;
}

.section {
  width: var(--page);
  margin-inline: auto;
  padding-block: clamp(100px, 11vw, 170px);
}

.section-blush {
  position: relative;
  width: 100%;
  padding-inline: max(40px, calc((100vw - 1180px) / 2));
  background: var(--blush);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  line-height: 1.4;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  font-size: clamp(42px, 5vw, 75px);
  letter-spacing: 0.035em;
  line-height: 1.35;
}

h2 {
  margin-bottom: 30px;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.section-heading {
  max-width: 640px;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 590px;
  margin: 0 auto;
  color: var(--muted);
}

.button-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 42px;
}

.button {
  display: inline-grid;
  min-width: 190px;
  min-height: 56px;
  padding: 12px 24px;
  place-items: center;
  border: 1px solid var(--rose-dark);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-align: center;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--rose-dark);
}

.button-primary:hover {
  color: var(--rose-dark);
  background: transparent;
}

.button-outline {
  color: var(--rose-dark);
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
  background: var(--rose-dark);
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding-block: 4px;
  border-bottom: 1px solid var(--rose);
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(400px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
  padding: calc(var(--header-height) + 60px) 4.5vw 70px 8vw;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 19%;
  left: -7vw;
  width: 20vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 217, 222, 0.8), transparent 68%);
  filter: blur(4px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 3vw;
}

.hero-copy h1 {
  margin-bottom: 30px;
  font-size: clamp(40px, 3.9vw, 60px);
  letter-spacing: 0.02em;
}

.hero-lead {
  color: var(--muted);
  font-size: 14px;
  line-height: 2.15;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 600px;
  max-height: 820px;
  margin-top: 2vh;
  overflow: hidden;
  border-radius: 240px 240px 12px 12px;
  box-shadow: 0 30px 80px rgba(122, 86, 96, 0.11);
}

.hero-visual::after,
.oshi-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 250, 251, 0.02), rgba(122, 86, 96, 0.08));
  pointer-events: none;
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
}

.hero-caption {
  position: absolute;
  right: 24px;
  bottom: 18px;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.16em;
  text-shadow: 0 1px 12px rgba(91, 70, 76, 0.25);
}

.hero-scroll {
  position: absolute;
  left: 4.5vw;
  bottom: 32px;
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateY(100%);
  transform-origin: left bottom;
}

.hero-scroll span {
  width: 42px;
  height: 1px;
  background: var(--rose);
}

.concept {
  display: grid;
  grid-template-columns: 0.8fr 0.75fr;
  column-gap: 12vw;
}

.concept-copy {
  padding-top: 65px;
  color: var(--muted);
}

.concept-copy p + p {
  margin-top: 26px;
}

.concept-images {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.38fr 0.72fr;
  gap: 7vw;
  align-items: end;
  margin-top: 90px;
}

.image-frame {
  position: relative;
  margin: 0;
}

.image-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--blush-deep);
}

.image-frame-tall::before {
  inset: 40px -30px -30px 50%;
}

.image-frame-small {
  margin-bottom: 6vw;
}

.image-frame-small::before {
  inset: -28px 45% 32% -28px;
}

.image-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu .section-heading {
  margin-bottom: 74px;
}

.menu-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.1fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

.menu-feature-image {
  position: sticky;
  top: 110px;
  overflow: hidden;
  border-radius: 50% 50% 6px 6px;
}

.menu-feature-image img {
  aspect-ratio: 0.82;
  object-fit: cover;
}

.menu-list {
  border-top: 1px solid var(--line);
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item h3 {
  margin-bottom: 8px;
  font-size: 24px;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.menu-item h3 span {
  display: block;
  margin-top: 5px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.menu-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.menu-item .menu-kicker {
  margin-bottom: 6px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.menu-note {
  margin-top: 8px;
  color: var(--rose-dark) !important;
  font-size: 10px !important;
}

.price {
  color: var(--rose-dark) !important;
  font-family: var(--serif);
  font-size: 20px !important;
  white-space: nowrap;
}

.price small {
  margin-left: 6px;
  font-family: var(--sans);
  font-size: 8px;
}

.menu-source-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.space .section-heading {
  margin-bottom: 70px;
}

.space-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.space-card {
  margin: 0;
}

.space-card:nth-child(3) {
  margin-top: -11vw;
}

.space-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.space-card-portrait img {
  aspect-ratio: 3 / 4;
}

.space-card figcaption {
  margin-top: 12px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.17em;
}

.oshi-teaser {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  padding: 0;
  background: var(--paper-warm);
}

.oshi-teaser-image {
  min-height: 660px;
  overflow: hidden;
}

.oshi-teaser-image img {
  height: 100%;
  object-fit: cover;
}

.oshi-teaser-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 8vw;
  background:
    radial-gradient(circle at 100% 5%, rgba(238, 217, 222, 0.75), transparent 34%),
    var(--paper-warm);
}

.oshi-teaser-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 38px;
  color: var(--muted);
}

.access {
  display: grid;
  grid-template-columns: 0.85fr 1.1fr;
  gap: clamp(60px, 10vw, 150px);
}

.access-intro > p:not(.eyebrow) {
  max-width: 420px;
  margin-bottom: 36px;
  color: var(--muted);
}

.access-details dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.access-details dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.access-details dt {
  color: var(--rose);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.access-details dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}

.access-details dd small {
  color: var(--muted);
  font-size: 10px;
}

.access-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 34px;
}

.site-footer {
  min-height: 290px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding: 70px 4.5vw;
  color: var(--white);
  background: var(--rose-dark);
}

.site-footer .footer-brand {
  justify-self: start;
  color: var(--white);
}

.site-footer nav {
  display: flex;
  gap: 30px;
}

.site-footer nav a {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.site-footer > p {
  justify-self: end;
  margin: 0;
  font-family: var(--serif);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.mobile-reserve {
  display: none;
}

/* Oshikatsu */
.oshi-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 6vw;
  align-items: center;
  padding: calc(var(--header-height) + 70px) 8vw 90px;
  background:
    radial-gradient(circle at 10% 70%, rgba(238, 217, 222, 0.72), transparent 25%),
    var(--paper);
}

.oshi-hero-copy {
  position: relative;
  z-index: 2;
}

.oshi-hero-copy h1 {
  font-size: clamp(40px, 4.3vw, 64px);
  letter-spacing: 0.02em;
}

.oshi-hero-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 38px;
  color: var(--muted);
}

.oshi-hero-image {
  position: relative;
  height: min(72vh, 760px);
  overflow: hidden;
  border-radius: 50% 50% 8px 8px;
  box-shadow: 0 30px 80px rgba(122, 86, 96, 0.12);
}

.oshi-hero-image img {
  height: 100%;
  object-fit: cover;
}

.handwritten {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 1;
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  letter-spacing: 0.08em;
}

.oshi-intro .section-heading {
  max-width: 720px;
}

.color-dots {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  margin-top: 60px;
}

.color-dots span {
  width: clamp(28px, 4vw, 50px);
  aspect-ratio: 1;
  border: 7px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 5px 18px rgba(122, 86, 96, 0.11);
}

.dot-red { background: #cf7a7a; }
.dot-pink { background: #e8a7bc; }
.dot-orange { background: #eab38c; }
.dot-yellow { background: #ead68d; }
.dot-green { background: #aac5af; }
.dot-blue { background: #9bbbd2; }
.dot-purple { background: #b7a0ca; }

.oshi-style .section-heading {
  margin-bottom: 90px;
}

.style-cards {
  display: grid;
  gap: clamp(90px, 12vw, 160px);
}

.style-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
}

.style-card-reverse .style-card-image {
  grid-column: 2;
  grid-row: 1;
}

.style-card-reverse .style-card-copy {
  grid-column: 1;
  grid-row: 1;
}

.style-card-image {
  position: relative;
}

.style-card-image::before {
  content: "";
  position: absolute;
  inset: 25px -25px -25px 25px;
  z-index: 0;
  border: 1px solid rgba(185, 130, 141, 0.35);
}

.style-card-reverse .style-card-image::before {
  inset: 25px 25px -25px -25px;
}

.style-card-image img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.style-card-image > span {
  position: absolute;
  right: 18px;
  bottom: -53px;
  color: rgba(185, 130, 141, 0.36);
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
}

.style-card-reverse .style-card-image > span {
  right: auto;
  left: 18px;
}

.style-card-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(29px, 3vw, 42px);
}

.style-card-copy > p:not(.eyebrow):not(.menu-note) {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
}

.photo-spots .section-heading {
  margin-bottom: 70px;
}

.photo-spot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
}

.photo-spot-grid figure {
  margin: 0;
}

.photo-spot-grid figure:nth-child(2) {
  margin-top: 65px;
}

.photo-spot-grid img {
  aspect-ratio: 0.8;
  object-fit: cover;
}

.photo-spot-grid figcaption {
  margin-top: 14px;
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.1em;
}

.photo-spot-grid figcaption span {
  margin-right: 10px;
  color: var(--rose);
  font-size: 9px;
}

.oshi-menu {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  background: var(--blush);
}

.oshi-menu-image {
  min-height: 660px;
}

.oshi-menu-image img {
  height: 100%;
  object-fit: cover;
}

.oshi-menu-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 8vw;
}

.oshi-menu-copy > p:not(.eyebrow) {
  max-width: 490px;
  color: var(--muted);
}

.mini-menu {
  width: 100%;
  max-width: 500px;
  margin: 28px 0 34px;
  border-top: 1px solid var(--line);
}

.mini-menu p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 14px;
}

.mini-menu strong {
  font-weight: 400;
}

.reserve-banner {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 100px 30px;
  text-align: center;
  background:
    linear-gradient(rgba(255, 250, 251, 0.82), rgba(255, 250, 251, 0.82)),
    url("/images/hero-interior.jpg") center / cover;
}

.reserve-banner > div {
  max-width: 660px;
}

.reserve-banner p:not(.eyebrow) {
  margin-bottom: 36px;
  color: var(--muted);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.not-found {
  min-height: 100svh;
  display: grid;
  place-content: center;
  justify-items: start;
  padding: 40px;
  background:
    radial-gradient(circle at 75% 25%, rgba(238, 217, 222, 0.9), transparent 28%),
    var(--paper);
}

.not-found > p:not(.eyebrow) {
  max-width: 480px;
  margin-bottom: 34px;
  color: var(--muted);
}

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

  .site-header {
    padding-inline: 24px;
    backdrop-filter: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    padding: 0;
    border: 0;
    color: var(--rose-dark);
    background: transparent;
  }

  .nav-toggle > span:not(.sr-only) {
    width: 26px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    visibility: hidden;
    opacity: 0;
    background:
      radial-gradient(circle at 85% 10%, rgba(238, 217, 222, 0.9), transparent 31%),
      var(--paper);
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

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

  .site-nav a {
    font-size: 22px;
  }

  .site-nav .nav-reserve {
    min-width: 190px;
    margin-top: 10px;
    color: var(--white);
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: calc(var(--header-height) + 70px) 24px 90px;
  }

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

  .hero-visual {
    width: min(100%, 760px);
    min-height: 550px;
    margin: 0 0 0 auto;
    border-radius: 190px 0 0 0;
  }

  .hero-scroll {
    display: none;
  }

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

  .concept-copy {
    max-width: 600px;
    padding-top: 10px;
  }

  .concept-images {
    gap: 32px;
    margin-top: 60px;
  }

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

  .menu-feature-image {
    position: relative;
    top: auto;
    width: min(78%, 540px);
    margin-inline: auto;
  }

  .oshi-teaser,
  .oshi-menu {
    grid-template-columns: 1fr;
  }

  .oshi-teaser-image,
  .oshi-menu-image {
    min-height: 500px;
  }

  .oshi-teaser-copy,
  .oshi-menu-copy {
    padding: 90px max(24px, calc((100vw - 760px) / 2));
  }

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

  .site-footer {
    min-height: 360px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer .footer-brand,
  .site-footer > p {
    justify-self: center;
  }

  .oshi-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 55px;
    padding: calc(var(--header-height) + 80px) 24px 90px;
  }

  .oshi-hero-copy,
  .oshi-hero-image {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .oshi-hero-image {
    height: 580px;
  }

  .style-card {
    gap: 55px;
  }
}

@media (max-width: 680px) {
  :root {
    --page: calc(100% - 40px);
    --header-height: 70px;
  }

  body {
    padding-bottom: 58px;
    font-size: 14px;
    line-height: 1.85;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-height);
    padding-inline: 20px;
  }

  .brand-main {
    font-size: 19px;
  }

  .brand-sub {
    margin-top: 6px;
    font-size: 8px;
  }

  .section {
    padding-block: 90px;
  }

  .section-blush {
    padding-inline: 20px;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 9px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.42;
  }

  h2 {
    margin-bottom: 24px;
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.5;
  }

  .button-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    margin-top: 34px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero {
    gap: 42px;
    padding: calc(var(--header-height) + 54px) 0 75px 20px;
  }

  .hero-copy {
    width: auto;
    margin-right: 20px;
  }

  .hero-copy h1 {
    margin-bottom: 23px;
  }

  .hero-visual {
    min-height: 440px;
    border-radius: 130px 0 0 0;
  }

  .hero-visual img {
    object-position: 58% center;
  }

  .hero-caption {
    right: 15px;
    bottom: 12px;
    font-size: 8px;
  }

  .concept-copy {
    padding-top: 0;
  }

  .concept-images {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 48px;
  }

  .image-frame-tall::before {
    inset: 24px -12px -12px 45%;
  }

  .image-frame-small {
    width: 78%;
    margin: 0 0 0 auto;
  }

  .image-frame-small::before {
    inset: -14px 50% 30% -14px;
  }

  .menu .section-heading {
    margin-bottom: 48px;
  }

  .menu-feature {
    gap: 55px;
  }

  .menu-feature-image {
    width: 92%;
  }

  .menu-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 25px 0;
  }

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

  .price {
    font-size: 19px !important;
  }

  .menu-source-note {
    text-align: left;
  }

  .space .section-heading {
    margin-bottom: 48px;
  }

  .space-grid {
    grid-template-columns: 1fr 0.78fr;
    gap: 17px;
  }

  .space-card:nth-child(3) {
    margin-top: -38px;
  }

  .space-card figcaption {
    font-size: 8px;
  }

  .oshi-teaser-image,
  .oshi-menu-image {
    min-height: 390px;
  }

  .oshi-teaser-copy,
  .oshi-menu-copy {
    padding: 80px 20px;
  }

  .access {
    gap: 60px;
  }

  .access-details dl > div {
    grid-template-columns: 78px 1fr;
    gap: 15px;
  }

  .site-footer {
    min-height: 400px;
    padding: 70px 20px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 24px;
  }

  .mobile-reserve {
    position: fixed;
    inset: auto 0 0;
    z-index: 99;
    min-height: 58px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--rose-dark);
    font-family: var(--serif);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-decoration: none;
  }

  .oshi-hero {
    gap: 46px;
    padding: calc(var(--header-height) + 55px) 20px 80px;
  }

  .oshi-hero-image {
    height: 450px;
    border-radius: 130px 130px 5px 5px;
  }

  .handwritten {
    right: 16px;
    bottom: 14px;
    font-size: 14px;
  }

  .color-dots {
    gap: 8px;
    margin-top: 42px;
  }

  .color-dots span {
    width: 34px;
    border-width: 5px;
  }

  .oshi-style .section-heading {
    margin-bottom: 65px;
  }

  .style-cards {
    gap: 100px;
  }

  .style-card,
  .style-card-reverse {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .style-card-reverse .style-card-image,
  .style-card-reverse .style-card-copy {
    grid-column: 1;
  }

  .style-card-reverse .style-card-image {
    grid-row: 1;
  }

  .style-card-reverse .style-card-copy {
    grid-row: 2;
  }

  .style-card-image::before {
    inset: 14px -10px -14px 14px;
  }

  .style-card-reverse .style-card-image::before {
    inset: 14px 14px -14px -10px;
  }

  .style-card-image > span {
    right: 10px;
    bottom: -36px;
    font-size: 58px;
  }

  .photo-spots .section-heading {
    margin-bottom: 48px;
  }

  .photo-spot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .photo-spot-grid figure:nth-child(2) {
    margin-top: 42px;
  }

  .photo-spot-grid figure:nth-child(3) {
    grid-column: 1 / -1;
    width: calc(50% - 8px);
    margin-top: -25px;
  }

  .reserve-banner {
    min-height: 540px;
    padding-inline: 20px;
  }
}

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

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