/* =============================================
   ヒビノクラシ — Style (co-sato inspired)
   ============================================= */

:root {
  --green: #5a8a3c;
  --green-dark: #3d5e2a;
  --green-light: #8bb96e;
  --green-pale: #d6e8c4;
  --green-bg: #f0f5e8;
  --cream: #faf9f5;
  --white: #ffffff;
  --text: hsl(30, 18%, 14%);
  --text-light: hsl(30, 12%, 28%);
  --text-muted: hsl(30, 10%, 45%);
  --border: #e0ddd4;
  --max-w: 1080px;
}

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }

body {
  font-family: 'Noto Sans JP', 'Helvetica Neue', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

/* ========== UTILITIES ========== */
.inner { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.inner-narrow { max-width: 760px; margin: 0 auto; padding: 0 40px; }

.sec-label {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--green);
  margin-bottom: 16px;
}

.sec-label--light { color: rgba(255,255,255,0.7); }

.sec-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: var(--text);
  text-align: center;
  margin-bottom: 48px;
}

.link-more {
  display: inline-block;
  margin-top: 28px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid var(--green-pale);
  padding-bottom: 3px;
  transition: border-color 0.3s;
}
.link-more:hover { border-color: var(--green); }

/* ========== BACKGROUND BLOBS ========== */
.blob {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0;
  animation: blobFadeIn 1.5s ease-out forwards;
}

/* Statement blobs */
.blob-stmt-1 {
  width: 380px; height: 380px;
  background: var(--green-pale);
  top: 0; right: 5%;
  animation-delay: 0.2s;
}
.blob-stmt-2 {
  width: 300px; height: 300px;
  background: #e8d5b8;
  top: 25%; left: 5%;
  animation-delay: 0.5s;
}
.blob-stmt-3 {
  width: 260px; height: 260px;
  background: var(--green-pale);
  bottom: 10%; left: 25%;
  animation-delay: 0.8s;
}
.blob-stmt-4 {
  width: 220px; height: 220px;
  background: #e8d5b8;
  top: 50%; right: 10%;
  animation-delay: 1.0s;
}
.blob-stmt-5 {
  width: 180px; height: 180px;
  background: var(--green-pale);
  bottom: 30%; right: 25%;
  animation-delay: 1.2s;
}

/* Feature blobs */
.blob-feat-1 {
  width: 420px; height: 420px;
  background: var(--green-pale);
  top: 40px; left: 5%;
  animation-delay: 0.2s;
}
.blob-feat-2 {
  width: 360px; height: 360px;
  background: #e8d5b8;
  top: 25%; right: 0;
  animation-delay: 0.5s;
}
.blob-feat-3 {
  width: 320px; height: 320px;
  background: var(--green-pale);
  bottom: 20%; left: 10%;
  animation-delay: 0.8s;
}
.blob-feat-4 {
  width: 260px; height: 260px;
  background: #e8d5b8;
  top: 55%; left: 35%;
  animation-delay: 1.0s;
}
.blob-feat-5 {
  width: 280px; height: 280px;
  background: var(--green-pale);
  top: 5%; right: 15%;
  animation-delay: 0.4s;
}

/* Location blobs */
.blob-loc-1 {
  width: 360px; height: 360px;
  background: var(--green-pale);
  bottom: -40px; right: 5%;
  animation-delay: 0.3s;
}
.blob-loc-2 {
  width: 280px; height: 280px;
  background: #e8d5b8;
  top: -20px; left: 10%;
  animation-delay: 0.6s;
}

@keyframes blobFadeIn {
  to { opacity: 0.5; }
}

/* ========== HEADER ========== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

#header.scrolled {
  background: rgba(250, 249, 245, 0.8);
  padding: 14px 48px;
  box-shadow: 0 1px 16px rgba(0,0,0,0.05);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { text-decoration: none; line-height: 0; }
.logo-color { display: none; height: 40px; }
.logo-white { display: block; height: 40px; }

#header.scrolled .logo-color { display: block; }
#header.scrolled .logo-white { display: none; }

.subpage .logo-color { display: block; }
.subpage .logo-white { display: none; }

.nav-links {
  display: none;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.6; }
#header.scrolled .nav-links a { color: var(--text); }

.btn-nav-reserve {
  background: var(--green) !important;
  color: white !important;
  padding: 8px 24px !important;
  border-radius: 100px;
  transition: background 0.3s !important;
}
.btn-nav-reserve:hover {
  background: var(--green-dark) !important;
  opacity: 1 !important;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: background 0.3s;
}
#header.scrolled .hamburger span { background: var(--text); }

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 100vw);
  height: 100vh;
  background: var(--green-dark);
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
}

.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 24px 0; }
.mobile-menu ul a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.3em;
}

.mobile-reserve-btn {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.5) !important;
  padding: 10px 32px;
  border-radius: 100px;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 100;
}
.menu-overlay.open { display: block; }

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 80vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.slideshow { position: absolute; inset: 0; }

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.08) 50%,
    rgba(0,0,0,0.02) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 0 60px 100px;
  width: 100%;
}

.hero-tagline {
  font-size: 1.6rem;
  font-weight: 300;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.08em;
  line-height: 2.0;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.btn-hero-reserve {
  display: inline-block;
  margin-top: 32px;
  color: white;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 14px 56px;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  border-radius: 100px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn-hero-reserve:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.slide-dots {
  position: absolute;
  bottom: 40px;
  right: 60px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.dot.active {
  background: white;
  transform: scale(1.3);
}

.scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  z-index: 2;
}
.scroll-down span {
  color: rgba(255,255,255,0.65);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
}
.scroll-line {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.7);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ========== STATEMENT ========== */
.sec-statement {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 100px 40px 120px;
  text-align: center;
}

.sec-statement > .inner-narrow { position: relative; z-index: 2; }

.sec-statement .inner-narrow {
  opacity: 1;
  transform: none;
}

.sec-statement-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  line-height: 2.0;
  color: var(--text);
  margin-bottom: 64px;
}

.sec-statement-body {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 2.2;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.sec-statement-separator {
  color: var(--green-light) !important;
  font-size: 0.85rem !important;
  letter-spacing: 1em;
  margin: 48px 0;
}

.sec-statement .link-more {
  margin-top: 40px;
}

/* ========== CINEMATIC BANNER ========== */
.sec-cinema {
  position: relative;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cinema-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cinema-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.cinema-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cinema-copy {
  font-family: 'Shippori Mincho', serif;
  font-size: 2rem;
  font-weight: 400;
  color: white;
  letter-spacing: 0.2em;
  line-height: 1;
}

/* ========== PHOTO BAND ========== */
.photo-band {
  overflow: hidden;
  padding: 0;
  background: var(--cream);
}

.photo-band-track {
  display: flex;
  gap: 6px;
  width: max-content;
  animation: photoBandScroll 40s linear infinite;
}

.photo-band-track img {
  height: 320px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

@keyframes photoBandScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== FEATURES V2 ========== */
.sec-features-v2 {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding-bottom: 80px;
}
.sec-features-v2 > .features-v2-header,
.sec-features-v2 > .features-v2-list {
  position: relative;
  z-index: 2;
}

.features-v2-header {
  text-align: center;
  padding: 140px 40px 64px;
  position: relative;
}

.features-v2-header .sec-label {
  margin-bottom: 20px;
}

.features-v2-header .sec-heading {
  font-size: 1.4rem;
  margin-bottom: 0;
}

.features-v2-list {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* Each feature item: horizontal layout */
.feat-v2-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}
.feat-v2-item:last-child {
  margin-bottom: 0;
}

/* Reverse layout for even items */
.feat-v2-reverse {
  direction: rtl;
}
.feat-v2-reverse > * {
  direction: ltr;
}

.feat-v2-img {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}
.feat-v2-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.feat-v2-img:hover img {
  transform: scale(1.03);
}

.feat-v2-body {
  text-align: left;
}

.feat-v2-num {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-size: 2.4rem;
  font-weight: 200;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.feat-v2-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}

.feat-v2-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 2.2;
  letter-spacing: 0.04em;
}

/* Keep .story-title for location section */
.story-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 28px;
}

/* ========== LOCATION ========== */
.sec-location {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 110px 40px;
}

.sec-location > .inner { position: relative; z-index: 2; }

.loc-row {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.loc-img { overflow: hidden; border-radius: 12px; }
.loc-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.loc-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

/* ========== FOOTER ========== */
footer {
  background: #0e1a09;
}

.footer-body {
  color: rgba(255,255,255,0.8);
  padding: 72px 48px 48px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.footer-left {
  flex: 1;
  min-width: 0;
}

.footer-logo-mark {
  width: min(540px, 100%);
  display: block;
  margin-bottom: 40px;
}

.footer-contact {
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-tel {
  margin-bottom: 12px;
}

.footer-tel a {
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.footer-tel-label {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  margin-right: 10px;
}

.footer-address {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.footer-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-footer-dark {
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 9px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-footer-dark:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.footer-right {
  display: flex;
  gap: 56px;
  flex-shrink: 0;
}

.footer-nav h4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
.footer-nav a:hover { color: white; }

footer a { text-decoration: none; }

.copyright {
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.62rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  letter-spacing: 0.08em;
}

/* ========== PHOTO TONE UNIFICATION ========== */
.feat-v2-img img,
.loc-img img,
.about-story-img img,
.slide,
.room-photo img,
.gallery-item img {
  filter: contrast(0.95) brightness(1.02) saturate(0.9) sepia(0.05);
}

/* ========== GRAIN OVERLAY ========== */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ========== SCROLL ANIMATION ========== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for statement elements */
.sec-statement .stagger-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.sec-statement .stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.sec-statement .sec-label.stagger-item {
  transform: none;
}

/* ========== SUBPAGE COMMON ========== */
.subpage #header {
  background: rgba(250, 249, 245, 0.97);
  box-shadow: 0 1px 16px rgba(0,0,0,0.05);
  padding: 14px 48px;
}

.nav-links a.active {
  color: var(--green) !important;
}

.page-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 0 60px 48px;
}

.page-hero-content h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.8rem;
  font-weight: 200;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

/* ========== ABOUT PAGE ========== */
.section { padding: 100px 40px; }
.section-green { background: var(--cream); }
.container { max-width: var(--max-w); margin: 0 auto; }

.about-lead-section {
  background: var(--white);
  padding: 100px 40px 80px;
  text-align: center;
}

.about-lead-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.9rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  line-height: 2.0;
  color: var(--text);
  margin-bottom: 40px;
}

.about-lead-body {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 2.2;
  letter-spacing: 0.05em;
}

.about-story-section {
  background: var(--cream);
  padding: 80px 40px 100px;
}

.about-story-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto 100px;
}
.about-story-item:last-child { margin-bottom: 0; }

.about-story-reverse {
  direction: rtl;
}
.about-story-reverse > * {
  direction: ltr;
}

.about-story-img {
  overflow: hidden;
  border-radius: 12px;
}
.about-story-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.about-story-img:hover img {
  transform: scale(1.03);
}

.about-story-body { text-align: left; }

.about-story-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 28px;
  margin-top: 16px;
}

.about-story-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 2.3;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

/* ========== GALLERY ========== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 4px;
}
.gallery-item { overflow: hidden; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.tall { grid-row: span 2; }

/* ========== STAY PAGE ========== */
.stay-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.stay-intro h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 24px;
}

.stay-intro p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 2.2;
}

.room-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}

.room-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
}

.room-info .info-block { border-bottom: 1px solid var(--border); padding: 20px 0; }
.room-info .info-block:first-child { padding-top: 0; }

.info-block h3 {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.info-block p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.9;
}

.room-specs {
  background: var(--green-bg);
  padding: 28px 32px;
  margin-bottom: 24px;
  border-radius: 10px;
}
.room-specs p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 4px;
}

.plan-box {
  background: var(--white);
  padding: 40px 48px;
  margin-bottom: 36px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.plan-box h3 {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.plan-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.plan-item:first-of-type { border-top: 1px solid var(--border); }

.plan-item h4 {
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 6px;
}

.plan-item .plan-price {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.plan-item p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.8;
}

.plan-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-top: 14px;
}

.cancel-box {
  background: var(--white);
  padding: 40px 48px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.cancel-box h3 {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--green-dark);
  margin-bottom: 16px;
}

.cancel-box table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.cancel-box tr { border-bottom: 1px solid var(--border); }
.cancel-box tr:first-child { border-top: 1px solid var(--border); }
.cancel-box td { padding: 12px 0; color: var(--text-light); }
.cancel-box td:first-child { width: 180px; }

/* ========== ACCESS PAGE ========== */
.access-diagram-section {
  padding: 0 48px 80px;
  background: var(--cream);
}
.access-diagram-img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: block;
}

.access-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

.access-info dl { font-size: 0.85rem; }
.access-info dt {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--green);
  margin-top: 24px;
  margin-bottom: 4px;
}
.access-info dt:first-child { margin-top: 0; }
.access-info dd { color: var(--text-light); line-height: 1.9; }
.access-info dd a { color: var(--text-light); text-decoration: none; }
.access-info dd a:hover { color: var(--green-dark); }

.access-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
  filter: grayscale(15%);
}

.access-how { margin-top: 36px; }
.access-how-item {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.access-how-item:last-child { border-bottom: 1px solid var(--border); }

.access-how-item h3 {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.access-how-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.9;
}

/* ========== RESERVE SECTION (reused) ========== */
.section-reserve {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.reserve-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.reserve-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40,60,30,0.6);
}
.reserve-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 80px 40px;
}
.label-light { color: rgba(255,255,255,0.7); }
.reserve-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}
.reserve-content p {
  font-size: 0.88rem;
  margin-bottom: 36px;
  opacity: 0.9;
}
.btn-reserve-main {
  display: inline-block;
  color: white;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 14px 52px;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  border-radius: 100px;
  transition: background 0.3s, color 0.3s;
}
.btn-reserve-main:hover {
  background: white;
  color: var(--green-dark);
}

/* ========== DESKTOP ========== */
@media (min-width: 769px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* ========== RESPONSIVE — 900px ========== */
@media (max-width: 900px) {
  .features-v2-list { padding: 0 24px; }
  .feat-v2-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feat-v2-reverse { direction: ltr; }
  .feat-v2-img img { height: 300px; }
  .feat-v2-body { text-align: center; }
  .feat-v2-title { font-size: 1.25rem; }

  .loc-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .loc-img img { height: 300px; }

  .about-story-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-story-reverse { direction: ltr; }
  .about-story-img img { height: 300px; }
  .about-story-title { font-size: 1.25rem; }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item { height: 200px; }

  .room-detail { grid-template-columns: 1fr; gap: 36px; }
  .room-photo img { height: 300px; }

  .access-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ========== RESPONSIVE — 768px ========== */
@media (max-width: 768px) {
  body { font-size: 14px; }

  #header { padding: 16px 20px; }
  #header.scrolled { padding: 12px 20px; }

  .inner, .inner-narrow { padding: 0 24px; }

  .hero-content { padding: 0 28px 80px; }
  .hero-tagline { font-size: 1.2rem; }
  .slide-dots { right: 28px; bottom: 28px; }

  .sec-statement { padding: 72px 24px 88px; }
  .sec-statement-lead { font-size: 1.2rem; margin-bottom: 48px; }

  .sec-cinema { height: 180px; }
  .cinema-copy { font-size: 1.6rem; letter-spacing: 0.18em; }
  .cinema-bg { background-attachment: scroll; }

  .photo-band-track img { height: 200px; }

  .features-v2-header { padding: 80px 24px 32px; }
  .features-v2-list { padding: 0 20px; }
  .feat-v2-item { margin-bottom: 60px; gap: 24px; }
  .feat-v2-img { border-radius: 10px; }
  .feat-v2-img img { height: 220px; }
  .feat-v2-num { font-size: 1.8rem; margin-bottom: 14px; }
  .feat-v2-title { font-size: 1.1rem; }
  .sec-location { padding: 64px 24px; }
  .loc-img img { height: 240px; border-radius: 8px; }

  .section { padding: 72px 24px; }
  .about-lead-section { padding: 72px 24px 56px; }
  .about-lead-title { font-size: 1.35rem; }
  .about-story-section { padding: 56px 24px 72px; }
  .about-story-item { margin-bottom: 64px; gap: 24px; }
  .about-story-img img { height: 240px; }

  .page-hero-content { padding: 0 28px 36px; }
  .page-hero-content h1 { font-size: 1.4rem; }

  .plan-box, .cancel-box { padding: 28px 24px; border-radius: 10px; }

  .footer-body { padding: 56px 24px 40px; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-right { gap: 40px; }
  .footer-btns { flex-direction: column; }

  .subpage #header { padding: 12px 20px; }
}
