:root {
  --ink: #0d0c10;
  --ink-soft: #45404b;
  --paper: #ffffff;
  --paper-soft: #fafafa;
  --plum: #682a8b;
  --plum-dark: #2e1043;
  --gold: #b98bd3;
  --line: #e4e1e7;
  --white: #ffffff;
  --shadow: 0 16px 42px rgb(13 12 16 / 8%);
  --radius: 4px;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.35;
  letter-spacing: 0.035em;
}

h1 {
  font-size: clamp(2rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.2rem;
}

.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;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--plum-dark);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgb(104 42 139 / 18%);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1180px, calc(100% - 2rem));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  flex: 0 0 auto;
  display: grid;
  justify-items: start;
  gap: 0.2rem;
  text-decoration: none;
}

.brand img {
  width: clamp(150px, 20vw, 230px);
  height: auto;
}

.brand-reading,
.footer-store-reading {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1.2;
}

.brand-reading { color: var(--plum); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-phone {
  display: grid;
  text-decoration: none;
  line-height: 1.25;
  text-align: right;
}

.header-phone span {
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.header-phone strong {
  color: var(--plum);
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.site-nav ul {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle > span:first-child,
.nav-toggle > span:first-child::before,
.nav-toggle > span:first-child::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle > span:first-child::before {
  transform: translateY(-6px);
}

.nav-toggle > span:first-child::after {
  transform: translateY(4px);
}

.nav-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.container,
.narrow {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.narrow {
  width: min(780px, calc(100% - 2rem));
}

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-soft {
  background: var(--white);
}

main > .section + .section {
  border-top: 1px solid var(--line);
}

.section-ink {
  color: var(--ink);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.eyebrow {
  margin-bottom: 0.7rem;
  color: var(--plum);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-ink .eyebrow,
.reservation-band .eyebrow { color: var(--plum); }

.section-heading {
  max-width: 52rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-heading::after {
  width: 3rem;
  margin-top: 1.35rem;
  border-top: 2px solid var(--plum);
  content: "";
  display: block;
}

.section-heading h2 {
  max-width: 16ch;
  margin-bottom: 0;
}

.page-hero {
  position: relative;
  padding: clamp(5rem, 12vw, 10rem) 0;
  text-align: center;
  background: var(--white);
}

.page-hero h1 {
  margin-bottom: 1.1rem;
  margin-inline: auto;
  max-width: 16ch;
}

.page-hero h1.page-hero-title-long {
  max-width: none;
  font-size: clamp(1.45rem, 6.2vw, 3.5rem);
}

.page-hero-title-line {
  display: block;
  white-space: nowrap;
}

.page-lead {
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.scroll-cue {
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  padding: 0;
  border: 0;
  color: var(--plum);
  background: transparent;
  box-shadow: none;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  pointer-events: none;
}

.scroll-cue span { opacity: 0.88; }

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 2.1rem;
  display: block;
  background: currentColor;
  transform-origin: top;
  animation: scroll-trace 2.8s cubic-bezier(.3, .7, .4, 1) infinite;
}

.scroll-cue i::after {
  position: absolute;
  right: -2px;
  bottom: 0;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.page-scroll-cue {
  width: max-content;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

.home-scroll-cue {
  position: absolute;
  top: clamp(8rem, 19vh, 11rem);
  bottom: auto;
  left: max(1.25rem, calc((100vw - 1180px) / 2));
  margin: 0;
  color: rgb(255 255 255 / 88%);
}

.js [data-photo-reveal] {
  opacity: 0;
  transform: translate3d(0, 1.6rem, 0) scale(0.985);
  transition: opacity 720ms ease, transform 900ms cubic-bezier(.2, .7, .2, 1);
  will-change: opacity, transform;
}

.js [data-photo-reveal].is-photo-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.js [data-photo-reveal] img {
  transform: scale(1.045);
  transition: transform 1.4s cubic-bezier(.2, .7, .2, 1);
}

.js [data-photo-reveal].is-photo-visible img {
  transform: scale(1);
}

.breadcrumbs {
  width: min(1180px, calc(100% - 2rem));
  margin: 1rem auto;
  font-size: 0.78rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 0.75rem;
  color: var(--line);
  content: "/";
}

.home-hero {
  position: relative;
  min-height: min(780px, calc(100svh - 88px));
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
}

.home-hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 0;
  overflow: hidden;
  background: #0d0c10 url("../images/hero/slider1.jpg") center / cover no-repeat;
}

.home-hero-image > img:not(.home-intro-logo) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-video,
.home-hero-media-shade,
.home-intro-logo {
  position: absolute;
  inset: 0;
}

.home-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 680ms ease;
}

.home-hero-video.is-ready { opacity: 1; }

.home-hero-media-shade {
  background: linear-gradient(0deg, rgb(13 12 16 / 32%), transparent 54%);
  pointer-events: none;
}

.home-intro-logo {
  z-index: 1;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: clamp(74px, 10vw, 132px);
  height: auto;
  margin: 0;
  transform: translate(-50%, -50%);
  filter: brightness(0) invert(1) drop-shadow(0 3px 15px rgb(0 0 0 / 68%));
  opacity: 1;
  pointer-events: none;
  transition: opacity 560ms ease, transform 560ms ease, visibility 560ms ease;
}

.home-intro-logo.is-finished {
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -54%) scale(0.94);
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  width: min(36vw, 480px);
  margin: clamp(2rem, 6vw, 5rem) clamp(1.25rem, 5vw, 5rem) clamp(2rem, 6vw, 5rem) auto;
  padding: clamp(2rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgb(104 42 139 / 34%);
  background: linear-gradient(
    180deg,
    rgb(255 255 255 / 97%) 0%,
    rgb(255 255 255 / 91%) 60%,
    rgb(255 255 255 / 50%) 83%,
    rgb(255 255 255 / 0%) 100%
  );
  box-shadow: -24px 0 48px rgb(13 12 16 / 10%);
  backdrop-filter: blur(3px);
}

.home-hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.3rem, 3.2vw, 3.2rem);
  line-height: 1.22;
}

.home-hero-copy h1 span {
  display: block;
}

.home-hero-copy > p:not(.eyebrow) {
  max-width: 36rem;
  color: var(--ink-soft);
}

.brochure-copy-signature {
  margin-top: 2.5rem;
  color: var(--plum);
  font-family: var(--serif);
  text-align: right;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--plum-dark);
}

.button-secondary {
  color: var(--plum);
  background: var(--white);
}

.button-ghost {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}

.feature-grid,
.category-grid,
.occasion-grid,
.product-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-card,
.category-card,
.occasion-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  background: var(--white);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.feature-card,
.occasion-card {
  grid-template-columns: 1fr;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-card > div,
.category-card > div,
.occasion-card > div {
  padding: clamp(1.2rem, 3vw, 2rem);
  align-self: center;
}

.feature-card > div,
.occasion-card > div {
  padding: 1.05rem 0 0;
}

.feature-card > div > span,
.category-card span {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  display: block;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.feature-card h3 .feature-card-title-line {
  display: block;
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: normal;
}

.feature-card .media-frame,
.occasion-card .media-frame {
  aspect-ratio: 5 / 4;
}

.feature-card img,
.occasion-card img {
  transition: transform 520ms ease;
}

.feature-card:hover img,
.feature-card:focus-visible img,
.occasion-card:hover img,
.occasion-card:focus-visible img {
  transform: scale(1.025);
}

.media-frame {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eee9f1;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame.left-tall {
  aspect-ratio: 351 / 515;
}

.media-frame.left-tall img {
  position: absolute;
  top: 0;
  left: 0;
  width: 279.2%;
  max-width: none;
  height: auto;
  transform: translate(-2.25%, -3.95%);
}

.media-frame.left-room {
  aspect-ratio: 345 / 476;
}

.media-frame.left-room img {
  position: absolute;
  top: 0;
  left: 0;
  width: 284.1%;
  max-width: none;
  height: auto;
  transform: translate(-2.25%, -3.95%);
}

.notice {
  margin-bottom: 2rem;
  padding: 1.3rem 1.5rem;
  border-left: 4px solid var(--gold);
  background: #f5edf9;
}

.occasion-facts {
  margin: 2rem 0;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.occasion-facts h2 {
  margin-top: 0;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
}

.occasion-facts dl {
  margin: 0;
}

.occasion-facts dl > div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.8fr) minmax(0, 1.5fr);
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
}

.occasion-facts dt {
  font-weight: 700;
  color: var(--plum);
}

.occasion-facts dd {
  margin: 0;
}

.occasion-facts small {
  color: var(--muted);
}

.course-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.3rem 0;
}

.course-gallery figure {
  margin: 0;
}

.course-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.course-gallery figcaption {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.notice strong {
  display: block;
  margin-bottom: 0.35rem;
}

.notice p {
  margin: 0;
}

.menu-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 1.5rem 0 clamp(2.5rem, 6vw, 5rem);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.menu-jump-nav a {
  padding: 0.25rem 0 0.6rem;
  border: 0;
  border-bottom: 1px solid transparent;
  color: var(--plum);
  font-family: var(--serif);
  font-weight: 600;
  text-decoration: none;
}

.menu-jump-nav a:hover,
.menu-jump-nav a:focus-visible {
  border-bottom-color: var(--plum);
}

.menu-long-form {
  display: grid;
  gap: clamp(4rem, 10vw, 8rem);
}

.menu-category-group {
  scroll-margin-top: 7rem;
}

.menu-category-heading {
  max-width: 52rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.menu-category-heading h2 {
  margin-bottom: 0.65rem;
}

.menu-category-heading > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.menu-category-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.menu-carousel {
  position: sticky;
  top: 6.5rem;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.menu-carousel-track {
  display: grid;
  gap: 1.25rem;
  padding: 0;
}

.menu-carousel-slide {
  margin: 0;
}

.menu-carousel-slide img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 0;
}

.menu-carousel-slide figcaption {
  margin-top: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.menu-carousel-controls {
  display: none;
}

.js .menu-carousel-track {
  position: relative;
  min-height: 0;
  display: block;
  padding: 0;
}

.js .menu-carousel-slide {
  display: none;
}

.js .menu-carousel-slide.is-active {
  display: block;
  animation: menu-slide-in 360ms ease both;
}

.js .menu-carousel-controls {
  display: grid;
  grid-template-columns: 2.5rem 1fr 2.5rem;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  padding: 0.7rem 0 0;
  border-top: 1px solid var(--line);
}

.menu-carousel-arrow,
.menu-carousel-dots button {
  border: 0;
  cursor: pointer;
}

.menu-carousel-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0;
  color: var(--plum);
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 1.1rem;
}

.menu-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.1rem;
}

.menu-carousel-dots button {
  position: relative;
  width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  background: transparent;
}

.menu-carousel-dots button::before {
  position: absolute;
  inset: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin: auto;
  border-radius: 50%;
  content: "";
  background: var(--line);
}

.menu-carousel-dots button[aria-current="true"]::before {
  background: var(--plum);
}

.menu-course-list {
  margin: 0;
  border-top: 2px solid var(--ink);
}

.menu-course-list > div {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-course-list dt {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
}

.menu-course-list dt strong {
  color: var(--plum);
  font-size: 0.94em;
  white-space: nowrap;
}

.menu-course-list dt small {
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.62em;
  font-weight: 500;
}

.menu-course-list dd {
  margin: 0.8rem 0 0;
}

.mobile-more {
  margin: 0;
}

.mobile-more > summary {
  display: none;
}

.mobile-more-content > :first-child {
  margin-top: 0;
}

.mobile-more-content > :last-child {
  margin-bottom: 0;
}

.menu-course-list dd > ul:not(.notes) {
  columns: 2;
  gap: 1.8rem;
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.menu-course-list dd > ul:not(.notes) li {
  break-inside: avoid;
  margin-bottom: 0.25rem;
}

@keyframes menu-slide-in {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

.course-list,
.room-list,
.story-list {
  display: grid;
  gap: clamp(3.5rem, 7vw, 6rem);
}

.course-card,
.room-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 6vw, 5rem);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.course-card .media-frame,
.room-card .media-frame {
  height: 100%;
  min-height: 440px;
  aspect-ratio: auto;
}

.course-content,
.room-content {
  padding: clamp(1rem, 3vw, 2rem) 0;
}

.course-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.course-heading h2,
.course-heading h3,
.course-heading h4,
.room-content h2 {
  margin-bottom: 0.35rem;
}

.course-heading h2,
.course-heading h3,
.course-heading h4 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.4;
}

.course-detail-heading {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
}

.price {
  color: var(--plum);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 800;
  white-space: nowrap;
}

.price small {
  display: block;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  white-space: normal;
  text-align: right;
}

.availability,
.capacity {
  color: var(--plum);
  font-weight: 800;
}

.item-list {
  columns: 2;
  gap: 2rem;
  padding-left: 1.2rem;
}

.item-list li {
  break-inside: avoid;
  margin-bottom: 0.25rem;
}

.choice {
  margin-top: 1.2rem;
}

.notes {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.info-grid,
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.info-grid address,
.access-card address {
  font-style: normal;
}

.hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-list span {
  font-size: 0.84rem;
}

.regular-holiday {
  margin: 0.45rem 0 0;
  color: var(--plum);
  font-weight: 800;
}

.site-footer .regular-holiday {
  color: var(--white);
}

.text-link {
  color: var(--gold);
  font-weight: 800;
}

.phone-large {
  color: var(--plum);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  text-decoration: none;
}

.section-ink .phone-large {
  color: var(--plum);
}

.small-note {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 1.2rem 2.5rem 1.2rem 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  padding: 0 0 1.3rem;
}

.split-layout,
.story-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.editorial-heading {
  max-width: 52rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.editorial-heading h2 {
  max-width: 16ch;
  margin-bottom: 0;
}

.story-row .media-frame {
  aspect-ratio: 5 / 4;
}

.story-row .prose {
  max-width: 34rem;
}

.story-row .prose h2 {
  margin-bottom: 0.85rem;
}

.story-row.reverse .media-frame {
  order: 2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-grid .media-frame:first-child:last-child,
.gallery-grid .media-frame:nth-child(3) {
  grid-column: 1 / -1;
}

.gallery-four {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-four .media-frame {
  aspect-ratio: 5 / 4;
}

.home-story-section .story-row + .story-row {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.home-journey-section {
  overflow: hidden;
}

.home-journey-section .editorial-heading,
.home-journey-section #journey-title {
  text-align: left;
}

.home-journey-section #journey-title {
  display: grid;
  gap: 0.2em;
  max-width: none;
  line-height: 1.24;
}

.home-journey-section #journey-title span {
  display: block;
}

.home-journey-section .editorial-heading::after {
  width: clamp(4.5rem, 10vw, 7rem);
  margin-top: 1.15rem;
  border-top-width: 3px;
}

.journey-prologue {
  align-items: center;
}

.journey-prologue .media-frame {
  aspect-ratio: 4 / 5;
}

.journey-prologue .media-frame img {
  object-position: center;
}

.journey-prologue .prose h3,
.journey-guide-heading h3,
.journey-route-panel h4 {
  margin-bottom: 0.75rem;
  font-family: var(--serif);
  line-height: 1.45;
}

.journey-principle {
  margin-top: 1.8rem;
  margin-bottom: 0;
  padding: 0.3rem 0 0;
  border-left: 0;
  color: var(--plum-dark);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 800;
  line-height: 1.8;
}

.journey-scenes-section {
  background: var(--paper-soft);
}

.journey-scenes-section .editorial-heading,
.journey-scenes-section #journey-scenes-title {
  text-align: left;
}

.journey-scenes-section #journey-scenes-title {
  display: grid;
  gap: 0.2em;
  max-width: none;
  line-height: 1.24;
}

.journey-scenes-section #journey-scenes-title span {
  display: block;
}

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

.journey-scene {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.8fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 5.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.journey-scene.reverse .media-frame {
  order: 2;
}

.journey-scene.reverse .journey-scene-copy {
  order: 1;
}

.journey-scene .media-frame {
  aspect-ratio: 16 / 10;
}

.journey-scene-copy {
  max-width: 28rem;
}

.journey-scene-number {
  margin-bottom: 1rem;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.journey-scene-copy h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
}

.journey-scene-copy p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.journey-guide {
  display: block;
}

.journey-guide-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  max-width: 62rem;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}

.journey-guide-heading .eyebrow,
.journey-route-label {
  margin-bottom: 0.4rem;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.journey-guide-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.journey-guide-heading > p {
  max-width: 36rem;
  margin: 0;
  color: var(--ink-soft);
}

.journey-route-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.journey-route-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--paper);
}

.journey-moment-panel {
  background: linear-gradient(145deg, #fff 0%, #fcf9fe 100%);
}

.journey-route-panel h4 {
  margin-bottom: 1.35rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.journey-origin-list,
.journey-moment-list,
.journey-destination-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.journey-moment-list {
  counter-reset: journey-moment;
  border-top: 1px solid var(--line);
}

.journey-moment-list li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  column-gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.journey-moment-list li::before {
  counter-increment: journey-moment;
  content: "0" counter(journey-moment);
  color: var(--plum);
  font-family: var(--serif);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.journey-moment-list strong {
  grid-column: 2;
  color: var(--plum-dark);
  font-family: var(--serif);
}

.journey-moment-list span {
  grid-column: 2;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.journey-origin-list li {
  display: grid;
  grid-template-columns: minmax(7rem, 0.72fr) minmax(0, 1.28fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.journey-origin-list strong {
  color: var(--plum);
  font-family: var(--serif);
}

.journey-origin-list span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.journey-planning-copy {
  max-width: 46rem;
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
}

.journey-guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(15rem, 0.65fr);
  gap: clamp(2.25rem, 6vw, 5.5rem);
  align-items: start;
}

.journey-guide-visual {
  margin: 0;
}

.journey-guide-visual .media-frame {
  aspect-ratio: 4 / 5;
}

.journey-guide-visual > p {
  margin: 0.7rem 0 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.journey-planning-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 7vw, 6rem);
  padding-top: clamp(1.75rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.journey-planning-thread + .journey-planning-thread {
  padding-left: clamp(2.5rem, 7vw, 6rem);
  border-left: 1px solid var(--line);
}

.journey-planning-thread h4 {
  margin-bottom: 1.35rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.journey-destination-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}

.journey-destination-list li {
  padding: 0.4rem 0.75rem;
  border: 1px solid rgb(104 42 139 / 34%);
  border-radius: 999px;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 0.92rem;
}

.journey-route-copy {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
}

.journey-access-link {
  font-weight: 800;
}

.journey-route-panel .small-note {
  margin-top: 1rem;
  margin-bottom: 0;
  line-height: 1.65;
}

.home-story-section .editorial-heading,
.home-story-section #hamaguri-title {
  text-align: left;
}

.home-story-section #hamaguri-title {
  display: grid;
  gap: 0.2em;
  max-width: none;
  line-height: 1.24;
}

.home-story-section #hamaguri-title span {
  display: block;
}

.home-story-section .editorial-heading::after {
  width: clamp(4.5rem, 10vw, 7rem);
  margin-top: 1.15rem;
  border-top-width: 3px;
}

.home-brochure-content .editorial-heading,
.home-brochure-content #hamaguri-brochure-title {
  text-align: left;
}

.home-brochure-content #hamaguri-brochure-title {
  display: grid;
  gap: 0.2em;
  max-width: none;
  line-height: 1.24;
}

.home-brochure-content #hamaguri-brochure-title span {
  display: block;
}

.home-brochure-content .editorial-heading::after {
  width: clamp(4.5rem, 10vw, 7rem);
  margin-top: 1.15rem;
  border-top-width: 3px;
}

.home-brochure-content .story-row + .story-row {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.home-experience-section .feature-grid {
  gap: clamp(1rem, 2.5vw, 2rem);
}

.home-experience-section #features-title {
  white-space: nowrap;
}

.home-experience-section .feature-card {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}

.home-experience-section .feature-card .media-frame,
.home-experience-section .feature-card .media-frame.left-room {
  aspect-ratio: 5 / 4;
}

.home-experience-section .feature-card .media-frame.left-room img {
  position: static;
  transform: none;
  object-position: center;
}

.home-experience-section .feature-card:hover .media-frame.left-room img,
.home-experience-section .feature-card:focus-visible .media-frame.left-room img {
  transform: scale(1.025);
}

.home-experience-section .feature-card h3 {
  max-width: none;
}

/* トップは「章題 → 写真と短い本文 → 次の章」の一定のリズムで読む。 */
.home-journey-section,
.home-hamaguri-section,
.home-experience-section,
.home-journey-guide-section,
.store-information-section,
.home-faq-section {
  background: var(--paper);
}

.chapter-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  column-gap: clamp(2rem, 6vw, 5.5rem);
  row-gap: 1rem;
  max-width: 68rem;
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
  padding-left: clamp(1rem, 2.4vw, 1.65rem);
  border-left: 1pt solid var(--plum);
}

.chapter-heading::after {
  display: block;
  grid-column: 1;
  width: clamp(3.5rem, 7vw, 5.5rem);
  height: 0;
  margin-top: 1rem;
  border-top: 1pt solid var(--plum);
  content: "";
}

.chapter-heading-title .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.chapter-heading-title .eyebrow::before {
  width: 1.75rem;
  height: 1px;
  background: var(--plum);
  content: "";
}

.chapter-heading h2,
.chapter-heading h3 {
  max-width: none;
  margin: 0;
  font-size: clamp(1.85rem, 3.6vw, 3.15rem);
  line-height: 1.24;
}

.chapter-heading h2 > span,
.chapter-heading h3 > span {
  display: block;
}

.chapter-subsection-heading h3 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.chapter-heading-long h2 {
  font-size: clamp(1.45rem, 3vw, 2.7rem);
}

.chapter-heading-lead {
  align-self: end;
  max-width: 34rem;
  margin: 0;
  padding-bottom: 0.25rem;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  line-height: 1.9;
}

.chapter-subtitle-crest,
.footer-crest {
  display: block;
}

.chapter-subtitle-crest {
  width: 1.1em;
  height: 1.1em;
}

.chapter-content-subtitle {
  display: grid;
  grid-template-columns: 1.1em minmax(0, 1fr);
  column-gap: 0.8rem;
  align-items: center;
}

.chapter-content-subtitle > span {
  min-width: 0;
}

/* トップの説明サブタイトルは、見出しレベルにかかわらず同じ文字組みにする。 */
.home-journey-section .prose .chapter-content-subtitle,
.home-hamaguri-section .prose .chapter-content-subtitle,
.journey-planning-thread .chapter-content-subtitle {
  color: var(--plum);
  font-family: var(--serif);
  font-size: clamp(1.72rem, 2.7vw, 2.25rem);
  font-weight: 700;
  line-height: 1.48;
}

.home-journey-section .prose .journey-principle {
  padding-top: 0.3rem;
}

#journey-destination-title > span {
  white-space: nowrap;
}

.home-journey-section .story-row,
.home-hamaguri-section .story-row {
  align-items: center;
}

.home-journey-section .story-row .prose,
.home-hamaguri-section .story-row .prose {
  max-width: 32rem;
}

.home-journey-section .prose h3,
.home-hamaguri-section .prose h3 {
  margin-bottom: 0.9rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.35vw, 1.9rem);
  line-height: 1.45;
}

.home-journey-section .prose p,
.home-hamaguri-section .prose p {
  max-width: 36rem;
  color: var(--ink-soft);
}

.home-hamaguri-section .story-row + .story-row {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.hamaguri-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(17rem, 0.95fr);
  gap: clamp(2.25rem, 6vw, 5.5rem);
  align-items: center;
}

.hamaguri-overview .prose {
  max-width: 34rem;
}

.hamaguri-overview .prose h3 {
  margin-bottom: 0.9rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.35vw, 1.9rem);
  line-height: 1.45;
}

.hamaguri-overview .prose p {
  color: var(--ink-soft);
}

.chapter-photo-motion {
  overflow: hidden;
}

.chapter-photo-motion img {
  animation: chapter-photo-drift 16s ease-in-out infinite alternate;
}

.chapter-photo-sequence {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-soft);
}

.chapter-photo-sequence-viewport {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: hidden;
}

.chapter-photo-sequence-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 900ms ease;
}

.chapter-photo-sequence-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.chapter-photo-sequence-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: chapter-photo-drift 14s ease-in-out infinite alternate;
}

.chapter-photo-sequence-controls {
  position: absolute;
  z-index: 2;
  right: 0.85rem;
  bottom: 0.85rem;
  display: flex;
  gap: 0.4rem;
}

.chapter-photo-sequence-controls button {
  width: 2.15rem;
  min-height: 2.15rem;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 999px;
  background: rgb(13 12 16 / 42%);
  cursor: pointer;
}

.chapter-photo-sequence-controls button::before {
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  margin: auto;
  border-radius: 999px;
  background: var(--white);
  content: "";
}

.chapter-photo-sequence-controls button[aria-current="true"] {
  background: var(--plum);
}

.journey-scenes-section {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-top: 0;
  border-top: 0;
  background: transparent;
}

.chapter-subsection {
  margin-top: clamp(5rem, 11vw, 9rem);
  padding-top: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.chapter-subheading {
  max-width: 44rem;
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.chapter-subheading .eyebrow {
  margin-bottom: 0.65rem;
  font-size: 0.72rem;
}

.chapter-subheading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.6vw, 3.15rem);
  line-height: 1.28;
}

.chapter-subheading h3 > span {
  display: block;
}

.chapter-subheading-lead {
  max-width: 34rem;
  margin: 1.15rem 0 0;
  color: var(--ink-soft);
  line-height: 1.85;
}

.home-hamaguri-section .brochure-copy-signature {
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  color: var(--plum-dark);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.home-hamaguri-section .home-gallery-section .gallery-four {
  gap: clamp(0.65rem, 1.5vw, 1.25rem);
}

.home-experience-section .feature-grid {
  gap: clamp(1.25rem, 3vw, 2.25rem);
}

.home-experience-section .feature-card {
  padding-bottom: 1rem;
}

.home-experience-section .feature-card > div > span {
  margin-top: 1.1rem;
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.home-experience-section .feature-card h3 {
  margin-top: 0.3rem;
  margin-bottom: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.45;
}

.home-hamaguri-menu-details {
  margin: 0;
}

.home-hamaguri-menu-details > summary {
  display: inline-flex;
  cursor: pointer;
  list-style: none;
}

.home-hamaguri-menu-details > summary::-webkit-details-marker {
  display: none;
}

.home-hamaguri-menu-details > summary > span {
  margin-left: 0.5em;
  font-size: 1.15em;
  line-height: 1;
  transition: transform 180ms ease;
}

.home-hamaguri-menu-details[open] > summary > span {
  transform: rotate(45deg);
}

.home-hamaguri-menu-content {
  padding-top: clamp(2.25rem, 5vw, 4.5rem);
}

.journey-planning-thread .chapter-content-subtitle {
  color: var(--ink);
  font-size: clamp(1.6rem, 2.55vw, 2rem);
}

.home-journey-guide-section .journey-guide-heading {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  max-width: 68rem;
}

.home-journey-guide-section .journey-guide-heading .chapter-heading-lead {
  max-width: 31rem;
}

.home-journey-guide-section .journey-guide-heading h2 {
  margin: 0;
}

.home-journey-guide-section .journey-planning-copy {
  max-width: 39rem;
  font-size: 1.05rem;
  line-height: 1.9;
}

.store-information-section .chapter-heading,
.home-faq-section .chapter-heading {
  max-width: 44rem;
}

.home-faq-section .faq-list {
  border-top: 2px solid var(--ink);
}

.home-faq-section .faq-list details {
  border-bottom-color: var(--line);
}

.center {
  margin-top: 2rem;
  text-align: center;
}

.access-card,
.product-card {
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.store-information-list {
  margin: 0;
  border-top: 2px solid var(--ink);
}

.store-information-list > div {
  display: grid;
  grid-template-columns: minmax(12rem, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.6rem, 4vw, 2.75rem) 0;
  border-bottom: 1px solid var(--line);
}

.store-information-list dt {
  color: var(--plum);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
}

.store-information-list dd {
  margin: 0;
}

.store-information-list address {
  font-style: normal;
}

.store-information-list .button,
.store-information-list .text-link {
  margin-top: 0.75rem;
}

.store-information-list .text-link {
  display: inline-block;
}

.product-card {
  padding: 0;
  overflow: hidden;
}

.product-card > div {
  padding: 1.4rem;
}

.product-card .price {
  font-size: 1.25rem;
  white-space: normal;
}

.reservation-band {
  padding: clamp(2.5rem, 6vw, 5rem) max(1rem, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  color: var(--ink);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.reservation-band h2 {
  margin-bottom: 0.5rem;
}

.reservation-band p:last-child {
  margin-bottom: 0;
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem;
}

.site-footer {
  padding: clamp(3.5rem, 7vw, 6rem) max(1rem, calc((100% - 1180px) / 2)) 1.5rem;
  color: var(--white);
  background: var(--plum);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(12rem, 0.72fr) minmax(0, 1.5fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.footer-intro {
  padding-top: 0.9rem;
  border-top: 1px solid rgb(255 255 255 / 52%);
}

.footer-crest {
  width: 52px;
  height: 52px;
  margin: 0 0 1rem;
}

.footer-grid h2 {
  margin-bottom: 0.25rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.footer-label {
  margin-bottom: 0.45rem;
  color: rgb(255 255 255 / 76%);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-store-name {
  margin: 0;
  color: rgb(255 255 255 / 82%);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.3;
}

.footer-store-reading {
  margin-top: 0.45rem;
  color: rgb(255 255 255 / 90%);
  font-size: 0.82rem;
  letter-spacing: 0.24em;
}

.footer-store-details {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}

.footer-store-details > div {
  padding-top: 0.9rem;
  border-top: 1px solid rgb(255 255 255 / 52%);
}

.footer-store-details dt {
  margin-bottom: 0.6rem;
  color: rgb(255 255 255 / 76%);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-store-details dd {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.75;
}

.footer-grid address {
  font-style: normal;
}

.footer-grid a {
  color: var(--white);
  font-size: 0.8rem;
  text-underline-offset: 0.28em;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.5rem;
}

.footer-note {
  margin: 0.7rem 0 0;
  color: rgb(255 255 255 / 76%);
  font-size: 0.74rem;
}

.footer-phone {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.copyright {
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / 28%);
  color: rgb(255 255 255 / 76%);
  font-size: 0.75rem;
}

.floating-contact {
  position: fixed;
  z-index: 150;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  display: grid;
  gap: 0.55rem;
}

.floating-contact a {
  width: 56px;
  height: 56px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 60%);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgb(13 12 16 / 24%);
  color: var(--white);
  text-decoration: none;
}

.floating-contact-phone {
  background: var(--plum-dark);
}

.floating-icon {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.floating-contact-phone .floating-icon {
  fill: currentColor;
  stroke: none;
}

.floating-contact-reservation {
  background: var(--plum);
}

.floating-contact a:hover,
.floating-contact a:focus-visible {
  transform: translateY(-2px);
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.home-authority-section {
  padding-top: clamp(3.5rem, 7vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 7vw, 6.5rem);
  background: var(--plum-dark);
  color: var(--white);
}

.home-authority-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.home-authority-card .eyebrow {
  color: rgb(255 255 255 / 72%);
}

.home-authority-card h2 {
  max-width: 18em;
  margin: 0.4rem 0 1rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.7vw, 3rem);
  line-height: 1.35;
}

.home-authority-card h2 > span {
  display: block;
}

.home-authority-card p:last-child {
  max-width: 54rem;
  margin-bottom: 0;
  color: rgb(255 255 255 / 82%);
}

.home-authority-card .button-primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--plum-dark);
  white-space: nowrap;
}

.travel-history-row {
  align-items: center;
}

.travel-journey-visual-section {
  padding: 0 0 clamp(3.5rem, 7vw, 6.5rem);
}

.travel-journey-visual {
  margin: 0;
}

.travel-journey-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.travel-journey-visual figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: right;
}

.travel-scene-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.travel-scene-card {
  position: relative;
  min-height: 100%;
  padding: clamp(1.5rem, 3vw, 2.35rem);
  border: 1px solid var(--line);
  background: var(--paper);
}

.travel-scene-number {
  margin: 0 0 1.4rem;
  color: var(--plum);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.travel-scene-card h3 {
  margin: 0.45rem 0 0.85rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
}

.travel-scene-card p:last-child {
  margin-bottom: 0;
}

.travel-planning-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line);
}

.travel-planning-list div {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.travel-planning-list div:nth-child(odd) {
  padding-right: 2rem;
}

.travel-planning-list div:nth-child(even) {
  padding-left: 2rem;
  border-left: 1px solid var(--line);
}

.travel-planning-list dt {
  color: var(--plum);
  font-weight: 800;
}

.travel-planning-list dd {
  margin: 0;
}

.travel-route-note {
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.4rem;
  border-left: 3px solid var(--plum);
  background: var(--paper-soft);
}

.travel-evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
}

.travel-evidence-panel {
  min-width: 0;
  padding-top: 1.5rem;
  border-top: 2px solid var(--plum);
}

.travel-evidence-panel-wide {
  grid-column: 1 / -1;
}

.travel-evidence-panel > .eyebrow {
  margin-bottom: 0.65rem;
}

.travel-evidence-panel > h3 {
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.45;
}

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

.travel-evidence-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.travel-evidence-meta {
  margin: 0 0 0.6rem;
  color: var(--plum);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.travel-evidence-meta span {
  color: var(--muted);
  font-weight: 500;
}

.travel-evidence-item h4 {
  margin: 0 0 0.6rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.travel-evidence-item p:not(.travel-evidence-meta) {
  margin: 0 0 0.75rem;
}

.travel-evidence-note {
  margin-top: 1.5rem;
}

.travel-page-actions,
.history-media-actions,
.journey-guide-actions {
  margin-top: 2rem;
}

.source-panel {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.source-panel h2 {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.source-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-panel a {
  font-size: 0.88rem;
  text-underline-offset: 0.24em;
}

.history-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.history-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8rem;
  width: 1px;
  background: var(--line);
  content: "";
}

.history-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 2.5rem;
  padding: 0 0 2.8rem;
}

.history-timeline li::before {
  position: absolute;
  top: 0.35rem;
  left: calc(8rem - 5px);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--plum);
  content: "";
}

.history-timeline-year {
  margin: 0;
  color: var(--plum);
  font-family: var(--serif);
  font-weight: 800;
  text-align: right;
}

.history-timeline h3 {
  margin: 0 0 0.55rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.history-timeline li p:last-child {
  margin: 0;
}

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

.media-coverage-item {
  display: grid;
  grid-template-columns: minmax(11rem, 0.32fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.media-coverage-meta p {
  margin: 0;
}

.media-coverage-meta p:first-child {
  color: var(--plum);
  font-weight: 800;
}

.media-coverage-meta p:last-child {
  margin-top: 0.35rem;
  font-size: 0.88rem;
}

.media-coverage-item h3 {
  margin: 0 0 0.65rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
}

.media-coverage-item .text-link {
  display: inline-block;
  margin-top: 0.35rem;
}

.media-publication-note {
  margin-top: 1.4rem;
}

@media (max-width: 980px) {
  .home-authority-card,
  .travel-scene-grid {
    grid-template-columns: 1fr;
  }

  .home-authority-card .button-primary {
    justify-self: start;
  }

  .travel-planning-list {
    grid-template-columns: 1fr;
  }

  .travel-evidence-grid {
    grid-template-columns: 1fr;
  }

  .travel-planning-list div:nth-child(odd),
  .travel-planning-list div:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .header-phone,
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav[data-open] {
    position: absolute;
    top: 88px;
    right: 0;
    left: 0;
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open] ul {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.25rem;
  }

  .site-nav[data-open] a {
    display: block;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
  }

  .home-hero {
    min-height: 100svh;
  }

  .home-hero-image {
    min-height: 0;
  }

  .home-hero-copy {
    width: 100%;
    min-height: 0;
    margin: auto 0 0;
    padding: clamp(2.5rem, 8vw, 4.5rem) max(1rem, 7vw);
    border-top: 1px solid rgb(104 42 139 / 30%);
    border-left: 0;
    box-shadow: 0 -20px 48px rgb(13 12 16 / 10%);
  }

  .home-hero-copy h1 {
    max-width: 13ch;
  }

  .feature-grid,
  .category-grid,
  .occasion-grid {
    grid-template-columns: 1fr;
  }

  .info-grid,
  .access-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-store-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .floating-contact {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .course-card,
  .room-card {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  }

  .course-card .media-frame,
  .room-card .media-frame {
    min-height: 360px;
  }

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

  .menu-carousel {
    position: static;
  }

  .gallery-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-guide-heading,
  .journey-guide-layout,
  .journey-route-panels,
  .journey-planning-grid,
  .chapter-heading,
  .hamaguri-overview {
    grid-template-columns: 1fr;
  }

  .home-journey-guide-section .journey-guide-heading {
    grid-template-columns: 1fr;
  }

  .journey-guide-visual {
    max-width: 38rem;
  }

  .journey-guide-visual .media-frame {
    aspect-ratio: 16 / 10;
  }

  .journey-scene {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .journey-scene.reverse .media-frame,
  .journey-scene.reverse .journey-scene-copy {
    order: initial;
  }

  .journey-planning-thread + .journey-planning-thread {
    padding-top: 2rem;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

}

@media (max-width: 680px) {
  .home-hamaguri-section .prose .chapter-content-subtitle {
    font-size: 1.6rem;
  }

  .home-authority-card .button-primary {
    width: 100%;
    white-space: normal;
  }

  .travel-planning-list div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .source-panel ul {
    display: grid;
  }

  .history-timeline::before {
    left: 0.35rem;
  }

  .history-timeline li {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding-left: 2rem;
  }

  .history-timeline li::before {
    left: 0;
  }

  .history-timeline-year {
    text-align: left;
  }

  .media-coverage-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  body {
    font-size: 15px;
  }

  .header-inner {
    min-height: 72px;
  }

  .site-nav[data-open] {
    top: 72px;
  }

  .site-nav[data-open] ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero {
    min-height: 100svh;
  }

  .home-hero-image {
    min-height: 0;
    background-position: 58% center;
  }

  .home-hero-copy {
    min-height: 0;
    margin: auto 0 0;
    padding: 1.7rem 1rem max(1.75rem, env(safe-area-inset-bottom));
    background: linear-gradient(
      180deg,
      rgb(255 255 255 / 94%) 0%,
      rgb(255 255 255 / 87%) 72%,
      rgb(255 255 255 / 0%) 100%
    );
    box-shadow: 0 -16px 36px rgb(13 12 16 / 8%);
  }

  .home-hero-copy h1 {
    margin-bottom: 0.7rem;
    font-size: clamp(1.9rem, 9.6vw, 2.65rem);
  }

  .home-hero-copy > p:not(.eyebrow) {
    margin-bottom: 0;
    font-size: 0.93rem;
    line-height: 1.75;
  }

  .home-hero-copy .button-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1.1rem;
  }

  .home-hero-copy .button {
    min-height: 48px;
    padding-inline: 0.5rem;
    font-size: 0.87rem;
  }

  .home-intro-logo {
    width: clamp(64px, 23vw, 94px);
  }

  .page-hero {
    padding: clamp(3.5rem, 14vw, 5rem) 0;
  }

  .section {
    padding: clamp(3.25rem, 12vw, 4.5rem) 0;
  }

  .menu-jump-nav {
    flex-wrap: nowrap;
    gap: 0.35rem;
    margin: 1.25rem -1rem clamp(2.5rem, 10vw, 3.5rem);
    padding: 0 1rem 0.45rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 1rem;
    scroll-snap-type: x proximity;
  }

  .menu-jump-nav a {
    flex: 0 0 auto;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem 0.45rem;
    scroll-snap-align: start;
  }

  .menu-long-form {
    gap: clamp(3.5rem, 15vw, 5rem);
  }

  .menu-category-heading {
    margin-bottom: 1.35rem;
  }

  .menu-carousel-slide img {
    aspect-ratio: 4 / 5;
  }

  .menu-carousel-controls {
    min-height: 44px;
  }

  .menu-carousel-arrow {
    width: 2.75rem;
    height: 2.75rem;
  }

  .menu-course-list > div {
    padding: 1.25rem 0;
  }

  .feature-card,
  .category-card,
  .occasion-card,
  .course-card,
  .room-card,
  .split-layout,
  .story-row,
  .reservation-band {
    grid-template-columns: 1fr;
  }

  .feature-card .media-frame,
  .category-card .media-frame,
  .occasion-card .media-frame {
    aspect-ratio: 16 / 10;
  }

  .feature-card .media-frame.left-tall,
  .feature-card .media-frame.left-room,
  .category-card .media-frame.left-tall {
    aspect-ratio: 16 / 10;
  }

  .course-card .media-frame,
  .room-card .media-frame {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .course-card .media-frame.left-tall,
  .room-card .media-frame.left-room {
    aspect-ratio: 3 / 4;
  }

  .course-heading {
    display: block;
  }

  .price small {
    text-align: left;
  }

  .item-list {
    columns: 1;
  }

  .menu-course-list dt {
    display: grid;
  }

  .menu-course-list dd > ul:not(.notes) {
    columns: 1;
  }

  .mobile-more {
    margin-top: 1rem;
    border-block: 1px solid var(--line);
  }

  .mobile-more > summary {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.7rem 0;
    color: var(--plum);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
  }

  .mobile-more > summary::-webkit-details-marker {
    display: none;
  }

  .mobile-more > summary::after {
    width: 2rem;
    height: 2rem;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    content: "+";
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
  }

  .mobile-more[open] > summary::after {
    content: "−";
  }

  .mobile-more-label {
    margin-right: 0.6rem;
    font-family: var(--serif);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-more-copy {
    color: var(--ink);
    font-size: 0.88rem;
  }

  .mobile-more-content {
    padding: 0.25rem 0 1.25rem;
  }

  .scroll-cue {
    gap: 0.35rem;
    font-size: 0.62rem;
  }

  .scroll-cue i {
    height: 1.8rem;
  }

  .page-scroll-cue {
    margin-top: 1.75rem;
  }

  .home-scroll-cue {
    top: clamp(7.5rem, 20svh, 11rem);
    left: 1rem;
  }

  .occasion-facts dl > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .store-information-list > div {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .journey-prologue .media-frame {
    aspect-ratio: 5 / 4;
  }

  .journey-origin-list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

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

  .info-grid,
  .access-grid,
  .product-grid,
  .footer-grid,
  .footer-store-details,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .floating-contact {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    left: auto;
  }

  .floating-contact a {
    width: 56px;
    height: 56px;
  }

  .gallery-grid .media-frame:nth-child(3) {
    grid-column: auto;
  }

  .story-row.reverse .media-frame {
    order: 0;
  }

  .reservation-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 374px) {
  .home-hero-copy .button-row {
    grid-template-columns: 1fr;
  }
}

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

  .scroll-cue i {
    animation: none;
  }

  .js [data-photo-reveal],
  .js [data-photo-reveal].is-photo-visible,
  .js [data-photo-reveal] img,
  .js [data-photo-reveal].is-photo-visible img {
    opacity: 1;
    transform: none;
  }
}

/* 新トップ（CAP-20260718-003）: JavaScriptなしでも本文が読めることを前提に、
   演出は has-home-loader が付与された場合だけ有効にする。 */
.home-page .site-header {
  position: absolute;
  width: 100%;
  border-bottom-color: rgb(255 255 255 / 20%);
  color: var(--white);
  background: linear-gradient(180deg, rgb(13 12 16 / 72%), transparent);
  backdrop-filter: none;
}

.home-page .brand img {
  filter: brightness(0) invert(1) drop-shadow(0 2px 12px rgb(0 0 0 / 38%));
}

.home-page .brand-reading {
  color: var(--white);
  text-shadow: 0 2px 12px rgb(0 0 0 / 38%);
}

.home-page .header-phone span,
.home-page .header-phone strong,
.home-page .site-nav a {
  color: var(--white);
  text-shadow: 0 2px 10px rgb(0 0 0 / 45%);
}

.home-page .site-nav a::after { background: #cba5e1; }

.home-loader {
  display: none;
  position: fixed;
  z-index: 1100;
  inset: 0;
  place-items: center;
  align-content: center;
  gap: 1.2rem;
  color: var(--plum);
  background: #ffffff;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.has-home-loader .home-loader { display: grid; }

.home-loader.is-dismissed,
.home-is-ready .home-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.home-loader p {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.8rem;
  letter-spacing: 0.34em;
}

.home-loader-crest {
  width: min(27vw, 158px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  animation: crest-breathe 2.1s ease-in-out infinite;
}

.home-loader-crest path {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: crest-draw 1.05s ease-out forwards;
}

.home-loader-crest path:nth-child(2) { animation-delay: 80ms; }
.home-loader-crest path:nth-child(3) { animation-delay: 170ms; }
.home-loader-crest path:nth-child(4) { animation-delay: 250ms; }
.home-loader-crest path:nth-child(5) { animation-delay: 340ms; }

.rich-hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #0d0c10 url("../images/hero/shop-slider7.jpg") center / cover no-repeat;
}

.rich-hero-video,
.rich-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rich-hero-video {
  object-fit: cover;
  opacity: 0;
  transition: opacity 640ms ease;
}
.rich-hero-video.is-ready { opacity: 1; }

.rich-hero-shade {
  background:
    linear-gradient(90deg, rgb(13 12 16 / 64%), rgb(13 12 16 / 10%) 62%, rgb(13 12 16 / 46%)),
    linear-gradient(0deg, rgb(13 12 16 / 52%), transparent 38%);
}

.rich-hero-content {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 3rem));
  padding: 9rem 0 5rem;
  display: grid;
  justify-items: start;
}

.rich-hero-logo {
  width: clamp(60px, 7vw, 90px);
  margin-bottom: 1.8rem;
  filter: brightness(0) invert(1) drop-shadow(0 3px 15px rgb(0 0 0 / 55%));
}

.rich-hero-kicker {
  margin-bottom: 0.8rem;
  color: #d9b7ec;
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  writing-mode: vertical-rl;
}

.rich-hero h1 {
  max-width: 9ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.8rem, 6.6vw, 6.8rem);
  font-weight: 500;
  line-height: 1.16;
  text-shadow: 0 4px 22px rgb(0 0 0 / 44%);
}

.rich-hero-lead {
  max-width: 35rem;
  margin-bottom: 1.8rem;
  color: rgb(255 255 255 / 92%);
  text-shadow: 0 2px 12px rgb(0 0 0 / 52%);
}

.rich-hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.rich-hero-actions a {
  min-width: 10rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgb(255 255 255 / 72%);
  color: var(--white);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.rich-hero-actions a:hover,
.rich-hero-actions a:focus-visible {
  color: var(--ink);
  background: var(--white);
  transform: translateY(-2px);
}

.rich-scroll-cue {
  position: absolute;
  z-index: 1;
  right: 2rem;
  bottom: 2rem;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.rich-scroll-cue span {
  width: 1px;
  height: 54px;
  background: rgb(255 255 255 / 78%);
  transform-origin: top;
  animation: scroll-line 1.8s ease-in-out infinite;
}

.home-introduction {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 39rem;
  color: var(--ink);
  background: #f6f3f8;
}

.home-introduction-copy {
  width: min(34rem, calc(100% - 3rem));
  margin: auto;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.home-introduction-copy h2 { margin-bottom: 1.4rem; }
.home-introduction-copy p:not(.eyebrow) { color: var(--ink-soft); }

.home-introduction-photo { min-height: 100%; margin: 0; overflow: hidden; }
.home-introduction-photo img { width: 100%; height: 100%; object-fit: cover; }

.rich-news {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.4rem 0;
  display: grid;
  grid-template-columns: minmax(12rem, 0.65fr) minmax(0, 1.35fr);
  gap: 2rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.rich-news p { margin: 0; }
.rich-news > div > p { margin-bottom: 0.2rem; color: var(--plum); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.18em; }
.rich-news h2 { margin: 0; font-size: 1.2rem; }
.rich-news time { margin-right: 1.25rem; color: var(--plum); font-weight: 800; }

.rich-panels { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }

.rich-link-panel {
  position: relative;
  min-height: min(640px, 61vw);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
}

.rich-link-panel > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.rich-link-panel-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgb(13 12 16 / 78%), transparent 65%); }
.rich-link-panel-copy { position: absolute; right: clamp(1.5rem, 5vw, 5rem); bottom: clamp(2rem, 6vw, 5rem); left: clamp(1.5rem, 5vw, 5rem); display: grid; gap: 0.5rem; }
.rich-link-panel-copy small { color: #d9b7ec; font-weight: 800; letter-spacing: 0.18em; }
.rich-link-panel-copy strong { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.2rem); }
.rich-link-panel-copy span { max-width: 34rem; }
.rich-link-panel-copy em { margin-top: 1rem; font-size: 0.86rem; font-style: normal; font-weight: 800; }
.rich-link-panel:hover > img, .rich-link-panel:focus-visible > img { transform: scale(1.06); }

.home-occasions { background: var(--paper); }
.home-occasion-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2.2rem; }
.home-occasion-card { position: relative; min-height: 250px; overflow: hidden; color: var(--white); background: var(--ink); text-decoration: none; }
.home-occasion-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform 500ms ease; }
.home-occasion-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(0deg, rgb(13 12 16 / 78%), transparent 65%); }
.home-occasion-card span { position: absolute; z-index: 1; right: 1.2rem; bottom: 1.1rem; left: 1.2rem; display: grid; gap: 0.2rem; }
.home-occasion-card small { color: #d9b7ec; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; }
.home-occasion-card strong { font-family: var(--serif); font-size: 1.18rem; }
.home-occasion-card:hover img, .home-occasion-card:focus-visible img { transform: scale(1.06); }

.home-contact {
  padding: clamp(3rem, 7vw, 6rem) max(1rem, calc((100% - 1180px) / 2));
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  color: var(--ink);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.home-contact h2 { margin-bottom: 0.55rem; }
.home-contact p:last-child { margin-bottom: 0; }
.home-contact > div:last-child { display: grid; justify-items: end; gap: 0.8rem; }
.home-contact-phone { color: var(--plum); font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 800; text-decoration: none; }
.home-contact-link { padding-bottom: 0.2rem; border-bottom: 1px solid var(--plum); color: var(--plum); font-weight: 800; text-decoration: none; }

.has-home-loader [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms ease; }
.has-home-loader .home-hero [data-reveal],
.has-home-loader .rich-hero [data-reveal] { transition-delay: 160ms; }
.has-home-loader .home-hero-copy[data-home-overlay][data-reveal] {
  transition-duration: 900ms;
  transition-delay: 280ms;
  transform: translateY(14%);
}
.has-home-loader .home-hero-copy[data-home-overlay][data-reveal].is-visible {
  transform: translateY(0);
}
.has-home-loader .rich-hero .rich-hero-logo { transition-delay: 100ms; }
.has-home-loader .rich-hero .rich-hero-kicker { transition-delay: 220ms; }
.has-home-loader .rich-hero h1 { transition-delay: 300ms; }
.has-home-loader .rich-hero .rich-hero-lead { transition-delay: 400ms; }
.has-home-loader .rich-hero .rich-hero-actions { transition-delay: 480ms; }
.has-home-loader [data-reveal].is-visible:not([data-home-overlay]),
.home-is-ready .home-hero [data-reveal],
.home-is-ready .rich-hero [data-reveal] { opacity: 1; transform: translateY(0); }

@keyframes crest-breathe { 50% { transform: scale(1.06); opacity: 0.62; } }
@keyframes crest-draw { to { stroke-dashoffset: 0; } }
@keyframes scroll-trace {
  0%, 100% { opacity: 0.42; }
  48% { opacity: 0.94; }
}
@keyframes chapter-photo-drift {
  from { transform: scale(1.02) translate3d(-0.75%, -0.5%, 0); }
  to { transform: scale(1.085) translate3d(0.75%, 0.5%, 0); }
}

@media (max-width: 980px) {
  .home-page .site-header { position: absolute; }
  .home-page .nav-toggle { border-color: rgb(255 255 255 / 55%); color: var(--white); background: rgb(0 0 0 / 12%); }
  .home-introduction, .home-contact { grid-template-columns: 1fr; }
  .home-introduction-photo { min-height: 25rem; }
  .home-contact > div:last-child { justify-items: start; }
  .home-occasion-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .home-page .header-inner { min-height: 72px; }
  .home-page .brand img { width: 145px; }
  .rich-hero-content { width: min(100% - 2rem, 1080px); padding: 7rem 0 5rem; }
  .rich-hero h1 { font-size: clamp(2.45rem, 14vw, 4.4rem); }
  .rich-hero-lead { font-size: 0.94rem; }
  .rich-hero-actions { display: grid; width: min(100%, 18rem); }
  .rich-scroll-cue { right: 1.2rem; bottom: 1.2rem; }
  .home-introduction-copy { width: min(100% - 2rem, 34rem); }
  .home-introduction-photo { min-height: 20rem; }
  .rich-news { grid-template-columns: 1fr; gap: 0.7rem; }
  .rich-panels, .home-occasion-grid { grid-template-columns: 1fr; }
  .rich-link-panel { min-height: 28rem; }
  .home-occasion-card { min-height: 220px; }
  .home-contact-phone { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .has-home-loader .home-loader { display: none; }
  .rich-scroll-cue span, .home-loader-crest, .home-loader-crest path { animation: none; }
  .rich-hero-video, .home-hero-video, .home-intro-logo { display: none; }
  .chapter-photo-motion img, .chapter-photo-sequence-slide img { animation: none; transform: none; transition: none; }
  .has-home-loader [data-reveal] { opacity: 1; transform: none; }
}
