/* ============================================================
   KSA ROOTS MARKET 2026 Summer — style.css
   ============================================================ */

/* ── Variables ── */
:root {
  --sky-pale: #eaf6fc;
  --green: #3d7a4f;
  --green-light: #6aab7e;
  --green-pale: #d0e9d8;
  --beige: #f0e8d0;
  --beige-dark: #c8a87a;
  --yellow: #f5c842;
  --yellow-light: #fde98a;
  --brown: #5c3d1e;
  --brown-light: #8a6030;
  --white-warm: #fdfaf4;
  --text: #2a1e0e;
  --text-mid: #4a3820;
  --text-muted: #7a6648;

  /* Typography */
  --fs-base: 18px;
  --fs-sm: 15px;
  --fs-xs: 13px;
  --lh-body: 2;
  --lh-tight: 1.55;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--white-warm);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── Typography helpers ── */
.font-serif { font-family: 'Kaisei Decol', serif; }
.font-hand  { font-family: 'Yomogi', cursive; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 56px;
  background: rgba(253,249,244,0);
  border-bottom: 1px solid transparent;
  transition: background .35s, backdrop-filter .35s, border-color .35s;
}
.site-header.scrolled {
  background: rgba(253,249,244,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: rgba(200,168,122,.18);
}
.header-logo {
  display: flex; align-items: center; text-decoration: none;
  flex-shrink: 0; height: 36px; color: #fff; transition: color .3s;
}
.header-logo-img { height: 32px; width: auto; display: block; }
.site-header.scrolled .header-logo { color: var(--brown); }

.header-nav { display: flex; align-items: center; gap: 4px; list-style: none; }
.header-nav a {
  font-family: 'Yomogi', cursive;
  font-size: 13px; letter-spacing: .1em;
  color: rgba(255,255,255,.9); text-decoration: none;
  padding: 6px 11px; border-radius: 40px;
  transition: color .2s, background .2s; white-space: nowrap;
}
.header-nav a:hover { background: rgba(255,255,255,.16); }
.site-header.scrolled .header-nav a { color: var(--text-mid); }
.site-header.scrolled .header-nav a:hover { background: var(--green-pale); }
.header-cta {
  color: var(--brown) !important; background: var(--yellow) !important;
  border: 1.5px solid var(--brown-light); padding: 7px 16px !important;
  border-radius: 40px; box-shadow: 2px 2px 0 rgba(92,61,30,.18);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px; border-radius: 8px;
}
.hamburger-line {
  display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px;
  transition: background .3s, transform .3s, opacity .3s; transform-origin: center;
}
.site-header.scrolled .hamburger-line { background: var(--brown); }
.hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 56px; left: 0; right: 0; z-index: 199;
  background: rgba(253,249,244,.97); backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200,168,122,.2);
  padding: 16px 0 20px;
  transform: translateY(-110%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.mobile-drawer.open { transform: translateY(0); pointer-events: all; }
.mobile-drawer-nav { list-style: none; display: flex; flex-direction: column; }
.mobile-drawer-nav a {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Kaisei Decol', serif; font-size: 18px;
  color: var(--brown); text-decoration: none;
  padding: 14px 28px;
  border-bottom: 1px solid rgba(200,168,122,.1);
  letter-spacing: .04em; transition: background .15s;
}
.mobile-drawer-nav a:hover { background: var(--green-pale); }
.nav-icon { font-family: 'Yomogi', cursive; font-size: 11px; letter-spacing: .15em; color: var(--green); min-width: 60px; text-transform: uppercase; }
.mobile-drawer-apply {
  margin: 14px 28px 0; display: block; text-align: center;
  background: var(--yellow); color: var(--brown);
  font-family: 'Yomogi', cursive; font-size: 16px; letter-spacing: .12em;
  padding: 14px 20px; border: 2px solid var(--brown-light);
  border-radius: 40px 36px 42px 38px / 38px 42px 36px 40px;
  text-decoration: none; box-shadow: 3px 4px 0 rgba(92,61,30,.16);
}

/* FAB */
.fab-cta {
  display: none; position: fixed; bottom: 24px; right: 20px; z-index: 300;
  text-decoration: none;
  transform: translateY(100px); opacity: 0;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .3s;
}
.fab-cta.show { transform: translateY(0); opacity: 1; }
.fab-inner {
  display: flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--brown);
  font-family: 'Yomogi', cursive; font-size: 15px; letter-spacing: .1em;
  padding: 13px 20px 13px 16px;
  border: 2px solid var(--brown-light); border-radius: 40px;
  box-shadow: 3px 5px 0 rgba(92,61,30,.2), 0 8px 24px rgba(0,0,0,.12);
  white-space: nowrap;
}
.fab-leaf { width: 22px; height: 22px; flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; width: 100%; min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.sky-layer { position: absolute; inset: 0; pointer-events: none; }
.sky-bg {
  background: linear-gradient(175deg,#1a3a5c 0%,#2d6a9f 18%,#4a9fd4 35%,#78c4e8 52%,#f0a860 72%,#e07840 85%,#c05030 100%);
  animation: skyShift 14s ease-in-out infinite alternate;
}
@keyframes skyShift {
  0%   { background: linear-gradient(175deg,#1a3a5c 0%,#2d6a9f 18%,#4a9fd4 35%,#78c4e8 52%,#f0a860 72%,#e07840 85%,#c05030 100%); }
  40%  { background: linear-gradient(168deg,#280f28 0%,#6b2a5c 12%,#c05878 28%,#e89070 45%,#f8c068 62%,#f0a848 78%,#d87038 100%); }
  100% { background: linear-gradient(175deg,#1a1a3c 0%,#2a3a78 15%,#3a68b8 30%,#68a8d8 48%,#f8b060 68%,#e88040 82%,#c85830 100%); }
}
.sky-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 40% at 50% 68%, rgba(255,200,100,.32) 0%, transparent 70%),
    radial-gradient(ellipse 60% 30% at 30% 80%, rgba(255,140,80,.18) 0%, transparent 60%);
  animation: glowPulse 9s ease-in-out infinite alternate;
}
@keyframes glowPulse { 0% { opacity:.8; } 100% { opacity:1; } }

.leaf-canvas { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.falling-leaf {
  position: absolute; top: -60px; will-change: transform, opacity;
  animation: leafFall linear infinite;
}
@keyframes leafFall {
  0%   { transform: translateY(0)     rotate(0deg)   translateX(0);           opacity: 0; }
  5%   { opacity: 1; }
  95%  { opacity: .8; }
  100% { transform: translateY(110vh) rotate(540deg) translateX(var(--drift)); opacity: 0; }
}

.birds-wrap { position: absolute; inset: 0; pointer-events: none; color: rgba(20,40,80,.5); }
.bird { position: absolute; animation: birdFly var(--bd) linear infinite; }
.b1 { width:36px; top:18%; animation-duration:22s; animation-delay:-3s; }
.b2 { width:24px; top:24%; animation-duration:28s; animation-delay:-8s; }
.b3 { width:30px; top:14%; animation-duration:34s; animation-delay:-14s; }
.b4 { width:20px; top:30%; animation-duration:26s; animation-delay:-5s; }
.b5 { width:34px; top:10%; animation-duration:40s; animation-delay:-20s; }
@keyframes birdFly { 0% { transform:translateX(-80px); } 100% { transform:translateX(calc(100vw + 80px)); } }

.city-silhouette { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; pointer-events: none; color: rgba(10,20,40,.6); }
.city-silhouette svg { width: 100%; height: 100%; display: block; }

.hero-content {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  padding: 40px 24px 80px; width: 100%; max-width: 520px;
}
.hero-logo-wrap { width: min(280px, 76vw); filter: drop-shadow(0 2px 16px rgba(0,0,0,.3)); }
.hero-logo-wrap img, .hero-logo-wrap svg { width: 100%; height: auto; display: block; }

.hero-meta {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.28); border-radius: 40px;
  padding: 10px 24px;
  font-family: 'Kaisei Decol', serif;
  font-size: clamp(15px, 4vw, 20px);
  color: #fff; letter-spacing: .06em; text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.hero-date em { font-style: normal; font-size: .75em; opacity: .8; margin-left: 4px; }
.hero-sep { display: inline-block; width: 1px; height: 18px; background: rgba(255,255,255,.4); }
.hero-venue-line {
  font-family: 'Yomogi', cursive; font-size: clamp(13px, 3.5vw, 16px);
  color: rgba(255,255,255,.9); letter-spacing: .1em; text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.hero-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-entry-fee {
  font-family: 'Yomogi', cursive; font-size: 13px;
  color: rgba(255,255,255,.84); letter-spacing: .08em; text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

.scroll-hint {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.6); animation: scrollBounce 2.4s ease-in-out infinite;
  pointer-events: none;
}
.scroll-hint span { font-family: 'Yomogi', cursive; font-size: 11px; letter-spacing: .2em; }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 80px 20px; position: relative; overflow: hidden; }
.container { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }

.section-label {
  font-family: 'Yomogi', cursive; font-size: 12px;
  color: var(--green); letter-spacing: .3em;
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px; text-transform: uppercase;
}
.section-label::before, .section-label::after {
  content: ''; flex: 1; max-width: 28px; height: 1px; background: var(--green-light);
}
.section-title {
  font-family: 'Kaisei Decol', serif;
  font-size: clamp(22px, 5.5vw, 32px);
  color: var(--brown); line-height: 1.55; letter-spacing: .04em; margin-bottom: 14px;
}
.section-body {
  font-size: var(--fs-base); line-height: var(--lh-body); color: var(--text-mid);
}
.hand-divider {
  font-family: 'Yomogi', cursive; font-size: 13px; color: var(--green-light);
  letter-spacing: 6px; margin: 6px 0 36px; opacity: .55;
}

/* Section illustration helper */
.sec-illust { position: absolute; pointer-events: none; z-index: 0; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ============================================================
   CONCEPT
   ============================================================ */
.concept-section { background: var(--sky-pale); }
.concept-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: repeating-linear-gradient(90deg, var(--green-light) 0, var(--green-light) 10px, transparent 10px, transparent 18px);
  opacity: .28;
}
.concept-illust-r { right: -10px; bottom: 0; width: min(260px, 42vw); animation: floatY 7s ease-in-out infinite; }
.concept-illust-l { left: -10px;  bottom: 0; width: min(180px, 32vw); animation: floatY 9s ease-in-out infinite reverse; }
.concept-quote {
  background: rgba(255,255,255,.78); border-left: 4px solid var(--green-light);
  border-radius: 0 14px 14px 0; padding: 22px 26px;
  font-family: 'Kaisei Decol', serif;
  font-size: clamp(17px, 4vw, 22px);
  color: var(--brown); line-height: 1.8; margin-bottom: 24px; position: relative;
}
.concept-quote::before {
  content: '"'; font-size: 56px; color: var(--green-light);
  position: absolute; top: -6px; left: 12px; opacity: .28; font-family: Georgia, serif; line-height: 1;
}

/* ============================================================
   PROMISES
   ============================================================ */
.promises-section { background: var(--white-warm); }
.promises-illust { right: 0; top: 50%; transform: translateY(-50%); width: min(160px, 28vw); animation: floatY 8s ease-in-out infinite; opacity: .9; }

.promise-cards { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.promise-card {
  background: #fff; border: 1.5px solid var(--beige-dark);
  border-radius: 20px 22px 18px 22px / 22px 18px 22px 20px;
  padding: 28px 24px; position: relative;
  box-shadow: 3px 4px 0 rgba(200,168,122,.14); overflow: hidden;
  opacity: 0; transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.promise-card.visible { opacity: 1; transform: translateY(0); }
.promise-card:nth-child(2) { transition-delay: .1s; }
.promise-card:nth-child(3) { transition-delay: .2s; }
.promise-num {
  font-family: 'Yomogi', cursive; font-size: 50px;
  color: var(--green-pale); position: absolute; top: 8px; right: 14px; line-height: 1; user-select: none;
}
.promise-title {
  font-family: 'Kaisei Decol', serif; font-size: clamp(17px, 4vw, 20px);
  color: var(--green); margin-bottom: 10px; line-height: 1.55; padding-right: 44px;
}
.promise-desc { font-size: var(--fs-base); line-height: var(--lh-body); color: var(--text-mid); }

/* ============================================================
   WORKSHOP
   ============================================================ */
.workshop-section { background: var(--green-pale); }
.workshop-illust-r { right: -5px; bottom: 0; width: min(200px, 34vw); animation: floatY 8s ease-in-out infinite; }
.workshop-illust-l { left: -10px; bottom: 0; width: min(150px, 26vw); animation: floatY 10s ease-in-out infinite reverse; opacity: .85; }

.workshop-card {
  background: #fff; border: 2px solid var(--green-light);
  border-radius: 20px 24px 20px 18px / 24px 18px 24px 20px;
  overflow: hidden; box-shadow: 4px 6px 0 rgba(61,122,79,.14);
}
.workshop-header {
  background: linear-gradient(135deg, var(--green) 0%, #2e6640 100%);
  padding: 28px 28px 22px; position: relative; overflow: hidden;
}
.workshop-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 30%, rgba(255,255,255,.08) 0%, transparent 65%);
}
.workshop-tag {
  display: inline-block; background: rgba(245,200,66,.22);
  border: 1px solid rgba(245,200,66,.5);
  color: var(--yellow-light); font-family: 'Yomogi', cursive;
  font-size: 12px; letter-spacing: .2em; padding: 4px 14px; border-radius: 40px; margin-bottom: 14px; position: relative;
}
.workshop-title {
  font-family: 'Kaisei Decol', serif; font-size: clamp(20px, 5vw, 26px);
  color: #fff; line-height: 1.5; letter-spacing: .05em; margin-bottom: 10px; position: relative;
}
.workshop-title span { color: var(--yellow-light); }
.workshop-subtitle { font-size: var(--fs-base); color: rgba(255,255,255,.78); line-height: 1.75; position: relative; }
.workshop-body { padding: 28px 26px 30px; }
.ws-desc { font-size: var(--fs-base); line-height: var(--lh-body); color: var(--text-mid); margin-bottom: 28px; }

/* WS Photo grid */
.ws-photos {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 28px;
}
.ws-photo-item {
  position: relative; border-radius: 10px; overflow: hidden;
  box-shadow: 2px 3px 8px rgba(0,0,0,.1);
}
.ws-photo-item img { width: 100%; height: 160px; object-fit: cover; display: block; }
.ws-photo-item.wide { grid-column: 1 / -1; }
.ws-photo-item.wide img { height: 200px; }
.ws-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
  color: #fff; font-family: 'Yomogi', cursive; font-size: 12px;
  letter-spacing: .08em; padding: 10px 12px 8px;
}

/* WS Meta */
.ws-meta {
  background: var(--sky-pale); border-radius: 12px 14px 12px 10px / 14px 10px 14px 12px;
  padding: 22px; margin-bottom: 24px; border: 1px solid rgba(143,200,232,.4);
}
.ws-meta-title {
  font-family: 'Yomogi', cursive; font-size: 12px;
  color: var(--green); letter-spacing: .2em; margin-bottom: 16px;
}
.ws-meta-row { display: flex; gap: 14px; margin-bottom: 14px; align-items: flex-start; }
.ws-meta-row:last-child { margin-bottom: 0; }
.ws-meta-label {
  font-family: 'Yomogi', cursive; font-size: 12px;
  color: var(--text-muted); min-width: 56px; padding-top: 3px; flex-shrink: 0; letter-spacing: .05em;
}
.ws-meta-value { font-size: var(--fs-base); color: var(--text); line-height: 1.7; }
.ws-meta-value strong { color: var(--brown); font-family: 'Kaisei Decol', serif; }

/* WS Bonus */
.ws-bonus {
  background: rgba(245,200,66,.1); border: 1.5px solid rgba(245,200,66,.5);
  border-radius: 10px 14px 10px 8px / 14px 8px 14px 10px;
  padding: 18px 20px; margin-bottom: 26px;
}
.ws-bonus-title { font-family: 'Yomogi', cursive; font-size: 13px; color: var(--brown-light); letter-spacing: .15em; margin-bottom: 12px; }
.ws-bonus-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ws-bonus-list li { font-size: var(--fs-base); color: var(--text-mid); display: flex; gap: 10px; line-height: 1.7; }
.ws-bonus-list li::before { content: '→'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* WS Timeline */
.ws-timeline-title { font-family: 'Yomogi', cursive; font-size: 13px; color: var(--green); letter-spacing: .18em; margin-bottom: 16px; }
.ws-timeline { display: flex; flex-direction: column; }
.ws-tl-item { display: flex; gap: 14px; align-items: flex-start; }
.ws-tl-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 74px; }
.ws-tl-time {
  font-family: 'Yomogi', cursive; font-size: 12px; color: var(--green);
  background: var(--green-pale); padding: 4px 10px; border-radius: 40px;
  white-space: nowrap; letter-spacing: .04em; margin-bottom: 4px;
}
.ws-tl-line {
  width: 1.5px; flex: 1; min-height: 26px;
  background: repeating-linear-gradient(to bottom, var(--green-light) 0, var(--green-light) 4px, transparent 4px, transparent 8px);
  margin: 0 auto;
}
.ws-tl-last .ws-tl-line { display: none; }
.ws-tl-content { padding-bottom: 20px; flex: 1; }
.ws-tl-step {
  font-family: 'Kaisei Decol', serif; font-size: clamp(16px, 3.8vw, 18px);
  color: var(--brown); font-weight: 700; line-height: 1.5; margin-bottom: 4px;
}
.ws-tl-desc { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.8; }

/* ============================================================
   INFO
   ============================================================ */
.info-section { background: var(--beige); }
.chalkboard {
  background: #3a4a3a; border-radius: 14px 18px 16px 12px / 16px 12px 18px 14px;
  padding: 32px 28px; margin-bottom: 28px; position: relative;
  box-shadow: inset 0 0 40px rgba(0,0,0,.3), 3px 5px 0 rgba(0,0,0,.13); overflow: hidden;
}
.chalkboard::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(255,255,255,.022) 28px, rgba(255,255,255,.022) 29px);
}
.chalkboard-title {
  font-family: 'Yomogi', cursive; font-size: 12px; color: rgba(255,255,255,.42);
  letter-spacing: .2em; margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 10px; position: relative;
}
.chalk-row { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; position: relative; }
.chalk-label {
  font-family: 'Yomogi', cursive; font-size: 12px; color: rgba(255,255,255,.45);
  letter-spacing: .06em; min-width: 56px; padding-top: 3px; flex-shrink: 0;
}
.chalk-value {
  font-family: 'Kaisei Decol', serif; font-size: clamp(15px, 4vw, 18px);
  color: rgba(255,255,255,.92); line-height: 1.7;
}
.chalk-value .big { font-size: 1.25em; font-weight: 700; }
.price-breakdown {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px; padding: 12px 16px; margin-top: 10px;
}
.price-row { display: flex; justify-content: space-between; font-size: 14px; color: rgba(255,255,255,.68); padding: 4px 0; }
.price-row.total {
  border-top: 1px solid rgba(255,255,255,.2); margin-top: 6px; padding-top: 10px;
  font-size: 16px; color: rgba(255,255,255,.94);
  font-family: 'Kaisei Decol', serif; font-weight: 700;
}
.price-label { letter-spacing: .04em; }
.price-amount { font-family: 'Kaisei Decol', serif; }

/* ============================================================
   FLOW
   ============================================================ */
.flow-section { background: var(--green-pale); }
.flow-illust { left: -15px; top: 50%; transform: translateY(-50%); width: min(140px, 24vw); animation: floatY 9s ease-in-out infinite; opacity: .85; }
.flow-steps { margin-top: 36px; }
.flow-step {
  display: flex; gap: 18px; align-items: flex-start; margin-bottom: 8px;
  opacity: 0; transform: translateX(-18px);
  transition: opacity .5s, transform .5s;
}
.flow-step.visible { opacity: 1; transform: translateX(0); }
.flow-step:nth-child(2) { transition-delay: .1s; }
.flow-step:nth-child(3) { transition-delay: .2s; }
.flow-step:nth-child(4) { transition-delay: .3s; }
.flow-connector { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.flow-dot {
  width: 42px; height: 42px;
  border-radius: 50% 55% 45% 52% / 52% 45% 55% 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.flow-dot-num { font-family: 'Kaisei Decol', serif; font-size: 15px; color: #fff; font-weight: 700; }
.flow-line {
  width: 2px; height: 32px;
  background: repeating-linear-gradient(to bottom, var(--green-light) 0, var(--green-light) 4px, transparent 4px, transparent 9px);
  margin: 4px 0;
}
.flow-last-dot {
  width: 42px; height: 42px; border-radius: 50% 55% 45% 52%;
  background: var(--yellow); border: 2px solid var(--brown-light);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.flow-content {
  flex: 1; background: #fff; border: 1.5px solid var(--green-light);
  border-radius: 10px 14px 12px 8px / 12px 8px 14px 10px;
  padding: 16px 20px; box-shadow: 2px 3px 0 rgba(106,171,126,.18);
}
.flow-step-title { font-family: 'Kaisei Decol', serif; font-size: clamp(16px, 3.8vw, 18px); color: var(--green); margin-bottom: 5px; font-weight: 700; }
.flow-step-desc { font-size: var(--fs-sm); color: var(--text-mid); line-height: 1.85; }

/* ============================================================
   VOICES
   ============================================================ */
.voices-section { background: var(--white-warm); }
.voices-illust { right: -5px; bottom: 0; width: min(190px, 32vw); animation: floatY 7.5s ease-in-out infinite; }
.voice-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 34px; }
.voice-card {
  background: #fff; border: 1px solid var(--beige-dark);
  border-radius: 13px 17px 15px 11px / 15px 11px 17px 13px;
  padding: 22px 22px 22px 26px; position: relative;
  box-shadow: 2px 3px 0 rgba(200,168,122,.1);
}
.voice-card::before {
  content: ''; position: absolute; left: 0; top: 10px; bottom: 10px;
  width: 4px; background: var(--yellow); border-radius: 4px;
}
.voice-text { font-family: 'Kaisei Decol', serif; font-size: var(--fs-base); color: var(--brown); line-height: 1.9; margin-bottom: 10px; }
.voice-attr { font-family: 'Yomogi', cursive; font-size: 13px; color: var(--text-muted); letter-spacing: .08em; }

/* ============================================================
   PHOTO STRIP / GALLERY
   ============================================================ */
.photo-strip-section { background: var(--beige); padding: 64px 0; overflow: hidden; }
.photo-strip-inner { padding: 0 20px; margin-bottom: 26px; }
.photo-strip-label {
  font-family: 'Yomogi', cursive; font-size: 12px; color: var(--green);
  letter-spacing: .3em; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px; text-transform: uppercase;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.photo-strip-label::before, .photo-strip-label::after { content: ''; flex: 1; max-width: 28px; height: 1px; background: var(--green-light); }
.photo-strip-title {
  font-family: 'Kaisei Decol', serif; font-size: clamp(20px, 5vw, 29px);
  color: var(--brown); line-height: 1.55; max-width: 720px; margin: 0 auto 30px;
}
.photo-track-wrap { position: relative; overflow: hidden; padding: 12px 0 20px; }
.photo-track {
  display: flex; gap: 14px; width: max-content;
  animation: photoScroll 32s linear infinite; padding: 0 14px;
}
.photo-track:hover { animation-play-state: paused; }
@keyframes photoScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.photo-item {
  flex-shrink: 0; width: 250px; height: 180px;
  background: #fff; padding: 7px 7px 28px;
  box-shadow: 2px 4px 12px rgba(107,76,42,.14), 0 1px 3px rgba(0,0,0,.07);
  transform: rotate(var(--rot)); transition: transform .2s; position: relative;
}
.photo-item:hover { transform: rotate(0deg) scale(1.04); z-index: 2; }
.photo-item img { width: 100%; height: 145px; object-fit: cover; display: block; }
.photo-item-caption {
  position: absolute; bottom: 5px; left: 0; right: 0; text-align: center;
  font-family: 'Yomogi', cursive; font-size: 11px; color: var(--text-muted); letter-spacing: .04em;
}
.photo-track-wrap::before, .photo-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 1; pointer-events: none;
}
.photo-track-wrap::before { left: 0; background: linear-gradient(to right, var(--beige), transparent); }
.photo-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--beige), transparent); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--white-warm); }
.faq-illust { right: -10px; bottom: 0; width: min(160px, 26vw); animation: floatY 8s ease-in-out infinite reverse; opacity: .88; }
.faq-list { display: flex; flex-direction: column; gap: 13px; margin-top: 34px; }
.faq-item {
  border: 1.5px solid var(--beige-dark);
  border-radius: 14px 18px 14px 10px / 18px 10px 18px 14px;
  overflow: hidden; background: #fff; box-shadow: 2px 3px 0 rgba(200,168,122,.1);
}
.faq-q {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 20px 22px; cursor: pointer;
  font-family: 'Kaisei Decol', serif; font-size: clamp(16px, 3.8vw, 18px);
  color: var(--brown); line-height: 1.6; user-select: none;
}
.faq-q-mark {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--yellow); color: var(--brown);
  font-family: 'Kaisei Decol', serif; font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.faq-q-text { flex: 1; }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; color: var(--green-light); margin-top: 3px; transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 20px 62px; font-size: var(--fs-base); line-height: var(--lh-body); color: var(--text-mid); }
.faq-item.open .faq-a { display: block; }

/* ============================================================
   CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(155deg, #b0d8ee 0%, #c4e4f0 38%, #cce8d4 72%, #d8e8b8 100%);
  text-align: center; padding: 80px 24px 100px;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 45% at 25% 35%, rgba(255,255,255,.36) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 78% 72%, rgba(212,236,218,.33) 0%, transparent 58%);
}
.cta-illust-l { left: -15px; bottom: 0; width: min(180px, 30vw); animation: floatY 9s ease-in-out infinite; opacity: .9; }
.cta-illust-r { right: -10px; top: 20px; width: min(160px, 28vw); animation: floatY 7s ease-in-out infinite reverse; opacity: .85; }
.cta-lead {
  position: relative; font-family: 'Kaisei Decol', serif;
  font-size: clamp(21px, 5.5vw, 32px); color: var(--brown);
  line-height: 1.8; letter-spacing: .05em; margin-bottom: 42px; z-index: 1;
}
.btn-leaf-wrap { position: relative; display: inline-block; margin-bottom: 28px; z-index: 1; }
.btn-leaf { position: relative; display: inline-flex; flex-direction: column; align-items: center; text-decoration: none; cursor: pointer; }
.btn-leaf svg { width: 220px; height: auto; transition: transform .3s; filter: drop-shadow(3px 5px 8px rgba(61,122,79,.26)); }
.btn-leaf:hover svg { animation: leafBounce .45s ease; }
@keyframes leafBounce {
  0%,100% { transform: scale(1) rotate(0); }
  30%     { transform: scale(1.05) rotate(-3deg); }
  65%     { transform: scale(1.03) rotate(2deg); }
}
.btn-leaf-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Yomogi', cursive; font-size: 15px;
  color: #fff; text-align: center; line-height: 1.6; letter-spacing: .1em;
  text-shadow: 1px 1px 3px rgba(0,0,0,.2); white-space: nowrap; pointer-events: none;
}
.cta-note {
  position: relative; font-family: 'Yomogi', cursive; font-size: 14px;
  color: var(--brown-light); letter-spacing: .08em; line-height: 2.2; z-index: 1;
}
.cta-note a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-main {
  display: block; width: 100%; max-width: 300px;
  background: var(--yellow); color: var(--brown);
  font-family: 'Yomogi', cursive; font-size: 17px; letter-spacing: .12em;
  padding: 17px 20px; border: 2px solid var(--brown-light);
  border-radius: 40px 36px 42px 38px / 38px 42px 36px 40px;
  text-decoration: none; text-align: center;
  box-shadow: 3px 4px 0 rgba(92,61,30,.18), 0 4px 20px rgba(0,0,0,.18);
  transition: transform .12s;
}
.btn-main:active { transform: translateY(2px); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--brown); color: rgba(255,255,255,.72); text-align: center; padding: 48px 24px 30px; position: relative; overflow: hidden; }
.footer-logo-wrap { display: flex; justify-content: center; margin-bottom: 12px; position: relative; z-index: 1; }
.footer-logo-wrap img, .footer-logo-wrap svg { width: min(210px, 58vw); height: auto; display: block; }
.footer-sub { font-family: 'Yomogi', cursive; font-size: 13px; letter-spacing: .14em; color: rgba(255,255,255,.45); margin-bottom: 10px; position: relative; z-index: 1; }
.footer-org { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 20px; position: relative; z-index: 1; }
.footer-copy { font-family: 'Yomogi', cursive; font-size: 11px; color: rgba(255,255,255,.28); border-top: 1px solid rgba(255,255,255,.09); padding-top: 18px; position: relative; z-index: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 680px) {
  .header-nav { display: none; }
  .hamburger   { display: flex; }
  .fab-cta     { display: block; }
  .ws-photos   { grid-template-columns: 1fr; }
  .ws-photo-item img { height: 200px; }
  .ws-photo-item.wide img { height: 200px; }
}
@media (min-width: 681px) {
  .mobile-drawer { display: none; }
  .promise-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  }
  .promise-cards .promise-card:last-child { grid-column: 1 / -1; }
}
