/* ============================================================
   Vinewood Park — styles.css
   Shared Stylesheet
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* ── CSS Variables ── */
:root {
  --vine-green:   #4A7C59;
  --forest-green: #2D5A3D;
  --deep-green:   #1A3A28;
  --cream:        #F8F4ED;
  --beige:        #EDE4D3;
  --warm-beige:   #D4C5A9;
  --wood-brown:   #7A5C38;
  --sky-blue:     #87B5C8;
  --gold:         #C9A96E;
  --text-dark:    #1E2D20;
  --text-mid:     #4A5E4C;
  --text-light:   #7A8E7C;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-full: 999px;

  --shadow-sm:  0 2px 8px rgba(30,45,32,.08);
  --shadow-md:  0 6px 24px rgba(30,45,32,.12);
  --shadow-lg:  0 12px 40px rgba(30,45,32,.18);

  --transition: 0.3s ease;
  --nav-height: 72px;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Shippori Mincho', serif;
  line-height: 1.3;
  color: var(--text-dark);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.transparent { background: transparent; }
.nav.scrolled {
  background: #fff;
  box-shadow: 0 2px 16px rgba(30,45,32,.10);
}
.nav.transparent .nav-logo-text,
.nav.transparent .nav-logo-sub,
.nav.transparent .nav-link { color: #fff; }
.nav.scrolled .nav-logo-text { color: var(--forest-green); }
.nav.scrolled .nav-logo-sub  { color: var(--text-light); }
.nav.scrolled .nav-link       { color: var(--text-dark); }

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon svg { width: 38px; height: 38px; }
.nav-logo-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color var(--transition);
}
.nav-logo-sub {
  font-size: .65rem;
  letter-spacing: .05em;
  display: block;
  margin-top: -2px;
  transition: color var(--transition);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--vine-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav.scrolled .nav-link:hover { color: var(--vine-green); }
.nav.transparent .nav-link:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform .35s ease, opacity .25s ease;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 80vw);
  height: 100vh;
  background: var(--deep-green);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  padding: 90px 32px 40px;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer .drawer-links { display: flex; flex-direction: column; gap: 0; }
.nav-drawer .drawer-link {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.nav-drawer .drawer-link:hover { color: var(--gold); padding-left: 8px; }
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-drawer-overlay.active { opacity: 1; pointer-events: all; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 0s;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 24px;
}
.hero-label {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .15em;
  color: rgba(255,255,255,.75);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  white-space: pre-line;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.88);
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: .7rem;
  letter-spacing: .12em;
  animation: bounce 2.2s ease-in-out infinite;
}
.scroll-indicator svg { width: 24px; height: 24px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Hero plain (colored bg) */
.hero-plain {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
}
.hero-plain .hero-title { color: #fff; }
.hero-plain .hero-subtitle-text { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-top: 12px; }

/* ============================================================
   FLOATING LEAVES
   ============================================================ */
.leaf-float {
  position: absolute;
  pointer-events: none;
  opacity: .55;
  animation: leafFloat1 12s ease-in-out infinite;
}
.leaf-float:nth-child(2) { animation: leafFloat2 16s ease-in-out infinite; animation-delay: -5s; }
.leaf-float:nth-child(3) { animation: leafFloat1 14s ease-in-out infinite; animation-delay: -9s; }

@keyframes leafFloat1 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(18px, -22px) rotate(20deg); }
  50%  { transform: translate(-12px, -38px) rotate(-10deg); }
  75%  { transform: translate(22px, -18px) rotate(15deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
@keyframes leafFloat2 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  33%  { transform: translate(-20px, -30px) rotate(-25deg); }
  66%  { transform: translate(15px, -45px) rotate(12deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* Particle leaves (JS generated) */
.leaf-particle {
  position: fixed;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  animation: leafFall linear infinite;
}
@keyframes leafFall {
  0%   { opacity: 0; transform: translateY(-60px) rotate(0deg); }
  10%  { opacity: .6; }
  90%  { opacity: .3; }
  100% { opacity: 0; transform: translateY(105vh) rotate(540deg) translateX(60px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--vine-green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(74,124,89,.3);
}
.btn-primary:hover {
  background: var(--forest-green);
  box-shadow: 0 6px 24px rgba(74,124,89,.45);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.75);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
.btn-secondary-dark {
  background: transparent;
  color: var(--vine-green);
  border: 2px solid var(--vine-green);
}
.btn-secondary-dark:hover {
  background: var(--vine-green);
  color: #fff;
}
.btn-gold {
  background: var(--gold);
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(201,169,110,.3);
}
.btn-gold:hover {
  background: #b8955a;
  box-shadow: 0 6px 24px rgba(201,169,110,.45);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding: 80px 0; }
.section-alt { background: #fff; }
.section-beige { background: var(--beige); }
.section-warm  { background: var(--warm-beige); }
.section-green { background: var(--forest-green); }
.section-deep  { background: var(--deep-green); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-subtitle-label {
  font-size: .8rem;
  letter-spacing: .18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-style: italic;
  display: block;
}
.section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--vine-green);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-title.light { color: #fff; }
.section-title.dark  { color: var(--text-dark); }
.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}
.section-desc.light { color: rgba(255,255,255,.8); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-tag {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .1em;
  background: var(--beige);
  color: var(--vine-green);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 500;
}
.card-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.card-text { font-size: .9rem; color: var(--text-mid); line-height: 1.65; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .85rem;
  color: var(--vine-green);
  font-weight: 500;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }

/* Icon card (no image) */
.card-icon {
  background: linear-gradient(135deg, var(--forest-green), var(--vine-green));
  border-radius: var(--radius-md);
  padding: 36px 28px;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-icon:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-icon-symbol {
  width: 56px; height: 56px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.card-icon-symbol svg { width: 28px; height: 28px; }
.card-icon .card-title { color: #fff; font-size: 1.15rem; }
.card-icon .card-text  { color: rgba(255,255,255,.8); font-size: .88rem; }

/* ============================================================
   GRIDS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--forest-green);
  padding: 28px 0;
}
.stats-bar .container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label { font-size: .82rem; color: rgba(255,255,255,.75); letter-spacing: .05em; }

/* ============================================================
   IMAGE + TEXT (split)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-img { order: 2; }
.split.reverse .split-text { order: 1; }
.split-img img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split-text { padding: 20px 0; }
.split-text h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}
.split-text p { color: var(--text-mid); margin-bottom: 16px; font-size: .97rem; }
.pull-quote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  margin: 24px 0;
  background: rgba(201,169,110,.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.pull-quote p {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  color: var(--wood-brown);
  font-style: italic;
  margin: 0;
}

/* ============================================================
   SEASON SECTION
   ============================================================ */
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.season-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 2/3;
  cursor: pointer;
}
.season-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.season-card:hover img { transform: scale(1.06); }
.season-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
}
.season-kanji {
  font-family: 'Shippori Mincho', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(255,255,255,.4);
  line-height: 1;
}
.season-name { font-family: 'Shippori Mincho', serif; font-size: 1.2rem; color: #fff; font-weight: 700; }
.season-desc { font-size: .82rem; color: rgba(255,255,255,.78); margin-top: 4px; }

/* ============================================================
   EVENTS
   ============================================================ */
.event-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event-date-badge {
  min-width: 60px;
  text-align: center;
  background: var(--vine-green);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  flex-shrink: 0;
}
.event-date-badge .month { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.event-date-badge .day   { font-family: 'Shippori Mincho', serif; font-size: 1.8rem; font-weight: 700; line-height: 1; }
.event-date-badge .year  { font-size: .65rem; color: rgba(255,255,255,.7); }
.event-info .event-title { font-family: 'Shippori Mincho', serif; font-size: 1.1rem; margin-bottom: 6px; }
.event-info .event-desc  { font-size: .88rem; color: var(--text-mid); }
.event-info .event-tag   {
  display: inline-block;
  font-size: .68rem; padding: 2px 10px;
  background: var(--beige); color: var(--vine-green);
  border-radius: var(--radius-full); margin-bottom: 8px; font-weight: 500;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,40,.55);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { width: 36px; height: 36px; color: #fff; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 60px rgba(0,0,0,.5);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  width: 48px; height: 48px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,.28); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  text-align: center;
}

/* Gallery filter */
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: .85rem;
  border: 2px solid var(--vine-green);
  color: var(--vine-green);
  background: transparent;
  transition: background var(--transition), color var(--transition);
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--vine-green);
  color: #fff;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--beige);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Shippori Mincho', serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  gap: 16px;
  user-select: none;
}
.faq-question:hover { color: var(--vine-green); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--beige);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-item.open .faq-icon { background: var(--vine-green); transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; color: var(--vine-green); transition: color var(--transition); }
.faq-item.open .faq-icon svg { color: #fff; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.75;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .95rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--vine-green);
  box-shadow: 0 0 0 3px rgba(74,124,89,.12);
}
textarea.form-control { resize: vertical; min-height: 130px; }

/* ============================================================
   POPUP NOTIFICATION
   ============================================================ */
#popup-notification {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 3000;
  min-width: 280px;
  max-width: 360px;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: none;
  align-items: center;
  gap: 14px;
  font-size: .95rem;
  font-weight: 500;
}
#popup-notification.success {
  background: var(--forest-green);
  color: #fff;
}
#popup-notification.info {
  background: var(--gold);
  color: var(--text-dark);
}
#popup-notification .popup-icon { font-size: 1.3rem; flex-shrink: 0; }

/* ============================================================
   WAVY DIVIDERS
   ============================================================ */
.divider-wave { line-height: 0; overflow: hidden; }
.divider-wave svg { display: block; width: 100%; }

/* ============================================================
   VINE DECORATOR
   ============================================================ */
.vine-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.vine-line::before,
.vine-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm-beige), transparent);
}

/* ============================================================
   FACILITY ICONS
   ============================================================ */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}
.facility-item {
  text-align: center;
  padding: 20px 12px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.facility-item .facility-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.facility-item p { font-size: .82rem; color: var(--text-mid); }

/* ============================================================
   TRAIL CARDS
   ============================================================ */
.trail-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--vine-green);
}
.trail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.trail-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.trail-badge.easy     { background: #e0f4e8; color: #2d7a50; }
.trail-badge.moderate { background: #fff0d6; color: #9a6e20; }
.trail-badge.hard     { background: #fde8e8; color: #9a2020; }
.trail-stats {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--beige);
}
.trail-stat { text-align: center; flex: 1; }
.trail-stat .val {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--vine-green);
  display: block;
}
.trail-stat .key { font-size: .72rem; color: var(--text-light); }

/* ============================================================
   VISIT INFO TABLE
   ============================================================ */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th,
.info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--beige);
  font-size: .92rem;
}
.info-table th { font-weight: 600; color: var(--text-dark); background: var(--cream); width: 40%; }
.info-table td { color: var(--text-mid); }

/* Info block cards */
.info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.info-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.15rem;
  color: var(--vine-green);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card h3 svg { width: 20px; height: 20px; }

/* ============================================================
   PHILOSOPHY CARDS
   ============================================================ */
.philosophy-card {
  text-align: center;
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.philosophy-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.philosophy-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--vine-green), var(--forest-green));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.philosophy-icon svg { width: 32px; height: 32px; color: #fff; }
.philosophy-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.philosophy-card p { font-size: .9rem; color: var(--text-mid); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--deep-green);
  padding: 72px 0 0;
  color: rgba(255,255,255,.75);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .logo-text {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.footer-brand .logo-sub { font-size: .65rem; color: rgba(255,255,255,.55); display: block; }
.footer-brand p { font-size: .87rem; line-height: 1.75; }
.footer-col h4 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .87rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col .footer-info-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: .87rem;
}
.footer-col .footer-info-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   PARALLAX
   ============================================================ */
.parallax { background-attachment: fixed; background-size: cover; background-position: center; }

/* ============================================================
   FADE IN ON SCROLL
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ============================================================
   MAP PLACEHOLDER
   ============================================================ */
.map-placeholder {
  background: linear-gradient(135deg, var(--beige), var(--warm-beige));
  border-radius: var(--radius-md);
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-mid);
  font-size: .95rem;
  border: 2px dashed var(--warm-beige);
  position: relative;
  overflow: hidden;
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--vine-green); opacity: .6; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--cream);
}
.num-404 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 800;
  color: var(--vine-green);
  opacity: .15;
  line-height: 1;
}
.page-404-content { position: relative; margin-top: -60px; }
.page-404-content h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text-dark);
  margin-bottom: 12px;
}
.page-404-content p { color: var(--text-mid); margin-bottom: 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 60px; }
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-title  { font-size: 2.4rem; }
  .section     { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }

  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-img  { order: 0; }
  .split.reverse .split-text { order: 0; }

  .grid-2      { grid-template-columns: 1fr; gap: 20px; }
  .grid-3      { grid-template-columns: 1fr; gap: 20px; }
  .grid-4      { grid-template-columns: 1fr; }
  .season-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats-bar .container { gap: 32px; }

  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { padding: 12px 24px; }
}

@media (max-width: 480px) {
  .season-grid { grid-template-columns: 1fr; }
  .event-card  { flex-direction: column; }
}
