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

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

:root {
  color-scheme: light;
  --ink: #1f1712;
  --muted: #6f6258;
  --paper: #fbf7ef;
  --paper-2: #efe6d6;
  --lacquer: #8d1f16;
  --gold: #bc8a43;
  --moss: #445343;
  --line: rgba(31, 23, 18, 0.14);
  --shadow: 0 24px 70px rgba(31, 23, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "NotoJP", system-ui, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(188, 138, 67, 0.18), transparent 22%),
    radial-gradient(circle at 74% 18%, rgba(68, 83, 67, 0.12), transparent 26%),
    repeating-linear-gradient(90deg, rgba(31, 23, 18, 0.04) 0 1px, transparent 1px 5px);
  mix-blend-mode: multiply;
}

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

.site-header.is-scrolled,
body.menu-open .site-header {
  padding-block: 12px;
  background: rgba(251, 247, 239, 0.9);
  color: var(--ink);
  box-shadow: 0 10px 36px rgba(31, 23, 18, 0.08);
  backdrop-filter: blur(18px);
}

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

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

.brand-copy {
  font-size: 12px;
  line-height: 1.45;
}

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

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.site-header.is-scrolled .site-nav a:hover,
body.menu-open .site-nav a:hover {
  background: rgba(141, 31, 22, 0.08);
}

.nav-reserve {
  background: var(--lacquer);
  color: #fff;
}

.menu-toggle {
  display: none;
}

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

.hero-slider,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1200ms ease, transform 6000ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 12, 9, 0.78), rgba(17, 12, 9, 0.44) 44%, rgba(17, 12, 9, 0.12)),
    linear-gradient(0deg, rgba(17, 12, 9, 0.56), transparent 48%);
}

.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: 130px 0 210px;
}

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

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

.hero h1 {
  max-width: 780px;
  font-size: clamp(54px, 8vw, 118px);
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--lacquer);
  color: #fff;
  box-shadow: 0 14px 34px rgba(141, 31, 22, 0.32);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.hero-info {
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  bottom: 92px;
  left: clamp(18px, 4vw, 52px);
  z-index: 3;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
}

.hero-info dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
}

.hero-info div {
  min-width: 0;
  padding-inline: 18px;
}

.hero-info div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-info dt {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-info dd {
  margin: 7px 0 0;
  font-size: 15px;
  font-weight: 700;
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  bottom: 196px;
  z-index: 3;
  width: 1px;
  height: 70px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.34);
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background: #fff;
  animation: scrollLine 1600ms ease-in-out infinite;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.section h2,
.access h2 {
  font-size: clamp(34px, 4.8vw, 68px);
}

.intro-copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 2.1;
}

.intro-copy p {
  margin: 0;
}

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

.visual-break {
  position: relative;
  width: min(1380px, calc(100% - 40px));
  height: min(68vw, 720px);
  min-height: 360px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.visual-break img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  transform: translateY(var(--parallax, 0));
}

.visual-caption {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: clamp(18px, 5vw, 70px);
  max-width: 360px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(31, 23, 18, 0.72);
  color: #fff;
  backdrop-filter: blur(16px);
}

.visual-caption span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.visual-caption strong {
  font-family: "Shippori", serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
}

.section-head {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  box-shadow: var(--shadow);
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 12, 9, 0.86), rgba(17, 12, 9, 0.05) 58%);
}

.feature-card:hover img {
  transform: scale(1.06);
}

.feature-card div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
}

.feature-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

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

.feature-card p,
.occasion-card p,
.split-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.9;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.split-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 800ms ease;
}

.split-media:hover img {
  transform: scale(1.05);
}

.split-copy p {
  color: var(--muted);
}

.split-copy > p:not(.section-label) {
  margin-top: 26px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.stat-strip div {
  min-height: 100px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
}

.stat-strip strong {
  display: block;
  color: var(--lacquer);
  font-family: "Shippori", serif;
  font-size: 26px;
  font-weight: 400;
}

.stat-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.occasion {
  width: min(1280px, calc(100% - 40px));
}

.occasion-grid {
  display: grid;
  grid-template-columns: 1.24fr 0.88fr 0.88fr;
  gap: 18px;
}

.occasion-card {
  min-height: 360px;
  padding: 24px;
  border-radius: 8px;
  background: var(--moss);
  color: #fff;
  overflow: hidden;
}

.occasion-card:first-child {
  position: relative;
  padding: 0;
}

.occasion-card:first-child img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.occasion-card:first-child::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(31, 23, 18, 0.82), transparent 62%);
}

.occasion-card:first-child h3,
.occasion-card:first-child p {
  position: absolute;
  right: 24px;
  left: 24px;
  z-index: 1;
}

.occasion-card:first-child h3 {
  bottom: 92px;
}

.occasion-card:first-child p {
  bottom: 24px;
}

.occasion-card:nth-child(3) {
  background: var(--lacquer);
}

.access {
  width: min(1280px, calc(100% - 40px));
}

.access-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf1;
  box-shadow: var(--shadow);
}

.access-copy {
  padding: clamp(28px, 5vw, 58px);
}

.shop-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
}

.shop-list div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.shop-list dt {
  color: var(--muted);
  font-size: 13px;
}

.shop-list dd {
  margin: 0;
  line-height: 1.7;
}

.shop-list a {
  color: var(--lacquer);
  font-weight: 700;
}

.map-wrap {
  min-height: 520px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.86) contrast(1.05);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 52px) 112px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer strong {
  color: var(--ink);
}

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

.fixed-reserve {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 18;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 15px 20px;
  border-radius: 999px;
  background: var(--lacquer);
  color: #fff;
  box-shadow: 0 14px 34px rgba(141, 31, 22, 0.34);
  transition: transform 180ms ease;
}

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

.fixed-reserve span {
  font-size: 12px;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(188, 138, 67, 0.8);
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
  transition: width 180ms ease, height 180ms ease, background 180ms ease, border 180ms ease;
}

.cursor-dot.is-active {
  width: 42px;
  height: 42px;
  background: rgba(188, 138, 67, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(240%);
  }
}

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

  .cursor-dot {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle span + span {
    margin-top: -17px;
  }

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 108px 24px 36px;
    border: 0;
    border-radius: 0;
    background: rgba(251, 247, 239, 0.96);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  body.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

  .nav-reserve {
    margin-top: 14px;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 999px !important;
  }

  .hero-content {
    width: min(100% - 32px, 720px);
    padding: 118px 0 238px;
  }

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

  .hero-info dl,
  .intro-grid,
  .section-head,
  .feature-row,
  .split,
  .occasion-grid,
  .access-panel {
    grid-template-columns: 1fr;
  }

  .hero-info {
    bottom: 92px;
  }

  .hero-info div {
    padding: 0;
  }

  .hero-info div + div {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .scroll-cue,
  .cursor-dot {
    display: none;
  }

  .section {
    width: min(100% - 32px, 720px);
  }

  .visual-break,
  .occasion,
  .access {
    width: min(100% - 32px, 760px);
  }

  .feature-card {
    min-height: 420px;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .occasion-card,
  .occasion-card:first-child img {
    min-height: 320px;
  }

  .map-wrap {
    min-height: 360px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .brand-copy {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-info {
    padding: 15px;
  }

  .visual-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

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

  .fixed-reserve {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: center;
  }
}
