/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-forest: #1a3c14;
  --c-green: #2e6b1e;
  --c-sage: #5a8f4a;
  --c-mint: #a8d5a2;
  --c-pale: #e9f5e6;
  --c-cream: #f7f6f1;
  --c-white: #ffffff;
  --c-dark: #1a1a18;
  --c-text: #2c2c2a;
  --c-muted: #6b6b66;
  --c-border: rgba(0,0,0,.06);
  --c-warm: #f0ebe1;

  --font-head: 'Zen Maru Gothic', system-ui, sans-serif;
  --font-body: 'Noto Sans JP', system-ui, sans-serif;

  --w-content: 1200px;
  --w-narrow: 800px;
  --h-header: 64px;
  --r: 16px;
  --r-lg: 24px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.wrap { max-width: var(--w-content); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.wrap-narrow { max-width: var(--w-narrow); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* Focus */
:focus-visible {
  outline: 2px solid var(--c-green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--c-forest); color: #fff;
  padding: 10px 20px; border-radius: 0 0 8px 8px;
  z-index: 999; font-weight: 600; font-size: .85rem;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ===== Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@keyframes hero-fade {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(10px, -15px) scale(1.02); }
  66%  { transform: translate(-8px, -8px) scale(.98); }
}

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--h-header);
  background: rgba(247,246,241,.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--c-border);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.header.scrolled {
  background: rgba(247,246,241,.92);
  box-shadow: 0 1px 30px rgba(0,0,0,.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--h-header);
  max-width: var(--w-content);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 48px);
}
.logo {
  font-family: var(--font-head);
  font-weight: 700; font-size: 1rem;
  color: var(--c-forest);
  display: flex; align-items: center; gap: 10px; line-height: 1.3;
}
.logo-img {
  width: 36px; height: 36px; object-fit: contain;
}
.logo-text {
  display: flex; flex-direction: column;
}
.logo small {
  font-size: .6rem; font-weight: 400;
  color: var(--c-muted); letter-spacing: .02em;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 7px 14px; font-size: .8rem; font-weight: 500;
  color: var(--c-muted); border-radius: 8px;
  transition: color .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.nav a:hover, .nav a.active {
  color: var(--c-forest); background: var(--c-pale);
}

/* Burger */
.burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative;
}
.burger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--c-text); position: absolute; left: 8px;
  transition: transform .3s var(--ease), opacity .2s;
  border-radius: 1px;
}
.burger span:nth-child(1) { top: 12px; }
.burger span:nth-child(2) { top: 17px; }
.burger span:nth-child(3) { top: 22px; }
.burger.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--c-forest);
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 30% 60%, rgba(90,143,74,.5), transparent),
    radial-gradient(ellipse 60% 50% at 75% 30%, rgba(168,213,162,.3), transparent),
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(26,60,20,.8), transparent),
    linear-gradient(160deg, #0f2d0a 0%, #1a3c14 30%, #2e5a1e 60%, #1a3c14 100%);
}
.hero-bg.has-image {
  background-size: cover;
  background-position: center;
}
.hero-bg.has-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,60,20,.55) 0%, rgba(26,60,20,.7) 100%);
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .35;
  animation: float-slow 12s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; top: -10%; right: -5%; background: #5a8f4a; animation-delay: 0s; }
.hero-orb-2 { width: 350px; height: 350px; bottom: -5%; left: -5%; background: #a8d5a2; animation-delay: -4s; }
.hero-orb-3 { width: 200px; height: 200px; top: 30%; left: 20%; background: #7cb86e; animation-delay: -8s; }

.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 720px;
}
.hero-label {
  display: inline-block;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-mint);
  margin-bottom: 20px;
  animation: hero-fade .8s .2s var(--ease-out) both;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
  margin-bottom: 24px;
  animation: hero-fade .8s .4s var(--ease-out) both;
}
.hero p {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.75);
  line-height: 1.9;
  margin-bottom: 40px;
  animation: hero-fade .8s .6s var(--ease-out) both;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: hero-fade .8s .8s var(--ease-out) both;
}

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 1;
  animation: hero-fade .8s 1.2s var(--ease-out) both;
}
.hero-scroll span {
  display: block; width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,.3); border-radius: 12px;
  position: relative;
}
.hero-scroll span::after {
  content: ''; display: block;
  width: 3px; height: 8px; border-radius: 2px;
  background: rgba(255,255,255,.6);
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: .3; transform: translateX(-50%) translateY(12px); }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-size: .88rem; font-weight: 600;
  border-radius: 12px; border: none; cursor: pointer;
  transition: all .3s var(--ease);
}
.btn-primary {
  background: #fff; color: var(--c-forest);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.btn-ghost {
  background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
}
.btn-green {
  background: var(--c-green); color: #fff;
}
.btn-green:hover {
  background: var(--c-forest);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26,60,20,.25);
}
.btn-outline-green {
  background: transparent; color: var(--c-green);
  border: 1.5px solid var(--c-green);
}
.btn-outline-green:hover {
  background: var(--c-green); color: #fff;
}
.btn-arrow::after {
  content: '\2192'; transition: transform .3s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ===== Sections ===== */
.section {
  padding: clamp(60px, 10vw, 120px) 0;
}

.section-white { background: var(--c-white); }
.section-warm  { background: var(--c-warm); }

.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-label {
  display: inline-block;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--c-forest);
  line-height: 1.3;
  margin-bottom: 16px;
}
.section-desc {
  font-size: clamp(.9rem, 1.8vw, 1rem);
  color: var(--c-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ===== Bento Grid ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.bento-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 260px;
  border: 1px solid var(--c-border);
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.07);
}
.bento-card.span-7 { grid-column: span 7; }
.bento-card.span-5 { grid-column: span 5; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-6 { grid-column: span 6; }
.bento-card.span-8 { grid-column: span 8; }

.bento-icon {
  width: 56px; height: 56px;
  background: var(--c-pale);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: transform .4s var(--ease-spring);
}
.bento-card:hover .bento-icon {
  transform: scale(1.1) rotate(-5deg);
}
.bento-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--c-forest);
  margin-bottom: 8px;
}
.bento-card p {
  font-size: .88rem;
  color: var(--c-muted);
  line-height: 1.75;
}
.bento-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-size: .82rem; font-weight: 600;
  color: var(--c-green);
  transition: gap .3s var(--ease);
}
.bento-link::after { content: '\2192'; }
.bento-card:hover .bento-link { gap: 10px; }

.bento-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .18;
  transition: opacity .4s var(--ease), transform .6s var(--ease);
}
.bento-card:hover .bento-card-img {
  opacity: .25;
  transform: scale(1.05);
}
.bento-accent .bento-card-img { opacity: .25; }
.bento-accent:hover .bento-card-img { opacity: .35; }

/* Accent bento card */
.bento-accent {
  background: linear-gradient(135deg, var(--c-forest) 0%, var(--c-green) 100%);
  color: #fff; border: none;
}
.bento-accent h3 { color: #fff; }
.bento-accent p { color: rgba(255,255,255,.75); }
.bento-accent .bento-icon { background: rgba(255,255,255,.15); }
.bento-accent .bento-link { color: var(--c-mint); }

/* ===== Story / About ===== */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.story-visual {
  border-radius: var(--r-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--c-pale), var(--c-mint));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  overflow: hidden;
  position: relative;
}
.story-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.story-visual::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}
.story-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--c-forest);
  line-height: 1.45;
  margin-bottom: 20px;
}
.story-content p {
  font-size: .93rem;
  color: var(--c-muted);
  margin-bottom: 16px;
  line-height: 1.85;
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat {
  padding: 32px 16px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--c-forest);
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .82rem;
  color: var(--c-muted);
}

/* ===== Philosophy pillars ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pillar {
  text-align: center;
  padding: 40px 20px;
  border-radius: var(--r-lg);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.06);
}
.pillar-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: var(--c-pale);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  transition: transform .4s var(--ease-spring);
}
.pillar:hover .pillar-icon { transform: scale(1.12) rotate(-6deg); }
.pillar h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--c-forest);
  margin-bottom: 10px;
}
.pillar p {
  font-size: .85rem;
  color: var(--c-muted);
  line-height: 1.75;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--c-forest) 0%, #2a5a1a 50%, var(--c-green) 100%);
  border-radius: var(--r-lg);
  padding: clamp(48px, 6vw, 80px);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(168,213,162,.2), transparent 60%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,.75);
  font-size: .95rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto; margin-right: auto;
}
.cta-banner .btn-primary { font-size: .9rem; }

/* ===== Page Header (subpages) ===== */
.page-hero {
  padding: calc(var(--h-header) + 64px) 0 56px;
  background: linear-gradient(135deg, var(--c-forest), var(--c-green));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0; height: 48px;
  background: var(--c-cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 8px;
  animation: hero-fade .7s var(--ease-out) both;
}
.page-hero .section-label {
  color: var(--c-mint);
  animation: hero-fade .7s .1s var(--ease-out) both;
}

.page-hero.has-image {
  background: none;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,60,20,.6) 0%, rgba(26,60,20,.75) 100%);
}
.page-hero.has-image > .wrap {
  position: relative; z-index: 1;
}

/* Photo gallery */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r);
  transition: transform .4s var(--ease);
}
.photo-grid img:hover {
  transform: scale(1.02);
}
.photo-grid img.portrait {
  aspect-ratio: 3/4;
  grid-row: span 2;
}

/* ===== Content (subpages) ===== */
.content { padding: 56px 0; }
.content + .content { border-top: 1px solid var(--c-border); }
.content h2 {
  font-family: var(--font-head);
  font-size: 1.4rem; color: var(--c-forest);
  margin-bottom: 20px; line-height: 1.4;
}
.content p {
  font-size: .93rem; color: var(--c-muted);
  margin-bottom: 16px; line-height: 1.85;
}
.content ul { margin-bottom: 16px; }
.content li {
  font-size: .93rem; color: var(--c-muted);
  padding-left: 22px; margin-bottom: 10px;
  position: relative;
}
.content li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 6px; height: 6px;
  background: var(--c-sage); border-radius: 50%;
}

/* Info box */
.info-box {
  background: var(--c-pale);
  border-radius: var(--r);
  padding: 28px 32px;
  margin: 28px 0;
  border-left: 4px solid var(--c-green);
}
.info-box h3 {
  font-family: var(--font-head);
  color: var(--c-forest);
  margin-bottom: 12px; font-size: 1.05rem;
}
.info-box p, .info-box li { color: var(--c-text); }

/* Features grid (subpages) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--r);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.feature-card .bento-icon { margin: 0 auto 16px; }
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1rem; color: var(--c-forest);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: .85rem; color: var(--c-muted); line-height: 1.75;
}

/* Support cards */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.support-card {
  background: var(--c-white);
  border-radius: var(--r);
  padding: 32px;
  border: 1px solid var(--c-border);
  border-top: 4px solid var(--c-green);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.support-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.support-card h3 {
  font-family: var(--font-head);
  color: var(--c-forest); font-size: 1.1rem;
  margin-bottom: 12px;
}
.support-card p {
  font-size: .88rem; color: var(--c-muted);
  margin-bottom: 14px; line-height: 1.75;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-item {
  display: flex; gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--c-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item h4 {
  font-size: .75rem; color: var(--c-muted);
  font-weight: 400; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 2px;
}
.contact-item p {
  font-weight: 500; color: var(--c-text); font-size: .93rem;
  margin-bottom: 0;
}
.contact-item a { color: var(--c-green); }
.contact-item a:hover { text-decoration: underline; }
.map-wrap {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 16/10; background: var(--c-pale);
  border: 1px solid var(--c-border);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Timeline */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 4px; bottom: 4px;
  width: 2px; background: var(--c-pale);
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: ''; position: absolute; left: -29px; top: 6px;
  width: 12px; height: 12px;
  background: var(--c-green); border-radius: 50%;
  border: 3px solid var(--c-pale);
}
.timeline-item h4 {
  font-family: var(--font-head);
  color: var(--c-forest); font-size: .92rem;
  margin-bottom: 4px;
}
.timeline-item p {
  font-size: .87rem; color: var(--c-muted);
}

/* ===== Footer ===== */
.footer {
  background: var(--c-dark);
  color: rgba(255,255,255,.7);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: var(--font-head);
}
.footer-brand h3 {
  color: #fff; font-size: 1.05rem; margin-bottom: 4px;
}
.footer-brand small {
  display: block; font-size: .7rem; opacity: .5; margin-bottom: 14px;
}
.footer-brand p { font-size: .84rem; line-height: 1.8; }
.footer-col h4 {
  color: #fff; font-size: .82rem; margin-bottom: 14px;
  font-family: var(--font-head);
}
.footer-col a {
  display: block; font-size: .84rem;
  color: rgba(255,255,255,.55); padding: 4px 0;
  transition: color .25s, padding-left .25s;
}
.footer-col a:hover { color: #fff; padding-left: 3px; }
.footer-col p { font-size: .84rem; line-height: 1.7; margin-bottom: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px; text-align: center;
  font-size: .75rem; opacity: .4;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.span-7, .bento-card.span-5,
  .bento-card.span-4, .bento-card.span-6,
  .bento-card.span-8 { grid-column: span 1; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --h-header: 56px; }
  .burger { display: block; }
  .nav {
    display: none; position: absolute;
    top: var(--h-header); left: 0; right: 0;
    background: var(--c-white);
    flex-direction: column;
    padding: 12px 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,.1);
    border-radius: 0 0 16px 16px;
    gap: 2px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 16px; font-size: .92rem; border-radius: 10px; }

  .hero-content { padding: 100px 20px 60px; }
  .story { grid-template-columns: 1fr; }
  .story-visual { order: -1; aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .bento { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .pillars { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--c-green); color: #fff;
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; z-index: 90;
  opacity: 0; transform: translateY(16px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.back-to-top.visible { opacity: 1; transform: none; }
.back-to-top:hover { background: var(--c-forest); }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.88);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
  cursor: zoom-out;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(.92);
  transition: transform .3s var(--ease-spring);
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: #fff;
  font-size: 2rem; cursor: pointer; opacity: .7;
  transition: opacity .2s;
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }

/* ===== Page Transition ===== */
@keyframes page-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
main { animation: page-in .4s var(--ease-out); }

/* ===== Testimonial / Quote ===== */
.quote-block {
  text-align: center;
  padding: clamp(40px, 6vw, 72px) 0;
}
.quote-block blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--c-forest);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 16px;
  position: relative;
}
.quote-block blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--c-mint);
  position: absolute;
  top: -24px; left: -12px;
  font-family: serif;
  line-height: 1;
}
.quote-block cite {
  font-style: normal;
  font-size: .85rem;
  color: var(--c-muted);
}

/* ===== Print ===== */
@media print {
  .header, .footer, .hero-orb, .hero-scroll, .burger { display: none; }
  .hero { min-height: auto; padding: 24px 0; }
  .section { padding: 24px 0; }
  body { background: #fff; }
}
