/* =======================================================
   ZEPHYR GLEN WATCH — 共通スタイル / Shared Styles
   ゼファー・グレン・ウォッチ株式会社 © 2026
   ======================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,200;0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,700;1,9..144,200;1,9..144,300;1,9..144,400;1,9..144,500&family=Noto+Serif+JP:wght@200;300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --forest-dark:  #0d1f17;
  --forest-deep:  #1a3a2a;
  --forest-green: #2d5a3d;
  --emerald:      #3d8b5e;
  --mist-gray:    #8a9ba8;
  --cedar:        #7c5a3c;
  --beige:        #f5efe6;
  --sky-blue:     #a8c5d6;
  --stone:        #6b7280;
  --white:        #ffffff;
  --cream:        #faf7f2;
  --nav-h:        80px;
  --ease:         cubic-bezier(0.25, 0.8, 0.25, 1);
  --t:            all 0.4s var(--ease);
  --sh-soft:      0 4px 30px rgba(13,31,23,0.08);
  --sh-med:       0 8px 40px rgba(13,31,23,0.14);
  --sh-strong:    0 20px 60px rgba(13,31,23,0.22);
}

/* ── RESET ── */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; }
body {
  font-family:'Noto Serif JP',serif;
  background:var(--cream);
  color:var(--forest-dark);
  line-height:1.85;
  overflow-x:hidden;
}
body.nav-open { overflow:hidden; }
a { color:inherit; text-decoration:none; }
img { display:block; max-width:100%; }
button { font-family:inherit; cursor:pointer; }
ul { list-style:none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-family:'Fraunces',serif;
  line-height:1.15;
  letter-spacing:-0.02em;
}
.en { font-family:'Fraunces',serif; }
.jp { font-family:'Noto Serif JP',serif; }

/* ── NAVIGATION ── */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  height:var(--nav-h);
  display:flex; align-items:center; justify-content:space-between;
  padding:0 48px;
  transition:background 0.5s ease, box-shadow 0.5s ease;
}
.nav.transparent { background:transparent; }
.nav.scrolled {
  background:rgba(13,31,23,0.95);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  box-shadow:var(--sh-med);
}

/* Logo */
.nav-logo {
  display:flex; align-items:center; gap:13px;
  text-decoration:none; flex-shrink:0;
}
.logo-mark {
  width:46px; height:46px; border-radius:50%;
  background:linear-gradient(135deg,var(--emerald),var(--forest-green));
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  box-shadow:0 4px 16px rgba(61,139,94,0.35);
}
.logo-mark svg { width:24px; height:24px; fill:white; }
.logo-text { display:flex; flex-direction:column; }
.logo-en {
  font-family:'Fraunces',serif; font-size:13px; font-weight:500;
  color:white; letter-spacing:0.14em; text-transform:uppercase;
  line-height:1.2;
}
.logo-jp {
  font-family:'Noto Serif JP',serif; font-size:10px; font-weight:300;
  color:rgba(255,255,255,0.6); letter-spacing:0.12em; line-height:1.2;
}

/* Nav Links */
.nav-links {
  display:flex; align-items:center; gap:26px;
}
.nav-links a {
  font-family:'Noto Serif JP',serif; font-size:13px; font-weight:400;
  color:rgba(255,255,255,0.82); letter-spacing:0.07em;
  position:relative; padding-bottom:3px; transition:color 0.3s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:1px; background:var(--sky-blue);
  transition:width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color:white; }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-cta {
  background:var(--emerald) !important;
  color:white !important;
  padding:8px 22px;
  border-radius:100px;
  font-size:12px !important;
  letter-spacing:0.1em !important;
  transition:var(--t) !important;
  box-shadow:0 4px 16px rgba(61,139,94,0.3);
}
.nav-cta:hover { background:var(--forest-green) !important; transform:translateY(-1px); }
.nav-cta::after { display:none !important; }

/* Hamburger */
.nav-burger {
  display:none; flex-direction:column; gap:6px;
  border:none; background:none; padding:6px;
}
.nav-burger span {
  display:block; width:25px; height:2px;
  background:white; border-radius:2px; transition:var(--t);
}
.nav-burger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,6px); }
.nav-burger.open span:nth-child(2) { opacity:0; transform:translateX(-8px); }
.nav-burger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-6px); }

/* Mobile Overlay */
.nav-overlay {
  position:fixed; inset:0; z-index:999;
  background:rgba(13,31,23,0.97);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none;
  transition:opacity 0.4s ease;
}
.nav-overlay.open { opacity:1; pointer-events:all; }
.nav-overlay-links { text-align:center; }
.nav-overlay-links li { margin-bottom:26px; }
.nav-overlay-links a {
  font-family:'Noto Serif JP',serif; font-size:22px; font-weight:300;
  color:rgba(255,255,255,0.85); letter-spacing:0.08em;
  transition:color 0.3s;
}
.nav-overlay-links a:hover { color:var(--sky-blue); }

/* ── HERO ── */
.hero {
  position:relative; height:100vh; min-height:620px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  transform:scale(1.06);
  transition:transform 9s ease;
}
.hero-bg.loaded { transform:scale(1); }
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    to bottom,
    rgba(13,31,23,0.18) 0%,
    rgba(13,31,23,0.12) 35%,
    rgba(13,31,23,0.50) 75%,
    rgba(13,31,23,0.72) 100%
  );
}
.hero-content {
  position:relative; z-index:2;
  text-align:center; max-width:920px; padding:0 32px;
}
.hero-badge {
  display:inline-block;
  font-family:'Noto Serif JP',serif; font-size:11px; font-weight:400;
  color:var(--sky-blue); letter-spacing:0.28em; text-transform:uppercase;
  border:1px solid rgba(168,197,214,0.45);
  padding:7px 22px; border-radius:100px; margin-bottom:28px;
  animation:fadeInDown 1s ease 0.4s both;
}
.hero-title {
  font-family:'Fraunces',serif;
  font-size:clamp(44px,7.5vw,92px); font-weight:300;
  color:white; line-height:1.08; margin-bottom:18px;
  animation:fadeInUp 1s ease 0.6s both;
}
.hero-title em { font-style:italic; color:var(--sky-blue); }
.hero-sub {
  font-family:'Noto Serif JP',serif;
  font-size:clamp(14px,1.8vw,20px); font-weight:300;
  color:rgba(255,255,255,0.82); letter-spacing:0.1em;
  margin-bottom:50px;
  animation:fadeInUp 1s ease 0.8s both;
}
.hero-btns {
  display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
  animation:fadeInUp 1s ease 1s both;
}
.hero-scroll {
  position:absolute; bottom:38px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  animation:scrollBounce 2.5s ease infinite;
}
.hero-scroll span {
  font-family:'Noto Serif JP',serif; font-size:9px;
  color:rgba(255,255,255,0.55); letter-spacing:0.25em; text-transform:uppercase;
}
.hero-scroll-line {
  width:1px; height:42px;
  background:linear-gradient(to bottom,rgba(255,255,255,0.6),transparent);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position:relative; height:62vh; min-height:420px;
  display:flex; align-items:flex-end; overflow:hidden;
}
.page-hero-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
}
.page-hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    to bottom, rgba(13,31,23,0.18) 0%, rgba(13,31,23,0.65) 100%
  );
}
.page-hero-content {
  position:relative; z-index:2;
  padding:64px 60px; width:100%;
}
.page-hero-label {
  display:block; font-family:'Noto Serif JP',serif;
  font-size:11px; font-weight:400; color:var(--sky-blue);
  letter-spacing:0.3em; text-transform:uppercase; margin-bottom:14px;
}
.page-hero-title {
  font-family:'Fraunces',serif;
  font-size:clamp(38px,5.5vw,76px); font-weight:300;
  color:white; line-height:1.1;
}
.page-hero-title em { font-style:italic; color:var(--sky-blue); }

/* ── BUTTONS ── */
.btn {
  display:inline-flex; align-items:center; gap:9px;
  padding:15px 38px; border-radius:100px;
  font-family:'Noto Serif JP',serif; font-size:14px; font-weight:400;
  letter-spacing:0.08em; transition:var(--t);
  border:none; outline:none; text-decoration:none;
}
.btn-primary {
  background:var(--emerald); color:white;
  box-shadow:0 4px 20px rgba(61,139,94,0.38);
}
.btn-primary:hover {
  background:var(--forest-green); transform:translateY(-3px);
  box-shadow:0 10px 32px rgba(61,139,94,0.48); color:white;
}
.btn-outline {
  background:rgba(255,255,255,0.08); color:white;
  border:1px solid rgba(255,255,255,0.45);
  backdrop-filter:blur(10px);
}
.btn-outline:hover {
  background:rgba(255,255,255,0.16); border-color:white;
  transform:translateY(-3px); color:white;
}
.btn-dark {
  background:var(--forest-deep); color:white;
  box-shadow:0 4px 20px rgba(13,31,23,0.3);
}
.btn-dark:hover {
  background:var(--forest-dark); transform:translateY(-3px);
  box-shadow:0 10px 32px rgba(13,31,23,0.4); color:white;
}
.btn-sm { padding:10px 24px; font-size:13px; }

/* ── LAYOUT ── */
.container { max-width:1200px; margin:0 auto; padding:0 48px; }
.container-wide { max-width:1440px; margin:0 auto; padding:0 48px; }

.section    { padding:100px 0; }
.section-sm { padding:64px 0; }
.section-lg { padding:140px 0; }

/* Section Header */
.s-label {
  display:inline-block;
  font-family:'Noto Serif JP',serif; font-size:11px; font-weight:500;
  color:var(--emerald); letter-spacing:0.3em; text-transform:uppercase;
  margin-bottom:16px; position:relative; padding-left:32px;
}
.s-label::before {
  content:''; position:absolute; left:0; top:50%; transform:translateY(-50%);
  width:22px; height:1px; background:var(--emerald);
}
.s-title {
  font-family:'Fraunces',serif;
  font-size:clamp(32px,4.2vw,58px); font-weight:300;
  color:var(--forest-dark); line-height:1.12; margin-bottom:20px;
}
.s-title em { font-style:italic; color:var(--emerald); }
.s-desc {
  font-family:'Noto Serif JP',serif; font-size:15px; font-weight:300;
  color:var(--stone); line-height:1.95; max-width:580px;
}
.divider {
  width:56px; height:1px; background:var(--emerald); margin:26px 0;
}
.divider-c { margin:26px auto; }

/* Text color modifiers */
.text-white .s-title  { color:white; }
.text-white .s-desc   { color:rgba(255,255,255,0.72); }
.text-white .s-label  { color:var(--sky-blue); }
.text-white .s-label::before { background:var(--sky-blue); }
.text-white .divider  { background:rgba(255,255,255,0.25); }

/* Backgrounds */
.bg-forest { background:var(--forest-deep); }
.bg-dark   { background:var(--forest-dark); }
.bg-cream  { background:var(--cream); }
.bg-beige  { background:var(--beige); }
.bg-white  { background:var(--white); }

/* Split grid */
.split {
  display:grid; grid-template-columns:1fr 1fr; align-items:stretch;
}
.split-img { overflow:hidden; min-height:460px; }
.split-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.8s ease; }
.split-img:hover img { transform:scale(1.04); }
.split-body {
  padding:80px 64px; display:flex; flex-direction:column; justify-content:center;
}
.split-body.bg-forest .s-title { color:white; }
.split-body.bg-forest .s-desc  { color:rgba(255,255,255,0.72); }
.split-body.bg-forest .s-label { color:var(--sky-blue); }
.split-body.bg-forest .s-label::before { background:var(--sky-blue); }
.split-body.bg-forest .divider { background:rgba(255,255,255,0.22); }
.split-body.bg-forest .feature-list li { color:rgba(255,255,255,0.72); }

/* Cinematic full-width */
.cinematic {
  position:relative; height:68vh; min-height:420px; overflow:hidden;
}
.cinematic img { width:100%; height:100%; object-fit:cover; }
.cinematic-over {
  position:absolute; inset:0;
  background:linear-gradient(to right,rgba(13,31,23,0.75) 0%,rgba(13,31,23,0.18) 60%);
  display:flex; align-items:center;
}
.cinematic-body {
  padding:0 80px; max-width:520px; color:white;
}
.cinematic-body .s-title { color:white; }
.cinematic-body .s-desc  { color:rgba(255,255,255,0.75); }
.cinematic-body .s-label { color:var(--sky-blue); }
.cinematic-body .s-label::before { background:var(--sky-blue); }
.cinematic-body .divider { background:rgba(255,255,255,0.25); }

/* ── CARDS ── */
.cards-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
  gap:32px;
}
.card {
  background:white; border-radius:18px; overflow:hidden;
  box-shadow:var(--sh-soft); transition:var(--t);
  display:block; text-decoration:none; color:inherit;
}
.card:hover { transform:translateY(-7px); box-shadow:var(--sh-strong); }
.card-img { height:230px; overflow:hidden; }
.card-img img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.7s ease;
}
.card:hover .card-img img { transform:scale(1.07); }
.card-body { padding:30px; }
.card-label {
  font-family:'Noto Serif JP',serif; font-size:10px; font-weight:500;
  color:var(--emerald); letter-spacing:0.28em; text-transform:uppercase;
  display:block; margin-bottom:10px;
}
.card-title {
  font-family:'Fraunces',serif; font-size:22px; font-weight:400;
  color:var(--forest-dark); margin-bottom:11px; line-height:1.3;
}
.card-desc {
  font-family:'Noto Serif JP',serif; font-size:13px; font-weight:300;
  color:var(--stone); line-height:1.85;
}
.card-arrow {
  display:inline-flex; align-items:center; gap:6px; margin-top:18px;
  font-family:'Noto Serif JP',serif; font-size:12px; font-weight:500;
  color:var(--emerald); letter-spacing:0.1em;
  transition:gap 0.3s;
}
.card:hover .card-arrow { gap:12px; }

/* Glass card */
.glass-card {
  background:rgba(255,255,255,0.10);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.18);
  border-radius:18px; padding:42px;
}

/* Stats row */
.stats-row {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:1px; background:rgba(255,255,255,0.06);
}
.stat-item {
  padding:44px 32px; text-align:center; background:var(--forest-deep);
}
.stat-num {
  font-family:'Fraunces',serif; font-size:52px; font-weight:300;
  color:var(--sky-blue); line-height:1; margin-bottom:10px;
}
.stat-unit {
  font-family:'Fraunces',serif; font-size:20px; font-weight:300;
  color:var(--sky-blue);
}
.stat-label {
  font-family:'Noto Serif JP',serif; font-size:12px; font-weight:400;
  color:rgba(255,255,255,0.62); letter-spacing:0.1em;
}

/* Quote */
.quote-block {
  text-align:center; padding:90px 40px; max-width:820px; margin:0 auto;
}
.quote-text {
  font-family:'Fraunces',serif; font-style:italic;
  font-size:clamp(22px,3.2vw,38px); font-weight:300;
  color:var(--forest-dark); line-height:1.55; margin-bottom:26px;
}
.quote-attr {
  font-family:'Noto Serif JP',serif; font-size:13px;
  color:var(--stone); letter-spacing:0.1em;
}

/* Feature list */
.feature-list { list-style:none; }
.feature-list li {
  display:flex; align-items:flex-start; gap:14px;
  margin-bottom:16px;
  font-family:'Noto Serif JP',serif; font-size:14px; font-weight:300;
  color:var(--stone); line-height:1.75;
}
.feature-list li::before {
  content:'→'; color:var(--emerald); flex-shrink:0;
  margin-top:2px; font-size:12px;
}

/* Tags */
.tag {
  display:inline-block; padding:5px 15px; border-radius:100px;
  font-family:'Noto Serif JP',serif; font-size:11px; font-weight:500;
  letter-spacing:0.1em;
}
.tag-green {
  background:rgba(61,139,94,0.1); color:var(--emerald);
  border:1px solid rgba(61,139,94,0.22);
}
.tag-blue {
  background:rgba(168,197,214,0.14); color:var(--mist-gray);
  border:1px solid rgba(168,197,214,0.3);
}
.tag-cedar {
  background:rgba(124,90,60,0.1); color:var(--cedar);
  border:1px solid rgba(124,90,60,0.2);
}

/* Trail list */
.trail-item {
  display:grid; grid-template-columns:72px 1fr auto;
  gap:24px; align-items:center;
  padding:30px 0;
  border-bottom:1px solid rgba(13,31,23,0.08);
}
.trail-num {
  font-family:'Fraunces',serif; font-size:40px; font-weight:200;
  font-style:italic; color:rgba(13,31,23,0.12);
}
.trail-info h3 {
  font-family:'Fraunces',serif; font-size:22px; font-weight:400;
  color:var(--forest-dark); margin-bottom:7px;
}
.trail-info p {
  font-family:'Noto Serif JP',serif; font-size:13px; font-weight:300;
  color:var(--stone); line-height:1.65;
}
.trail-meta {
  display:flex; flex-direction:column; align-items:flex-end; gap:7px;
}
.trail-dist {
  font-family:'Fraunces',serif; font-size:20px; font-weight:400;
  color:var(--forest-dark);
}
.diff-easy   { background:rgba(61,139,94,0.12); color:var(--emerald); }
.diff-medium { background:rgba(124,90,60,0.12); color:var(--cedar); }
.diff-hard   { background:rgba(13,31,23,0.10);  color:var(--forest-deep); }

/* Timeline */
.timeline { position:relative; padding-left:44px; }
.timeline::before {
  content:''; position:absolute; left:14px; top:8px; bottom:8px;
  width:1px; background:rgba(13,31,23,0.12);
}
.timeline-item { position:relative; padding-bottom:44px; }
.timeline-item::before {
  content:''; position:absolute;
  left:-36px; top:7px; width:10px; height:10px;
  border-radius:50%; background:var(--emerald);
  box-shadow:0 0 0 4px rgba(61,139,94,0.18);
}
.tl-year {
  font-family:'Fraunces',serif; font-size:12px; font-weight:500;
  color:var(--emerald); letter-spacing:0.15em; margin-bottom:7px;
}
.timeline-item h3 {
  font-family:'Fraunces',serif; font-size:22px; font-weight:400;
  color:var(--forest-dark); margin-bottom:9px;
}
.timeline-item p {
  font-family:'Noto Serif JP',serif; font-size:14px; font-weight:300;
  color:var(--stone); line-height:1.82;
}

/* Season grid */
.season-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
}
.season-card { position:relative; overflow:hidden; aspect-ratio:3/4; }
.season-card img {
  width:100%; height:100%; object-fit:cover;
  transition:transform 0.7s ease;
}
.season-card:hover img { transform:scale(1.07); }
.season-over {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(13,31,23,0.82) 0%,transparent 60%);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:32px;
}
.season-name {
  font-family:'Fraunces',serif; font-size:30px; font-weight:300;
  color:white; margin-bottom:4px;
}
.season-jp {
  font-family:'Noto Serif JP',serif; font-size:12px; font-weight:400;
  color:rgba(255,255,255,0.68); letter-spacing:0.1em;
}

/* Visit Info grid */
.info-grid {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:28px; margin-top:40px;
}
.info-box {
  background:white; border-radius:14px; padding:36px 30px;
  box-shadow:var(--sh-soft); text-align:center;
}
.info-box-icon { font-size:32px; margin-bottom:14px; }
.info-box-title {
  font-family:'Fraunces',serif; font-size:16px; font-weight:500;
  color:var(--forest-dark); margin-bottom:8px;
}
.info-box-text {
  font-family:'Noto Serif JP',serif; font-size:13px; font-weight:300;
  color:var(--stone); line-height:1.8;
}

/* FAQ */
.faq-item {
  border-bottom:1px solid rgba(13,31,23,0.09);
}
.faq-q {
  width:100%; text-align:left; background:none; border:none;
  padding:24px 0; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  font-family:'Fraunces',serif; font-size:18px; font-weight:400;
  color:var(--forest-dark); transition:color 0.3s;
}
.faq-q:hover { color:var(--emerald); }
.faq-q-icon {
  width:28px; height:28px; border-radius:50%;
  border:1px solid rgba(13,31,23,0.2);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; font-size:18px; transition:var(--t);
}
.faq-item.open .faq-q-icon { background:var(--emerald); border-color:var(--emerald); color:white; transform:rotate(45deg); }
.faq-a {
  display:none; padding:0 0 24px;
  font-family:'Noto Serif JP',serif; font-size:14px; font-weight:300;
  color:var(--stone); line-height:1.9;
}

/* Contact form */
.form-group { margin-bottom:24px; }
.form-label {
  display:block; font-family:'Noto Serif JP',serif;
  font-size:13px; font-weight:400;
  color:var(--forest-dark); letter-spacing:0.05em; margin-bottom:8px;
}
.form-input, .form-select, .form-textarea {
  width:100%; padding:14px 18px;
  border:1px solid rgba(13,31,23,0.14); border-radius:10px;
  background:white; font-family:'Noto Serif JP',serif;
  font-size:14px; font-weight:300; color:var(--forest-dark);
  transition:border-color 0.3s, box-shadow 0.3s; outline:none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color:var(--emerald); box-shadow:0 0 0 3px rgba(61,139,94,0.1);
}
.form-textarea { resize:vertical; min-height:140px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }

/* Newsletter */
.newsletter-row {
  display:flex; gap:12px; flex-wrap:wrap;
}
.newsletter-row .form-input {
  flex:1; min-width:220px;
}

/* ── FLOATING BUTTON ── */
.floating-btn {
  position:fixed; bottom:38px; right:38px; z-index:200;
  display:flex; align-items:center; gap:9px;
  padding:14px 26px; border-radius:100px;
  background:var(--emerald); color:white;
  font-family:'Noto Serif JP',serif; font-size:13px; font-weight:500;
  letter-spacing:0.05em; text-decoration:none;
  box-shadow:0 8px 32px rgba(61,139,94,0.42);
  transition:var(--t);
}
.floating-btn:hover {
  background:var(--forest-green); transform:translateY(-4px);
  box-shadow:0 14px 42px rgba(61,139,94,0.52); color:white;
}
.fb-icon { font-size:17px; }

/* ── POPUP NOTIFICATIONS ── */
.popup-wrap {
  position:fixed; top:100px; right:20px; z-index:9999;
  display:flex; flex-direction:column; gap:12px;
  pointer-events:none;
}
.popup {
  background:white; border-radius:14px;
  padding:18px 22px; min-width:290px; max-width:370px;
  box-shadow:0 10px 48px rgba(13,31,23,0.18);
  border-left:4px solid var(--emerald);
  pointer-events:all;
  transform:translateX(120%); opacity:0;
  transition:all 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
.popup.visible { transform:translateX(0); opacity:1; }
.popup.info    { border-left-color:var(--sky-blue); }
.popup.warning { border-left-color:var(--cedar); }
.popup-head {
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:7px;
}
.popup-title {
  font-family:'Fraunces',serif; font-size:15px; font-weight:500;
  color:var(--forest-dark);
}
.popup-close {
  width:22px; height:22px; border:none; background:none;
  cursor:pointer; font-size:18px; color:var(--stone);
  display:flex; align-items:center; justify-content:center;
  border-radius:50%; transition:background 0.2s;
}
.popup-close:hover { background:rgba(107,114,128,0.12); }
.popup-msg {
  font-family:'Noto Serif JP',serif; font-size:13px; font-weight:300;
  color:var(--stone); line-height:1.65;
}

/* ── FOOTER ── */
.footer { background:var(--forest-dark); padding:90px 0 44px; }
.footer-top {
  display:grid; grid-template-columns:2.2fr 1fr 1fr 1.4fr;
  gap:60px; margin-bottom:64px;
}
.footer-brand-desc {
  font-family:'Noto Serif JP',serif; font-size:13px; font-weight:300;
  color:rgba(255,255,255,0.50); line-height:1.95;
  max-width:280px; margin:18px 0 26px;
}
.footer-social { display:flex; gap:11px; }
.footer-social a {
  width:36px; height:36px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.14);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.45); font-size:12px;
  transition:var(--t);
}
.footer-social a:hover {
  border-color:var(--emerald); color:var(--emerald);
  background:rgba(61,139,94,0.12);
}
.footer-heading {
  font-family:'Fraunces',serif; font-size:14px; font-weight:500;
  color:white; letter-spacing:0.1em; margin-bottom:22px;
}
.footer-links li { margin-bottom:11px; }
.footer-links a {
  font-family:'Noto Serif JP',serif; font-size:13px; font-weight:300;
  color:rgba(255,255,255,0.48); letter-spacing:0.05em;
  transition:color 0.3s;
}
.footer-links a:hover { color:rgba(255,255,255,0.85); }
.footer-contact-row {
  display:flex; align-items:flex-start; gap:11px; margin-bottom:16px;
}
.fc-icon { font-size:14px; color:var(--emerald); margin-top:2px; flex-shrink:0; }
.fc-text {
  font-family:'Noto Serif JP',serif; font-size:12px; font-weight:300;
  color:rgba(255,255,255,0.48); line-height:1.75;
}
.fc-text a { color:inherit; transition:color 0.3s; }
.fc-text a:hover { color:rgba(255,255,255,0.8); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.07); padding-top:32px;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:16px;
}
.footer-copy {
  font-family:'Noto Serif JP',serif; font-size:12px; font-weight:300;
  color:rgba(255,255,255,0.30); letter-spacing:0.06em;
}
.footer-legal { display:flex; gap:24px; }
.footer-legal a {
  font-family:'Noto Serif JP',serif; font-size:11px; font-weight:300;
  color:rgba(255,255,255,0.28); transition:color 0.3s;
}
.footer-legal a:hover { color:rgba(255,255,255,0.6); }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(32px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-22px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes scrollBounce {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50%      { transform:translateX(-50%) translateY(-9px); }
}

.reveal        { opacity:0; transform:translateY(34px); transition:opacity 0.75s ease,transform 0.75s ease; }
.reveal-l      { opacity:0; transform:translateX(-44px); transition:opacity 0.75s ease,transform 0.75s ease; }
.reveal-r      { opacity:0; transform:translateX(44px); transition:opacity 0.75s ease,transform 0.75s ease; }
.reveal.on,.reveal-l.on,.reveal-r.on { opacity:1; transform:translate(0); }

/* ── UTILITIES ── */
.text-center { text-align:center; }
.mx-auto     { margin-left:auto; margin-right:auto; }
.mt-8  { margin-top:8px; }
.mt-16 { margin-top:16px; }
.mt-24 { margin-top:24px; }
.mt-32 { margin-top:32px; }
.mt-48 { margin-top:48px; }
.mb-16 { margin-bottom:16px; }
.mb-24 { margin-bottom:24px; }
.mb-32 { margin-bottom:32px; }
.mb-48 { margin-bottom:48px; }
.flex  { display:flex; }
.gap-8  { gap:8px; }
.gap-12 { gap:12px; }
.gap-16 { gap:16px; }
.gap-24 { gap:24px; }
.items-center { align-items:center; }
.flex-wrap    { flex-wrap:wrap; }

/* ── RESPONSIVE ── */
@media (max-width:1100px) {
  .footer-top { grid-template-columns:1fr 1fr; gap:40px; }
  .stats-row  { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:900px) {
  .split { grid-template-columns:1fr; }
  .split-img { min-height:340px; }
  .split-body { padding:60px 40px; }
  .season-grid { grid-template-columns:repeat(2,1fr); }
  .cinematic-body { padding:0 40px; max-width:100%; }
  .page-hero-content { padding:48px 32px; }
  .form-grid { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  :root { --nav-h:68px; }
  .nav { padding:0 24px; }
  .nav-links { display:none; }
  .nav-burger { display:flex; }
  .container,.container-wide { padding:0 24px; }
  .section    { padding:72px 0; }
  .section-lg { padding:90px 0; }
  .hero-sub   { letter-spacing:0.05em; }
  .hero-btns  { flex-direction:column; align-items:center; }
  .btn        { width:100%; max-width:280px; justify-content:center; }
  .stats-row  { grid-template-columns:repeat(2,1fr); }
  .footer-top { grid-template-columns:1fr; gap:36px; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
  .trail-item { grid-template-columns:1fr auto; row-gap:6px; }
  .trail-num  { display:none; }
  .floating-btn { bottom:24px; right:24px; padding:12px 20px; font-size:12px; }
  .cinematic  { height:auto; }
  .cinematic img { height:300px; }
  .cinematic-over { position:relative; background:var(--forest-deep); }
  .cinematic-body { padding:40px 24px; max-width:none; }
  .cinematic-body .s-title { color:white; }
}
@media (max-width:540px) {
  .season-grid { grid-template-columns:1fr; }
  .cards-grid  { grid-template-columns:1fr; }
  .info-grid   { grid-template-columns:1fr; }
  .newsletter-row { flex-direction:column; }
  .newsletter-row .btn { max-width:none; }
}
