/* Sakura Japan Taste — shared site styles */
:root {
  --sakura: #C44D6E;
  --sakura-light: #F5EBEF;
  --sakura-dark: #8F3349;
  --matcha: #4E6844;
  --matcha-light: #EEF2EB;
  --washi: #F8F4ED;
  --ink: #1F1A14;
  --ink-soft: #2C2419;
  --muted: #5C5349;
  --gold: #A68B5B;
  --gold-light: #E8DFD0;
  --white: #FFFFFF;
  --border: rgba(31, 26, 20, 0.08);
  --shadow: 0 8px 32px rgba(31, 26, 20, 0.06);
  --shadow-soft: 0 2px 12px rgba(31, 26, 20, 0.04);
  --radius: 10px;
  --max: 1140px;
  --logo-h: 80px;
  --nav-logo-h: 88px;
  --logo-max-w: 420px;
  --nav-logo-max-w: 440px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--ink);
  background: var(--washi);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ── Nav ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0;
  gap: 1.5rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  max-width: min(480px, 58vw);
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-lockup .brand-logo-full {
  height: clamp(54px, 6.5vw, 68px);
  width: auto;
  max-width: min(148px, 28vw);
  object-fit: contain;
  flex-shrink: 0;
}

.brand-divider {
  width: 1px;
  align-self: stretch;
  min-height: 42px;
  max-height: 56px;
  margin: 0.35rem 0;
  background: rgba(31, 26, 20, 0.12);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  min-width: 0;
  justify-content: center;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.footer-brand-mark {
  display: none;
}

.footer-logo,
.loc-store-logo {
  height: var(--logo-h);
  width: auto;
  max-width: min(var(--logo-max-w), 100%);
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-lockup .footer-logo {
  height: clamp(50px, 5vw, 62px);
  max-width: 132px;
  margin: 0;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.08;
  white-space: nowrap;
}

.loc-store-logo {
  display: block;
  margin: 0.35rem 0 0.85rem;
}

.loc-store-logo-auh {
  height: calc(var(--logo-h) * 0.88);
  max-width: 150px;
}

.brand-name-accent {
  color: var(--sakura-dark);
}

.brand-sub {
  display: none;
}

.brand-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: clamp(0.58rem, 0.72vw, 0.66rem);
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a:hover { color: var(--sakura); }

.nav-cta {
  background: var(--sakura);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--sakura-dark); color: var(--white) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-nav.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.site-nav.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.nav-scroll-lock { overflow: hidden; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary { background: var(--sakura); color: var(--white); }
.btn-primary:hover { background: var(--sakura-dark); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-matcha { background: var(--matcha); color: var(--white); }
.btn-matcha:hover { background: #4a6340; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 1.15rem; }

/* ── Hero ── */
.hero {
  padding: 2.25rem 0 3.25rem;
  background: var(--washi);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgba(196, 77, 110, 0.06), transparent 50%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(78, 104, 68, 0.05), transparent 50%);
  pointer-events: none;
}

.hero .container { position: relative; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold-light);
  display: inline-block;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--sakura-dark);
  margin-bottom: 0.45rem;
}

.hero-tagline + .hero-proof {
  margin-bottom: 0.75rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--gold-light);
}

.hero-proof {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 0.85rem;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.25rem, 4.2vw, 3.35rem);
  margin-bottom: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.08;
}

.hero-lead {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 0;
  line-height: 1.65;
}

.hero-visual {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.hero-mosaic {
  display: grid;
  grid-template-areas:
    "shop shop tea"
    "shop shop cake"
    "rak wagashi assort";
  grid-template-columns: 1.15fr 1fr 0.95fr;
  grid-template-rows: 1fr 1fr 0.88fr;
  gap: 3px;
  min-height: 380px;
  background: var(--border);
  padding: 0;
}

.hero-mosaic-cell {
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
  min-height: 0;
}

.hero-mosaic-cell[data-area="shop"] { grid-area: shop; }
.hero-mosaic-cell[data-area="rak"] { grid-area: rak; }
.hero-mosaic-cell[data-area="tea"] { grid-area: tea; }
.hero-mosaic-cell[data-area="cake"] { grid-area: cake; }
.hero-mosaic-cell[data-area="wagashi"] { grid-area: wagashi; }
.hero-mosaic-cell[data-area="assort"] { grid-area: assort; }

.hero-mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.hero-mosaic-cell:hover img { transform: scale(1.05); }

.hero-mosaic-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.55rem 0.7rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(180deg, transparent 0%, rgba(20, 14, 12, 0.72) 100%);
  pointer-events: none;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-founder {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--white);
}

.hero-founder img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.hero-founder-cap {
  padding: 0.8rem 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-founder-role {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-founder-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.2rem;
  line-height: 1.45;
}

.shop-hero-aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  width: 100%;
}

.shop-hero-logo-wrap,
.shop-hero-card {
  width: 100%;
  box-sizing: border-box;
}

/* ── Sections ── */
.section { padding: 6rem 0; }
.section-alt { background: var(--white); }
.section-matcha { background: var(--matcha-light); }

.section-head { text-align: center; max-width: 40rem; margin: 0 auto 3.5rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1rem; font-weight: 600; }
.section-head p { color: var(--muted); font-size: 1.02rem; line-height: 1.7; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

/* ── Spirit band (Wix-inspired · premium full-bleed) ── */
.spirit-band {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.spirit-band-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(60, 30, 40, 0.2) 0%, transparent 50%),
    linear-gradient(180deg, rgba(20, 14, 12, 0.55) 0%, rgba(20, 14, 12, 0.25) 50%, rgba(20, 14, 12, 0.6) 100%),
    url('images/spirit-abudhabi.jpg') center center / cover no-repeat;
}

.spirit-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 14, 12, 0.88) 0%,
    rgba(20, 14, 12, 0.72) 45%,
    rgba(20, 14, 12, 0.35) 75%,
    rgba(20, 14, 12, 0.55) 100%
  );
}

.spirit-sakura {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    radial-gradient(ellipse 8px 10px at 15% 20%, var(--sakura-light), transparent),
    radial-gradient(ellipse 6px 8px at 85% 15%, var(--sakura-light), transparent),
    radial-gradient(ellipse 7px 9px at 70% 80%, var(--sakura-light), transparent),
    radial-gradient(ellipse 5px 7px at 25% 70%, var(--sakura-light), transparent);
  pointer-events: none;
}

.spirit-band-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 6rem 0;
  text-align: center;
  color: var(--white);
}

.spirit-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.spirit-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.spirit-copy {
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}

.spirit-copy p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.25rem;
}

.spirit-copy strong { color: var(--white); font-weight: 600; }

.manifesto-list {
  list-style: none;
  margin: 0 auto 2.5rem;
  max-width: 34rem;
  padding: 0;
}

.manifesto-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  line-height: 1.55;
  color: var(--white);
  margin-bottom: 0.55rem;
}

.btn-spirit {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 0.8rem 2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.btn-spirit:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

/* ── Story teaser ── */
.story-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.story-teaser p { color: var(--muted); margin-bottom: 1rem; font-size: 1.02rem; }

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sakura);
  margin-bottom: 0.5rem;
}

.milestone { margin-bottom: 1.5rem; }
.milestone-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sakura-dark);
}

/* ── Why cards ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.75rem 1.5rem;
}

.icon-mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1.15rem;
  color: var(--sakura-dark);
  background: var(--washi);
  border: 1px solid var(--gold-light);
}

.why-card:nth-child(2) .icon-mark { color: var(--matcha); }
.why-card:nth-child(4) .icon-mark { color: var(--gold); }

.why-card h3 { font-size: 1.15rem; margin-bottom: 0.65rem; }
.why-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.why-card p strong { color: var(--ink-soft); font-weight: 600; }

/* ── Location cards ── */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.loc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.loc-img {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.loc-img.rak { background: linear-gradient(135deg, var(--sakura), var(--sakura-dark)); }
.loc-img.ad { background: linear-gradient(135deg, var(--matcha), #4a6340); }

.loc-img.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.loc-img.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 14, 12, 0.55), rgba(20, 14, 12, 0.1));
  pointer-events: none;
}

.loc-brand {
  color: var(--muted);
  font-weight: 500;
}

.loc-img-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(20, 14, 12, 0.65);
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
}

.loc-body { padding: 1.5rem; }
.loc-body h3 { font-size: 1.35rem; margin-bottom: 0.25rem; }
.loc-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 1rem; }

.loc-meta { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.35rem; }
.loc-meta strong { color: var(--ink); font-weight: 600; }

.loc-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.loc-actions .btn { font-size: 0.82rem; padding: 0.5rem 1rem; }

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--sakura-light);
  color: var(--sakura-dark);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

/* ── Menu / Shop ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card-link .card-cta {
  font-weight: 700;
  color: var(--matcha);
  font-size: 0.9rem;
}

.product-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, var(--washi) 0%, var(--gold-light) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.product-img.has-photo {
  padding: 0;
  background: var(--washi);
}

.product-img.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-img.has-photo.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 200px;
  gap: 2px;
  background: var(--border);
}

.product-img.has-photo.duo img {
  object-fit: cover;
}

.product-img.has-photo.duo .product-img-main {
  object-fit: contain;
  object-position: center;
  background: var(--washi);
  padding: 0.35rem;
}

.product-img.has-photo.duo .product-img-intro {
  object-position: center;
}

.product-img.has-photo.solo {
  height: 200px;
  background: var(--washi);
}

.product-img.has-photo.solo img {
  object-fit: cover;
  object-position: center;
}

.product-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-body { padding: 1.25rem; }
.product-body h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.product-body p { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.75rem; }
.product-price { font-weight: 700; color: var(--matcha); }

/* ── Story page ── */
.page-hero.story-hero {
  padding: 2.25rem 0 1.75rem;
}

.page-hero.story-hero .eyebrow { margin-bottom: 0.45rem; }

.page-hero.story-hero h1 {
  font-size: clamp(2rem, 3.6vw, 2.65rem);
  margin-bottom: 0.55rem;
}

.page-hero.story-hero p {
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 38rem;
}

.story-main {
  padding: 1.5rem 0 3.5rem;
}

.story-content {
  max-width: 44rem;
}

.founder-intro {
  padding-bottom: 2rem;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--border);
}

.founder-intro-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 2rem;
  align-items: start;
}

.founder-portrait {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.founder-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.founder-portrait figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--border);
}

.founder-intro .eyebrow { margin-bottom: 0.5rem; }

.founder-intro h2 {
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  margin-bottom: 0.35rem;
}

.founder-role {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.founder-intro p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.founder-intro p:last-child { margin-bottom: 0; }

.founder-list {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

.founder-list li { margin-bottom: 0.35rem; }

.founder-closing {
  margin-top: 1rem;
  font-style: italic;
  color: var(--ink-soft);
}

.tea-why-list {
  margin: 0.5rem 0 0;
  padding-left: 0;
  list-style: none;
}

.tea-why-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.tea-why-list li:last-child { border-bottom: none; padding-bottom: 0; }

.tea-why-list strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.tea-why-list span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ── Story page chapters ── */
.chapter {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--border);
}

.chapter:first-child { padding-top: 0.25rem; }

.chapter:last-child { border-bottom: none; }

.chapter-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--sakura);
  line-height: 1;
  opacity: 0.75;
  padding-top: 0.15rem;
}

.chapter h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  margin-bottom: 0.6rem;
}

.chapter p {
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
  line-height: 1.72;
}

.chapter-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin: 1rem 0 0.35rem;
  align-items: start;
}

.chapter-photos.two-col {
  grid-template-columns: 1fr 1fr;
}

.chapter-photos.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.chapter-photo {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  height: auto;
}

.chapter-photo img {
  width: 100%;
  height: auto;
  display: block;
  flex: 0 0 auto;
}

.chapter-photo figcaption {
  flex: 0 0 auto;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0.55rem 0.75rem 0.65rem;
  line-height: 1.45;
  border-top: 1px solid var(--border);
  background: var(--white);
}

blockquote {
  border-left: 3px solid var(--sakura);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  background: var(--sakura-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--ink);
}

blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

/* ── Page hero (subpages) ── */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--sakura-light), var(--washi));
}

.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 0.75rem; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 40rem; margin-inline: auto; }

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-grid h4 {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--white); }

.footer-brand .footer-brand-lockup .brand-name {
  color: var(--white);
  margin: 0;
}

.footer-brand p { font-size: 0.88rem; margin-top: 0.75rem; line-height: 1.5; }
.footer-brand p.brand-name { margin-top: 0; }
.footer-manifesto {
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-nap {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.footer-nap a { color: rgba(255, 255, 255, 0.85); }
.footer-nap a:hover { color: var(--white); }

/* ── SEO / AIO FAQ (visible + schema-aligned) ── */
.seo-faq .faq-list {
  max-width: 42rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-item:first-child { padding-top: 0; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }

.faq-item dt {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.faq-item dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item dd a { color: var(--matcha); font-weight: 500; }
.faq-item dd a:hover { text-decoration: underline; }

/* ── Instagram band ── */
.ig-band {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.ig-band h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

.ig-embed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.ig-embed-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  text-align: center;
}

.ig-embed-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.ig-embed-frame {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
  background: var(--white);
}

.ig-embed-footer {
  padding: 0.85rem 1rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--washi);
}

.ig-embed-footer a {
  color: var(--sakura);
  font-weight: 700;
  font-size: 0.95rem;
}

.ig-embed-footer a:hover { color: var(--sakura-dark); }

.ig-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 36rem;
  margin: 0 auto;
}

.ig-link-card {
  display: block;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--washi);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ig-link-card:hover {
  border-color: var(--sakura-light);
  box-shadow: var(--shadow-soft);
}

.ig-link-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.ig-handle {
  color: var(--sakura);
  font-weight: 700;
  font-size: 1.05rem;
}

.ig-handle-inline {
  color: var(--sakura);
  font-weight: 600;
}

@media (max-width: 560px) {
  .ig-links { grid-template-columns: 1fr; }
  .ig-embed-grid { grid-template-columns: 1fr; }
  .ig-embed-frame { height: 460px; }
  .founder-intro-grid { grid-template-columns: 1fr; }
}

/* ── Contact form placeholder ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-card h3 { font-size: 1.25rem; margin-bottom: 1rem; }

/* ── EC Shop LP ── */
.shop-hero {
  padding: 5.5rem 0 4.5rem;
  background: linear-gradient(160deg, #2a1a1f 0%, var(--sakura-dark) 40%, #3d4a36 100%);
  color: var(--white);
  border-bottom: 1px solid rgba(166, 139, 91, 0.2);
}

.shop-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.shop-hero .eyebrow { color: var(--gold-light); border-bottom-color: rgba(166, 139, 91, 0.35); }
.shop-hero h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); margin-bottom: 1rem; }
.shop-hero-lead { font-size: 1.1rem; opacity: 0.92; max-width: 38ch; margin-bottom: 0.5rem; }
.shop-hero .btn-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  max-width: 16.5rem;
}

.shop-hero .btn-row .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  line-height: 1.2;
  border-width: 2px;
  border-style: solid;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
}

.shop-hero .btn-row button.btn {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

.shop-hero .btn-primary {
  background: var(--white);
  color: var(--sakura-dark);
  border-color: var(--white);
}
.shop-hero .btn-primary:hover { background: var(--washi); border-color: var(--washi); }

.shop-hero .btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.shop-hero .btn-outline:hover { background: var(--white); color: var(--sakura-dark); }

.shop-hero-logo-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-hero-logo {
  width: min(92%, 400px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.shop-hero-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  backdrop-filter: blur(8px);
}

.shop-hero-card h3 { font-size: 1.35rem; margin-bottom: 1rem; }
.shop-hero-stat { font-size: 0.9rem; opacity: 0.9; margin-bottom: 0.5rem; display: flex; gap: 0.5rem; align-items: baseline; }
.shop-hero-stat strong { font-size: 1.1rem; }

.trust-bar {
  background: var(--ink);
  color: rgba(255,255,255,0.8);
  padding: 1.25rem 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.trust-bar-inner span { color: var(--white); display: block; font-size: 1rem; margin-bottom: 0.2rem; font-family: 'Cormorant Garamond', serif; }

.product-card.shop {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card.shop:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.product-tag.tag-room { background: var(--matcha); }
.product-tag.tag-frozen { background: #4a6a8a; }
.product-tag.tag-chilled { background: #5a7a9a; }

.storage-block { margin-bottom: 3.5rem; }
.storage-block:last-child { margin-bottom: 0; }
.storage-head { margin-bottom: 1.25rem; }
.storage-head h3 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.storage-head p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0; }

.shop-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.shop-category-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--matcha);
  text-decoration: none;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(74, 124, 89, 0.35);
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
.shop-category-nav a:hover { background: var(--matcha); color: var(--white); border-color: var(--matcha); }

.category-block { margin-bottom: 2.75rem; }
.category-block:last-child { margin-bottom: 0; }
.category-subhead {
  margin-bottom: 1.1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border);
}
.category-subhead h4 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  margin: 0 0 0.2rem;
  color: var(--ink);
}
.category-subhead p {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0;
}
.product-card.shop .product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}

.product-card.shop .product-body h3 {
  font-size: 1.02rem;
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.product-card.shop .product-body p:not(.product-price) {
  flex: 1;
  font-size: 0.86rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.product-card.shop .product-price {
  font-weight: 700;
  color: var(--matcha);
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
  min-height: 1.35rem;
}

.product-card.shop .btn {
  margin-top: auto;
  font-size: 0.82rem;
  padding: 0.65rem 1rem;
  min-height: 2.75rem;
  width: 100%;
  justify-content: center;
}

.product-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--sakura);
  color: var(--white);
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
}

.product-card.shop .btn-add.added { background: var(--matcha); border-color: var(--matcha); }

/* ── Shop cart (WhatsApp order builder) ── */
.cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(31, 26, 20, 0.96);
  backdrop-filter: blur(8px);
  padding: 0.85rem 0;
  transform: translateY(100%);
  transition: transform 0.25s ease;
  box-shadow: 0 -4px 24px rgba(31, 26, 20, 0.15);
}

.cart-bar.is-visible { transform: translateY(0); }

.cart-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-bar-summary {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}

.cart-bar-summary strong {
  color: var(--white);
  font-size: 1.05rem;
}

.cart-bar-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--sakura);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.cart-bar-toggle:hover { background: var(--sakura-dark); }

.cart-bar-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--sakura-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.cart-drawer.is-open { pointer-events: auto; }

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 26, 20, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cart-drawer.is-open .cart-drawer-backdrop { opacity: 1; }

.cart-drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(100%, 26rem);
  background: var(--washi);
  box-shadow: -8px 0 32px rgba(31, 26, 20, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.cart-drawer.is-open .cart-drawer-panel { transform: translateX(0); }

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid var(--border);
}

.cart-drawer-head h2 {
  font-size: 1.5rem;
  margin: 0;
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 0.25rem;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.cart-empty {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
  padding: 2rem 0;
}

.cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child { border-bottom: none; }

.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.cart-item-meta {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-qty button {
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
}

.cart-qty button:hover { border-color: var(--sakura); color: var(--sakura); }

.cart-qty span {
  min-width: 1.25rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-notes-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin: 1rem 0 0.4rem;
}

.cart-notes {
  width: 100%;
  min-height: 4.5rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  resize: vertical;
  background: var(--white);
}

.product-card.shop .product-price.is-tbc {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.82rem;
}

.cart-item-line-price {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.cart-bar-subtotal {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.1rem;
}

.cart-totals {
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}

.cart-totals-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.cart-totals-row span:last-child {
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.cart-totals-muted span:last-child { color: var(--muted); font-weight: 500; }

.cart-totals-total {
  margin-top: 0.45rem;
  padding-top: 0.45rem;
  border-top: 1px dashed var(--border);
  font-size: 0.95rem;
}

.cart-totals-total span:first-child { font-weight: 700; }
.cart-totals-total span:last-child { color: var(--matcha); font-weight: 700; }

.cart-min-warning {
  font-size: 0.8rem;
  color: #9a4a2a;
  background: #fff4ec;
  border: 1px solid #e8c4a8;
  border-radius: 6px;
  padding: 0.55rem 0.65rem;
  margin: 0.5rem 0 0;
  line-height: 1.4;
}

.cart-totals-note {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0.35rem 0 0;
}

.cart-drawer-foot {
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.cart-drawer-foot .btn { width: 100%; justify-content: center; margin-bottom: 0.5rem; }

.cart-clear {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0.35rem;
  text-decoration: underline;
}

.cart-toast {
  position: fixed;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 95;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

body.cart-open { overflow: hidden; }
body.has-cart-bar { padding-bottom: 4.5rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--sakura-light);
  color: var(--sakura-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.88rem; color: var(--muted); }

.notify-band {
  background: linear-gradient(135deg, var(--sakura-light), var(--matcha-light));
  border: 2px solid var(--sakura);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
}

.notify-band h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.notify-band p { color: var(--muted); max-width: 36rem; margin: 0 auto 1.5rem; }

.gift-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.gift-band h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.gift-band p { color: var(--muted); margin-bottom: 1rem; }

/* Gift showcase collage — show full 1:1 photo, not cropped */
.gift-band .product-img.has-photo.solo {
  height: auto;
  aspect-ratio: 1;
}

.gift-band .product-img.has-photo.solo img {
  object-fit: contain;
  height: auto;
}

.nav-links a.active { color: var(--sakura); font-weight: 700; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .spirit-band { min-height: auto; }
  .spirit-band-inner { padding: 4.5rem 0; }
  .hero { padding: 1.75rem 0 2.5rem; }
  .hero-grid, .story-teaser, .loc-grid, .contact-grid, .shop-hero-grid, .gift-band { grid-template-columns: 1fr; }
  .hero-mosaic {
    grid-template-areas:
      "shop shop"
      "tea cake"
      "rak wagashi"
      "assort assort";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 118px 118px 96px;
    min-height: auto;
  }
  .card-grid, .trust-bar-inner, .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ig-embed-grid { grid-template-columns: 1fr; }
  .founder-intro-grid { grid-template-columns: 1fr; }
  .chapter { grid-template-columns: 1fr; gap: 0.5rem; }
  .chapter-photos.two-col,
  .chapter-photos.three-col { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .nav-inner { position: relative; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 5.5rem 1.25rem 2rem;
    background: rgba(248, 244, 237, 0.98);
    backdrop-filter: blur(12px);
    overflow-y: auto;
    font-size: 1.05rem;
  }
  .site-nav.nav-open .nav-links { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a {
    display: block;
    padding: 1rem 0.25rem;
  }
  .nav-links .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    display: block;
    padding: 0.85rem 1.25rem;
  }
}

@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-lockup { gap: 0.45rem; max-width: min(320px, 78vw); }
  .brand-lockup .brand-logo-full {
    height: 48px;
    max-width: 108px;
  }
  .brand-divider {
    min-height: 32px;
    max-height: 40px;
  }
  .brand-name { font-size: 0.98rem; white-space: normal; }
  .brand-tag {
    font-size: 0.55rem;
    letter-spacing: 0.07em;
  }
  .footer-brand-lockup .footer-logo {
    height: 44px;
    max-width: 100px;
  }
  .loc-store-logo {
    height: 62px;
    max-width: min(260px, 72vw);
  }
  .loc-store-logo-auh {
    height: 54px;
    max-width: 118px;
  }
  .shop-hero .btn-row {
    max-width: 100%;
  }
  .shop-hero-logo-wrap {
    padding: 0.75rem 0.85rem;
  }
  .shop-hero-logo {
    width: min(90%, 320px);
    height: auto;
  }
}

/* ── Print / PDF export ── */
@media print {
  @page { size: A4; margin: 12mm; }
  body { background: #fff; }
  .site-nav { position: static; background: #fff; backdrop-filter: none; }
  .section, .hero, .shop-hero, .trust-bar { page-break-inside: avoid; }
  .loc-card, .product-card, .why-card, .step-card { page-break-inside: avoid; }
  .btn, .nav-cta, .loc-actions, .print-btn { display: none !important; }
  .hero-visual, .loc-img, .shop-hero, .trust-bar {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}
