/* ==========================================================================
   キャンプサイトちくりん — Satoyama Camping
   里山の静けさ / 自由なフリーサイト / 大人が落ち着ける隠れ家
   ========================================================================== */

:root {
  /* Palette (tweakable) */
  --cream: #FBF7EE;
  --cream-deep: #F3ECDC;
  --forest: #2E6B28;
  --forest-deep: #1F4A1C;
  --earth: #B07040;
  --leaf: #8AA66A;
  --ink: #2A2A2A;
  --ink-soft: #5A554B;

  /* Type */
  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;
  --latin: "Cormorant Garamond", serif;

  /* Rhythm (tweakable via --space-scale) */
  --space-scale: 1;
  --section-pad: calc(160px * var(--space-scale));
  --gutter: clamp(24px, 6vw, 96px);

  /* Motion */
  --reveal-distance: 28px;
  --reveal-duration: 1100ms;

  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.95;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* Placeholder gradients on the photo slots (a dropped photo covers them).
   Set on the light-DOM host so captures/exports render them too. */
/* Aspect-ratio slots must clear the component's default :host{height:160px},
   otherwise the fixed height wins and aspect-ratio is ignored. */
.about__media image-slot,
.friend image-slot,
.nearby-card image-slot { height: auto; }

image-slot { background-size: cover; background-position: center; background-repeat: no-repeat; }
#hero-bg          { background-image: url("ph/hero.png"); }
#awa-bg, #near-awa { background-image: url("ph/awa.png"); }
#exp-takenoko, #near-michinoeki { background-image: url("ph/leaf.png"); }
#near-cha         { background-image: url("ph/cha.png"); }
#exp-ogawa        { background-image: url("ph/stream.png"); }
#exp-hotaru       { background-image: url("ph/hotaru.png"); }
#friend-neko      { background-image: url("ph/neko.png"); }
#friend-yagi      { background-image: url("ph/yagi.png"); }
#near-super       { background-image: url("ph/earth.png"); }

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.08em;
  margin: 0;
  text-wrap: pretty;
}

p { margin: 0; }

/* Honor manual line breaks (Enter key in the editor) in body copy.
   Without this, HTML collapses newlines to spaces and edits appear to revert. */
.hero__sub,
.section-lead,
.about__copy p,
.exp-card__desc,
.site-card__desc,
.price-block__note,
.price-notice__text,
.awa__copy,
.nearby-card__desc,
.rule__text,
.access-row dd { white-space: pre-line; }

/* Japanese line-breaking: avoid 1–2 character orphans on the last line.
   - line-break: strict       → proper kinsoku (禁則) handling
   - word-break: auto-phrase  → break at natural phrase (文節) boundaries [Chrome/Edge]
   - text-wrap: pretty        → pull a word down to avoid a lone short last line */
/* Long body paragraphs: natural CJK wrapping, just avoid a short orphan last line. */
.hero__sub,
.section-lead,
.about__copy p,
.exp-card__desc,
.site-card__desc,
.price-block__note,
.price-notice__text,
.awa__copy,
.rule__text,
.access-row dd {
  line-break: strict;
  text-wrap: pretty;
}

/* Short curated phrases: break ONLY at phrase boundaries (the <wbr> marks in the
   HTML), never mid-word. keep-all suppresses default CJK mid-run breaks;
   overflow-wrap is a safety net so nothing overflows on very narrow screens. */
.nearby-card__desc,
.plan-card__list li {
  word-break: keep-all;
  overflow-wrap: anywhere;
  line-break: strict;
}

/* Tiny single-line labels: never break mid-word. */
.plan-card__name,
.plan-card__unit,
.site-card__name,
.facility__state,
.price-era__title,
.fee-row span {
  word-break: keep-all;
  line-break: strict;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* Latin micro-labels */
.eyebrow {
  font-family: var(--latin);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 19px);
  letter-spacing: 0.18em;
  color: var(--earth);
  font-weight: 500;
}
.eyebrow--leaf { color: var(--leaf); }
.eyebrow--light { color: rgba(255,255,255,0.78); }

.kicker {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition: opacity var(--reveal-duration) cubic-bezier(.2,.7,.2,1),
              transform var(--reveal-duration) cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

body.no-motion .reveal { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  transition: background 600ms ease, box-shadow 600ms ease, padding 500ms ease;
}
.nav.is-scrolled {
  background: rgba(251,247,238,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(42,42,42,0.07);
  padding-block: 14px;
}

.nav__brand { display: flex; align-items: center; gap: 14px; }
.nav__logo {
  width: 52px; height: 52px;
  flex: none;
  transition: width 500ms ease, height 500ms ease;
}
.nav.is-scrolled .nav__logo { width: 44px; height: 44px; }
.nav__logo image-slot { width: 100%; height: 100%; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.nav__brand-jp {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.16em;
  color: var(--ink);
  white-space: nowrap;
}
.nav__brand-en {
  font-family: var(--latin);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
}
.nav.is-hero-light .nav__brand-jp { color: #fff; }
.nav.is-hero-light .nav__brand-en { color: rgba(255,255,255,0.8); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}
.nav__link {
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding-bottom: 3px;
  white-space: nowrap;
  transition: color 400ms ease;
}
.nav.is-hero-light .nav__link { color: rgba(255,255,255,0.92); }
.nav__link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 360ms ease;
}
.nav__link:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.2em;
  padding: 11px 22px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 400ms ease, transform 400ms ease;
}
.nav__cta:hover { background: var(--forest-deep); transform: translateY(-1px); }

.nav__phone {
  font-family: var(--latin);
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.nav.is-hero-light .nav__phone { color: rgba(255,255,255,0.82); }

.nav__menu-btn { display: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__media {
  position: absolute;
  inset: -8% 0 -8% 0;
  z-index: 0;
  will-change: transform;
}
.hero__media image-slot { width: 100%; height: 100%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,30,18,0.45) 0%, rgba(20,30,18,0.12) 30%, rgba(20,30,18,0.22) 70%, rgba(20,30,18,0.55) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding-top: clamp(56px, 8vh, 88px);
}
.hero__catch {
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-weight: 600;
  /* tie size to viewport HEIGHT too, so the vertical headline shrinks on
     short screens and never collides with the scroll cue below */
  font-size: clamp(26px, min(4.4vw, 6vh), 48px);
  letter-spacing: 0.3em;
  line-height: 1.85;
  white-space: nowrap;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero__catch .dim { color: rgba(255,255,255,0.7); }
.hero__sub {
  margin-top: clamp(18px, 3vh, 34px);
  max-width: 40ch;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 300;
  line-height: 2.05;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 14px rgba(0,0,0,0.4);
}
.hero__scroll {
  position: relative;
  z-index: 2;
  flex: none;
  margin-bottom: clamp(16px, 3vh, 26px);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85);
}
.hero__scroll-label {
  font-family: var(--latin);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.2em;
}
.hero__scroll-line {
  width: 1px; height: 46px;
  background: rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%;
  background: #fff;
  animation: scrollDrop 2.4s cubic-bezier(.7,0,.3,1) infinite;
}
@keyframes scrollDrop {
  0% { top: -50%; } 60%,100% { top: 100%; }
}

/* ==========================================================================
   Generic section
   ========================================================================== */
.section { padding-block: var(--section-pad); }
.section--tight { padding-block: calc(var(--section-pad) * 0.62); }
.section--cream-deep { background: var(--cream-deep); }

.section-head { max-width: 760px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head .kicker { display: block; margin-bottom: 24px; }
.section-title {
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.7;
}
.section-lead {
  margin-top: 30px;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 2.2;
  color: var(--ink-soft);
  max-width: 62ch;
}
.section-head--center .section-lead { margin-inline: auto; }

/* ==========================================================================
   About — split with vertical heading
   ========================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) max-content minmax(0, 1.12fr);
  gap: clamp(32px, 4.5vw, 72px);
  align-items: center;
}
.about__vtitle {
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: 0.28em;
  line-height: 1.85;
  color: var(--forest);
  margin-inline: auto;
  height: auto;
}
.about__copy .eyebrow { display: block; margin-bottom: 26px; }
.about__copy p { margin-bottom: 1.7em; color: var(--ink-soft); font-size: 16px; }
.about__copy p:last-child { margin-bottom: 0; }
.about__media {
  position: relative;
}
.about__media image-slot { width: 100%; aspect-ratio: 3/4; }
.about__media-cap {
  position: absolute; bottom: -18px; left: -18px;
  background: var(--cream);
  padding: 10px 20px;
  font-family: var(--latin);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--earth);
  box-shadow: 0 8px 30px rgba(42,42,42,0.08);
}

/* ==========================================================================
   Experience program — 3 cards
   ========================================================================== */
.exp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
  margin-top: 72px;
}
.exp-card {
  display: flex;
  flex-direction: column;
}
.exp-card image-slot { width: 100%; aspect-ratio: 3/4; }
.exp-card__season {
  margin-top: 24px;
  font-family: var(--latin);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--leaf);
}
.exp-card__title {
  margin-top: 8px;
  font-size: 22px;
  letter-spacing: 0.14em;
}
.exp-card__desc {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 2;
  color: var(--ink-soft);
}

/* ==========================================================================
   Awagatake — full bleed dark
   ========================================================================== */
.awa {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.awa__media { position: absolute; inset: -8% 0; z-index: 0; will-change: transform; }
.awa__media image-slot { width: 100%; height: 100%; }
.awa__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(15,28,14,0.72) 0%, rgba(15,28,14,0.45) 45%, rgba(15,28,14,0.15) 100%);
}
.awa__inner { position: relative; z-index: 2; max-width: 620px; }
.awa .eyebrow { display: block; margin-bottom: 24px; }
.awa__title {
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.7;
  color: #fff;
}
.awa__copy {
  margin-top: 28px;
  font-size: 16px;
  line-height: 2.2;
  color: rgba(255,255,255,0.88);
  max-width: 52ch;
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing__lead { max-width: 720px; margin-inline: auto; text-align: center; }

.sites {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 36px);
  margin-top: 68px;
}
.site-card {
  background: var(--cream);
  border: 1px solid rgba(42,42,42,0.1);
  padding: 38px 32px;
  position: relative;
}
.section--cream-deep .site-card { background: #fff; }
.site-card__no {
  font-family: var(--latin);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--leaf);
}
.site-card__name {
  margin-top: 14px;
  font-size: 21px;
  letter-spacing: 0.1em;
}
.site-card__tag {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--earth);
}
.site-card__desc {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-soft);
}

/* Price block */
.price-block {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  background: var(--forest);
  color: #fff;
  padding: clamp(40px, 5vw, 70px);
}
.price-block__main { display: flex; flex-direction: column; }
.price-block__label {
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.price-block__fee {
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--serif);
}
.price-block__yen { font-size: 28px; font-weight: 500; }
.price-block__num { font-size: clamp(52px, 7vw, 82px); font-weight: 600; line-height: 1; letter-spacing: 0.02em; }
.price-block__unit { font-size: 15px; letter-spacing: 0.1em; color: rgba(255,255,255,0.82); margin-left: 8px; }
.price-block__note { margin-top: 22px; font-size: 14px; line-height: 2; color: rgba(255,255,255,0.82); max-width: 34ch; }
.price-block__example {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 13.5px;
  line-height: 1.95;
  color: rgba(255,255,255,0.9);
  font-family: var(--serif);
}
.price-block__example-label {
  display: inline-block;
  margin-right: 10px;
  padding: 2px 10px;
  background: rgba(255,255,255,0.16);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #fff;
  vertical-align: 2px;
}
.price-block__example strong { font-weight: 700; color: #fff; font-size: 15px; }

.price-block__extra { border-left: 1px solid rgba(255,255,255,0.22); padding-left: clamp(28px, 4vw, 56px); }
.section--cream-deep .price-block__extra { }
.price-block__extra-title {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
}
.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  font-size: 14.5px;
}
.fee-row:last-child { border-bottom: none; }
.fee-row span:first-child { color: rgba(255,255,255,0.9); }
.fee-row span:last-child { font-family: var(--serif); white-space: nowrap; letter-spacing: 0.06em; }

/* ==========================================================================
   Pricing — change notice + plans + additional fees (new 2026.9.1)
   ========================================================================== */
.price-era {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-top: 56px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(42,42,42,0.16);
}
.price-era__en {
  font-family: var(--latin);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.16em;
  color: var(--leaf);
}
.price-era--new .price-era__en { color: var(--earth); }
.price-era__title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: 0.14em;
  color: var(--ink);
}
.price-era__date {
  margin-left: auto;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
.price-block { margin-top: 28px; }

.price-notice {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 28px);
  margin-top: 64px;
  padding: 22px clamp(24px, 3vw, 36px);
  background: var(--cream);
  border: 1px solid var(--earth);
  border-left-width: 4px;
}
.section--cream-deep .price-notice { background: #fff; }
.price-notice__date {
  flex: none;
  font-family: var(--latin);
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 28px);
  letter-spacing: 0.08em;
  color: var(--earth);
  line-height: 1;
}
.price-notice__text {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--ink-soft);
}
.price-notice__text strong { color: var(--forest); font-weight: 600; }

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
  margin-top: 28px;
}
.plan-card {
  background: var(--cream);
  border: 1px solid rgba(42,42,42,0.12);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
}
.section--cream-deep .plan-card { background: #fff; }
.plan-card--feature {
  border-top: 3px solid var(--leaf);
}
.plan-card__en {
  font-family: var(--latin);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--leaf);
}
.plan-card__name {
  margin-top: 12px;
  font-size: 20px;
  letter-spacing: 0.12em;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.plan-card__sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--earth);
  font-family: var(--sans);
  font-weight: 500;
}
.plan-card__fee {
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--serif);
  color: var(--forest-deep);
}
.plan-card__yen { font-size: 20px; font-weight: 500; }
.plan-card__num { font-size: clamp(34px, 3.8vw, 44px); font-weight: 600; line-height: 1; letter-spacing: 0.02em; }
.plan-card__unit {
  margin-top: 12px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.plan-card__list {
  margin: 20px 0 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid rgba(42,42,42,0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-card__list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.plan-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--leaf);
}

.addfees {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  background: var(--cream-deep);
  border: 1px solid rgba(42,42,42,0.12);
  color: var(--ink);
  padding: clamp(30px, 4vw, 44px);
}
.section--cream-deep .addfees { background: #fff; }
.addfees__col + .addfees__col {
  border-left: 1px solid rgba(42,42,42,0.14);
  padding-left: clamp(28px, 4vw, 56px);
}
.addfees__title {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  color: var(--forest);
}
.addfees .fee-row { border-bottom: 1px solid rgba(42,42,42,0.12); }
.addfees .fee-row span:first-child { color: var(--ink); }
.addfees .fee-row span:last-child { color: var(--ink); }

/* ==========================================================================
   CTA cluster (reused)
   ========================================================================== */
.cta-cluster {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 64px;
}
.cta-cluster--left { align-items: flex-start; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--forest);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.24em;
  padding: 17px 44px;
  border-radius: 2px;
  transition: background 400ms ease, transform 400ms ease, box-shadow 400ms ease;
  box-shadow: 0 10px 34px rgba(46,107,40,0.22);
}
.btn-primary:hover { background: var(--forest-deep); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(46,107,40,0.28); }
.btn-primary--on-dark { background: #fff; color: var(--forest); box-shadow: none; }
.btn-primary--on-dark:hover { background: var(--cream); color: var(--forest-deep); }
.btn-text {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 360ms ease, color 360ms ease;
}
.btn-text:hover { border-color: var(--earth); color: var(--earth); }
.btn-text--light { color: rgba(255,255,255,0.85); }
.btn-text--light:hover { color: #fff; border-color: rgba(255,255,255,0.7); }

/* ==========================================================================
   Friends (mascots)
   ========================================================================== */
.friends__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 44px);
  max-width: 760px;
  margin: 64px auto 0;
}
.friend { margin: 0; }
.friend image-slot { width: 100%; aspect-ratio: 4 / 3; }
.friend__cap {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.friend__cap span {
  font-family: var(--latin);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--leaf);
}

/* ==========================================================================
   Facilities
   ========================================================================== */
.facilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: rgba(42,42,42,0.12);
  border: 1px solid rgba(42,42,42,0.12);
}
.facility {
  background: var(--cream);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section--cream-deep .facility { background: var(--cream-deep); }
.facility__name {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.14em;
}
.facility__state { font-size: 14px; color: var(--ink-soft); letter-spacing: 0.08em; white-space: pre-line; line-height: 1.75; }
.facility__state.is-none { color: var(--earth); opacity: 0.85; }

/* ==========================================================================
   Rules
   ========================================================================== */
.rules__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(40px, 6vw, 96px);
  row-gap: 0;
  margin-top: 56px;
}
.rule {
  display: flex;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(42,42,42,0.12);
  align-items: baseline;
}
.rule__no {
  font-family: var(--latin);
  font-style: italic;
  font-size: 22px;
  color: var(--leaf);
  flex: none;
  min-width: 34px;
}
.rule__text { font-size: 15.5px; line-height: 1.9; color: var(--ink); }
.rule__text strong { font-weight: 600; color: var(--forest); }

/* ==========================================================================
   Nearby
   ========================================================================== */
.nearby__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 28px);
  margin-top: 64px;
}
.nearby-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.nearby-card image-slot { width: 100%; aspect-ratio: 4/3; height: auto; transition: transform 900ms cubic-bezier(.2,.7,.2,1); }
.nearby-card:hover image-slot { transform: scale(1.05); }
.nearby-card__body { padding-top: 18px; }
.nearby-card__name {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.12em;
  display: flex; align-items: center; gap: 8px;
}
.nearby-card__name .arrow { color: var(--earth); font-family: var(--sans); transition: transform 400ms ease; }
.nearby-card:hover .nearby-card__name .arrow { transform: translateX(4px); }
.nearby-card__desc { margin-top: 8px; font-size: 13px; color: var(--ink); line-height: 1.8; }
.nearby-card__time {
  display: block;
  margin-bottom: 3px;
  font-family: var(--latin);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  opacity: 0.85;
}

/* ==========================================================================
   Access
   ========================================================================== */
.access__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  margin-top: 64px;
}
.access__info dl { margin: 0; }
.access-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(42,42,42,0.12);
  align-items: baseline;
}
.access-row:first-child { border-top: 1px solid rgba(42,42,42,0.12); }
.access-row dt {
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-family: var(--latin);
  font-style: italic;
}
.access-row dd {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--ink);
}
.access-row dd a { color: var(--forest); border-bottom: 1px solid currentColor; }
.map-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(46,107,40,0.06) 38px, rgba(46,107,40,0.06) 39px),
    repeating-linear-gradient(90deg, transparent, transparent 38px, rgba(46,107,40,0.06) 38px, rgba(46,107,40,0.06) 39px),
    var(--cream-deep);
  border: 1px solid rgba(42,42,42,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--ink-soft);
}
.map-placeholder__pin {
  width: 44px; height: 44px; border-radius: 50% 50% 50% 0;
  background: var(--forest);
  transform: rotate(-45deg);
  position: relative;
}
.map-placeholder__pin::after {
  content: ""; position: absolute; inset: 14px; border-radius: 50%; background: var(--cream);
}
.map-placeholder__label {
  font-family: var(--latin);
  font-style: italic;
  letter-spacing: 0.18em;
  font-size: 15px;
}
.map-placeholder__hint { font-size: 12px; letter-spacing: 0.1em; }

.access__map {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid rgba(42,42,42,0.14);
  overflow: hidden;
  background: var(--cream-deep);
}
.access__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.86) contrast(0.98);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.85);
  padding-block: clamp(70px, 9vw, 120px) 48px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
}
.footer__brand { display: flex; flex-direction: column; gap: 20px; }
.footer__logo { width: 72px; height: 72px; }
.footer__logo image-slot { width: 100%; height: 100%; }
.footer__tagline {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.14em;
  color: #fff;
  line-height: 1.9;
}
.footer__en { font-family: var(--latin); font-style: italic; letter-spacing: 0.16em; font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-col h4 {
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 20px; font-family: var(--latin); font-style: italic; font-weight: 500;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col p { font-size: 14px; letter-spacing: 0.08em; color: rgba(255,255,255,0.82); transition: color 300ms ease; }
.footer-col a:hover { color: #fff; }
.footer__reserve {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: #fff !important;
  transition: background 320ms ease, color 320ms ease, border-color 320ms ease;
}
.footer__reserve span { transition: transform 320ms ease; }
.footer__reserve:hover {
  background: #fff;
  color: var(--forest-deep) !important;
  border-color: #fff;
}
.footer__reserve:hover span { transform: translateX(3px); }
.footer__sns { display: flex; gap: 16px; margin-top: 6px; }
.footer__sns a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.1em;
  transition: background 300ms ease, color 300ms ease, border-color 300ms ease;
}
.footer__sns a:hover { background: #fff; color: var(--forest-deep); border-color: #fff; }
.footer__bottom {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
/* Nav collapses earlier than content grids to avoid crowding */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(251,247,238,0.98);
    backdrop-filter: blur(12px);
    padding: 28px var(--gutter) 36px;
    gap: 22px;
    align-items: flex-start;
    box-shadow: 0 20px 40px rgba(42,42,42,0.12);
  }
  .nav__links.is-open .nav__link { color: var(--ink); }
  .nav__menu-btn {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 6px;
  }
  .nav__menu-btn span { width: 26px; height: 1.5px; background: var(--ink); transition: background 400ms; }
  .nav.is-hero-light .nav__menu-btn span { background: #fff; }
}

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

@media (max-width: 900px) {
  :root { --section-pad: calc(104px * var(--space-scale)); }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__media { max-width: 360px; margin-inline: auto; }
  .about__vtitle { writing-mode: horizontal-tb; margin: 0; height: auto; letter-spacing: 0.14em; }
  .exp__grid { grid-template-columns: 1fr; gap: 48px; }
  .exp-card image-slot { aspect-ratio: 16/10; }
  .sites { grid-template-columns: 1fr; }
  .price-block { grid-template-columns: 1fr; gap: 40px; }
  .price-block__extra { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 36px; }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .addfees { grid-template-columns: 1fr; gap: 32px; }
  .addfees__col + .addfees__col { border-left: none; padding-left: 0; border-top: 1px solid rgba(42,42,42,0.14); padding-top: 32px; }
  .price-notice { flex-direction: column; align-items: flex-start; gap: 12px; }
  .facilities__grid { grid-template-columns: 1fr 1fr; }
  .rules__grid { grid-template-columns: 1fr; }
  .nearby__grid { grid-template-columns: 1fr 1fr; }
  .access__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  :root { --section-pad: calc(82px * var(--space-scale)); }
  /* Nav: keep brand + hamburger from crowding */
  .nav { padding-inline: 18px; }
  .nav__logo { width: 42px; height: 42px; }
  .nav.is-scrolled .nav__logo { width: 38px; height: 38px; }
  .nav__brand-jp { font-size: 15px; letter-spacing: 0.1em; }
  .nav__brand-en { font-size: 10px; }
  /* Pricing: one card per row so the 4 plans read clearly */
  .plans { grid-template-columns: 1fr; }
  .friends__grid { grid-template-columns: 1fr; max-width: 360px; }
  .facilities__grid { grid-template-columns: 1fr; }
  .nearby__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__catch { letter-spacing: 0.22em; }
  .hero__sub { margin-top: 26px; }
  .section-lead { font-size: 15px; }
  /* Access: stack label above value */
  .access-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .price-era__date { margin-left: 0; }
  .price-era { flex-wrap: wrap; gap: 8px 16px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 380px) {
  .nav__brand-jp { font-size: 13.5px; }
}

/* Short viewports (landscape phones, small/short windows): keep the hero from
   overflowing — drop the scroll cue and let it size purely to height. */
@media (max-height: 620px) {
  .hero { min-height: 0; }
  .hero__inner { padding-top: clamp(48px, 7vh, 72px); }
  .hero__scroll { display: none; }
}
