@font-face {
  font-family: "Shippori";
  src: url("assets/ShipporiMincho-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "NotoJP";
  src: url("assets/NotoSansJP.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #17130d;
  --soft-ink: #3e372d;
  --muted: #746b5c;
  --paper: #f7f0e3;
  --paper-2: #fffaf1;
  --charcoal: #12100b;
  --green: #1f3329;
  --gold: #b78a3f;
  --gold-2: #e2c779;
  --red: #8b241d;
  --line: rgba(23, 19, 13, 0.14);
  --white-line: rgba(255, 255, 255, 0.18);
  --shadow: 0 26px 74px rgba(23, 19, 13, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(31, 51, 41, 0.08), transparent 520px),
    var(--paper);
  color: var(--ink);
  font-family: "NotoJP", system-ui, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: #fff;
  transition:
    padding 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease,
    color 240ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  padding-block: 12px;
  background: rgba(247, 240, 227, 0.92);
  color: var(--ink);
  box-shadow: 0 12px 42px rgba(23, 19, 13, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 196px;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Shippori", "Yu Mincho", serif;
  font-size: 19px;
}

.brand-copy {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .site-nav,
body.nav-open .site-nav {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.site-nav a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled .site-nav a:hover,
body.nav-open .site-nav a:hover {
  background: rgba(139, 36, 29, 0.08);
}

.site-nav .nav-cta {
  background: var(--red);
  color: #fff;
}

.nav-toggle {
  display: none;
}

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

.hero picture,
.hero picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
  transform: scale(1.04);
  animation: slowPush 9000ms ease forwards;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 78% 22%, rgba(183, 138, 63, 0.23), transparent 24%),
    linear-gradient(90deg, rgba(18, 16, 11, 0.9), rgba(18, 16, 11, 0.58) 48%, rgba(18, 16, 11, 0.14)),
    linear-gradient(0deg, rgba(18, 16, 11, 0.76), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 132px 0 210px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

.hero h1,
.section h2,
.space-copy h2,
.stay-copy h2,
.access h2 {
  margin: 0;
  font-family: "Shippori", "Yu Mincho", serif;
  font-weight: 400;
  line-height: 1.13;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 7.8vw, 112px);
}

.hero-lead {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 2.05;
}

.hero-actions {
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.cuisine-feature:hover,
.cuisine-cards article:hover,
.occasion-grid article:hover {
  transform: translateY(-3px);
}

.button.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 16px 34px rgba(139, 36, 29, 0.3);
}

.button.secondary {
  margin-left: 10px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: clamp(24px, 5vw, 60px);
  z-index: 2;
  display: grid;
  width: min(620px, calc(100% - 40px));
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(18, 16, 11, 0.46);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  min-height: 122px;
  padding: 19px;
  border-right: 1px solid var(--white-line);
}

.hero-panel div:last-child {
  border-right: 0;
}

.hero-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 900;
}

.hero-panel strong {
  display: block;
  margin-top: 26px;
  font-family: "Shippori", "Yu Mincho", serif;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 400;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 136px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 86px);
}

.section h2,
.space-copy h2,
.stay-copy h2,
.access h2 {
  font-size: clamp(34px, 5.4vw, 72px);
}

.intro-copy p,
.section-head p,
.space-copy p,
.stay-copy p,
.access p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 2.08;
}

.intro-copy p + p {
  margin-top: 18px;
}

.heritage-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
  box-shadow: var(--shadow);
}

.heritage-band div {
  min-height: 230px;
  padding: clamp(24px, 3vw, 36px);
  border-right: 1px solid var(--white-line);
}

.heritage-band div:last-child {
  border-right: 0;
}

.heritage-band span {
  color: var(--gold-2);
  font-weight: 900;
}

.heritage-band strong {
  display: block;
  margin-top: 56px;
  font-family: "Shippori", "Yu Mincho", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
}

.heritage-band p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
}

.section-head {
  max-width: 850px;
  margin-bottom: 36px;
}

.section-head.wide {
  max-width: 980px;
}

.section-head p {
  margin-top: 18px;
}

.cuisine-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 18px;
}

.cuisine-feature,
.cuisine-cards article,
.occasion-grid article,
.access-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-2);
  box-shadow: 0 18px 48px rgba(23, 19, 13, 0.08);
}

.cuisine-feature,
.cuisine-cards article,
.occasion-grid article {
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.cuisine-feature:hover,
.cuisine-cards article:hover,
.occasion-grid article:hover {
  box-shadow: var(--shadow);
}

.cuisine-feature img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}

.cuisine-feature div,
.cuisine-cards article div {
  padding: 28px;
}

.cuisine-feature p:first-child,
.cuisine-cards span,
.occasion-grid span,
.reserve-box span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cuisine-feature h3,
.cuisine-cards h3,
.occasion-grid h3 {
  margin: 10px 0 0;
  font-family: "Shippori", "Yu Mincho", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 400;
}

.cuisine-feature p:last-child,
.cuisine-cards p,
.occasion-grid p {
  margin: 14px 0 0;
  color: var(--soft-ink);
  line-height: 1.92;
}

.cuisine-cards {
  display: grid;
  gap: 18px;
}

.cuisine-cards img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.cuisine-cards article {
  display: grid;
  align-content: start;
}

.cuisine-cards article span,
.cuisine-cards article h3,
.cuisine-cards article p {
  margin-inline: 24px;
}

.cuisine-cards article span {
  margin-top: 24px;
}

.cuisine-cards article p {
  margin-bottom: 24px;
}

.space {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.space-copy dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 30px 0 0;
}

.space-copy dl div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.72);
}

.space-copy dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.space-copy dd {
  margin: 8px 0 0;
  font-family: "Shippori", "Yu Mincho", serif;
  font-size: 24px;
}

.space-gallery {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 12px;
}

.space-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 19, 13, 0.12);
}

.space-gallery .large {
  grid-row: span 2;
  height: 512px;
}

.stay-section {
  width: 100%;
  background: var(--green);
  color: #fff;
}

.stay-inner {
  display: grid;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(78px, 10vw, 136px) 0;
}

.stay-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stay-media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.stay-media img:last-child {
  margin-top: 56px;
}

.stay-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.stay-copy ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
}

.stay-copy li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.occasion-grid article {
  min-height: 270px;
  padding: clamp(24px, 3vw, 34px);
}

.access {
  padding-top: 0;
}

.access-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  padding: clamp(24px, 4vw, 44px);
}

.shop-info {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
}

.shop-info div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.shop-info dt {
  color: var(--muted);
  font-weight: 900;
}

.shop-info dd {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.8;
}

.shop-info a {
  color: var(--red);
  font-weight: 900;
}

.reserve-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
}

.reserve-box strong {
  display: block;
  margin-top: 14px;
  font-family: "Shippori", "Yu Mincho", serif;
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.28;
}

.reserve-box p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
}

.reserve-box .button {
  align-self: flex-start;
  margin-top: 26px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(20px, 5vw, 70px) 96px;
  background: var(--charcoal);
  color: #fff;
}

.site-footer strong {
  font-family: "Shippori", "Yu Mincho", serif;
  font-size: 24px;
  font-weight: 400;
}

.site-footer p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 25;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(18, 16, 11, 0.92);
  box-shadow: 0 18px 44px rgba(18, 16, 11, 0.24);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  display: grid;
  min-height: 52px;
  flex: 1;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.mobile-cta a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 540ms ease,
    transform 540ms ease;
}

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

@keyframes slowPush {
  to {
    transform: scale(1);
  }
}

@media (max-width: 1060px) {
  .site-nav a {
    padding-inline: 10px;
  }

  .cuisine-layout,
  .space,
  .stay-inner,
  .access-panel {
    grid-template-columns: 1fr;
  }

  .space-copy {
    max-width: 760px;
  }

  .stay-media img {
    height: 360px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
    font-size: 17px;
  }

  .brand-copy {
    font-size: 11px;
  }

  .nav-toggle {
    position: relative;
    z-index: 33;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 2px 0;
    background: currentColor;
    transition: transform 180ms ease;
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 31;
    display: none;
    align-content: center;
    justify-items: stretch;
    padding: 96px 22px 28px;
    border: 0;
    border-radius: 0;
    background: rgba(247, 240, 227, 0.97);
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 58px;
    justify-content: flex-start;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    font-size: 20px;
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 20px;
    border-radius: 999px;
    color: #fff;
  }

  .hero {
    min-height: 96svh;
  }

  .hero-content {
    min-height: 96svh;
    width: min(100% - 34px, 560px);
    padding: 108px 0 290px;
  }

  .hero h1 {
    font-size: clamp(43px, 14vw, 68px);
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.9;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .button.secondary {
    margin-left: 0;
  }

  .hero-panel {
    left: 17px;
    right: 17px;
    bottom: 84px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    border-right: 0;
    border-bottom: 1px solid var(--white-line);
    padding: 14px 16px;
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .hero-panel strong {
    margin-top: 0;
    font-size: 20px;
  }

  .section,
  .stay-inner,
  .heritage-band {
    width: min(100% - 34px, 640px);
  }

  .section {
    padding: 76px 0;
  }

  .intro-grid,
  .heritage-band,
  .occasion-grid {
    grid-template-columns: 1fr;
  }

  .heritage-band div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--white-line);
  }

  .heritage-band div:last-child {
    border-bottom: 0;
  }

  .heritage-band strong {
    margin-top: 34px;
  }

  .section h2,
  .space-copy h2,
  .stay-copy h2,
  .access h2 {
    font-size: clamp(32px, 10.5vw, 50px);
  }

  .cuisine-feature img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .cuisine-cards img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .space-copy dl {
    grid-template-columns: 1fr;
  }

  .space-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .space-gallery .large {
    grid-column: span 2;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .space-gallery img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .stay-media {
    grid-template-columns: 1fr;
  }

  .stay-media img,
  .stay-media img:last-child {
    height: auto;
    margin-top: 0;
    aspect-ratio: 4 / 3;
  }

  .shop-info div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    display: grid;
    padding: 34px 20px 88px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
