/* 天水島ヒルズ — main styles
   Aesthetic: rustic farmhouse, paper-warm base, dark ink, seasonal accents.
   Mono/numerals via Inter; Japanese via Noto Sans JP.
*/

:root {
  --paper: #f3efe6;
  --paper-2: #ebe5d6;
  --ink: #1c1b17;
  --ink-2: #3a372f;
  --ink-3: #6b6656;
  --line: #cfc7b2;
  --line-2: #ddd4bd;
  --accent: #8a3b1c;           /* persimmon / lacquer */
  --accent-2: #5a6b3a;         /* moss */
  --season-spring: #8ea96a;
  --season-summer: #3c6a4d;
  --season-autumn: #a55a1e;
  --season-winter: #6d7a8a;
  --s-accent: var(--accent);

  --max: 1400px;
  --gutter: clamp(20px, 4vw, 56px);
  --r: 2px;

  --ff-sans: 'Noto Sans JP', 'Inter', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --ff-serif: 'Noto Serif JP', 'EB Garamond', 'Times New Roman', serif;
  --ff-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-underline-offset: 3px; }
button { font: inherit; color: inherit; }

/* typography helpers */
.mono { font-family: var(--ff-mono); font-variant-numeric: tabular-nums; letter-spacing: 0.02em; }
.sc   { text-transform: uppercase; letter-spacing: 0.22em; font-size: 11px; font-weight: 600; color: var(--ink-3); }
.serif { font-family: var(--ff-serif); }
.tnum { font-variant-numeric: tabular-nums; }

/* page */
.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* ============== NAV ============== */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 40;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(120%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: 0.02em;
}
.brand-logo {
  display: block;
  height: 52px; width: auto;
  object-fit: contain;
}
.brand-foot { padding-top: 4px; }
.brand-logo-foot {
  height: 92px; width: auto;
  display: block;
  /* color logo: no invert. Sits naturally on the dark footer ground. */
  filter: none;
}
@media (max-width: 1000px) {
  .brand-logo { height: 46px; }
  .brand-logo-foot { height: 80px; }
}
@media (max-width: 700px) {
  .brand-logo { height: 42px; }
  .brand-logo-foot { height: 72px; }
}
.brand .mark {
  width: 26px; height: 26px;
  background: var(--ink); color: var(--paper);
  display: inline-grid; place-items: center;
  font-family: var(--ff-serif); font-size: 13px;
  border-radius: 1px;
}
.brand small { font-weight: 400; color: var(--ink-3); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin-left: 4px; }

.nav-links { display: flex; gap: 22px; justify-self: center; flex-wrap: wrap; }
.nav-links a { text-decoration: none; font-size: 13px; color: var(--ink-2); }
.nav-links a:hover { color: var(--accent); }

.nav-right { display: flex; gap: 10px; align-items: center; }
.lang {
  display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden;
}
.lang button, .lang a {
  border: 0; background: transparent; padding: 5px 10px; font-size: 11px; letter-spacing: .1em;
  cursor: pointer; color: var(--ink-3);
  text-decoration: none;
  display: inline-flex; align-items: center;
}
.lang button.on, .lang a.on { background: var(--ink); color: var(--paper); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--ink); color: var(--paper);
  text-decoration: none; font-size: 13px; font-weight: 600;
  border: 1px solid var(--ink);
  border-radius: 1px;
  transition: transform .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { background: var(--accent); border-color: var(--accent); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  height: 100vh; min-height: 720px;
  width: 100%;
  overflow: hidden;
  color: #f6f2e6;
  background: #1a1815;
}
.hero-stage { position: absolute; inset: 0; }
.hero-layer {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 2.2s ease;
  transform: scale(1.05);
  will-change: opacity, transform;
}
.hero-layer.on { opacity: 1; }
.hero-layer::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0.35) 0%, rgba(20,18,15,0.25) 40%, rgba(20,18,15,0.7) 100%);
}

.hero-grid {
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(246,242,230,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(246,242,230,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mix-blend-mode: overlay;
}

.hero-top {
  position: absolute; inset: auto 0 auto 0; top: 0;
  padding: 96px var(--gutter) 0;
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
  z-index: 2;
}
.hero-kicker { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; opacity: .85;
  display: flex; align-items: center; gap: 10px;
}
.hero-kicker .dot { width: 6px; height: 6px; background: #f6f2e6; border-radius: 50%; display: inline-block; }
.hero-open { font-size: 11px; letter-spacing: 0.2em; opacity: .8; text-transform: uppercase;
  border: 1px solid rgba(246,242,230,.5); padding: 5px 10px; border-radius: 2px;
}

.hero-main {
  position: absolute; inset: auto 0 0 0;
  padding: 0 var(--gutter) 120px;
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: end;
  z-index: 2;
}
.hero-title {
  font-family: var(--ff-sans);
  font-weight: 800;
  font-size: clamp(34px, 5.2vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  min-width: 0;
}
.hero-title .r2 { display: block; font-weight: 300; white-space: nowrap; }
.hero-title .r1 { display: block; white-space: nowrap; }
.hero-sub { max-width: 540px; margin: 24px 0 32px; opacity: .9; font-size: 15px; line-height: 1.8; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-ctas .btn { background: #f6f2e6; color: #1a1815; border-color: #f6f2e6; padding: 14px 22px; }
.hero-ctas .btn:hover { background: var(--accent); color: #f6f2e6; border-color: var(--accent); }
.hero-ctas .btn.ghost { background: transparent; color: #f6f2e6; border-color: rgba(246,242,230,.5); }
.hero-ctas .btn.ghost:hover { background: rgba(246,242,230,.1); border-color: #f6f2e6; }

.hero-side {
  border-left: 1px solid rgba(246,242,230,.3);
  padding-left: 24px;
  min-width: 220px;
}
.hero-side .line { margin-bottom: 18px; }
.hero-side .lbl { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; opacity: .7; }
.hero-side .val { font-size: 22px; font-weight: 600; margin-top: 2px; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.3em; opacity: .7; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll .bar {
  width: 1px; height: 40px; background: #f6f2e6;
  animation: scrollBar 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollBar {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* four-season indicator bar */
.season-bar {
  position: absolute; bottom: 24px; right: var(--gutter);
  display: flex; gap: 6px; z-index: 2;
}
.season-bar .sb {
  width: 42px; height: 2px; background: rgba(246,242,230,.3);
  position: relative; overflow: hidden; cursor: pointer;
}
.season-bar .sb.on { background: rgba(246,242,230,.9); }
.season-bar .sb span { position: absolute; inset: auto 0 -18px 0; font-size: 10px; letter-spacing: .22em; opacity: .7; text-align: center; }

@media (max-width: 860px) {
  .hero-main { grid-template-columns: 1fr; gap: 24px; padding-bottom: 96px; }
  .hero-side { border-left: 0; border-top: 1px solid rgba(246,242,230,.3); padding-left: 0; padding-top: 18px; display: flex; gap: 32px; }
  .hero-side .line { margin-bottom: 0; }
  .hero-top { padding-top: 84px; flex-direction: column; gap: 12px; }
}

/* ============== TICKER / MARQUEE ============== */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
  padding: 14px 0;
  position: relative;
}
.ticker-track { display: flex; gap: 48px; animation: tickerScroll 60s linear infinite; white-space: nowrap; }
.ticker-track span { font-size: 13px; letter-spacing: 0.18em; color: var(--ink-3); text-transform: uppercase; display: inline-flex; gap: 48px; }
.ticker-track span::after { content: '✦'; margin-left: 48px; color: var(--accent); }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== SECTION SCAFFOLD ============== */
section { padding: 120px 0; position: relative; }
.sec-head {
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
  margin-bottom: 64px;
  align-items: start;
}
.sec-head .tag {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 10px;
}
.sec-head .tag::before {
  content: ''; width: 28px; height: 1px; background: var(--accent); display: inline-block;
}
.sec-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: pre-line;
}
.sec-head .lead { font-size: 15px; line-height: 1.9; color: var(--ink-2); max-width: 640px; margin-top: 20px; }

@media (max-width: 860px) {
  .sec-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  section { padding: 80px 0; }
}

/* ============== HOUSE SECTION ============== */
#house { background: var(--paper); }
.house-body {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: start;
}
.house-body .prose p { font-size: 16px; line-height: 1.9; color: var(--ink-2); margin: 0 0 20px; }
.house-specs { border-top: 1px solid var(--line); }
.house-specs dl { margin: 0; }
.house-specs .row {
  display: grid; grid-template-columns: 140px 1fr; gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.house-specs dt { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); padding-top: 2px; }
.house-specs dd { margin: 0; font-size: 14px; color: var(--ink-2); }

.house-photo { position: relative; }
.house-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r); }
.house-photo .cap {
  position: absolute; bottom: -40px; right: 0;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3);
  writing-mode: vertical-rl; text-orientation: mixed;
  padding-top: 10px;
}

.stat-row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 80px;
}
.stat-row .st {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}
.stat-row .st:last-child { border-right: 0; }
.stat-row .lbl { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); }
.stat-row .val { font-size: clamp(28px, 3.2vw, 44px); font-weight: 700; margin-top: 6px; letter-spacing: -0.02em; line-height: 1; }
.stat-row .val sub { font-size: 13px; font-weight: 400; letter-spacing: 0.1em; color: var(--ink-3); margin-left: 6px; vertical-align: baseline; }

@media (max-width: 1000px) {
  .house-body { grid-template-columns: 1fr; gap: 40px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat-row .st { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-row .st:nth-child(2n) { border-right: 0; }
  .stat-row .st:last-child { border-bottom: 0; }
}

/* ============== FLOORPLAN ============== */
#floorplan { background: var(--paper-2); }
.fp-wrap {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start;
}
.fp-svg-wrap {
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px;
  position: relative;
}
.fp-img { width: 100%; height: auto; display: block; }
.fp-svg { width: 100%; height: auto; display: block; }
.fp-svg text { font-family: var(--ff-sans); fill: var(--ink-2); }
.fp-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-top: 20px; display: flex; justify-content: space-between; }

.fp-legend { display: flex; flex-direction: column; gap: 10px; }
.fp-legend .item {
  display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 16px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.fp-legend .item:hover, .fp-legend .item.active {
  border-color: var(--accent);
  background: #fff;
}
.fp-legend .num {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--ink); color: var(--paper); font-family: var(--ff-serif); font-size: 18px;
}
.fp-legend .item.active .num { background: var(--accent); }
.fp-legend .name { font-weight: 600; font-size: 14px; }
.fp-legend .meta { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.fp-legend .area { font-family: var(--ff-mono); font-size: 12px; color: var(--ink-3); }

.fp-link { margin-top: 24px; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 1000px) {
  .fp-wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* ============== ROOMS ============== */
#rooms { background: var(--paper); }
.rooms-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.room {
  border-top: 1px solid var(--ink);
  padding-top: 20px;
  display: flex; flex-direction: column;
  min-height: 360px;
}
.room-gallery { margin-bottom: 18px; }
.room-hero {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  padding: 0;
  margin: 0;
  background: var(--paper-2);
  overflow: hidden;
  cursor: zoom-in;
  border-radius: 4px;
}
.room-hero img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.room-hero:hover img { transform: scale(1.04); }
.room-hero .room-count {
  position: absolute; left: 8px; bottom: 8px;
  background: rgba(26,24,21,.78); color: #f3efe6;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.04em;
  padding: 4px 9px; border-radius: 999px;
}
.room-hero .room-zoom {
  position: absolute; right: 8px; top: 8px;
  background: rgba(26,24,21,.55); color: #f3efe6;
  font-size: 12px;
  padding: 3px 7px; border-radius: 4px;
  opacity: 0; transition: opacity .15s ease;
}
.room-hero:hover .room-zoom { opacity: 1; }
.room-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 6px;
}
.room-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border: 0;
  padding: 0;
  background: var(--paper-2);
  overflow: hidden;
  cursor: zoom-in;
  border-radius: 3px;
  opacity: .82;
  transition: opacity .15s ease;
}
.room-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.room-thumb:hover { opacity: 1; }
.room .no {
  font-family: var(--ff-serif); font-size: 56px; line-height: 1; margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.room .sz {
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px;
}
.room .name { font-size: 22px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; }
.room .area { font-family: var(--ff-mono); font-size: 12px; color: var(--ink-3); margin-bottom: 16px; }
.room .body { font-size: 13px; line-height: 1.8; color: var(--ink-2); flex: 1; }
.room .cap { margin-top: 18px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); padding-top: 12px; border-top: 1px dashed var(--line); }

@media (max-width: 1000px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .rooms-grid { grid-template-columns: 1fr; }
}

/* facility block (building + shared facilities) */
.facility-block { margin-top: 56px; }
.facility-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--rule); flex-wrap: wrap; }
.facility-head h3 { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 28px); font-weight: 500; letter-spacing: 0.01em; color: var(--ink); margin: 0; }
.facility-head p { font-size: 13px; color: var(--ink-mute); margin: 0; max-width: 60ch; }
.facility-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.facility-tile { position: relative; display: block; border: 0; padding: 0; cursor: pointer; background: var(--paper-sub); overflow: hidden; aspect-ratio: 4 / 3; }
.facility-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.facility-tile:hover img { transform: scale(1.04); }
.facility-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 8px 10px; font-size: 11px; line-height: 1.3; color: #fff; background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,0)); text-align: left; letter-spacing: .02em; }
@media (max-width: 1000px) { .facility-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .facility-grid { grid-template-columns: repeat(2, 1fr); } }

/* capacity visualizer */
.cap-viz {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center;
}
.cap-viz .lbl { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-3); }
.cap-viz .people { display: flex; gap: 6px; flex-wrap: wrap; }
.cap-viz .p { width: 18px; height: 28px; background: var(--ink); border-radius: 9px 9px 2px 2px; position: relative; }
.cap-viz .p::before { content: ''; position: absolute; inset: -10px 3px auto 3px; height: 12px; background: var(--ink); border-radius: 50%; }
.cap-viz .p.dim { opacity: .18; }
.cap-viz .total { font-family: var(--ff-serif); font-size: 56px; line-height: 1; letter-spacing: -0.02em; }
.cap-viz .total small { font-family: var(--ff-sans); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); display: block; margin-top: 4px; font-weight: 500; }

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

/* ============== DAY TIMELINE ============== */
#day { background: #1a1815; color: #f3efe6; border-top: 1px solid rgba(243,239,230,.08); }
#day .sec-head .tag { color: #c6a978; }
#day .sec-head .tag::before { background: #c6a978; }
#day .sec-head h2 { color: #f3efe6; }
#day .sec-head .lead { color: rgba(243,239,230,.7); }

.day-rail {
  position: relative;
  border-top: 1px solid rgba(243,239,230,.2);
}
.day-item {
  display: grid;
  grid-template-columns: 140px 1fr 2fr 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(243,239,230,.12);
  align-items: baseline;
  transition: background .3s ease;
  position: relative;
}
.day-item:hover { background: rgba(243,239,230,.03); }
.day-item .t { font-family: var(--ff-mono); font-size: 22px; letter-spacing: 0.05em; color: #c6a978; }
.day-item .title { font-size: 24px; font-weight: 700; letter-spacing: -0.01em; }
.day-item .body { font-size: 14px; line-height: 1.9; color: rgba(243,239,230,.75); }
.day-item .n { font-family: var(--ff-serif); font-size: 14px; color: rgba(243,239,230,.4); text-align: right; letter-spacing: 0.2em; }

@media (max-width: 1000px) {
  .day-item { grid-template-columns: 80px 1fr; gap: 20px; }
  .day-item .body { grid-column: 1 / -1; }
  .day-item .n { display: none; }
}

/* ============== PRICING ============== */
#pricing { background: var(--paper); }
.price-wrap {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start;
}
.price-card {
  background: var(--ink); color: var(--paper);
  padding: 48px;
  position: relative;
  position: relative;
  border-radius: var(--r);
}
.price-card .lbl { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; opacity: .6; }
.price-card .amt { font-size: clamp(64px, 9vw, 128px); font-weight: 700; letter-spacing: -0.04em; line-height: 1; margin: 16px 0 6px; }
.price-card .amt .cur { font-size: 0.35em; font-weight: 400; vertical-align: top; margin-right: 8px; }
.price-card .per { font-size: 14px; opacity: .7; letter-spacing: 0.1em; }
.price-card .note { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(243,239,230,.2); font-size: 13px; line-height: 1.8; opacity: .8; }
.price-card .opening-badge {
  position: absolute; top: 18px; right: 18px;
  background: #c8453d; color: #fff;
  font-size: 10px; letter-spacing: 0.3em; font-weight: 600;
  padding: 7px 12px; border-radius: 999px;
  text-transform: uppercase;
}
/* neutral strike — inherits parent color, dimmed. Used for ¥40,000 across hero, pricing, sticky-cta */
.amt-strike {
  color: inherit;
  opacity: 0.5;
  text-decoration: line-through;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1.5px;
  font-weight: 400;
}
.amt-strike-sm {
  font-size: 0.7em;
  letter-spacing: 0.02em;
  margin-right: 8px;
}
.price-card .amt-strike {
  display: inline-block; margin-top: 14px;
  font-size: 18px; letter-spacing: 0.04em;
}
.price-card .amt-strike.amt-strike-sm {
  display: inline-block; margin-top: 0;
  font-size: 0.7em;
}
.price-card .amt-strike + .amt { margin-top: 6px; }

/* unified opening pill — works on light and dark bg */
.opening-pill {
  display: inline-block;
  background: #c8453d;
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 600;
  vertical-align: middle;
  margin-right: 10px;
  white-space: nowrap;
  opacity: 1;
}
.cta-pill { font-size: 9px; padding: 2px 8px; margin-right: 8px; }

.price-opts dl { margin: 0; }
.price-opts .row {
  display: grid; grid-template-columns: 160px 1fr; gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.price-opts .row:first-child { border-top: 1px solid var(--line); }
.price-opts dt { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); padding-top: 3px; }
.price-opts dt .sub { display: block; margin-top: 4px; font-size: 10px; letter-spacing: 0.04em; text-transform: none; color: var(--ink-3); opacity: .7; }
.price-opts dd { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.7; }

@media (max-width: 1000px) {
  .price-wrap { grid-template-columns: 1fr; gap: 32px; }
  .price-card { padding: 32px; }
  .price-opts .row { grid-template-columns: 1fr; gap: 4px; }
}

/* ============== EVENTS / DAY-USE ============== */
#events {
  background: var(--paper-2);
  position: relative;
}
.events-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.events-video {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #1a1815;
  border: 1px solid var(--line);
}
.events-video video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.events-video::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.65) 100%);
  pointer-events: none;
}
.events-video .vcap {
  position: absolute; inset: auto 0 0 0;
  padding: 20px 24px;
  color: #f6f2e6;
  font-size: 12px; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 10px;
  z-index: 2;
}
.events-video .vcap .dot {
  width: 8px; height: 8px; background: #d24d2a; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(210,77,42,.6);
  animation: pulse 2s ease-out infinite;
}

.events-cap {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: grid; grid-template-columns: auto auto 1fr; gap: 32px; align-items: center;
}
.events-cap .lbl { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-3); }
.events-cap .big { font-family: var(--ff-serif); font-size: 72px; line-height: 1; font-weight: 400; letter-spacing: -0.04em; margin-top: 4px; }
.events-cap .big small { font-family: var(--ff-sans); font-size: 13px; font-weight: 500; letter-spacing: 0.2em; color: var(--ink-3); text-transform: uppercase; margin-left: 6px; }
.events-cap .dots { display: grid; grid-template-columns: repeat(9, 1fr); gap: 4px; }
.events-cap .dots .p { height: 20px; background: var(--ink); border-radius: 6px 6px 2px 2px; position: relative; }
.events-cap .dots .p::before { content: ''; position: absolute; inset: -7px 15% auto 15%; height: 9px; background: var(--ink); border-radius: 50%; }

.events-uses { list-style: none; padding: 0; margin: 24px 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.events-uses li {
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex; align-items: center; gap: 10px;
}
.events-uses li::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

@media (max-width: 1000px) {
  .events-grid { grid-template-columns: 1fr; gap: 40px; }
  .events-uses { grid-template-columns: 1fr; }
}

/* ============== SEASONS ============== */
#seasons { background: var(--paper); }
.seasons-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.season {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: zoom-in;
}
.season .zoom-icon {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  background: rgba(20,18,15,.55);
  color: #f6f2e6;
  display: grid; place-items: center;
  font-size: 14px;
  border-radius: 2px;
  opacity: 0;
  transition: opacity .2s ease;
  z-index: 3;
  backdrop-filter: blur(4px);
}
.season:hover .zoom-icon { opacity: 1; }
.season img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.season:hover img { transform: scale(1.05); }
.season::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75) 100%);
}
.season .lbl { position: absolute; inset: auto 0 0 0; padding: 24px; color: #f6f2e6; z-index: 2; }
.season .n {
  font-family: var(--ff-serif); font-size: 44px; letter-spacing: -0.02em; line-height: 1;
}
.season .m { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; margin-top: 6px; opacity: .9; }
.season .body { font-size: 12px; line-height: 1.7; margin-top: 10px; opacity: .85; max-width: 260px; }

@media (max-width: 1000px) {
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .seasons-grid { grid-template-columns: 1fr; }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(20,18,15,.92);
  display: grid; place-items: center;
  padding: 40px;
  animation: lbFade .25s ease;
  cursor: zoom-out;
}
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lb-inner {
  max-width: 1200px; width: 100%;
  max-height: 90vh;
  display: grid; grid-template-columns: 1fr; gap: 16px;
  cursor: default;
}
.lb-inner img {
  width: 100%; max-height: 75vh; object-fit: contain;
  display: block;
  animation: lbZoom .35s ease;
}
@keyframes lbZoom { from { opacity: 0; transform: scale(.98); } to { opacity: 1; transform: none; } }
.lb-cap {
  color: #f3efe6;
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: end;
  padding: 0 4px;
}
.lb-meta .n { font-family: var(--ff-serif); font-size: 44px; line-height: 1; letter-spacing: -0.02em; }
.lb-meta .m { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; opacity: .75; margin-top: 6px; }
.lb-cap .body { font-size: 14px; line-height: 1.7; opacity: .85; max-width: 520px; }
.lb-count { font-family: var(--ff-mono); font-size: 12px; opacity: .6; letter-spacing: 0.1em; }

.lb-close {
  position: fixed; top: 24px; right: 24px; z-index: 2;
  width: 44px; height: 44px;
  background: transparent; color: #f3efe6;
  border: 1px solid rgba(243,239,230,.35);
  font-size: 18px; cursor: pointer; border-radius: 999px;
}
.lb-close:hover { background: rgba(243,239,230,.1); }
.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  background: transparent; color: #f3efe6;
  border: 1px solid rgba(243,239,230,.35);
  font-size: 28px; cursor: pointer; border-radius: 999px; z-index: 2;
}
.lb-nav:hover { background: rgba(243,239,230,.1); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

@media (max-width: 700px) {
  .lightbox { padding: 16px; }
  .lb-cap { grid-template-columns: 1fr; gap: 12px; }
  .lb-nav { width: 44px; height: 44px; font-size: 20px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
}

/* ============== GALLERY (magazine mosaic) ============== */
#gallery { background: var(--paper); }

.gal-controls {
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.gal-cat-lbl { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-3); }
.gal-cats { display: flex; gap: 6px; flex-wrap: wrap; }
.gal-chip {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 9px 16px;
  min-height: 38px;
  font-size: 12px; letter-spacing: 0.08em;
  color: var(--ink-2);
  cursor: pointer;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.gal-chip:hover { border-color: var(--ink-2); }
.gal-chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.gal-chip .n {
  font-family: var(--ff-mono); font-size: 10px;
  padding: 1px 6px;
  background: rgba(0,0,0,.08);
  border-radius: 999px;
}
.gal-chip.on .n { background: rgba(243,239,230,.18); color: var(--paper); }
.gal-count { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); }
.gal-count .tnum { font-size: 22px; font-weight: 700; letter-spacing: 0; color: var(--ink); }
.gal-count .gc-sep { width: 20px; height: 1px; background: var(--line); display: inline-block; }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}
.gal-cell {
  margin: 0;
  cursor: zoom-in;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gal-imgwrap {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  aspect-ratio: 4 / 3;
  border-radius: 4px;
}
.gal-cell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.6,.2,1);
}
.gal-cell:hover img { transform: scale(1.03); }
.gal-cell figcaption {
  display: flex; align-items: baseline; gap: 14px;
  font-size: 13px; letter-spacing: 0.02em; color: var(--ink-2);
  padding: 0 2px;
}
.gal-cell figcaption .idx {
  font-size: 10px; letter-spacing: 0.22em;
  color: var(--ink-3);
  padding-top: 1px;
  flex: 0 0 auto;
}
.gal-cell figcaption .ct { flex: 1; line-height: 1.5; }

/* uniform grid — every image same ratio for a tidy magazine feel */

@media (max-width: 900px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 18px; }
}
@media (max-width: 560px) {
  .gal-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* gallery sub-section (e.g. rooms grouped by room) */
.gal-sub { margin-top: 28px; }
.gal-sub:first-of-type { margin-top: 0; }
.gal-sub-h {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ink);
}
.gal-sub-lbl {
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--ink);
}
.gal-sub-n {
  font-size: 10px; letter-spacing: 0.22em; color: var(--ink-3);
  margin-left: auto;
}

.gal-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: 12px; color: var(--ink-3); letter-spacing: 0.02em;
}

/* ============== PETS ============== */
#pet { background: #ede4d1; color: var(--ink); border-top: 1px solid rgba(60,42,28,.08); }
#pet .sec-head .tag { color: #8a5a2a; }
#pet .sec-head .tag::before { background: #8a5a2a; }

.pet-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: stretch;
  margin-bottom: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(60,42,28,.12);
}
.pet-illus {
  background: #d6c9ad;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 6/5;
  align-self: start;
  position: sticky;
  top: 100px;
}
.pet-pillars-h {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: #8a5a2a; margin-bottom: 28px;
}
.pet-pillar-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 28px; }
.pet-pillar-list li {
  border-top: 1px solid rgba(60,42,28,.18);
  padding-top: 24px;
}
.pet-pillar-n {
  font-family: var(--ff-serif);
  font-size: 22px; line-height: 1.3; font-weight: 500;
  margin-bottom: 10px; color: var(--ink);
}
.pet-pillar-b {
  font-size: 14px; line-height: 1.85; color: var(--ink-2);
}

.pet-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  margin-bottom: 56px;
}
.pet-col-h {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: #8a5a2a; margin-bottom: 24px;
}
.pet-bring { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.pet-bring li {
  display: grid; grid-template-columns: 16px 1fr; gap: 14px;
  align-items: start;
}
.pet-bring-dot {
  font-size: 8px; color: #8a5a2a; line-height: 1.6; padding-top: 4px;
}
.pet-bring-n {
  font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.pet-bring-b { font-size: 13px; line-height: 1.75; color: var(--ink-2); }

.pet-foot {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px;
  align-items: center;
  border-top: 1px solid rgba(60,42,28,.18);
  padding-top: 40px;
}
.pet-disclaimer { font-size: 12px; line-height: 1.85; color: var(--ink-2); margin: 0; }
.pet-cta {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px;
  background: #2a1f15; color: #f3efe6;
  text-decoration: none; text-align: center;
  padding: 22px 28px; border-radius: 4px;
  font-family: var(--ff-serif); font-size: 18px; font-weight: 500;
  transition: background .2s;
}
.pet-cta:hover { background: #3b2d20; }
.pet-cta-sub {
  font-family: var(--ff-sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.05em; opacity: 0.7;
}

@media (max-width: 860px) {
  .pet-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; margin-bottom: 40px; }
  .pet-illus { position: static; aspect-ratio: 16/10; }
  .pet-cols { grid-template-columns: 1fr; gap: 40px; margin-bottom: 32px; }
  .pet-foot { grid-template-columns: 1fr; gap: 24px; padding-top: 28px; }
}

/* ============== ONSEN ============== */
#onsen { background: #141210; color: #f6f2e6; }
#onsen .tag { color: rgba(246,242,230,.55); }
#onsen h2 { color: #f6f2e6; font-family: var(--ff-serif); font-weight: 500; letter-spacing: -0.01em; }
#onsen .lead { color: rgba(246,242,230,.78); }

.onsen-facts {
  margin: 42px 0 56px;
  border-top: 1px solid rgba(246,242,230,.18);
  border-bottom: 1px solid rgba(246,242,230,.18);
  padding: 28px 0;
  display: grid; grid-template-columns: 220px 1fr; gap: 36px; align-items: start;
}
.onsen-facts .of-h { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(246,242,230,.5); padding-top: 4px; }
.of-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px 36px; }
.of-it .k { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(246,242,230,.55); margin-bottom: 6px; }
.of-it .v { font-family: var(--ff-serif); font-size: 17px; line-height: 1.4; color: #f6f2e6; }
@media (max-width: 900px) {
  .onsen-facts { grid-template-columns: 1fr; gap: 18px; }
  .of-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .of-grid { grid-template-columns: 1fr; }
}

.onsen-picks .op-h {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid rgba(246,242,230,.18);
  padding-bottom: 14px;
  margin-bottom: 22px;
}
.onsen-picks .op-h .tag { color: rgba(246,242,230,.7); }
.onsen-picks .op-h .count { font-size: 13px; color: rgba(246,242,230,.55); }

.op-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-bottom: 28px;
}
.op-tab {
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: 1px solid rgba(246,242,230,.22);
  color: rgba(246,242,230,.72);
  cursor: pointer;
  border-radius: 2px;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.op-tab:hover { border-color: rgba(246,242,230,.5); color: #f6f2e6; }
.op-tab.on { background: rgba(246,242,230,.08); border-color: rgba(246,242,230,.7); color: #f6f2e6; }
.op-tab .n { display: block; font-family: var(--ff-serif); font-size: 17px; margin-bottom: 4px; }
.op-tab .s { display: block; font-size: 11px; letter-spacing: 0.05em; color: rgba(246,242,230,.6); }
@media (max-width: 1000px) { .op-tabs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .op-tabs { grid-template-columns: 1fr; } }

.op-body {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px;
  padding: 24px 0 12px;
}
.op-left .op-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.op-figure { margin: 0 0 18px; position: relative; }
.op-figure img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 6px; display: block; }
.op-figure figcaption { font-size: 11px; color: rgba(246,242,230,.55); margin-top: 8px; letter-spacing: 0.04em; }
.op-tag { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(246,242,230,.75); border: 1px solid rgba(246,242,230,.3); padding: 4px 10px; border-radius: 999px; }
.op-text { color: rgba(246,242,230,.85); line-height: 1.85; margin: 0; font-size: 15px; }
.op-meta { border-top: 1px solid rgba(246,242,230,.18); }
.op-meta > div { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(246,242,230,.18); font-size: 13px; }
.op-meta .lbl { color: rgba(246,242,230,.55); letter-spacing: 0.08em; }
.op-meta .v { color: #f6f2e6; font-family: var(--ff-serif); }
.op-note { margin-top: 14px; font-size: 12px; color: rgba(246,242,230,.55); line-height: 1.7; }
.op-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.op-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(246,242,230,.3);
  border-radius: 999px;
  color: #f6f2e6;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.04em;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  white-space: nowrap;
}
.op-link:hover { background: rgba(246,242,230,.08); border-color: rgba(246,242,230,.55); }
.op-link .arr { transition: transform .2s ease; opacity: .7; font-size: 11px; }
.op-link:hover .arr { transform: translate(2px,-2px); opacity: 1; }
@media (max-width: 800px) { .op-body { grid-template-columns: 1fr; gap: 28px; } }

/* ============== FOOD ============== */
#food { background: var(--paper); }
.food-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 40px;
}
.food-card {
  background: var(--paper);
  padding: 40px 32px;
  display: grid; grid-template-rows: auto auto auto 1fr; gap: 10px;
  min-height: 260px;
}
.food-card .fc-n { font-size: 11px; letter-spacing: 0.2em; color: var(--ink-3); }
.food-card .fc-type { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.food-card .fc-name { font-family: var(--ff-serif); font-size: 28px; font-weight: 500; margin: 4px 0 10px; letter-spacing: -0.005em; color: var(--ink); }
.food-card .fc-body { font-size: 14px; line-height: 1.85; color: var(--ink-2); margin: 0 0 18px; flex: 1; }
.food-card .fc-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  margin-top: auto;
}
.food-card .fc-addr { color: var(--ink-3); letter-spacing: 0.01em; }
.food-card .fc-link {
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 11px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.food-card .fc-link:hover { color: var(--accent); }
.food-card .fc-link .arr { transition: transform .2s ease; }
.food-card .fc-link:hover .arr { transform: translate(2px,-2px); }
.food-card { display: flex; flex-direction: column; }
@media (max-width: 900px) { .food-grid { grid-template-columns: 1fr; } }

.food-tip {
  border: 1px solid var(--line);
  padding: 28px 32px;
  background: var(--paper-2);
}
.food-tip .ft-h { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 14px; }
.food-tip .ft-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.food-tip li { font-size: 14px; color: var(--ink-2); line-height: 1.75; display: grid; grid-template-columns: 16px 1fr; gap: 8px; }
.food-tip .bul { color: var(--accent); font-weight: 700; }

/* ============== RULES ============== */
#rules { background: var(--paper-2); }
.rules-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense; grid-auto-rows: 1fr;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}
.rule { background: var(--paper); padding: 28px 24px; display: grid; gap: 10px; }
.rule .r-ico { font-family: var(--ff-serif); font-size: 30px; color: var(--accent); line-height: 1; }
.rule .r-n { font-family: var(--ff-serif); font-size: 17px; font-weight: 600; letter-spacing: -0.005em; color: var(--ink); }
.rule .r-b { font-size: 13px; line-height: 1.75; color: var(--ink-2); }
@media (max-width: 900px) { .rules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .rules-grid { grid-template-columns: 1fr; } }

/* ============== YEARLY ============== */
#yearly { background: var(--paper); }
.yearly-list {
  border-top: 1px solid var(--line);
}
.yr {
  display: grid; grid-template-columns: 200px 1fr; gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.yr:hover { background: var(--paper-2); }
.yr-m { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); padding-top: 4px; }
.yr-n { font-family: var(--ff-serif); font-size: 22px; font-weight: 500; letter-spacing: -0.005em; color: var(--ink); margin-bottom: 8px; }
.yr-b { font-size: 14px; line-height: 1.85; color: var(--ink-2); max-width: 760px; }
.yr-link { display: inline-block; margin-top: 10px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.yr-link:hover { color: var(--accent, var(--ink)); }
.yr-media { margin: 18px 0 0; max-width: 640px; }
.yr-media img, .yr-media video { width: 100%; height: auto; display: block; border-radius: 2px; background: #000; }
.yr-video video { aspect-ratio: 16 / 9; object-fit: cover; }
.yr-cap { margin-top: 8px; font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em; }
@media (max-width: 700px) {
  .yr { grid-template-columns: 1fr; gap: 6px; }
}

/* ============== PRACTICAL ============== */
#practical { background: var(--paper-2); }
.prac-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: start;
}
.prac {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px 24px;
  display: grid; grid-template-rows: auto auto 1fr; gap: 10px;
  overflow: hidden;
}
.prac .p-n { font-size: 11px; letter-spacing: 0.22em; color: var(--ink-3); }
.prac .p-h { font-family: var(--ff-serif); font-size: 17px; font-weight: 600; color: var(--ink); }
.prac .p-b { font-size: 13px; line-height: 1.8; color: var(--ink-2); }
.prac.has-img { grid-column: span 2; flex-direction: row; gap: 28px; align-items: stretch; }
.prac.has-img > *:not(.p-img) { flex: 1 1 0; }
.prac .p-img { flex: 0 0 44%; margin: -28px -28px -28px 0; overflow: hidden; border-left: 1px solid var(--line); }
.prac .p-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) { .prac-grid { grid-template-columns: repeat(2, 1fr); } .prac.has-img { grid-column: span 2; } }
@media (max-width: 560px) { .prac-grid { grid-template-columns: 1fr; } .prac.has-img { grid-column: span 1; flex-direction: column; } .prac.has-img .p-img { margin: 0 -28px -28px; border-left: 0; border-top: 1px solid var(--line); aspect-ratio: 16/10; } }

/* ============== AROUND ============== */
#around { background: #141210; color: #f6f2e6; }
#around .tag { color: rgba(246,242,230,.55); }
#around h2 { color: #f6f2e6; }
#around .near { border-color: rgba(246,242,230,.18); background: rgba(246,242,230,.03); }
#around .near:hover { border-color: rgba(246,242,230,.55); background: rgba(246,242,230,.08); }
#around .near .t { color: rgba(246,242,230,.55); }
#around .near .n { color: #f6f2e6; }
#around .near .body { color: rgba(246,242,230,.75); }
#around .near .arr { color: rgba(246,242,230,.55); }
.around-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.near {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, transform .2s ease;
  min-height: 220px;
}
.near:hover { border-color: var(--accent); transform: translateY(-2px); }
.near .t { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--accent); }
.near .n { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin-top: 6px; }
.near .body { font-size: 13px; color: var(--ink-2); line-height: 1.7; flex: 1; margin-top: 6px; }
.near .arr { margin-top: 18px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 1000px) { .around-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .around-grid { grid-template-columns: 1fr; } }

/* ============== ACCESS ============== */
#access { background: var(--paper); }
.access-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.access-wrap h3 { margin: 0 0 20px; font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.access-wrap .rows .row { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.access-wrap .rows .row:first-child { border-top: 1px solid var(--line); }
.access-wrap .rows dt { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); padding-top: 2px; }
.access-wrap .rows dd { margin: 0; font-size: 14px; line-height: 1.8; color: var(--ink-2); }

.map-card {
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--paper-2);
  position: relative;
}
.map-card .coords { font-family: var(--ff-mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; }
.map-card .addr { font-size: 18px; font-weight: 600; margin-top: 10px; line-height: 1.5; white-space: pre-line; }
.map-card .map-embed {
  width: 100%; aspect-ratio: 1.3; margin: 20px 0;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
  filter: grayscale(0.15) contrast(1.02);
}
.map-card .map-embed iframe { display: block; }

@media (max-width: 1000px) {
  .access-wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* ============== BOOK ============== */
#book { background: #1a1815; color: #f3efe6; }
#book .sec-head .tag { color: #c6a978; }
#book .sec-head .tag::before { background: #c6a978; }
#book .sec-head h2 { color: #f3efe6; }
#book .sec-head .lead { color: rgba(243,239,230,.7); }

.book-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.book-grid.three { grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1024px) { .book-grid.three { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .book-grid.three { grid-template-columns: 1fr; } }
.book-card {
  padding: 36px;
  border: 1px solid rgba(243,239,230,.2);
  display: flex; flex-direction: column; gap: 12px;
  transition: background .2s ease, border-color .2s ease;
  text-decoration: none; color: inherit;
  min-height: 220px;
}
.book-card.primary {
  background: #f3efe6; color: #1a1815;
}
.book-card.primary:hover { background: var(--accent); color: #f3efe6; }
.book-card.disabled { opacity: .4; cursor: not-allowed; }
.book-card .lbl { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; opacity: .7; }
.book-card .big { font-size: 24px; font-weight: 700; letter-spacing: -0.01em; }
.book-card .small { font-size: 12px; opacity: .7; margin-top: auto; }
.book-card .arr { margin-top: auto; font-size: 13px; letter-spacing: 0.08em; }

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

/* ============== STAGE 2 ADDITIONS ============== */

/* House — concept rows (alternating two-row layout) */
.house-concept {
  margin-top: 80px;
  display: grid; gap: 64px;
}
.hc-row {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 56px; align-items: center;
}
.hc-row.reverse { grid-template-columns: 1.05fr 1fr; }
.hc-text p {
  font-size: 16px; line-height: 1.95; color: var(--ink-2);
  margin: 0; max-width: 520px;
}
.hc-fig { margin: 0; position: relative; }
.hc-fig img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--r); display: block;
  background: var(--paper-2);
}
.hc-fig figcaption {
  font-size: 12px; line-height: 1.7; color: var(--ink-3);
  margin-top: 12px; letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .house-concept { gap: 48px; margin-top: 56px; }
  .hc-row, .hc-row.reverse {
    grid-template-columns: 1fr; gap: 24px;
  }
  /* keep image first on mobile for both rows for visual rhythm */
  .hc-row.reverse .hc-fig { order: 1; }
  .hc-row.reverse .hc-text { order: 2; }
}

/* Food — wide cards span full row, with 3-column image strip */
.food-card.wide { grid-column: 1 / -1; }
.fc-imgs {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 6px 0 22px;
}
.fc-img { margin: 0; }
.fc-img img {
  width: 100%; aspect-ratio: 3 / 2; height: auto; object-fit: cover;
  object-position: center 45%;
  border-radius: 6px; background: var(--paper-2);
  display: block;
}
.fc-img.nocrop img {
  aspect-ratio: auto; height: auto; max-height: 500px; width: 100%; object-fit: contain;
  background: transparent;
}
.fc-img figcaption {
  font-size: 11px; line-height: 1.6; color: var(--ink-3);
  margin-top: 8px; letter-spacing: 0.01em;
}
@media (max-width: 700px) {
  .fc-imgs { grid-template-columns: 1fr; }
  .fc-img img { aspect-ratio: 3 / 2; height: auto; }
  .fc-img.nocrop img { max-height: 280px; }
}

/* Around — map + cards with photo + lightbox */
.around-map {
  margin: 0 0 56px;
  display: grid; gap: 12px;
}
.am-frame {
  position: relative; aspect-ratio: 16/9;
  border: 1px solid rgba(246,242,230,0.18);
  border-radius: var(--r); overflow: hidden;
  background: rgba(0,0,0,0.3);
}
.am-frame iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(0.15) contrast(1.02);
}
.am-note {
  font-size: 12px; line-height: 1.7;
  color: rgba(246,242,230,0.55);
  letter-spacing: 0.01em;
}

/* override the old <a class="near"> styles for new <article> structure */
.near {
  padding: 0; /* photo + text-block do their own padding */
  display: flex; flex-direction: column;
  overflow: hidden;
}
.near-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  width: 100%;
}
.near-photos .near-photo {
  aspect-ratio: 4/3;
  width: 100%;
}
@media (max-width: 600px) {
  .near-photos { grid-template-columns: 1fr; }
}

/* Near carousel — single-image switcher with prev/next + dots */
.near-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--paper-2);
  overflow: hidden;
}
.near-carousel .near-photo {
  width: 100%; height: 100%;
  aspect-ratio: auto;
}
.near-carousel .nc-arr {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(20,18,15,0.55);
  color: #f3efe6;
  border: 0;
  font-size: 24px; line-height: 1;
  display: grid; place-items: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .2s;
  z-index: 2;
}
.near-carousel .nc-arr:hover { background: rgba(20,18,15,0.85); }
.near-carousel .nc-prev { left: 10px; }
.near-carousel .nc-next { right: 10px; }
.near-carousel .nc-dots {
  position: absolute;
  bottom: 12px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px;
  background: rgba(20,18,15,0.45);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.near-carousel .nc-dot {
  width: 8px; height: 8px;
  padding: 0; border: 0;
  border-radius: 50%;
  background: rgba(243,239,230,0.4);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.near-carousel .nc-dot:hover { background: rgba(243,239,230,0.7); }
.near-carousel .nc-dot.on { background: #f3efe6; transform: scale(1.2); }
.near-carousel .nc-cap {
  position: absolute;
  bottom: 36px; left: 12px; right: 12px;
  font-size: 11px; line-height: 1.5;
  color: rgba(243,239,230,0.95);
  background: rgba(20,18,15,0.55);
  padding: 6px 12px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  text-align: center;
  pointer-events: none;
  z-index: 1;
}
.near-photo {
  position: relative; padding: 0; margin: 0;
  border: 0; background: transparent;
  cursor: zoom-in; display: block;
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden;
}
.near-photo img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.near-photo:hover img { transform: scale(1.04); }
.near-zoom {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(20,18,15,0.7); color: #f3efe6;
  display: grid; place-items: center;
  font-size: 14px;
  backdrop-filter: blur(6px);
}
.near-text {
  padding: 24px 22px 26px;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1;
}
.near-text .body { margin-top: 4px; }
.near-link {
  margin-top: 14px;
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
}
.near-link:hover { color: #f3efe6; }
.near-link .arr { transition: transform .2s ease; }
.near-link:hover .arr { transform: translate(2px, -2px); }
/* dark theme already applies via #around .near via earlier rules */
#around .near { color: #f6f2e6; }
#around .near-text .t { color: rgba(246,242,230,0.55); }
#around .near-text .n { color: #f6f2e6; font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
#around .near-text .body { color: rgba(246,242,230,0.75); font-size: 13px; line-height: 1.75; }

/* Book — split into two 2-up rows with OTA warning between */
.book-grid.two { grid-template-columns: 1fr 1fr; gap: 24px; }
.book-grid.two + .ota-warning,
.ota-warning {
  margin: 28px 0;
  padding: 14px 18px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: 10px;
  font-size: 13px; line-height: 1.7;
  letter-spacing: 0.005em;
}
.book-card .small { font-size: 12px; opacity: 0.6; }
@media (max-width: 720px) {
  .book-grid.two { grid-template-columns: 1fr; }
}

/* Lightbox caption (used by Around lightbox) */
.lb-cap {
  position: absolute; left: 50%; bottom: 5%;
  transform: translateX(-50%);
  max-width: 80vw;
  background: rgba(20,18,15,0.85);
  color: #f3efe6;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px; line-height: 1.6;
  letter-spacing: 0.01em;
  text-align: center;
}

/* Mobile rhythm tweaks */
@media (max-width: 700px) {
  section { padding: 64px 0; }
  .sec-head h2 { font-size: clamp(28px, 7vw, 40px); }
  .sec-head .lead { font-size: 14px; line-height: 1.85; }
}

/* ============== INFO ============== */
#info { background: var(--paper-2); padding-bottom: 40px; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.info-box h4 { margin: 0 0 16px; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.info-box dl { margin: 0; font-size: 13px; line-height: 1.8; color: var(--ink-2); }
.info-box .row { display: grid; grid-template-columns: 90px 1fr; gap: 10px; padding: 6px 0; }
.info-box dt { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.info-box dd { margin: 0; }
.info-box ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--ink-2); }
.info-box ul li::before { content: '◦ '; color: var(--accent); }

@media (max-width: 1000px) { .info-grid { grid-template-columns: 1fr; } }

/* ============== FOOTER ============== */
footer.foot { background: #1a1815; color: #f3efe6; padding: 60px var(--gutter) 40px; }
.foot-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.foot-inner .brand .mark { background: #f3efe6; color: #1a1815; }
.foot-inner h5 { margin: 0 0 16px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; opacity: .7; font-weight: 600; }
.foot-inner ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.foot-inner ul a { color: rgba(243,239,230,.8); text-decoration: none; }
.foot-inner ul a:hover { color: #c6a978; }
.foot-addr { font-size: 13px; line-height: 1.7; opacity: .7; margin-top: 10px; }
.foot-license { font-size: 11px; letter-spacing: 0.1em; opacity: .75; margin-top: 20px; }

.foot-bottom {
  max-width: var(--max); margin: 60px auto 0;
  padding-top: 24px;
  padding-bottom: 110px; /* スティッキーCTAバー (約55-90px) + 余白 — 全 viewport 共通 */
  border-top: 1px solid rgba(243,239,230,.15);
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; opacity: .75;
}
.foot-bottom > div { min-width: 0; }
@media (max-width: 700px) {
  .foot-bottom { padding-bottom: 130px; }
}

@media (max-width: 860px) { .foot-inner { grid-template-columns: 1fr; } }

/* ============== STICKY CTA ============== */
.cta-strike {
  color: inherit;
  opacity: 0.55;
  font-weight: 400;
  text-decoration: line-through;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1.5px;
  margin-right: 6px;
}
.sticky-cta {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--paper);
  padding: 10px 14px 10px 20px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 16px;
  z-index: 30;
  font-size: 13px;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
  opacity: 0; transform: translate(-50%, 20px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.sticky-cta.on { opacity: 1; transform: translate(-50%, 0); pointer-events: auto; }
.sticky-cta .dot { width: 8px; height: 8px; background: #7bbf6a; border-radius: 50%; box-shadow: 0 0 0 0 rgba(123,191,106,.5); animation: pulse 2s ease-out infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(123,191,106,.6); }
  100% { box-shadow: 0 0 0 12px rgba(123,191,106,0); }
}
.sticky-cta .bk {
  background: #f3efe6; color: #1a1815;
  padding: 7px 14px; border-radius: 999px;
  text-decoration: none; font-weight: 600;
}
.sticky-cta .bk:hover { background: var(--accent); color: #f3efe6; }

@media (max-width: 600px) {
  .sticky-cta {
    left: 16px; right: 16px; transform: none;
    justify-content: space-between;
    border-radius: 18px;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 14px;
    font-size: 12px;
  }
  .sticky-cta.on { transform: none; }
  .sticky-cta > span:not(.dot) { flex: 1 1 auto; min-width: 0; line-height: 1.4; }
  .sticky-cta .bk { padding: 6px 12px; font-size: 12px; white-space: nowrap; }
}

/* ============== TWEAKS PANEL ============== */
.tw-panel {
  position: fixed; bottom: 20px; right: 20px; z-index: 50;
  background: #1a1815; color: #f3efe6;
  padding: 18px 20px;
  width: 280px;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  font-size: 12px;
  display: none;
}
.tw-panel.on { display: block; }
.tw-panel h6 { margin: 0 0 12px; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; opacity: .7; font-weight: 600; }
.tw-group { margin-bottom: 14px; }
.tw-group .glbl { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; opacity: .6; margin-bottom: 6px; }
.tw-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.tw-chips button {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(243,239,230,.3); background: transparent; color: #f3efe6;
  padding: 7px 12px; min-height: 36px; font-size: 11px; cursor: pointer; border-radius: 999px;
}
.tw-chips button.on { background: #f3efe6; color: #1a1815; border-color: #f3efe6; }

/* theme overrides (Tweaks seasons) */
body.theme-spring { --accent: #6a8e3d; --accent-2: #3a6a40; }
body.theme-summer { --accent: #2d6b4d; --accent-2: #3c6a3a; }
body.theme-autumn { --accent: #a55a1e; --accent-2: #7a4018; }
body.theme-winter { --accent: #385168; --accent-2: #556c7b; }

body.ff-serif { --ff-sans: 'Noto Serif JP', 'EB Garamond', serif; }

/* fade/reveal utility */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }


/* ============== SECTION CTA (inline navigation to booking) ============== */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.section-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid var(--accent, #c8744a);
  border-radius: 999px;
  color: var(--accent, #c8744a);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}
.section-cta-link:hover {
  background: var(--accent, #c8744a);
  color: var(--paper, #f6f2e6);
}
#onsen .section-cta, #around .section-cta { border-top-color: rgba(246,242,230,.15); }
#onsen .section-cta-link, #around .section-cta-link {
  border-color: rgba(246,242,230,.4);
  color: rgba(246,242,230,.9);
}
#onsen .section-cta-link:hover, #around .section-cta-link:hover {
  background: rgba(246,242,230,.9);
  color: #1a1815;
}

/* ============== AVAILABILITY CALENDAR (mobile responsive) ============== */
/* Override inline grid-template-columns so 3 months don't overflow mobile viewport */
@media (max-width: 900px) {
  .avail-cal { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 600px) {
  .avail-cal { grid-template-columns: 1fr !important; }
}
.op-figs { display: grid; gap: 12px; align-items: start; margin: 0 0 18px; }
.op-figs-1 { grid-template-columns: 1fr; }
.op-figs-2 { grid-template-columns: 1fr 1fr; }
.op-fig {
  margin: 0; cursor: zoom-in; position: relative;
  border-radius: 4px; overflow: hidden; background: #1a1815;
  border: 1px solid rgba(246,242,230,.08);
  transition: transform .25s ease, border-color .25s ease;
}
.op-fig:hover { transform: translateY(-2px); border-color: rgba(246,242,230,.2); }
.op-fig img { width: 100%; display: block; object-fit: cover; }
.op-fig-main img { aspect-ratio: 4/3; }
.op-fig-sub  img { aspect-ratio: 4/3; }
.op-fig .op-cap {
  font-size: 11px; letter-spacing: 0.04em;
  color: rgba(246,242,230,.55);
  padding: 8px 10px 10px; line-height: 1.5;
}
.op-zoom {
  position: absolute; top: 8px; right: 8px;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(20,18,16,.7); color: rgba(246,242,230,.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .2s;
}
.op-fig:hover .op-zoom { opacity: 1; }
@media (max-width: 700px) {
  .op-figs-2 { grid-template-columns: 1fr 1fr; gap: 8px; }
  .op-fig-main img { aspect-ratio: 4/3; }
  .op-fig-sub  img { aspect-ratio: 4/3; }
  .op-zoom { opacity: 1; }
}

/* ============== MOBILE NAV — burger + overlay ============== */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line, rgba(40,32,22,.18));
  border-radius: 4px;
  padding: 0; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; margin-left: 8px;
}
.nav-burger span {
  display: block; width: 18px; height: 1.5px;
  background: var(--ink, #28201a);
  transition: transform .25s, opacity .25s;
}
@media (max-width: 900px) {
  .nav .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
}
@media (max-width: 700px) {
  .nav .nav-right .btn { display: none; }
}

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(20,18,16,.5);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex; justify-content: flex-end;
  animation: navFade .2s ease-out;
}
@keyframes navFade { from { opacity: 0; } to { opacity: 1; } }
.nav-overlay-inner {
  background: #1a1815;
  color: #f6f2e6;
  width: min(380px, 100vw);
  height: 100vh;
  padding: 24px 28px 40px;
  overflow-y: auto;
  display: flex; flex-direction: column;
  animation: navSlide .25s ease-out;
  box-shadow: -10px 0 40px rgba(0,0,0,.3);
}
@keyframes navSlide { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }
.nav-overlay-close {
  align-self: flex-end;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(246,242,230,.25);
  border-radius: 50%;
  color: #f6f2e6;
  font-size: 16px; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.nav-overlay-close:hover { background: rgba(246,242,230,.08); border-color: rgba(246,242,230,.5); }
.nav-overlay-list {
  list-style: none;
  margin: 24px 0 0; padding: 0;
  display: flex; flex-direction: column;
}
.nav-overlay-list a {
  display: flex; align-items: baseline; gap: 18px;
  padding: 14px 4px;
  color: #f6f2e6;
  text-decoration: none;
  border-bottom: 1px solid rgba(246,242,230,.08);
  font-family: var(--ff-serif, Georgia, serif);
  font-size: 21px; letter-spacing: 0.02em;
  min-height: 44px;
  transition: color .15s, padding-left .15s;
}
.nav-overlay-list a:hover {
  color: #fff;
  padding-left: 8px;
}
.nav-overlay-num {
  font-size: 11px; letter-spacing: 0.1em;
  color: rgba(246,242,230,.4);
  min-width: 28px; flex-shrink: 0;
  font-family: var(--ff-mono, monospace);
}
.nav-overlay-label { flex: 1 1 auto; }
.nav-overlay-langs {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid rgba(246,242,230,.12);
  display: flex; gap: 8px;
}
.nav-overlay-lang {
  flex: 1 1 auto;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid rgba(246,242,230,.25);
  border-radius: 4px;
  color: rgba(246,242,230,.7);
  font-family: var(--ff-mono, monospace);
  font-size: 12px; letter-spacing: 0.08em;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  min-height: 40px;
}
.nav-overlay-lang.on {
  background: #f6f2e6; color: #1a1815;
  border-color: #f6f2e6;
}
.nav-overlay-lang:not(.on):hover {
  border-color: rgba(246,242,230,.5);
  color: #f6f2e6;
}


/* delivery freezer two-image layout */
.prac.has-imgs .p-imgs {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.prac.has-imgs .p-imgs-cell {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: #f0ece4;
}
.prac.has-imgs .p-imgs-cell img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (max-width: 600px) {
  .prac.has-imgs .p-imgs { grid-template-columns: 1fr; }
}


/* ============== COOKIE CONSENT BANNER ============== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--paper);
  border-top: 2px solid var(--ink);
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  animation: cookieSlideUp 0.3s ease;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
}
.cookie-title { font-size: 16px; font-weight: 700; margin: 0 0 6px; color: var(--ink); }
.cookie-body { font-size: 13px; line-height: 1.7; color: var(--ink-2); margin: 0 0 14px; }
.cookie-cats {
  display: grid; gap: 10px;
  margin: 0 0 14px;
  padding: 12px;
  background: var(--paper-2);
  border-radius: 4px;
}
.cookie-cat {
  display: grid; grid-template-columns: 24px 1fr; gap: 10px;
  cursor: pointer;
  align-items: start;
}
.cookie-cat input { margin-top: 4px; }
.cookie-cat .ccn { font-size: 13px; font-weight: 600; color: var(--ink); }
.cookie-cat .ccd { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.cookie-actions {
  display: grid; gap: 10px;
}
.cookie-actions.three { grid-template-columns: repeat(3, 1fr); }
.cookie-actions.two { grid-template-columns: 1fr 1fr; }
.cookie-btn {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  border-radius: 4px;
  cursor: pointer;
  transition: background .15s ease;
}
.cookie-btn:hover { background: var(--paper-2); }
.cookie-btn-primary { background: var(--ink); color: var(--paper); }
.cookie-btn-primary:hover { background: var(--ink-2); }
@media (max-width: 700px) {
  .cookie-actions.three, .cookie-actions.two { grid-template-columns: 1fr; }
  .cookie-inner { padding: 14px 16px; }
}


/* ============== PRIVACY POLICY ============== */
.privacy { padding-top: 80px; padding-bottom: 80px; }
.privacy .lead { max-width: 700px; }
.privacy-meta {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-3);
}
.privacy-body {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 30px;
}
.pp-section {
  margin-bottom: 40px;
}
.pp-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--paper-2);
}
.pp-section p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-2);
  margin: 8px 0;
  white-space: pre-line;
}
