/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  color: #2c2c2c;
  background-color: #faf8f5;
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #91331CCC;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
}

/* --- Logo --- */
.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* --- Navigation --- */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-link {
  display: block;
  color: #ffffff;
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 2px;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 10px;
  right: 10px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link:hover {
  opacity: 0.85;
}

/* CTA nav item */
.nav-link--cta {
  background-color: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 3px;
  padding: 6px 14px;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.nav-link--cta::after {
  display: none;
}

.nav-link--cta:hover {
  background-color: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.85);
  opacity: 1;
}

/* --- Hamburger (mobile toggle) --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.nav-toggle:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.hamburger-bar {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger open state */
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  max-height: 1000px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

/* Gradient overlay — subtle dark vignette for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: heroFadeUp 1.4s ease 0.3s both;
  margin-top: -15vh;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-tagline {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  color: #ffffff;
}

.hero-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  margin-top: 4px;
}





/* ── TRIPLA OVERRIDE CSS ──
   These rules match the style injections found in the live site source
   and adapt the Tripla-rendered form to our brand design.
   ──────────────────────────────────────────────────────── */

/* Tripla widget — centred in the lower half of the hero, equal space above & below */
#tripla-injct-senzairou {
  position: absolute;
  bottom: 8%;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  z-index: 10;
}

@media (min-width: 1024px) {
  #tripla-injct-senzairou {
    display: flex;
    justify-content: center;
  }
}

/* Override Tripla's default form chrome to match our bar */
#tripla-injct-senzairou form {
  background: #ffffff !important;
  box-shadow: unset !important;
  border-radius: 0 !important;
  border: 1px solid #d8cfc8 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Tripla search app padding on mobile */
@media (max-width: 500px) {
  #tripla-searching-app {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}

/* Hide a specific Tripla nav item that links to the old booking URL */
.p-index-slider__nav-item a[href="https://www.jhpds.net/senzairou/uw/uwp3100/uww3101.do?yadNo=318415"] {
  display: none !important;
}



/* ============================================================
   INTRO SECTION (page2)
   ============================================================ */
.intro-section {
  background-color: #faf8f5;
  padding: 96px 40px 100px;
}

.intro-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.intro-eyebrow {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  color: #91331C;
  text-transform: uppercase;
}

.intro-divider {
  width: 52px;
  height: 1px;
  background-color: #91331C;
  opacity: 0.55;
}

.intro-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-weight: 500;
  color: #2c2020;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.intro-body {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 300;
  color: #6b5c5c;
  line-height: 2.4;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Scenery image below the intro section */
.intro-scenery {
  width: 100%;
  line-height: 0;
}

.intro-scenery-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 860px) {
  .intro-section {
    padding: 64px 24px 72px;
  }

  .intro-heading {
    font-size: 20px;
    line-height: 1.8;
  }

  .intro-body {
    font-size: 16px;
    line-height: 2.2;
  }

  .intro-eyebrow {
    font-size: 13px;
    letter-spacing: 0.2em;
  }
}

/* ============================================================
   ARCHITECTURE SECTION (page2)
   ============================================================ */
.arch-section {
  background-color: #2c2020;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Text block — full width, centred content */
.arch-text-block {
  width: 100%;
  padding: 88px 40px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

/* Image — centred with breathing room on sides */
.arch-image-wrap {
  width: 100%;
  padding: 0 80px 88px;
  display: flex;
  justify-content: center;
}

.arch-img {
  width: 100%;
  max-width: 960px;
  height: auto;
  display: block;
  object-fit: cover;
}

.arch-eyebrow {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  color: #c09070;
}

.arch-divider {
  width: 40px;
  height: 1px;
  background-color: #91331C;
  opacity: 0.85;
}

.arch-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 500;
  color: #f5ede6;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.arch-body {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.85rem, 1.2vw, 0.98rem);
  font-weight: 300;
  color: #c8b8b0;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

.arch-closing {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  font-weight: 500;
  color: #e8d0c0;
  line-height: 2;
  letter-spacing: 0.08em;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 860px) {
  .arch-text-block {
    padding: 60px 28px 52px;
  }

  .arch-image-wrap {
    padding: 0 24px 64px;
  }

  .arch-heading {
    font-size: 20px;
    line-height: 1.7;
  }

  .arch-body,
  .arch-closing {
    font-size: 16px;
    line-height: 2;
  }

  .arch-eyebrow {
    font-size: 13px;
    letter-spacing: 0.2em;
  }
}

/* ============================================================
   HISTORY SECTION (page2)
   ============================================================ */
.history-section {
  background-color: #faf8f5;
  padding: 96px 40px 100px;
}

.history-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.history-eyebrow {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  color: #91331C;
}

.history-divider {
  width: 52px;
  height: 1px;
  background-color: #91331C;
  opacity: 0.55;
}

.history-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-weight: 500;
  color: #2c2020;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.history-body {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 300;
  color: #6b5c5c;
  line-height: 2.4;
  letter-spacing: 0.08em;
}

@media (max-width: 860px) {
  .history-section {
    padding: 64px 24px 72px;
  }

  .history-heading {
    font-size: 20px;
    line-height: 1.8;
  }

  .history-body {
    font-size: 16px;
    line-height: 2.2;
  }

  .history-eyebrow {
    font-size: 13px;
    letter-spacing: 0.2em;
  }
}

/* ============================================================
   HISTORICAL EPISODE SECTION (page2)
   ============================================================ */
.episode-section {
  display: flex;
  align-items: stretch;
  background-color: #f5f0eb;
}

/* Image — left half */
.episode-image-col {
  flex: 1 1 50%;
  overflow: hidden;
  background-color: #e8ddd4;
}

.episode-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s ease;
}

.episode-image-col:hover .episode-img {
  transform: scale(1.03);
}

/* Text — right half */
.episode-text-col {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 64px;
  background-color: #f5f0eb;
}

.episode-text-inner {
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.episode-eyebrow {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  color: #91331C;
}

.episode-divider {
  width: 40px;
  height: 1px;
  background-color: #91331C;
  opacity: 0.7;
}

.episode-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 500;
  color: #2c2020;
  line-height: 1.85;
  letter-spacing: 0.06em;
}

.episode-body {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.85rem, 1.2vw, 0.98rem);
  font-weight: 300;
  color: #6b5050;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

.episode-quote {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 500;
  color: #91331C;
  line-height: 2;
  letter-spacing: 0.07em;
  padding: 14px 20px;
  border-left: 3px solid #91331C;
  background-color: rgba(145, 51, 28, 0.05);
}

@media (max-width: 860px) {
  .episode-section {
    flex-direction: column;
  }

  .episode-image-col {
    flex: none;
    max-height: 420px;
  }

  .episode-text-col {
    flex: none;
    padding: 52px 28px;
  }

  .episode-text-inner {
    max-width: 100%;
  }

  .episode-heading {
    font-size: 20px;
    line-height: 1.7;
  }

  .episode-body,
  .episode-quote {
    font-size: 15px;
    line-height: 2;
  }

  .episode-eyebrow {
    font-size: 13px;
    letter-spacing: 0.2em;
  }
}

/* ============================================================
   NOTABLE VISITORS SECTION (page2)
   ============================================================ */
.visitors-section {
  background-color: #2c2020;
  padding: 96px 40px 104px;
}

.visitors-inner {
  max-width: 760px;
  margin: 0 auto 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.visitors-eyebrow {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  color: #c09070;
}

.visitors-divider {
  width: 52px;
  height: 1px;
  background-color: #91331C;
  opacity: 0.7;
}

.visitors-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-weight: 500;
  color: #f5ede6;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.visitors-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 300;
  color: #c8b8b0;
  line-height: 2.3;
  letter-spacing: 0.07em;
}

.visitors-body {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  font-weight: 400;
  color: #e8d0c0;
  line-height: 2;
  letter-spacing: 0.08em;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

/* Portrait row */
.visitors-portraits {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.portrait-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  flex: 0 0 200px;
}

/* Circular image frame */
.portrait-img-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(192, 144, 112, 0.45);
  background-color: #3a2218;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: sepia(20%) contrast(1.05);
  transition: filter 0.3s ease, transform 0.4s ease;
}

.portrait-figure:hover .portrait-img {
  filter: sepia(0%) contrast(1.08);
  transform: scale(1.04);
}

/* Fallback when image fails to load */
.portrait-img-wrap--fallback {
  background-color: #3a2218;
}

.portrait-img-wrap--fallback::after {
  content: '—';
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  color: rgba(192, 144, 112, 0.5);
}

/* Caption */
.portrait-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.portrait-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #f5ede6;
  letter-spacing: 0.15em;
}

.portrait-role {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.75rem;
  font-weight: 300;
  color: #c09070;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .visitors-section {
    padding: 64px 24px 72px;
  }

  .visitors-inner {
    margin-bottom: 52px;
  }

  .visitors-heading {
    font-size: 20px;
  }

  .visitors-lead,
  .visitors-body {
    font-size: 15px;
  }

  .visitors-portraits {
    gap: 40px;
  }

  .portrait-figure {
    flex: 0 0 140px;
  }

  .portrait-img-wrap {
    width: 120px;
    height: 120px;
  }
}

/* ============================================================
   ROOMS SECTION (page2)
   ============================================================ */
.rooms-section {
  background-color: #1a0d08;
  padding: 88px 48px 100px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1320px;
  margin: 0 auto;
}

/* Centre the last card when it sits alone on the second row */
.room-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: calc(50% - 14px);
  margin: 0 auto;
}

/* Individual room card — horizontal layout: image left, text right */
.room-card {
  display: flex;
  flex-direction: row;
  background-color: #2c1a12;
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

/* Image */
.room-card-image-wrapper {
  flex: 0 0 44%;
  overflow: hidden;
  background-color: #3a2218;
}

.room-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.room-card:hover .room-card-img {
  transform: scale(1.04);
}

/* Body */
.room-card-body {
  flex: 1;
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
}

.room-card-eyebrow {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  color: #c09070;
}

.room-card-divider {
  width: 36px;
  height: 1px;
  background-color: #91331C;
  opacity: 0.85;
}

.room-card-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 500;
  color: #f5ede6;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.room-card-body-text {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
  font-weight: 300;
  color: #c8b8b0;
  line-height: 2.1;
  letter-spacing: 0.04em;
}

.room-card-closing {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.8rem, 1.1vw, 0.9rem);
  font-weight: 400;
  color: #e8d0c0;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.room-card-cta {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 20px;
  padding: 10px 24px;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #e8d0c0;
  border: 1px solid rgba(232, 208, 192, 0.5);
  border-radius: 2px;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.room-card-cta:hover {
  background-color: #91331C;
  border-color: #91331C;
  color: #ffffff;
}

@media (max-width: 860px) {
  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .room-card:last-child:nth-child(odd) {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }

  .room-card {
    flex-direction: column;
  }

  .room-card-image-wrapper {
    flex: none;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .rooms-section {
    padding: 52px 20px 64px;
  }

  .room-card-body {
    padding: 24px 22px 28px;
  }

  .room-card-heading {
    font-size: 18px;
  }

  .room-card-body-text,
  .room-card-closing {
    font-size: 15px;
  }

  .room-card-cta {
    align-self: stretch;
    text-align: center;
  }
}

/* ============================================================
   CLOSING STATEMENT SECTION (page2)
   ============================================================ */
.closing-section {
  background-color: #1a0d08;
  padding: 112px 40px 120px;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.closing-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #f5ede6;
  line-height: 2;
  letter-spacing: 0.1em;
}

.closing-divider {
  width: 52px;
  height: 1px;
  background-color: #91331C;
  opacity: 0.7;
}

.closing-body {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 300;
  color: #c8b8b0;
  line-height: 2.5;
  letter-spacing: 0.1em;
}

@media (max-width: 860px) {
  .closing-section {
    padding: 72px 28px 80px;
  }

  .closing-heading {
    font-size: 22px;
    line-height: 1.9;
  }

  .closing-body {
    font-size: 16px;
    line-height: 2.2;
  }
}

/* ============================================================
   PLANS SECTION
   ============================================================ */
.plans-section {
  background-color: #faf8f5;
  padding: 80px 40px 100px;
}

/* Plans header block (page2 variant) */
.plans-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.plans-eyebrow {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #91331C;
  opacity: 0.85;
}

.plans-divider {
  width: 48px;
  height: 1px;
  background-color: #91331C;
  opacity: 0.6;
}

.plans-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  color: #2c1a12;
  letter-spacing: 0.1em;
}

.plans-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.82rem, 1.3vw, 0.95rem);
  color: #6b5c5c;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* Intro block */
.plans-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.plans-intro-divider {
  width: 48px;
  height: 1px;
  background-color: #91331C;
  opacity: 0.6;
}

.plans-intro-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  color: #91331C;
  letter-spacing: 0.2em;
}

.plans-intro-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 400;
  color: #3a2e2e;
  letter-spacing: 0.08em;
}

.plans-intro-body {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.82rem, 1.3vw, 0.95rem);
  color: #6b5c5c;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* Cards grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

/* page2 inner link wrapper — must stretch and relay the flex chain */
.plan-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* Individual card */
.plan-card {
  background-color: #ffffff;
  border: 1px solid #e8e0d8;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(100, 60, 40, 0.14);
}

.plan-card--featured {
  border-color: #91331C;
  box-shadow: 0 4px 20px rgba(145, 51, 28, 0.15);
}

/* Card image */
.plan-card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #e8e0d8;
}

.plan-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.plan-card:hover .plan-card-image {
  transform: scale(1.05);
}

/* Placeholder for cards without images */
.plan-card-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.plan-card-image--1 { background: linear-gradient(135deg, #c8b89a 0%, #a08060 100%); }
.plan-card-image--3 { background: linear-gradient(135deg, #c4a882 0%, #8c6040 100%); }
.plan-card-image--4 { background: linear-gradient(135deg, #b8a8c8 0%, #806090 100%); }
.plan-card-image--5 { background: linear-gradient(135deg, #a8b898 0%, #607850 100%); }
.plan-card-image--6 { background: linear-gradient(135deg, #a0b0c0 0%, #506880 100%); }

.plan-card-placeholder-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
}

/* Badge */
.plan-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #91331C;
  color: #ffffff;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 2px;
}

.plan-card-badge--featured {
  background-color: #c0392b;
}

.plan-card-badge--anniversary {
  background-color: #8e6a3a;
}

/* Card body */
.plan-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  justify-content: flex-start;
}

.plan-card-tag {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #91331C;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-left: 2px solid #91331C;
  padding-left: 8px;
}

.plan-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  font-weight: 400;
  color: #2c2020;
  line-height: 1.75;
  letter-spacing: 0.03em;
  flex: 1;
}

.plan-card-cta {
  display: inline-block;
  margin-top: auto;
  align-self: flex-start;
  padding: 9px 22px;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #91331C;
  border: 1px solid #91331C;
  border-radius: 2px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.plan-card-cta:hover {
  background-color: #91331C;
  color: #ffffff;
}

.plan-card--featured .plan-card-cta {
  background-color: transparent;
  color: #91331C;
}

.plan-card--featured .plan-card-cta:hover {
  background-color: #91331C;
  color: #ffffff;
}

/* ============================================================
   HIDA BEEF SECTION
   ============================================================ */
.hida-section {
  background-color: #1a0d08;
}

/* Hero area — image left, text right */
.hida-hero {
  display: flex;
  align-items: stretch;
}

.hida-hero-image-col {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a0d08;
  padding: 40px;
}

.hida-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.hida-hero-text-col {
  flex: 1 1 50%;
  background-color: #1a0d08;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 80px 64px;
}

.hida-eyebrow {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: #c09070;
}

.hida-divider {
  width: 48px;
  height: 1px;
  background-color: #91331C;
  opacity: 0.9;
}

.hida-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 500;
  color: #f5ede6;
  line-height: 2;
  letter-spacing: 0.07em;
}

.hida-body {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.85rem, 1.3vw, 0.98rem);
  font-weight: 300;
  color: #c8b4a8;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

/* Plans sub-section */
.hida-plans {
  background-color: #1a0d08;
  padding: 60px 40px 80px;
}

.hida-plans-intro {
  text-align: center;
  margin-bottom: 36px;
}

.hida-plans-label {
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #c09070;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(145, 51, 28, 0.6);
}

.hida-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================================
   CUISINE SECTION
   ============================================================ */
.cuisine-section {
  display: flex;
  align-items: stretch;
  background-color: #f5ede6;
}

/* Text column — left half */
.cuisine-text-col {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 64px;
}

.cuisine-text-inner {
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cuisine-eyebrow {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #91331C;
}

.cuisine-divider {
  width: 40px;
  height: 1px;
  background-color: #91331C;
  opacity: 0.7;
}

.cuisine-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 500;
  color: #2c2020;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.cuisine-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.88rem, 1.3vw, 1.02rem);
  font-weight: 400;
  color: #5a3e3e;
  line-height: 2.2;
  letter-spacing: 0.06em;
}

.cuisine-body {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.82rem, 1.1vw, 0.93rem);
  font-weight: 300;
  color: #6b5050;
  line-height: 2.1;
  letter-spacing: 0.04em;
}

.cuisine-closing {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.85rem, 1.2vw, 0.98rem);
  font-weight: 500;
  color: #91331C;
  line-height: 2;
  letter-spacing: 0.06em;
  padding-top: 10px;
  border-top: 1px solid rgba(145, 51, 28, 0.2);
}

/* Image column — right half */
.cuisine-image-col {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5ede6;
  padding: 40px;
}

.cuisine-img-full {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ============================================================
   CONCEPT SECTION
   ============================================================ */
.concept-section {
  display: flex;
  align-items: stretch;
  min-height: 560px;
  background-color: #faf8f5;
}

/* Image column — left half */
.concept-image-col {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2c2020;
  padding: 40px;
}

.concept-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.concept-image-col:hover .concept-img {
  transform: scale(1.02);
}

/* Text column — right half */
.concept-text-col {
  flex: 1 1 50%;
  background-color: #2c2020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 64px;
}

.concept-text-inner {
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.concept-eyebrow {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #c09070;
  text-transform: uppercase;
}

.concept-divider {
  width: 40px;
  height: 1px;
  background-color: #91331C;
  opacity: 0.8;
}

.concept-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 500;
  color: #f5ede6;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.concept-body {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.88rem, 1.3vw, 1.05rem);
  font-weight: 300;
  color: #c8b8b0;
  line-height: 2.2;
  letter-spacing: 0.06em;
}

.concept-closing {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.88rem, 1.3vw, 1.05rem);
  font-weight: 400;
  color: #e8d8d0;
  line-height: 2;
  letter-spacing: 0.06em;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================================
   PRIVATE BATH SECTION
   ============================================================ */
.bath-section {
  background-color: #f5f0eb;
}

/* Hero: image left, text right */
.bath-hero {
  display: flex;
  align-items: stretch;
}

/* Portrait image column — narrower since image is tall */
.bath-image-col {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e8ddd4;
  overflow: hidden;
}

.bath-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Text column */
.bath-text-col {
  flex: 1 1 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 64px;
  background-color: #f5f0eb;
}

.bath-text-inner {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bath-eyebrow {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #91331C;
}

.bath-divider {
  width: 40px;
  height: 1px;
  background-color: #91331C;
  opacity: 0.7;
}

.bath-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 500;
  color: #2c2020;
  line-height: 1.85;
  letter-spacing: 0.06em;
}

.bath-body {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.82rem, 1.1vw, 0.93rem);
  font-weight: 300;
  color: #6b5050;
  line-height: 2.1;
  letter-spacing: 0.04em;
}

.bath-closing {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.85rem, 1.2vw, 0.98rem);
  font-weight: 500;
  color: #91331C;
  line-height: 2;
  letter-spacing: 0.06em;
  padding-top: 10px;
  border-top: 1px solid rgba(145, 51, 28, 0.2);
}

/* Plans sub-section */
.bath-plans {
  background-color: #ede6de;
  padding: 56px 40px 72px;
}

.bath-plans-intro {
  text-align: center;
  margin-bottom: 36px;
}

.bath-plans-label {
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #91331C;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(145, 51, 28, 0.5);
}

.bath-plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

/* ============================================================
   HIDDEN INN SECTION
   ============================================================ */
.hidden-section {
  display: flex;
  align-items: stretch;
  background-color: #2c2020;
}

.hidden-text-col {
  flex: 1 1 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 64px;
}

.hidden-text-inner {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hidden-eyebrow {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #c09070;
}

.hidden-divider {
  width: 40px;
  height: 1px;
  background-color: #91331C;
  opacity: 0.8;
}

.hidden-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  font-weight: 500;
  color: #f5ede6;
  line-height: 1.85;
  letter-spacing: 0.06em;
}

.hidden-body {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.82rem, 1.1vw, 0.93rem);
  font-weight: 300;
  color: #c8b8b0;
  line-height: 2.1;
  letter-spacing: 0.04em;
}

.hidden-closing {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.88rem, 1.2vw, 1rem);
  font-weight: 500;
  color: #e8d0c0;
  line-height: 2;
  letter-spacing: 0.08em;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hidden-image-col {
  flex: 1 1 45%;
  overflow: hidden;
}

.hidden-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}

.hidden-image-col:hover .hidden-img {
  transform: scale(1.04);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  background-color: #faf8f5;
  padding: 72px 0 80px;
}

.gallery-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  padding: 0 40px;
}

.gallery-intro-divider {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background-color: #91331C;
  opacity: 0.4;
}

.gallery-intro-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: #91331C;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

/* ── Masonry column gallery ── */
.gallery-masonry {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-masonry-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
}

.gallery-masonry-item {
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  line-height: 0;
  background-color: #e8ddd4;
}

.gallery-masonry-img {
  width: 100%;
  height: auto;           /* preserve natural aspect ratio — no cropping */
  display: block;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.gallery-masonry-item:hover .gallery-masonry-img {
  opacity: 0.88;
  transform: scale(1.02);
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-caption {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.12em;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
  z-index: 9001;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 2px;
  opacity: 0.75;
  transition: background 0.2s, opacity 0.2s;
  z-index: 9001;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
  opacity: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: #1a0d08;
  color: #c8b4a8;
  padding: 64px 40px 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: #9a8880;
  letter-spacing: 0.12em;
  line-height: 1.8;
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  list-style: none;
}

.footer-nav-list li a {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: #c8b4a8;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-nav-list li a:hover {
  color: #e8c8b8;
}

.footer-cta {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.footer-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  text-decoration: none;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.footer-cta-btn:hover {
  background-color: #91331C;
  border-color: #91331C;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}

.footer-copy {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.72rem;
  color: #6a5a54;
  letter-spacing: 0.08em;
}

/* ============================================================
   FLOATING RESERVATION BUTTON (desktop only)
   ============================================================ */

.float-reserve-btn {
  display: none;
}

@media (min-width: 1025px) {
  .float-reserve-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    padding: 10px 0;
    margin-bottom: 8px;
    background-color: #91331C;
    color: #ffffff;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(145, 51, 28, 0.4);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
  }

  .float-reserve-btn:hover {
    background-color: #7a2a16;
    box-shadow: 0 6px 18px rgba(145, 51, 28, 0.55);
  }
}

/* ============================================================
   FLOATING VIDEO WIDGET (desktop only)
   ============================================================ */

/* Hidden on mobile/tablet always */
.video-widget,
.video-modal-overlay {
  display: none;
}

@media (min-width: 1025px) {

  /* ── Wrapper — starts invisible, JS reveals after 5s ── */
  .video-widget {
    display: block;
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }

  /* Revealed state (added by JS after 5s) */
  .video-widget.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  /* ── Minimised pill ── */
  .video-widget-pill {
    display: none; /* shown only in minimised state */
    align-items: center;
    gap: 6px;
    padding: 9px 16px 9px 12px;
    background-color: #91331C;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(145,51,28,0.5);
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .video-widget-pill:hover {
    background-color: #7a2a16;
    transform: translateY(-2px);
  }

  /* Show pill only when minimised */
  .video-widget.is-minimised .video-widget-pill {
    display: flex;
  }

  .video-widget.is-minimised .video-widget-player {
    display: none;
  }

  /* ── Expanded player wrapper ── */
  .video-widget-player {
    position: relative;
    width: 160px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #1a0d08;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    animation: videoSlideUp 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  @keyframes videoSlideUp {
    from { opacity: 0; transform: translateY(20px) scale(0.93); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
  }

  /* ── Minimise button (top-right of player) ── */
  .video-widget-minimise {
    position: absolute;
    top: 7px;
    right: 7px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: rgba(26,13,8,0.75);
    border: 1px solid rgba(232,208,192,0.25);
    border-radius: 50%;
    color: #e8d0c0;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .video-widget-minimise:hover {
    background-color: rgba(145,51,28,0.85);
  }

  /* ── Video frame (9:16) ── */
  .video-widget-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
  }

  .video-widget-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
  }

  /* ── Expand-to-modal button (bottom-right of player) ── */
  .video-widget-expand {
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(26,13,8,0.78);
    border: 1px solid rgba(232,208,192,0.3);
    border-radius: 6px;
    color: #e8d0c0;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .video-widget-expand:hover {
    background-color: #91331C;
    transform: scale(1.1);
  }

  /* ── Full-size modal ── */
  .video-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: rgba(0,0,0,0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.25s ease;
  }

  .video-modal-overlay[hidden] {
    display: none;
  }

  @keyframes modalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  .video-modal-inner {
    position: relative;
    width: min(380px, 90vw);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    animation: modalSlideUp 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  @keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
  }

  .video-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: rgba(26,13,8,0.85);
    border: 1px solid rgba(232,208,192,0.3);
    border-radius: 50%;
    color: #e8d0c0;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .video-modal-close:hover {
    background-color: #91331C;
  }

  .video-modal-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    background-color: #000;
  }

  .video-modal-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
  }

}

/* ============================================================
   SCROLL-REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

/* Stagger delay helpers */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE — TABLET & MOBILE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-link {
    font-size: 0.75rem;
    padding: 5px 7px;
  }

  /* Plans: 2 columns on tablet */
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .plans-section {
    padding: 60px 28px 80px;
  }

  /* Hida plans: 2 columns on tablet */
  .hida-plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 860px) {
  /* Hero: block flow on mobile — image, then text overlay, then widget below */
  .hero {
    height: auto;
    min-height: unset;
    max-height: unset;
    overflow: visible;
    display: block;
    padding: 0;
  }

  /* Image: full-width, natural height, not a background */
  .hero-image-wrapper {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .hero-img {
    width: 100%;
    height: auto;
    object-fit: unset;
    animation: none;
    transform: none;
  }

  .hero-overlay {
    display: none;
  }

  /* Text: sits below the image, dark background for readability */
  .hero-content {
    position: relative;
    margin-top: 0;
    padding: 36px 24px 32px;
    background-color: #1a0d08;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-tagline {
    color: rgba(255, 255, 255, 0.8);
  }

  .hero-subtitle {
    color: rgba(255, 255, 255, 0.75);
  }

  /* Widget: flows naturally right below the text block */
  #tripla-injct-senzairou {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    margin: 0;
    z-index: 2;
  }

  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background-color: #91331CCC;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }

  .nav-link {
    font-size: 0.95rem;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    text-align: center;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link--cta {
    margin-top: 8px;
    border-radius: 4px;
    text-align: center;
  }

  /* Bath section */
  .bath-hero {
    flex-direction: column;
  }

  .bath-image-col {
    flex: none;
    max-height: 480px;
  }

  .bath-text-col {
    padding: 48px 24px;
  }

  .bath-text-inner {
    max-width: 100%;
  }

  .bath-plans {
    padding: 40px 20px 56px;
  }

  .bath-plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Hida beef section */
  .hida-hero {
    flex-direction: column;
  }

  .hida-hero-image-col {
    padding: 32px 24px 0;
  }

  .hida-hero-text-col {
    padding: 40px 24px 48px;
    gap: 14px;
  }

  .hida-plans {
    padding: 40px 20px 60px;
  }

  .hida-plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Cuisine section on mobile */
  .cuisine-section {
    flex-direction: column;
  }

  .cuisine-text-col {
    padding: 48px 28px;
  }

  .cuisine-image-col {
    padding: 0 24px 40px;
  }

  /* Concept section stacks vertically on mobile */
  .concept-section {
    flex-direction: column;
  }

  .concept-image-col {
    flex: none;
    height: 300px;
  }

  .concept-text-col {
    flex: none;
    padding: 48px 28px;
  }

  .concept-text-inner {
    max-width: 100%;
  }

  /* Plans: 1 column on mobile */
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .plans-section {
    padding: 48px 20px 64px;
  }

  .plans-intro {
    margin-bottom: 40px;
  }

  .plan-card-cta {
    align-self: stretch;
    text-align: center;
  }

  /* Hidden inn section — stack on mobile */
  .hidden-section {
    flex-direction: column;
  }

  .hidden-text-col {
    flex: none;
    padding: 52px 28px 40px;
    order: 2;
  }

  .hidden-text-inner {
    max-width: 100%;
  }

  .hidden-image-col {
    flex: none;
    height: 300px;
    order: 1;
  }

  /* Gallery — tighter padding on mobile */
  .gallery-section {
    padding: 52px 0 60px;
  }

  .gallery-masonry {
    gap: 6px;
    padding: 0 12px;
  }

  .gallery-masonry-col {
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    gap: 4px;
    padding: 0 8px;
  }

  .gallery-masonry-col {
    gap: 4px;
  }

  .hidden-image-col {
    height: 240px;
  }
}

/* Footer responsive */
@media (max-width: 860px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }

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

  .site-footer {
    padding: 48px 28px 0;
  }
}

@media (max-width: 480px) {
  .footer-nav-list {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================================
   MOBILE HEADING SIZES — all section headings capped at 20px
   ============================================================ */

/* Mobile line break — hidden on desktop */
.plans-intro-lead-break {
  display: inline;
}

/* Desktop-only <br> — hidden on mobile */
@media (max-width: 860px) {
  br.desktop-only {
    display: none;
  }
}

@media (max-width: 860px) {
  .plans-intro-lead-break {
    display: block;
  }

  /* Section headings — keep at 20px */
  .concept-heading,
  .cuisine-heading,
  .hida-heading,
  .bath-heading,
  .hidden-heading {
    font-size: 20px;
    line-height: 1.7;
  }

  /* Eyebrow labels — up to 14px */
  .concept-eyebrow,
  .cuisine-eyebrow,
  .hida-eyebrow,
  .bath-eyebrow,
  .hidden-eyebrow,
  .hida-plans-label,
  .bath-plans-label {
    font-size: 14px;
    letter-spacing: 0.15em;
  }

  /* Body / paragraph text — up to 16px */
  .concept-body,
  .concept-closing,
  .cuisine-lead,
  .cuisine-body,
  .cuisine-closing,
  .hida-body,
  .bath-body,
  .bath-closing,
  .hidden-body,
  .hidden-closing,
  .plans-intro-lead,
  .plans-intro-body {
    font-size: 16px;
    line-height: 2;
  }

  /* Plan cards */
  .plan-card-title {
    font-size: 15px;
  }

  .plan-card-tag {
    font-size: 13px;
  }

  .plan-card-cta {
    font-size: 15px;
  }

  .plan-card-badge {
    font-size: 12px;
  }

  /* Nav links */
  .nav-link {
    font-size: 16px;
  }

  /* Hero text */
  .hero-tagline {
    font-size: 15px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  /* Footer */
  .footer-tagline,
  .footer-nav-list li a,
  .footer-copy {
    font-size: 14px;
  }

  /* Plans section heading */
  .plans-intro-title {
    font-size: 22px;
  }
}
