/* =========================================================
   特定非営利活動法人 いきいき — 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: nowrap; }

/* ---------- 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 {
  font-family: var(--ff-display); font-size: 18px; line-height: 1.2;
  letter-spacing: .04em;
}
.site-logo 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);
}
.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: 15.5px; }
  .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; }
}
