/* ============================================================
   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;
}



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

/* 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;
}

/* 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;
}

.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: 8px;
  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: #91331C;
  color: #ffffff;
}

.plan-card--featured .plan-card-cta:hover {
  background-color: #7a2a16;
}

/* ============================================================
   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;
}

/* ============================================================
   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;
  }
}
