/* =========================================================
   特定非営利活動法人 いきいき — Editorial / Craft / Organic
   - color: paper × moss × persimmon
   - type: Shippori Mincho (display) + Zen Kaku Gothic New (body)
   - motion: transform/opacity only, ease-out, ≤600ms, reduced-motion respected
   ========================================================= */

/* ---------- design tokens ---------- */
:root {
  /* color */
  --paper:        #fbf7ed;   /* main background — kinari */
  --paper-2:      #f3ecdb;   /* faint washi */
  --paper-3:      #ebe1c9;   /* card / divider */
  --ink:          #1a1a1a;
  --ink-2:        #3a3a3a;
  --ink-3:        #6b665d;
  --moss:         #4a5d3a;   /* primary accent — satoyama green */
  --moss-2:       #5e7449;
  --persimmon:    #c2541a;   /* secondary accent — kakiiro */
  --sea:          #1f3a4a;   /* deep noto sea */
  --earth:        #6e4a2a;
  --line:         #d9cfb6;

  /* type */
  --ff-display: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --ff-body:    "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  --ff-num:     "Cormorant Garamond", "Shippori Mincho", serif;

  /* spacing (8px baseline) */
  --s-1:  4px;  --s-2:  8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px;  --s-6: 32px;  --s-7: 48px; --s-8: 64px;
  --s-9: 96px;  --s-10:128px; --s-11:160px;

  /* layout */
  --maxw:        1200px;
  --maxw-narrow: 880px;
  --gutter:      24px;

  /* radius / shadow (subtle) */
  --radius:      2px;
  --shadow-1: 0 1px 2px rgba(26,26,26,.06), 0 6px 24px rgba(26,26,26,.06);
  --shadow-2: 0 2px 4px rgba(26,26,26,.08), 0 12px 40px rgba(26,26,26,.10);

  /* z-scale */
  --z-nav: 50; --z-overlay: 80; --z-modal: 100;
}

/* ---------- reset (light) ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}
img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--ink);
  text-decoration: none;
  transition: color .18s ease-out;
}
a:hover, a:focus-visible { color: var(--persimmon); }
:focus-visible { outline: 2px solid var(--persimmon); outline-offset: 3px; border-radius: 2px; }
button { font-family: inherit; }

/* ---------- typography ---------- */
h1,h2,h3,h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
p { text-wrap: pretty; margin: 0 0 1em; }
small { color: var(--ink-3); }

.eyebrow {
  font-family: var(--ff-num);
  font-style: italic;
  letter-spacing: .15em;
  font-size: 14px;
  color: var(--moss);
  text-transform: uppercase;
}
.num {
  font-family: var(--ff-num);
  font-feature-settings: "lnum";
  font-variant-numeric: tabular-nums;
}
.nowrap { white-space: nowrap; }

/* ---------- layout primitives ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: clamp(64px, 9vw, 128px); position: relative; }
.section--alt { background: var(--paper-2); }
.section__rule {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: var(--s-7);
}
.section__rule::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}
.section__num {
  font-family: var(--ff-num); font-size: 14px;
  letter-spacing: .2em; color: var(--moss);
  font-variant-numeric: tabular-nums;
}
.section__title {
  font-size: clamp(28px, 4.5vw, 44px);
  margin-block: 0 var(--s-7);
}
.section__lead {
  font-size: 17px; color: var(--ink-2);
  max-width: 60ch; margin-bottom: var(--s-7);
}
.section__lead--nowrap { white-space: normal; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: rgba(251,247,237,.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease-out, background-color .2s ease-out;
  padding-top: env(safe-area-inset-top);
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(251,247,237,.98); }
.site-header__inner {
  max-width: var(--maxw); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5);
  padding: 18px var(--gutter);
}
.site-logo {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--ff-display); font-size: 18px; line-height: 1.2;
  letter-spacing: .04em;
}
.site-logo img {
  width: 92px; height: auto;
  max-height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}
.site-logo__text { display: block; }
.site-logo__text span { display: block; font-size: 11px; color: var(--ink-3); letter-spacing: .25em; margin-top: 2px; font-family: var(--ff-num); }

.site-nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 32px); }
.site-nav a {
  font-size: 14px; letter-spacing: .12em;
  position: relative;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--persimmon);
  transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease-out;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { color: var(--moss); }

.menu-toggle {
  display: none; appearance: none; background: transparent; border: 0;
  width: 40px; height: 40px; padding: 0; cursor: pointer;
  color: var(--ink);
}
.menu-toggle__bar { display:block; width: 22px; height: 1.5px; background: currentColor; margin: 5px auto; transition: transform .2s ease-out, opacity .15s ease-out; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero (TOP) ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 880px);
  display: grid; place-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.2s ease-out;
}
.hero__bg img.is-active { opacity: 1; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,28,37,.30) 0%, rgba(15,28,37,.45) 60%, rgba(15,28,37,.62) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 1;
  text-align: center; color: var(--paper);
  padding: var(--s-7) var(--gutter);
  max-width: 1000px;
}
.hero__catch {
  font-family: var(--ff-display);
  font-size: clamp(32px, 7vw, 84px);
  line-height: 1.4;
  letter-spacing: .08em;
  margin: 0 0 var(--s-6);
  font-weight: 500;
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(0,0,0,.55), 0 0 2px rgba(0,0,0,.35);
}
.hero__catch span {
  display: block; opacity: 0;
  transform: translateY(14px);
  animation: heroIn .9s ease-out forwards;
}
.hero__catch span:nth-child(1) { animation-delay: .15s; }
.hero__catch span:nth-child(2) { animation-delay: .35s; }
.hero__catch span:nth-child(3) { animation-delay: .55s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hero__catch span { opacity: 1; transform: none; animation: none; }
}
.hero__sub {
  font-family: var(--ff-num); letter-spacing: .35em; font-size: 12px;
  color: rgba(255,255,255,.85);
  margin: 0; text-transform: uppercase;
}
.hero__indicators {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 2;
}
.hero__indicators button {
  appearance: none; background: rgba(255,255,255,.35); border: 0;
  width: 28px; height: 2px; padding: 0; cursor: pointer;
  transition: background-color .2s ease-out;
}
.hero__indicators button[aria-current="true"] { background: var(--paper); }

/* page hero (内ページ) */
.page-hero {
  position: relative; min-height: clamp(280px, 36vw, 420px);
  display: grid; place-items: center;
  background: var(--sea); color: var(--paper); overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { position: absolute; inset: 0; width:100%; height:100%; object-fit: cover; opacity: .55; }
.page-hero__bg::after {
  content:""; position: absolute; inset:0;
  background: linear-gradient(180deg, rgba(31,58,74,.55), rgba(26,26,26,.55));
}
.page-hero__inner { position: relative; z-index:1; text-align:center; padding: var(--s-8) var(--gutter); }
.page-hero__eyebrow { font-family: var(--ff-num); letter-spacing: .35em; font-size: 12px; color: rgba(255,255,255,.85); text-transform: uppercase; margin-bottom: var(--s-3); }
.page-hero__title { font-family: var(--ff-display); font-size: clamp(28px, 5vw, 52px); letter-spacing: .12em; color: var(--paper); text-shadow: 0 2px 18px rgba(0,0,0,.4); }
.page-hero__sub { margin-top: var(--s-3); font-size: 14px; color: rgba(255,255,255,.85); letter-spacing: .25em; }

/* ---------- intro / two-column editorial ---------- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.intro__text h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  margin-bottom: var(--s-5);
}
.intro__text p { color: var(--ink-2); }
.intro__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.intro__media img { width:100%; height:100%; object-fit: cover; }
.intro__media::before {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(255,255,255,.55);
  pointer-events: none; z-index: 2;
}

/* ---------- shop block ---------- */
.shops {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.shop-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid; gap: 0;
  overflow: hidden;
  transition: transform .25s ease-out, box-shadow .25s ease-out;
}
.shop-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); }
.shop-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-3);
}
.shop-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.001);
  transition: transform .8s ease-out;
}
.shop-card:hover .shop-card__media img { transform: scale(1.04); }
.shop-card__body { padding: clamp(20px, 3vw, 36px); display: grid; gap: var(--s-4); }
.shop-card__label { font-family: var(--ff-num); font-size: 12px; letter-spacing: .3em; color: var(--moss); }
.shop-card__name { font-family: var(--ff-display); font-size: 28px; letter-spacing: .04em; }
.shop-card__desc { color: var(--ink-2); font-size: 14.5px; }

/* ---------- card grid (works/products) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid; gap: var(--s-4);
  padding: 0;
  overflow: hidden;
  transition: transform .25s ease-out, box-shadow .25s ease-out;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-1); }
.card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-3);
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.001);
  transition: transform .8s ease-out;
}
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: var(--s-5) var(--s-5) var(--s-6); }
.card__num {
  font-family: var(--ff-num); font-size: 12px; letter-spacing: .3em;
  color: var(--moss); margin-bottom: var(--s-2);
}
.card__title { font-size: 20px; margin-bottom: var(--s-3); }
.card__text { color: var(--ink-2); font-size: 14.5px; line-height: 1.85; }

/* ---------- news list ---------- */
.news-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.news-list li { border-bottom: 1px solid var(--line); }
.news-list a {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--s-5);
  padding: var(--s-5) 0;
  align-items: baseline;
}
.news-list time {
  font-family: var(--ff-num); font-variant-numeric: tabular-nums;
  letter-spacing: .12em; color: var(--moss); font-size: 14px;
}
.news-list .news-list__title { font-size: 16px; }

/* ---------- blog list ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.blog-item { display: grid; gap: var(--s-3); }
.blog-item__media {
  aspect-ratio: 4/3; overflow: hidden; background: var(--paper-3);
}
.blog-item__media img { width:100%; height:100%; object-fit: cover; transition: transform .8s ease-out; }
.blog-item:hover .blog-item__media img { transform: scale(1.04); }
.blog-item__meta { display: flex; gap: var(--s-3); font-size: 13px; color: var(--ink-3); }
.blog-item__meta time { font-family: var(--ff-num); font-variant-numeric: tabular-nums; letter-spacing: .12em; color: var(--moss); }
.blog-item__title { font-size: 17px; line-height: 1.7; }
.blog-item__excerpt { font-size: 13.5px; color: var(--ink-2); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- instagram embed ---------- */
.section--instagram {
  background:
    linear-gradient(135deg, rgba(74,93,58,.11), rgba(194,84,26,.08)),
    var(--paper-2);
  overflow: hidden;
}
.instagram-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.instagram-copy {
  max-width: 520px;
}
.instagram-copy .section__title {
  margin-bottom: var(--s-5);
}
.instagram-copy .section__lead {
  margin-bottom: var(--s-6);
}
.holiday-notice__label { color: var(--moss); font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.holiday-notice__title { margin-top: 5px; color: var(--ink); font-size: 18px; font-weight: 700; }
.holiday-notice__text { margin-top: 8px; color: var(--ink-soft); font-size: 14px; line-height: 1.8; }
.instagram-embed {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid var(--line);
  background: rgba(251,247,237,.72);
  box-shadow: var(--shadow-1);
}
.instagram-embed::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.72);
  pointer-events: none;
}
.instagram-embed a {
  position: relative;
  z-index: 1;
  color: var(--moss);
  font-weight: 700;
}
.instagram-fallback {
  position: relative;
  z-index: 2;
  width: 100%;
}
.instagram-fallback__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.instagram-fallback.is-hidden { display: none; }
.instagram-feed {
  display: none;
  position: relative;
  z-index: 3;
  width: 100%;
}
.instagram-feed.is-loaded {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.instagram-feed__status {
  margin: 0;
  color: var(--moss);
  font-family: var(--ff-num);
  letter-spacing: .18em;
}
.instagram-feed__item {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(46,42,35,.08);
  transition: transform .25s ease-out, box-shadow .25s ease-out;
}
.instagram-feed__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(46,42,35,.12);
}
.instagram-feed__item img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: clamp(220px, 18vw, 300px);
  object-fit: contain;
  background: #fbf7ed;
  border-bottom: 1px solid var(--line);
  filter: saturate(.96);
}
.instagram-feed__body {
  display: grid;
  gap: 6px;
  padding: 12px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--ink-2);
  min-height: 92px;
}
.instagram-feed__body time {
  color: var(--moss);
  letter-spacing: .08em;
}
.instagram-feed__body span {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- info table ---------- */
.info-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.info-table th, .info-table td {
  text-align: left; padding: 18px var(--s-3); vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.info-table th { width: 200px; font-family: var(--ff-display); font-weight: 500; color: var(--moss); }
.info-table td { color: var(--ink-2); }

/* ---------- buttons / links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px; border: 1px solid var(--ink); background: transparent;
  font-size: 14px; letter-spacing: .15em;
  cursor: pointer; transition: background-color .2s ease-out, color .2s ease-out, border-color .2s ease-out;
  font-family: var(--ff-body);
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn--moss { border-color: var(--moss); color: var(--moss); }
.btn--moss:hover { background: var(--moss); color: var(--paper); }
.btn--invert { border-color: var(--paper); color: var(--paper); }
.btn--invert:hover { background: var(--paper); color: var(--ink); }
.btn__arrow {
  display: inline-block; width: 18px; height: 1px; background: currentColor;
  position: relative;
}
.btn__arrow::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.link-arrow { font-size: 14px; letter-spacing: .12em; display: inline-flex; align-items: center; gap: 10px; }
.link-arrow::after {
  content: ""; width: 18px; height: 1px; background: currentColor;
  transition: width .2s ease-out;
}
.link-arrow:hover::after { width: 28px; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: var(--s-9) var(--s-6);
  padding-bottom: calc(var(--s-6) + env(safe-area-inset-bottom));
}
.site-footer a { color: var(--paper); }
.site-footer a:hover { color: #e7c7a3; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.footer-logo { font-family: var(--ff-display); font-size: 22px; letter-spacing: .04em; }
.footer-logo span { display: block; font-family: var(--ff-num); font-size: 11px; letter-spacing: .3em; color: rgba(255,255,255,.6); margin-top: 6px; }
.footer-info { font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.95; margin-top: var(--s-4); }
.footer-info p { margin: 0 0 .4em; }
.footer-nav-title { font-family: var(--ff-num); letter-spacing: .25em; font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: var(--s-4); text-transform: uppercase; }
.footer-nav { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-nav a { font-size: 14px; letter-spacing: .04em; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--s-4);
  margin-top: var(--s-6);
  font-size: 12px; color: rgba(255,255,255,.55);
  font-family: var(--ff-num); letter-spacing: .15em;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 38px; height: 38px;
  display: inline-grid; place-items: center;
  border: 1px solid rgba(255,255,255,.3); border-radius: 50%;
  transition: background-color .2s ease-out, color .2s ease-out, border-color .2s ease-out;
}
.footer-social a:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.footer-social svg { width: 16px; height: 16px; }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease-out, transform .7s ease-out; will-change: transform; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- back to top ---------- */
.back-to-top {
  position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom));
  width: 42px; height: 42px; display: grid; place-items: center;
  background: var(--ink); color: var(--paper);
  border: 0; cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease-out, transform .2s ease-out;
  z-index: var(--z-nav);
}
.back-to-top.is-visible { opacity: .9; pointer-events: auto; }
.back-to-top:hover { opacity: 1; transform: translateY(-2px); }
.back-to-top svg { width: 14px; height: 14px; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
  .footer-grid .footer-col:nth-child(3) { grid-column: 1 / -1; }
  .blog-grid, .cards { grid-template-columns: repeat(2, 1fr); }
  .instagram-layout { grid-template-columns: 1fr; }
  .instagram-copy { max-width: 720px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 70px; right: 0; bottom: 0; left: 0;
    height: calc(100dvh - 70px);
    width: 100%;
    background: var(--paper);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0;
    padding: var(--s-6) var(--gutter) calc(var(--s-7) + env(safe-area-inset-bottom));
    transform: translateX(100%);
    transition: transform .25s ease-out;
    overflow-y: auto;
    z-index: var(--z-overlay);
  }
  .site-nav.is-open { transform: none; }
  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px; letter-spacing: .1em;
  }
  .site-nav a::after { display: none; }
  .intro { grid-template-columns: 1fr; }
  .intro__media { aspect-ratio: 4/3; }
  .shops, .cards, .blog-grid, .cards--2, .sdgs-row { grid-template-columns: 1fr !important; }
  .instagram-embed {
    min-height: 420px;
    padding: var(--s-4);
  }
  .news-list a { grid-template-columns: 1fr; gap: 4px; padding: 18px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .info-table th { width: 35%; }
  .section { padding-block: clamp(48px, 12vw, 96px); }
}

/* ---------- print ---------- */
@media print {
  .site-header, .site-footer, .back-to-top, .menu-toggle, .hero__indicators { display: none; }
  body { background: white; color: black; }
}

/* =========================================================
   Vibrant paper-cut redesign — 2026-07
   Existing content and structure are preserved. This layer
   strengthens color, rhythm and motion across every page.
   ========================================================= */

:root {
  --paper: #fffaf0;
  --paper-2: #f7edda;
  --paper-3: #ead9bd;
  --ink: #20231f;
  --ink-2: #3f433d;
  --ink-3: #696b62;
  --moss: #56833a;
  --moss-2: #6b9b4b;
  --persimmon: #ee762c;
  --sea: #234f5d;
  --mustard: oklch(72% .12 82);
  --mustard-ink: oklch(45% .09 82);
  --earth: #87512d;
  --line: #d9c8aa;
  --surface-orange: oklch(96% .035 55);
  --surface-green: oklch(95% .032 135);
  --surface-sea: oklch(95% .025 205);
  --surface-mustard: oklch(96% .045 90);
  --ff-display: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --ff-accent: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --maxw: 1280px;
  --radius: 0;
  --shadow-paper: 9px 10px 0 rgba(135,81,45,.13);
  --shadow-bold: 7px 8px 0 var(--ink);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);
  --spring: cubic-bezier(.34,1.56,.64,1);
}

body {
  overflow-x: hidden;
  background-color: var(--paper);
  background-image: radial-gradient(rgba(86,131,58,.09) .75px, transparent .75px);
  background-size: 18px 18px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.3;
  line-break: strict;
  overflow-wrap: normal;
  word-break: normal;
  word-break: auto-phrase;
}

.eyebrow,
.section__num,
.card__num,
.shop-card__label {
  font-family: var(--ff-display);
  font-style: normal;
  font-weight: 700;
  text-transform: none;
}

.container { --gutter: clamp(20px, 4vw, 52px); }

.site-header {
  height: 82px;
  border-bottom: 2px solid transparent;
  background: rgba(255,250,240,.94);
  transform: translateY(-100%);
  animation: header-drop .7s var(--ease-out) .05s forwards;
}

.site-header.is-scrolled {
  border-bottom-color: var(--persimmon);
  background: rgba(255,250,240,.97);
  box-shadow: 0 5px 0 rgba(238,118,44,.12);
}

.site-header__inner { height: 82px; max-width: 1400px; }

.site-logo { gap: 14px; }
.site-logo img {
  width: 116px;
  height: 50px;
  object-fit: contain;
  transform-origin: 40% 50%;
  transition: transform .45s var(--spring);
}
.site-logo:hover img { transform: rotate(-3deg) scale(1.08); }
.site-logo__text { font-weight: 700; letter-spacing: .02em; }

.site-nav { gap: clamp(12px, 2vw, 28px); }
.site-nav a {
  padding: 29px 2px 26px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink-2);
}
.site-nav a::after {
  height: 5px;
  border-radius: 50% 40% 55% 45%;
  background: var(--persimmon);
  transform-origin: left center;
  transition: transform .32s var(--spring);
}
.site-nav a[aria-current="page"] { color: var(--persimmon); }

.hero {
  min-height: min(700px, calc(100dvh - 82px));
  height: auto;
  background: var(--paper);
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.hero::before {
  width: clamp(120px, 15vw, 240px);
  aspect-ratio: 1;
  right: -7vw;
  bottom: -9vw;
  border-radius: 48% 52% 36% 64% / 62% 34% 66% 38%;
  background: var(--persimmon);
  animation: shape-breathe 7s ease-in-out infinite;
}

.hero::after {
  width: 180px;
  height: 120px;
  right: 3vw;
  top: 18%;
  background-image: radial-gradient(circle, var(--paper) 0 5px, transparent 5.5px);
  background-size: 25px 25px;
  transform: rotate(-8deg);
  animation: dot-drift 6s ease-in-out infinite alternate;
}

.hero__bg {
  inset: 0;
  left: 0;
  clip-path: none;
  background: var(--sea);
}

.hero__bg img {
  transform: scale(1.04) translate3d(calc(var(--hero-x, 0) * 1px), calc(var(--hero-y, 0) * 1px), 0);
  transition: opacity 1s var(--ease-in-out), transform 7s ease-out;
  filter: saturate(1.06) contrast(1.02);
}

.hero__bg img.is-active {
  transform: scale(1.11) translate3d(calc(var(--hero-x, 0) * 1px), calc(var(--hero-y, 0) * 1px), 0);
}

.hero__bg::after {
  background: linear-gradient(90deg, rgba(23,56,66,.44), rgba(23,56,66,.1) 52%, rgba(32,35,31,.18));
}

.hero__content {
  position: absolute;
  right: auto;
  bottom: auto;
  left: clamp(24px, 6vw, 92px);
  top: 50%;
  width: min(520px, 42vw);
  max-width: none;
  padding: clamp(26px, 3vw, 40px);
  transform: translateY(-50%);
  color: var(--ink);
  text-align: left;
  text-shadow: none;
  border: 2px solid var(--ink);
  border-radius: 8px 72px 18px 18px;
  background: rgba(255,250,240,.95);
  box-shadow: 10px 12px 0 rgba(32,35,31,.3);
  z-index: 4;
}

.hero__content::before {
  display: none;
}

.hero__sub {
  margin-bottom: 19px;
  color: var(--moss);
  font-weight: 700;
  letter-spacing: .15em;
}

.hero__catch {
  color: var(--ink);
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.3;
  letter-spacing: -.055em;
  margin-bottom: 0;
  text-shadow: none;
}

.hero__catch span {
  position: relative;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  transform: translateX(-48px) rotate(-1deg);
  animation: catch-in .8s var(--spring) forwards;
}

.hero__catch span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 7%;
  bottom: .02em;
  height: .11em;
  z-index: -1;
  background: var(--persimmon);
  border-radius: 55% 45% 50% 40%;
  transform: scaleX(0) rotate(-1deg);
  transform-origin: left center;
  animation: line-draw .6s var(--ease-out) forwards;
}
.hero__catch span:nth-child(1)::after { animation-delay: .75s; }
.hero__catch span:nth-child(2)::after { animation-delay: .95s; }
.hero__catch span:nth-child(3)::after { animation-delay: 1.15s; }
.hero__catch span:nth-child(1)::after { background: var(--persimmon); }
.hero__catch span:nth-child(2)::after { background: var(--mustard); }
.hero__catch span:nth-child(3)::after { background: var(--moss); }

/* Color shutters appear only while the hero photograph changes. */
.hero-shutters {
  position: absolute;
  inset: 0;
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
  overflow: hidden;
}
.hero-shutters span {
  transform: translateY(-102%);
  will-change: transform;
}
.hero-shutters span:nth-child(1) { background: var(--persimmon); }
.hero-shutters span:nth-child(2) { background: var(--mustard); }
.hero-shutters span:nth-child(3) { background: var(--moss); }
.hero-shutters span:nth-child(4) { background: var(--sea); }
.hero.is-shuttering .hero-shutters span {
  animation: color-shutter .82s var(--ease-in-out) both;
}
.hero.is-shuttering .hero-shutters span:nth-child(2) { animation-delay: 35ms; }
.hero.is-shuttering .hero-shutters span:nth-child(3) { animation-delay: 70ms; }
.hero.is-shuttering .hero-shutters span:nth-child(4) { animation-delay: 105ms; }

.hero__indicators {
  left: auto;
  right: clamp(22px, 4vw, 70px);
  bottom: 26px;
  z-index: 6;
  gap: 10px;
  padding: 0;
  transform: none;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.hero__indicators button {
  width: 14px;
  height: 14px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: rgba(32,35,31,.2);
  box-shadow: none;
  transition: transform .25s var(--spring), background-color .2s ease-out;
}
.hero__indicators button:hover { transform: scale(1.35); }
.hero__indicators button[aria-current="true"] {
  background: var(--persimmon);
  box-shadow: none;
  transform: scale(1.25);
}

.page-hero {
  min-height: clamp(440px, 48vw, 580px);
  background: var(--paper-2);
  isolation: isolate;
  overflow: hidden;
}
.page-hero::before,
.page-hero::after {
  display: none;
}
.page-hero::before {
  width: clamp(190px, 28vw, 430px);
  aspect-ratio: 1.15;
  left: -8vw;
  bottom: -32%;
  border-radius: 50% 42% 60% 38%;
  background: var(--persimmon);
  transform: rotate(12deg);
  animation: shape-breathe 8s ease-in-out infinite;
}
.page-hero::after {
  width: 180px;
  height: 120px;
  right: 2%;
  bottom: 8%;
  background-image: radial-gradient(circle, var(--paper) 0 5px, transparent 5.5px);
  background-size: 24px 24px;
  transform: rotate(8deg);
  animation: dot-drift 5.5s ease-in-out infinite alternate-reverse;
}
.page-hero__bg { inset: 0; left: 0; clip-path: none; }
.page-hero__bg img {
  opacity: 1;
  filter: saturate(1.03) contrast(1.02);
  animation: hero-kenburns 14s ease-in-out infinite alternate;
}
.page-hero__bg::after { background: linear-gradient(90deg, rgba(23,56,66,.14), rgba(23,56,66,0) 56%); }
.page-hero__inner {
  position: absolute;
  left: clamp(24px, 6vw, 92px);
  top: 50%;
  width: min(570px, 44vw);
  min-height: 0;
  display: block;
  text-align: left;
  padding: clamp(25px, 3vw, 38px);
  transform: translateY(-50%);
  border: 2px solid var(--ink);
  border-radius: 8px 66px 18px 18px;
  background: rgba(255,250,240,.95);
  box-shadow: 9px 10px 0 rgba(32,35,31,.28);
}
.page-hero__eyebrow { color: var(--moss); font-weight: 700; }
.page-hero__title {
  color: var(--ink);
  font-size: clamp(30px, 2.9vw, 42px);
  line-height: 1.24;
  letter-spacing: -.055em;
  word-break: keep-all;
  text-shadow: none;
  animation: page-title-in .85s var(--spring) .15s both;
}
.page-hero__sub { color: var(--sea); font-weight: 700; }

.section {
  padding-block: clamp(82px, 10vw, 144px) clamp(96px, 12vw, 164px);
  background-color: var(--paper);
  overflow: clip;
}
.section--alt { background-color: var(--paper-2); }

/* Page color rhythm: colorful surfaces with restrained saturation. */
.page-index main > .section:nth-of-type(2) { background-color: var(--surface-orange); }
.page-index main > .section:nth-of-type(3) { background-color: var(--surface-mustard); }
.page-index main > .section:nth-of-type(4) { background-color: var(--surface-green); }
.page-index main > .section:nth-of-type(5) { background-color: var(--surface-sea); }

body:not(.page-index) main > .section:nth-of-type(2) { background-color: var(--surface-mustard); }
body:not(.page-index) main > .section:nth-of-type(3) { background-color: var(--surface-green); }
body:not(.page-index) main > .section:nth-of-type(4) { background-color: var(--surface-sea); }

.page-about .page-hero__bg::after,
.page-blog .page-hero__bg::after,
.page-works .page-hero__bg::after,
.page-products .page-hero__bg::after,
.page-sdgs .page-hero__bg::after {
  background: linear-gradient(90deg, rgba(23,56,66,.14), rgba(23,56,66,0) 56%);
}
.section:nth-of-type(even)::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -74px;
  top: 14%;
  border-radius: 40% 60% 63% 37%;
  background: var(--moss);
  opacity: .95;
  transform: rotate(18deg);
  animation: shape-float 8s ease-in-out infinite;
}
.section:nth-of-type(odd)::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 180px;
  left: -72px;
  bottom: 12%;
  background: var(--persimmon);
  border-radius: 55% 45% 38% 62%;
  transform: rotate(-14deg);
  animation: shape-float 9s ease-in-out -2s infinite reverse;
}

.section::before,
.section::after {
  z-index: 0;
  pointer-events: none;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section__rule {
  gap: 18px;
  margin-bottom: clamp(32px, 5vw, 58px);
}
.section__rule::after {
  height: 8px;
  background-image: radial-gradient(circle, var(--moss) 0 3px, transparent 3.5px);
  background-size: 18px 8px;
  transform-origin: left;
  animation: dots-slide 9s linear infinite;
}
.section__num {
  color: var(--persimmon);
  font-size: clamp(18px, 2.1vw, 28px);
  letter-spacing: .03em;
}
.section:nth-of-type(3n) .section__num { color: var(--mustard-ink); }
.section:nth-of-type(4n) .section__num { color: var(--moss); }
.section:nth-of-type(5n) .section__num { color: var(--sea); }
.section:nth-of-type(3n) .section__rule::after {
  background-image: radial-gradient(circle, var(--mustard) 0 3px, transparent 3.5px);
}
.section:nth-of-type(4n) .section__rule::after {
  background-image: radial-gradient(circle, var(--sea) 0 3px, transparent 3.5px);
}
.section__title {
  max-width: 920px;
  margin-bottom: 28px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.25;
}
.section__lead {
  max-width: 720px;
  margin-bottom: clamp(42px, 6vw, 72px);
  color: var(--ink-2);
  font-size: clamp(16px, 1.7vw, 19px);
}

.intro { grid-template-columns: .86fr 1.14fr; gap: clamp(48px, 8vw, 112px); }
.intro__text h2 { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.32; }
.intro__media {
  aspect-ratio: 5 / 4;
  overflow: visible;
  transform: rotate(2.2deg);
  filter: drop-shadow(12px 14px 0 rgba(238,118,44,.24));
}
.intro__media img { clip-path: polygon(2% 3%, 97% 0, 100% 96%, 4% 100%, 0 42%); }
.intro__media::before {
  inset: -22px 30% auto -24px;
  height: 56px;
  border: 0;
  background: rgba(234,217,189,.86);
  transform: rotate(-6deg);
}

.shops { gap: clamp(28px, 4vw, 56px); align-items: start; }
.shop-card,
.card {
  --card-rotate: 0deg;
  --card-accent: var(--persimmon);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-paper);
  transform: rotate(var(--card-rotate));
  transition: transform .4s var(--spring), box-shadow .25s ease-out;
}
.shop-card:nth-child(1), .card:nth-child(4n + 1) { --card-accent: var(--persimmon); }
.shop-card:nth-child(2), .card:nth-child(4n + 2) { --card-accent: var(--moss); }
.card:nth-child(4n + 3) { --card-accent: var(--sea); }
.card:nth-child(4n) { --card-accent: var(--mustard); }
.shop-card:nth-child(odd), .card:nth-child(3n + 1) { --card-rotate: -1.1deg; }
.shop-card:nth-child(even), .card:nth-child(3n + 2) { --card-rotate: 1.15deg; }
.card:nth-child(3n) { --card-rotate: -.45deg; }
.shop-card:nth-child(even) { margin-top: clamp(24px, 5vw, 68px); }
.shop-card:hover,
.card:hover {
  transform: translateY(-10px) rotate(0deg) scale(1.015);
  box-shadow: 7px 8px 0 var(--card-accent);
}
.shop-card:active,
.card:active { transform: translateY(-3px) scale(.99); }
.shop-card__media,
.card__media { background: var(--paper-3); }
.shop-card__media img,
.card__media img { filter: saturate(.96); transition: transform .9s var(--ease-out), filter .3s ease-out; }
.shop-card:hover .shop-card__media img,
.card:hover .card__media img { transform: scale(1.075) rotate(.6deg); filter: saturate(1.12); }
.shop-card__body,
.card__body { position: relative; }
.shop-card:nth-child(1) .shop-card__body,
.card:nth-child(4n + 1) .card__body { background: var(--surface-orange); }
.shop-card:nth-child(2) .shop-card__body,
.card:nth-child(4n + 2) .card__body { background: var(--surface-green); }
.card:nth-child(4n + 3) .card__body { background: var(--surface-sea); }
.card:nth-child(4n) .card__body { background: var(--surface-mustard); }
.shop-card__label,
.card__num { color: var(--moss); }
.shop-card__name { font-size: clamp(27px, 3vw, 38px); }
.card__title { font-size: clamp(21px, 2.1vw, 28px); }
.card__body::before {
  content: "";
  position: absolute;
  width: 56px;
  height: 14px;
  right: 22px;
  top: -8px;
  background: var(--card-accent);
  opacity: .75;
  transform: rotate(-3deg);
}

.cards { gap: clamp(28px, 4vw, 52px); align-items: start; }
.cards .card:nth-child(3n + 2) { margin-top: clamp(20px, 4vw, 52px); }

.blog-grid { gap: clamp(32px, 4vw, 58px); align-items: start; }
.blog-item { transition: transform .4s var(--spring); }
.blog-item:nth-child(3n + 2) { margin-top: 48px; }
.blog-item:hover { transform: translateY(-9px) rotate(.5deg); }
.blog-item__media { border: 2px solid var(--ink); box-shadow: 7px 8px 0 rgba(86,131,58,.22); }
.blog-item__title { font-size: 20px; }
.blog-item:nth-child(4n + 1) .blog-item__meta time { color: var(--persimmon); }
.blog-item:nth-child(4n + 2) .blog-item__meta time { color: var(--moss); }
.blog-item:nth-child(4n + 3) .blog-item__meta time { color: var(--sea); }
.blog-item:nth-child(4n) .blog-item__meta time { color: var(--mustard-ink); }

.section--instagram {
  background: var(--paper-2);
  padding-bottom: clamp(72px, 7vw, 96px);
}
.section--instagram::before {
  width: 230px;
  height: 230px;
  right: -90px;
  top: -70px;
  background: var(--moss);
}
.instagram-embed {
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 14px 0 rgba(35,79,93,.18);
  transform: rotate(1deg);
}
.instagram-feed__item { border: 1px solid var(--ink); box-shadow: none; }
.instagram-feed__item:hover { transform: translateY(-5px) rotate(-.5deg); box-shadow: 5px 6px 0 rgba(238,118,44,.2); }

.info-table {
  border-top: 3px solid var(--persimmon);
  background: rgba(255,250,240,.65);
}
.info-table tr { transition: background-color .18s ease-out, transform .18s ease-out; }
.info-table tr:hover { background: rgba(238,118,44,.08); transform: translateX(6px); }
.info-table th { color: var(--moss); font-weight: 700; }

.btn {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  padding: 15px 29px;
  background: var(--persimmon);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 5px 6px 0 var(--ink);
  transition: transform .25s var(--spring), box-shadow .2s ease-out, background-color .2s ease-out;
}
.btn::before {
  display: none;
}
.btn > *, .btn__arrow { position: relative; z-index: 1; }
.btn:hover,
.btn--moss:hover {
  background: var(--moss);
  color: var(--paper);
  transform: translate(-2px, -3px) rotate(-1deg);
  box-shadow: 8px 10px 0 var(--ink);
}
.btn:active { transform: translate(3px, 4px) scale(.98); box-shadow: 2px 2px 0 var(--ink); }
.btn--moss { border-color: var(--ink); color: var(--ink); }
.link-arrow { position: relative; color: var(--moss); font-weight: 700; }
.link-arrow::after { height: 4px; background: var(--persimmon); border-radius: 50%; transition: width .3s var(--spring); }
.link-arrow:hover::after { width: 40px; }

.site-footer {
  position: relative;
  overflow: hidden;
  background: #173842;
  padding-top: 82px;
  border-top: 10px solid var(--persimmon);
}
.site-footer::before {
  display: none;
}
.footer-logo { font-family: var(--ff-display); font-weight: 700; }
.footer-social a { border-radius: 44% 56% 50% 45%; transition: transform .35s var(--spring), background-color .2s ease-out; }
.footer-social a:hover { transform: rotate(9deg) scale(1.14); background: var(--persimmon); border-color: var(--persimmon); }

.reveal {
  --reveal-x: 0px;
  --reveal-y: 46px;
  --reveal-r: 0deg;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) rotate(var(--reveal-r)) scale(.97);
  transition: opacity .75s var(--ease-out), transform .85s var(--spring);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal--left { --reveal-x: -54px; --reveal-y: 12px; --reveal-r: -1.5deg; }
.reveal--right { --reveal-x: 54px; --reveal-y: 12px; --reveal-r: 1.5deg; }
.reveal--pop { --reveal-x: 0px; --reveal-y: 24px; --reveal-r: -2deg; transform: translate3d(var(--reveal-x), var(--reveal-y), 0) rotate(var(--reveal-r)) scale(.86); }
.reveal.is-in { opacity: 1; transform: translate3d(0,0,0) rotate(0) scale(1); }

.back-to-top {
  width: 52px;
  height: 52px;
  right: 22px;
  bottom: calc(22px + env(safe-area-inset-bottom));
  border: 2px solid var(--ink);
  border-radius: 45% 55% 38% 62%;
  background: var(--persimmon);
  color: var(--ink);
  box-shadow: 4px 5px 0 var(--ink);
  transition: opacity .2s ease-out, transform .35s var(--spring);
}
.back-to-top:hover { transform: translateY(-6px) rotate(8deg) scale(1.06); }

.menu-toggle,
.hero__indicators button,
.back-to-top { position: relative; overflow: hidden; }
.motion-ripple {
  position: absolute;
  z-index: 4;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255,250,240,.7);
  animation: ripple-pop .62s var(--ease-out) forwards;
}

@keyframes header-drop { to { transform: translateY(0); } }
@keyframes catch-in { to { opacity: 1; transform: translateX(0) rotate(0); } }
@keyframes line-draw { to { transform: scaleX(1) rotate(-1deg); } }
@keyframes page-title-in {
  from { opacity: 0; transform: translateX(-50px) rotate(-1deg); }
  to { opacity: 1; transform: translateX(0) rotate(0); }
}
@keyframes hero-kenburns {
  from { transform: scale(1.02) translate3d(-1%, 0, 0); }
  to { transform: scale(1.11) translate3d(1.5%, -1%, 0); }
}
@keyframes shape-breathe {
  0%, 100% { transform: rotate(-3deg) scale(1); border-radius: 48% 52% 36% 64% / 62% 34% 66% 38%; }
  50% { transform: rotate(4deg) scale(1.06); border-radius: 57% 43% 61% 39% / 45% 58% 42% 55%; }
}
@keyframes shape-float {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 0 -20px; rotate: 7deg; }
}
@keyframes dot-drift {
  from { translate: 0 0; rotate: -4deg; }
  to { translate: -16px 18px; rotate: 5deg; }
}
@keyframes dots-slide { to { background-position: 180px 0; } }
@keyframes ripple-pop {
  from { opacity: .75; transform: scale(0); }
  to { opacity: 0; transform: scale(13); }
}
@keyframes color-shutter {
  0% { transform: translateY(-102%); }
  42%, 56% { transform: translateY(0); }
  100% { transform: translateY(102%); }
}

@media (max-width: 1024px) {
  .site-logo__text { display: none; }
  .hero {
    min-height: min(680px, calc(100dvh - 82px));
  }
  .hero__content {
    width: min(420px, 46vw);
    left: 5vw;
    padding: 26px;
  }
  .hero__content::before {
    display: none;
  }
  .hero__catch {
    font-size: clamp(32px, 4vw, 42px);
    line-height: 1.28;
  }
  .hero__catch span { white-space: nowrap; }
  .hero__bg { left: 0; }
  .page-hero__inner { width: min(460px, 48vw); padding: 26px; }
  .page-hero__bg { left: 0; }
  .cards .card:nth-child(3n + 2) { margin-top: 0; }
  .cards .card:nth-child(even) { margin-top: 34px; }
}

@media (max-width: 760px) {
  .site-header, .site-header__inner { height: 70px; }
  .site-header { animation-duration: .45s; }
  .site-logo img { width: 98px; height: 42px; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    border: 2px solid var(--ink);
    border-radius: 45% 55% 42% 58%;
    background: var(--persimmon);
    box-shadow: 3px 3px 0 var(--ink);
  }
  .site-nav {
    background: var(--paper);
    background-image: radial-gradient(rgba(86,131,58,.17) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    transition: transform .45s var(--ease-out);
  }
  .site-nav a { font-size: 20px; font-weight: 700; color: var(--ink); }

  .hero {
    min-height: calc(100svh - 70px);
    align-items: end;
  }
  .hero__bg {
    inset: 0 0 32% 0;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 72% 100%, 42% 93%, 18% 100%, 0 94%);
  }
  .hero__content {
    inset: auto 20px 6vh 20px;
    width: auto;
    padding: 22px 24px;
    transform: none;
    border-radius: 8px 46px 14px 14px;
    box-shadow: 6px 7px 0 rgba(32,35,31,.3);
  }
  .hero__content::before {
    inset: -34px -26px -9vh -26px;
    border-radius: 40% 38% 0 0 / 12% 10% 0 0;
    transform: rotate(-1deg);
  }
  .hero__catch { font-size: clamp(34px, 9vw, 44px); }
  .hero__catch span { width: auto; white-space: normal; }
  .hero__sub { font-size: 12px; }
  .hero::before { width: 155px; right: -48px; bottom: -38px; }
  .hero::after { display: none; }
  .hero__indicators { top: calc(68% - 94px); bottom: auto; }
  .hero__indicators {
    right: 16px;
  }
  .hero__indicators button { width: 14px; height: 14px; }

  .page-hero { min-height: 560px; }
  .page-hero__bg { inset: 0; left: 0; clip-path: none; }
  .page-hero__bg::after { background: linear-gradient(0deg, rgba(23,56,66,.13), rgba(23,56,66,0) 55%); }
  .page-hero__inner {
    inset: auto 20px 28px 20px;
    width: auto;
    min-height: 0;
    padding: 22px 24px;
    transform: none;
    border-radius: 8px 46px 14px 14px;
    box-shadow: 6px 7px 0 rgba(32,35,31,.28);
  }
  .page-hero__title { font-size: clamp(28px, 7.2vw, 34px); }
  .page-hero::before,
  .page-hero::after { display: none; }

  .section { padding-block: 74px 96px; }
  .section:nth-of-type(even)::before { width: 100px; height: 100px; right: -58px; }
  .section:nth-of-type(odd)::after { width: 90px; height: 120px; left: -58px; }
  .section__rule { align-items: flex-start; gap: 12px; }
  .section__rule::after { margin-top: 10px; }
  .section__num { font-size: 17px; }
  .section__title { font-size: clamp(32px, 9.5vw, 46px); }
  .section__lead--nowrap { white-space: normal; }

  .intro { gap: 54px; }
  .intro__media { aspect-ratio: 4 / 3; transform: rotate(1.5deg); }
  .shops { gap: 40px; }
  .shop-card:nth-child(even),
  .cards .card:nth-child(even) { margin-top: 0; }
  .shop-card,
  .card { --card-rotate: 0deg !important; box-shadow: 6px 7px 0 rgba(135,81,45,.14); }
  .shop-card:hover,
  .card:hover { transform: translateY(-5px); box-shadow: 6px 7px 0 var(--ink); }
  .blog-item:nth-child(3n + 2) { margin-top: 0; }
  .instagram-embed { min-height: 0; transform: none; box-shadow: 7px 8px 0 rgba(35,79,93,.18); }
  .instagram-feed.is-loaded,
  .instagram-fallback__grid { grid-template-columns: 1fr; }
  .info-table th, .info-table td { padding-inline: 9px; }
  .info-table tr:hover { transform: none; }
  .site-footer { padding-top: 68px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .site-header { transform: none; }
  .hero__bg img,
  .hero__bg img.is-active,
  .page-hero__bg img { transform: none; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  body::before { display: none; }
  .section { overflow: visible; }
}

.section--news {
  background: var(--aqua);
}
.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.news-copy {
  max-width: 760px;
}
.news-copy .section__lead {
  margin-top: var(--s-5);
  max-width: 680px;
}

/* ---------- TOP hero: vertical title rail ---------- */
.hero {
  --hero-rail-width: clamp(250px, 20.25vw, 340px);
  min-height: min(700px, calc(100dvh - 82px));
  display: block;
  background: var(--paper);
}

.hero::before,
.hero::after { display: none; }

.hero__bg {
  inset: 0 0 0 var(--hero-rail-width);
  clip-path: none;
  background: var(--paper);
}

.hero__bg img {
  object-position: 50% 50%;
  filter: saturate(1.02) contrast(1.01);
  transform: scale(1.015) translate3d(calc(var(--hero-x, 0) * 1px), calc(var(--hero-y, 0) * 1px), 0);
}

.hero__bg img:nth-child(1) { object-position: 54% 50%; }
.hero__bg img:nth-child(2) { object-position: 50% 52%; }
.hero__bg img:nth-child(3) { object-position: 52% 50%; }

.hero__bg img.is-active {
  transform: scale(1.055) translate3d(calc(var(--hero-x, 0) * 1px), calc(var(--hero-y, 0) * 1px), 0);
}

.hero__bg::after { background: none; }

.hero__content {
  inset: 0 auto 0 0;
  width: var(--hero-rail-width);
  max-width: none;
  padding: clamp(42px, 5vh, 64px) clamp(25px, 2.3vw, 40px);
  transform: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  text-align: left;
  border: 0;
  border-radius: 0;
  background: var(--paper);
  box-shadow: none;
  z-index: 4;
}

.hero__content::before,
.hero__content::after { display: none; }

.hero__sub { display: none; }

.hero__catch {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(14px, 1.25vw, 22px);
  max-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: var(--ff-display);
  font-size: clamp(32px, 2.45vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .03em;
  text-shadow: none;
  text-wrap: balance;
}

.hero__catch::before {
  content: "";
  position: absolute;
  top: -42px;
  right: 1px;
  width: 34px;
  height: 28px;
  background:
    linear-gradient(105deg, transparent 41%, var(--persimmon) 42% 58%, transparent 59%) 0 2px / 9px 19px no-repeat,
    linear-gradient(20deg, transparent 41%, var(--persimmon) 42% 58%, transparent 59%) 12px 15px / 19px 9px no-repeat,
    linear-gradient(155deg, transparent 41%, var(--persimmon) 42% 58%, transparent 59%) 17px 0 / 15px 9px no-repeat;
}

.hero__catch span {
  position: relative;
  width: auto;
  max-width: none;
  height: max-content;
  padding: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rail-in .7s var(--ease-out) forwards;
}

.hero__catch span:not(:last-child) {
  padding-left: clamp(14px, 1.25vw, 22px);
  border-left: 1px solid var(--line);
}

.hero__catch span::after { content: none; }
.hero__catch span:nth-child(1) { animation-delay: .12s; }
.hero__catch span:nth-child(2) { animation-delay: .24s; }
.hero__catch span:nth-child(3) { animation-delay: .36s; }

.hero-shutters { left: var(--hero-rail-width); }

.hero__indicators {
  right: clamp(10px, 2vw, 28px);
  bottom: 12px;
  gap: 0;
}

.hero__indicators button {
  --hero-dot-color: rgba(255,255,255,.45);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--hero-dot-color) 0 5px, transparent 5.5px);
  box-shadow: none;
}

.hero__indicators button:hover { transform: none; }
.hero__indicators button[aria-current="true"] {
  --hero-dot-color: var(--persimmon);
  background: radial-gradient(circle, var(--hero-dot-color) 0 6px, transparent 6.5px);
  box-shadow: none;
  transform: none;
}

.hero__indicators button:focus-visible {
  outline: 3px solid var(--paper);
  outline-offset: -7px;
}

@keyframes hero-rail-in {
  to { opacity: 1; transform: none; }
}

@media (max-width: 1024px) and (min-width: 761px) {
  .hero { --hero-rail-width: clamp(230px, 25vw, 270px); }
  .hero__catch {
    font-size: clamp(29px, 3.3vw, 36px);
    gap: 13px;
  }
  .hero__catch span:not(:last-child) { padding-left: 13px; }
}

@media (max-width: 760px) {
  .hero {
    --hero-copy-height: clamp(216px, 32svh, 252px);
    min-height: calc(100svh - 70px);
    background: var(--paper);
  }

  .hero__bg {
    inset: 0 0 var(--hero-copy-height) 0;
    clip-path: none;
  }

  .hero__bg img:nth-child(1) { object-position: 56% 48%; }
  .hero__bg img:nth-child(2) { object-position: 50% 52%; }
  .hero__bg img:nth-child(3) { object-position: 52% 50%; }

  .hero__content {
    inset: auto 0 0 0;
    width: 100%;
    height: var(--hero-copy-height);
    padding: 20px var(--gutter) 24px;
    transform: none;
    align-items: center;
    justify-content: flex-start;
    border: 0;
    border-radius: 0;
    background: var(--paper);
    box-shadow: none;
  }

  .hero__catch {
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-size: clamp(29px, 8.6vw, 38px);
    line-height: 1.22;
    letter-spacing: -.035em;
  }

  .hero__catch::before { display: none; }

  .hero__catch span {
    width: auto;
    height: auto;
    padding: 0;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: nowrap;
  }

  .hero__catch span:not(:last-child) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-shutters {
    inset: 0 0 var(--hero-copy-height) 0;
  }

  .hero__indicators {
    top: auto;
    right: 4px;
    bottom: calc(var(--hero-copy-height) + 4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__catch span { opacity: 1; transform: none; animation: none; }
}

/* ---------- Mobile line wrapping repair — 2026-09-10 ---------- */
/* Neutral on desktop; these wrappers identify phrases without changing copy. */
.footer-logo .mobile-phrase {
  display: inline;
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
  margin: 0;
}
@media (max-width: 760px) {
  /* The later editorial grid had overridden the original mobile column. */
  .intro { grid-template-columns: minmax(0, 1fr); }
  .intro > *, .instagram-layout > *, .news-layout > * { min-width: 0; }

  .section__title, .intro__text h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.4;
  }
  .mobile-heading {
    word-break: normal;
    overflow-wrap: anywhere;
    text-wrap: wrap;
  }
  .mobile-phrase, .footer-logo .mobile-phrase {
    display: inline-block;
    max-width: 100%;
    word-break: normal;
    overflow-wrap: anywhere;
    text-wrap: wrap;
    vertical-align: baseline;
  }
  .mobile-heading-note { font-size: .75em; }
  .mobile-inline-note { font-size: .85em; }
  .card__title.mobile-heading, .blog-item__title.mobile-heading { text-wrap: balance; }
  .section__num { word-break: normal; text-wrap: pretty; }
  .footer-logo { text-wrap: wrap; }
  .info-table a { overflow-wrap: anywhere; }
}
