/* =============================================
   A-VILLAGE — style.css
   Lomä Benchmark-Inspired Luxury Hotel Design
   ============================================= */

/* ---------- Reset & Variables ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --color-black: #0a0a0a;
  --color-white: #f8f7f4;
  --color-cream: #f0ebe3;
  --color-gold: #b8a88a;
  --color-gold-light: #d4c9b5;
  --color-gray: #888;
  --color-dark-gray: #333;
  --color-gunjo: #0d1b3e;
  --font-display: 'Jost', sans-serif;
  --font-ja: 'Shippori Mincho', serif;
  --font-sans: 'Zen Kaku Gothic Antique', 'Noto Sans JP', sans-serif;
  --header-height: 72px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
  font-size: 16px;
  scroll-behavior: auto; /* GSAP handles smooth scroll */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--color-white);
  background: var(--color-black);
  overflow-x: hidden;
  line-height: 1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* Logo（画面ど真ん中固定・index.html準拠）*/
.center-logo {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
.center-logo a {
  pointer-events: auto;
  transition: opacity 0.3s;
}
.center-logo a:hover { opacity: 0.6; }
.center-logo-img {
  width: 28vw;
  max-width: 420px;
  min-width: 180px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 24px rgba(0,0,0,0.35));
}

/* Hamburger（左上固定・index.html準拠）*/
.hamburger {
  position: fixed;
  top: 26px; left: 28px;
  z-index: 300;
  width: 30px; height: 22px;
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 0;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: #fff; transition: all 0.4s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* RESERVE（右上固定・index.html準拠）*/
.reserve-btn {
  position: fixed;
  top: 26px; right: 28px;
  z-index: 300;
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: opacity 0.3s;
  padding: 0;
}
.reserve-btn::before {
  content: '';
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
}
.reserve-btn:hover { opacity: 0.5; }

/* theme-white adaptations (JS adds .theme-white to each element) */
.hamburger.theme-white span { background: var(--color-black); }
.reserve-btn.theme-white { color: var(--color-black); }
.reserve-btn.theme-white::before { border-left-color: var(--color-black); }

/* ===== Menu Overlay（群青乗算）===== */
.menu-overlay {
  position: fixed; inset: 0; z-index: 200;
  opacity: 0; visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.menu-overlay.active { opacity: 1; visibility: visible; }
.menu-overlay-bg {
  position: absolute; inset: 0;
  background: var(--color-gunjo);
  opacity: 0.88;
  mix-blend-mode: multiply;
}
.menu-body {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.menu-copy-block {
  text-align: center; margin-bottom: 32px;
  display: flex; flex-direction: column; align-items: center;
}
.menu-copy-vertical {
  width: 5vw; max-width: 70px; min-width: 50px;
  margin-bottom: 28px;
}
.menu-copy-vertical img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 1px 12px rgba(0,0,0,0.25));
}
.menu-copy-date {
  width: 9vw; max-width: 130px; min-width: 100px;
  margin-bottom: 28px;
}
.menu-copy-date img {
  width: 100%; height: auto; display: block;
  opacity: 0.85;
}
.menu-nav-links {
  list-style: none;
  text-align: center;
  margin-bottom: 32px;
}
.menu-nav-links li { margin-bottom: 20px; }
.menu-nav-links a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.menu-nav-links a:hover { color: #fff; }
.menu-reserve-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.15em;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 14px 48px;
  border-radius: 999px;
  transition: background 0.3s;
  text-decoration: none;
}
.menu-reserve-btn:hover { background: rgba(255,255,255,0.12); }
.menu-footer {
  position: absolute; bottom: 24px; left: 32px; right: 32px;
  display: flex; justify-content: space-between; align-items: flex-end;
  z-index: 10;
}
.menu-footer-left {
  font-size: 0.6rem; line-height: 1.8;
  color: rgba(255,255,255,0.35);
}
.menu-footer-left .mf-en {
  font-family: var(--font-display);
  font-weight: 400; letter-spacing: 0.03em;
}
.menu-footer-right {
  text-align: right;
  font-size: 0.6rem; line-height: 1.9;
  color: rgba(255,255,255,0.35);
}
.menu-footer-right a {
  color: rgba(255,255,255,0.35); transition: color 0.3s;
  text-decoration: none;
}
.menu-footer-right a:hover { color: rgba(255,255,255,0.7); }
.menu-footer-right .mf-ja {
  font-weight: 500; letter-spacing: 0.04em;
}
.menu-footer-right .mf-en {
  font-family: var(--font-display);
  font-weight: 400; letter-spacing: 0.03em;
}
.menu-footer-right .mf-copy {
  font-family: var(--font-display);
  font-weight: 400; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.2); margin-top: 4px;
}

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- KV SECTIONS (photo scroll sequence) ---------- */
.kv-section {
  position: relative;
  background: var(--color-black);
}
.kv-slides-wrap {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.kv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity;
}
.kv-slide--active { opacity: 1; }
.kv-slide-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}
.kv-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,27,62,0.18) 0%,
    rgba(13,27,62,0.05) 50%,
    rgba(10,10,10,0.35) 100%
  );
}

/* --- Black borders (Lomä style) --- */
.kv-border {
  position: absolute;
  background: var(--color-black);
  z-index: 8;
}
.kv-border--top    { top: 0; left: 0; right: 0; height: 0; }
.kv-border--bottom { bottom: 0; left: 0; right: 0; height: 0; }
.kv-border--left   { top: 0; bottom: 0; left: 0; width: 0; }
.kv-border--right  { top: 0; bottom: 0; right: 0; width: 0; }

/* --- Mist / Haze overlay --- */
.kv-mist {
  position: absolute;
  inset: 0;
  z-index: 6;
  opacity: 0;
  background:
    radial-gradient(ellipse at 25% 45%, rgba(10,10,10,0.85) 0%, transparent 65%),
    radial-gradient(ellipse at 75% 35%, rgba(13,27,62,0.7) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(10,10,10,0.8) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 20%, rgba(13,27,62,0.5) 0%, transparent 70%);
  pointer-events: none;
  will-change: opacity;
}
.hero-mist {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(10,10,10,0.9) 0%, transparent 65%),
    radial-gradient(ellipse at 30% 70%, rgba(13,27,62,0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(10,10,10,0.6) 0%, transparent 60%);
  pointer-events: none;
}

/* --- Vertical copy text (KV Part 2) --- */
.kv-copy {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 7;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}
.kv-copy p {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 2.4;
  letter-spacing: 0.25em;
  color: #fff;
  text-shadow: 0 2px 32px rgba(0,0,0,0.5), 0 0 80px rgba(0,0,0,0.3);
}
.kv-copy p br { content: ''; }
@media (max-width: 768px) {
  .kv-copy p { font-size: 0.95rem; line-height: 2.2; }
}

/* --- KV Logo Finale (end of Part 2) --- */
.kv-logo-finale {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}
.kv-logo-finale-img {
  width: 28vw;
  max-width: 420px;
  min-width: 180px;
  height: auto;
  filter: drop-shadow(0 2px 32px rgba(0,0,0,0.5));
}

/* ---------- BRAND MOVIE ---------- */
.brand-movie {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--color-black);
}
.brand-movie-bg {
  position: absolute;
  inset: 0;
}
.brand-movie-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.brand-movie-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.6) 0%,
    rgba(13,27,62,0.3) 50%,
    rgba(10,10,10,0.7) 100%
  );
}
.brand-movie-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 80px 32px;
  gap: 64px;
}
.brand-movie-copy {
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
}
.brand-movie-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 24px;
}
.brand-movie-hr {
  width: 48px; height: 1px;
  background: rgba(255,255,255,0.35);
  margin: 0 auto 32px;
}
.brand-movie-text {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  line-height: 2.2;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
}
.brand-movie-text p + p { margin-top: 1.6em; }
.brand-movie-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  opacity: 0;
  transform: translateY(40px);
}
.brand-movie-logo {
  width: 18vw;
  max-width: 200px;
  min-width: 120px;
  height: auto;
  filter: drop-shadow(0 2px 24px rgba(0,0,0,0.4));
}
.brand-movie-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.4s ease;
}
.brand-movie-thumb:hover { transform: scale(1.03); }
.brand-movie-thumb-img {
  width: min(60vw, 640px);
  height: auto;
  display: block;
  opacity: 0.7;
  transition: opacity 0.4s;
}
.brand-movie-thumb:hover .brand-movie-thumb-img { opacity: 0.9; }
.brand-movie-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  transition: opacity 0.3s;
}
.brand-movie-thumb:hover .brand-movie-play { opacity: 1; }
@media (max-width: 768px) {
  .brand-movie-content { padding: 60px 24px; gap: 48px; }
  .brand-movie-thumb-img { width: 85vw; }
}

/* ---------- HERO ---------- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video, .hero-fallback img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-video--sp { display: none; }
.hero-fallback { display: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,27,62,0.35) 0%,
    rgba(13,27,62,0.12) 40%,
    rgba(10,10,10,0.55) 100%
  );
  z-index: 1;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 300;
  letter-spacing: 0.5em;
  color: var(--color-gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(40px);
}
.hero-caption {
  font-family: var(--font-display);
  font-size: clamp(0.65rem, 1vw, 0.8rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.6);
  opacity: 0;
  transform: translateY(30px);
}

/* ---------- SECTIONS (shared) ---------- */
.section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.section-white { background: var(--color-white); color: var(--color-black); }
.section-black { background: var(--color-black); color: var(--color-white); }
.section-cream { background: var(--color-cream); color: var(--color-black); }

.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--color-gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}
.section-desc {
  font-family: var(--font-ja);
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  font-weight: 300;
  line-height: 2.2;
  opacity: 0.75;
  margin-bottom: 48px;
}

/* Animation base: GSAP sets initial state via JS.
   CSS only hides if JS is confirmed loaded (via .js-loaded on body) */
.js-loaded .anim {
  opacity: 0;
  transform: translateY(30px);
}
/* Safety: if animations haven't fired after load+3s, show everything */
.anim-ready .anim {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.4s, transform 0.4s;
}

/* ---------- Parallax Wrappers (Lomä-style deep parallax) ---------- */
.parallax-wrap {
  overflow: hidden;
  border-radius: 0;
  position: relative;
  clip-path: inset(0);
}
.parallax-wrap--wide {
  width: 100%;
}
.parallax-img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  display: block;
  transform: translateZ(0);
}
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.concept-image .parallax-wrap {
  aspect-ratio: 14/9;
}
.concept-lead {
  font-family: var(--font-ja);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  line-height: 2.4;
  margin-bottom: 40px;
}
.concept-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  margin-bottom: 40px;
}
.pillar {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
}
.pillar-text {
  font-family: var(--font-ja);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.concept-body {
  font-family: var(--font-ja);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 2.2;
  color: #555;
}

/* ---------- ROOMS ---------- */
.rooms-main {
  margin: 60px 0;
  position: relative;
}
.rooms-main .parallax-wrap--wide {
  height: 55vh;
  min-height: 400px;
}
.rooms-slider {
  padding: 60px 0;
}
.rooms-swiper {
  padding-bottom: 48px;
}
.room-card {
  overflow: hidden;
}
.room-card-img {
  overflow: hidden;
  aspect-ratio: 3/4;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out-expo);
}
.room-card:hover .room-card-img img {
  transform: scale(1.05);
}
.room-card-info {
  padding: 20px 4px;
}
.room-card-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}
.room-card-info p {
  font-family: var(--font-ja);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
}
.section-cta {
  text-align: center;
  padding-top: 20px;
}
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.3);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--color-gold);
}

/* ---------- DINING ---------- */
.cuisine-block {
  position: relative;
  margin-bottom: 0;
}
.cuisine-block .parallax-wrap--wide {
  height: 65vh;
  min-height: 450px;
}
.cuisine-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
  z-index: 2;
}
.cuisine-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 12px;
}
.cuisine-desc {
  font-family: var(--font-ja);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.8);
}
.cuisine-block--inset {
  padding: 80px 0;
}
.cuisine-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cuisine-split--reverse { direction: rtl; }
.cuisine-split--reverse > * { direction: ltr; }
.cuisine-split-img .parallax-wrap {
  aspect-ratio: 14/9;
}
.cuisine-split-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.cuisine-split-text p {
  font-family: var(--font-ja);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 2.2;
  color: #555;
}

/* ---------- EXPERIENCE ---------- */
.exp-block {
  position: relative;
  margin-bottom: 2px;
}
.exp-block .parallax-wrap--wide {
  height: 60vh;
  min-height: 400px;
}
.exp-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
}
.exp-overlay h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 8px;
}
.exp-overlay p {
  font-family: var(--font-ja);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}

/* ---------- PARALLAX DIVIDER ---------- */
.parallax-divider {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-divider-bg {
  position: absolute;
  inset: -15% 0;
  z-index: 0;
}
.parallax-divider-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.parallax-divider-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.45);
  z-index: 1;
}
.parallax-divider-text {
  position: relative;
  z-index: 2;
  text-align: center;
}
.parallax-divider-text p {
  font-family: var(--font-ja);
  font-size: clamp(0.9rem, 1.5vw, 1.15rem);
  font-weight: 300;
  line-height: 2.4;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
}

/* ---------- ACCESS ---------- */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}
.access-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  filter: grayscale(1) contrast(1.08) brightness(0.92);
  transition: filter 0.6s ease;
}
.access-map iframe:hover {
  filter: grayscale(0.4) contrast(1) brightness(1);
}
.access-address h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.access-address p {
  font-family: var(--font-ja);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 2;
  color: #555;
}
.access-email {
  margin-top: 8px;
  color: var(--color-gold) !important;
}
.access-routes { margin-top: 32px; }
.access-routes h4 {
  font-family: var(--font-ja);
  font-size: 0.8rem;
  font-weight: 500;
  margin: 24px 0 8px;
  color: var(--color-dark-gray);
}
.access-routes h4:first-child { margin-top: 0; }
.access-routes p {
  font-family: var(--font-ja);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.9;
  color: #666;
}

/* ---------- RESERVATION ---------- */
.reservation-container {
  text-align: center;
  padding: 80px 40px;
}
.reservation-text {
  font-family: var(--font-ja);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 2.2;
  margin-bottom: 40px;
  color: #555;
}
.btn-reserve {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 14px 48px;
  transition: background 0.4s, color 0.4s;
}
.btn-reserve:hover {
  background: var(--color-gold);
  color: var(--color-black);
}
.btn-reserve-lg {
  font-size: 0.9rem;
  padding: 18px 64px;
}

/* ---------- FOOTER (Lomä-style centered) ---------- */
#footer {
  background: var(--color-black);
  padding: 80px 0 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  text-align: center;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.35em;
  color: #fff;
  margin-bottom: 32px;
}
.footer-divider {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 40px;
}
.footer-bottom {
  text-align: center;
  margin-bottom: 28px;
}
.footer-address {
  font-family: var(--font-ja);
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.footer-email {
  font-family: var(--font-ja);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--color-gold);
}
.footer-legal {
  text-align: center;
  margin-bottom: 40px;
}
.footer-legal a {
  font-family: var(--font-ja);
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-legal-sep {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.15);
  margin: 0 14px;
}
.footer-copy {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

/* ---------- Fixed Reserve (SP) ---------- */
.fixed-reserve {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: var(--color-black);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out-expo);
}
.fixed-reserve.show { transform: translateY(0); }
.fixed-reserve a {
  display: block;
  text-align: center;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--color-gold);
}

/* ---------- Responsive (Tablet) ---------- */
@media (max-width: 1024px) {
  .concept-grid { grid-template-columns: 1fr; gap: 40px; }
  .cuisine-split { grid-template-columns: 1fr; gap: 32px; }
  .cuisine-split--reverse { direction: ltr; }
  .access-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Responsive (SP) ---------- */
@media (max-width: 768px) {
  :root { --header-height: 60px; }
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .hamburger { top: 20px; left: 20px; }
  .reserve-btn { top: 20px; right: 20px; }

  /* Sections */
  .section { padding: 80px 0; }
  .section-label { font-size: 0.65rem; margin-bottom: 12px; }
  .section-title { font-size: 1.5rem; margin-bottom: 14px; }
  .section-desc { font-size: 0.82rem; margin-bottom: 32px; }

  /* Hero */
  .hero-video--pc { display: none; }
  .hero-video--sp { display: block; }
  .hero-title { letter-spacing: 0.2em; }

  /* Concept */
  .concept-grid { grid-template-columns: 1fr; gap: 36px; }
  .concept-image .parallax-wrap { aspect-ratio: 4/3; }
  .concept-lead { font-size: 0.92rem; line-height: 2.2; margin-bottom: 24px; }
  .concept-pillars { grid-template-columns: 1fr; gap: 6px; margin-bottom: 24px; }
  .concept-body { font-size: 0.82rem; }

  /* Rooms */
  .rooms-main { margin: 36px 0; }
  .rooms-main .parallax-wrap--wide { height: 40vh; min-height: 280px; }
  .rooms-slider { padding: 36px 0; }
  .room-card-info { padding: 12px 4px; }
  .room-card-info h3 { font-size: 0.88rem; }
  .room-card-info p { font-size: 0.7rem; }

  /* Dining */
  .cuisine-block .parallax-wrap--wide { height: 40vh; min-height: 280px; }
  .cuisine-overlay { padding: 28px 0; }
  .cuisine-name { font-size: 1.1rem; }
  .cuisine-desc { font-size: 0.8rem; }
  .cuisine-block--inset { padding: 40px 0; }
  .cuisine-split { grid-template-columns: 1fr; gap: 20px; }
  .cuisine-split--reverse { direction: ltr; }
  .cuisine-split-img .parallax-wrap { aspect-ratio: 4/3; }
  .cuisine-split-text h3 { font-size: 1rem; margin-bottom: 10px; }
  .cuisine-split-text p { font-size: 0.82rem; line-height: 2; }

  /* Experience */
  .exp-block .parallax-wrap--wide { height: 40vh; min-height: 280px; }
  .exp-overlay { padding: 28px 0; }
  .exp-overlay h3 { font-size: 1rem; }
  .exp-overlay p { font-size: 0.75rem; }

  /* Parallax divider */
  .parallax-divider { height: 55vh; min-height: 320px; }
  .parallax-divider-text p { font-size: 0.85rem; line-height: 2.2; }

  /* Access */
  .access-grid { grid-template-columns: 1fr; gap: 28px; margin-top: 36px; }
  .access-map iframe { height: 260px; }
  .access-address h3 { font-size: 1rem; margin-bottom: 12px; }
  .access-address p { font-size: 0.82rem; }
  .access-routes { margin-top: 24px; }
  .access-routes h4 { font-size: 0.78rem; margin: 16px 0 6px; }
  .access-routes p { font-size: 0.78rem; }

  /* Reservation */
  .reservation-container { padding: 40px 20px; }
  .reservation-text { font-size: 0.85rem; margin-bottom: 24px; }
  .btn-reserve { padding: 12px 40px; font-size: 0.78rem; }
  .btn-reserve-lg { font-size: 0.8rem; padding: 14px 48px; }

  /* Footer SP — Lomä-style, fully centered */
  #footer { padding: 56px 0 28px; }
  .footer-top {
    text-align: center;
    margin-bottom: 28px;
  }
  .footer-logo {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .footer-divider { margin: 28px auto; }
  .footer-bottom {
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-address { font-size: 0.68rem; text-align: center; }
  .footer-email { font-size: 0.68rem; text-align: center; }
  .footer-legal {
    text-align: center;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-legal-sep { display: none; }
  .footer-legal a { font-size: 0.62rem; }
  .footer-copy {
    font-size: 0.55rem;
    text-align: center;
    padding-bottom: 64px;
  }

  /* Fixed reserve (SP only) */
  .fixed-reserve { display: block; }
}
