/* ============================================
   OUMRAK Maternity Store — style.css
   Colors: #D4A5A5 (rose) · #C47A8A (deep rose) · #2A1A1A (dark) · #FFFFFF (white)
   ============================================ */

:root {
  --rose: #D4A5A5;
  --rose-deep: #C47A8A;
  --dark: #2A1A1A;
  --white: #FFFFFF;
  --bg: #FAF5F5;
  --border: #E8D4D4;
  --text-muted: #9A7A7A;
  --font-serif: 'Playfair Display', 'Noto Serif Thai', Georgia, serif;
  --font-sans: 'Montserrat', 'Noto Sans Thai', -apple-system, sans-serif;
  --max-w: 480px;
  --pad: 22px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); background: var(--white); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── NAV ─── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px var(--pad) 12px;
  border-bottom: 0.5px solid var(--border);
}
.nav-menu {
  display: flex; flex-direction: column; gap: 5px;
  padding: 4px;
}
.nav-menu span {
  display: block; width: 20px; height: 1.5px;
  background: var(--dark); transition: all 0.3s;
}
.nav-logo { display: flex; flex-direction: column; align-items: center; }
.logo-main { font-family: var(--font-sans); font-size: 16px; font-weight: 600; letter-spacing: 4px; color: var(--dark); }
.logo-sub { font-size: 6.5px; letter-spacing: 3px; color: var(--rose); margin-top: 2px; }
.nav-right { display: flex; gap: 10px; }
.nav-icon-btn { padding: 4px; color: var(--text-muted); transition: color 0.2s; }
.nav-icon-btn:hover { color: var(--rose-deep); }

/* desktop inline nav — hidden on mobile */
.nav-desktop { display: none; }
.nav-desktop a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--dark); position: relative; padding: 4px 0;
  transition: color 0.2s;
}
.nav-desktop a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--rose-deep); transition: width 0.25s;
}
.nav-desktop a:hover { color: var(--rose-deep); }
.nav-desktop a:hover::after { width: 100%; }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: min(280px, 80vw);
  background: var(--white); z-index: 200;
  padding: 28px var(--pad);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column; gap: 0;
}
.mobile-menu.open { transform: translateX(0); }
.menu-close {
  align-self: flex-end; font-size: 18px;
  color: var(--text-muted); margin-bottom: 32px;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 0; }
.menu-link {
  font-size: 15px; font-weight: 500; color: var(--dark);
  padding: 14px 0;
  border-bottom: 0.5px solid var(--border);
  letter-spacing: 0.5px;
}
.menu-socials { display: flex; gap: 20px; margin-top: 32px; }
.menu-socials a { font-size: 11px; letter-spacing: 1.5px; color: var(--text-muted); }
.menu-overlay {
  position: fixed; inset: 0; background: rgba(42,26,26,0.4);
  z-index: 150; opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.menu-overlay.show { opacity: 1; pointer-events: all; }

/* ─── SHARED ─── */
.section { position: relative; padding: 32px var(--pad); max-width: var(--max-w); margin: 0 auto; }
/* full-bleed background that spans the whole viewport while content stays centered */
.section-alt::before {
  content: ''; position: absolute; z-index: -1;
  top: 0; bottom: 0; left: calc(50% - 50vw); width: 100vw;
  background: var(--bg);
}

.eyebrow { font-size: 8px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; display: block; }
.section-h2 { font-family: var(--font-serif); font-size: 22px; color: var(--dark); line-height: 1.28; margin-bottom: 12px; }
.body-text { font-size: 13px; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

.divider { display: flex; align-items: center; gap: 10px; padding: 0 var(--pad); margin: 28px auto; max-width: var(--max-w); }
.div-line { flex: 1; height: 0.5px; background: var(--border); }
.div-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rose); flex-shrink: 0; }

/* ─── HERO ─── */
.hero { position: relative; padding: 36px var(--pad) 0; max-width: var(--max-w); margin: 0 auto; }
.hero::before {
  content: ''; position: absolute; z-index: -1;
  top: 0; bottom: 0; left: calc(50% - 50vw); width: 100vw;
  background: var(--bg);
}
.hero-h1 { font-family: var(--font-serif); font-size: 34px; line-height: 1.18; color: var(--dark); margin-bottom: 10px; }
.hero-h1 em { font-style: italic; color: var(--rose-deep); }
.hero-sub { font-size: 13px; color: var(--text-muted); line-height: 1.75; font-weight: 300; margin-bottom: 28px; }
/* ─── HERO SLIDER (Google Sheet–driven) ─── */
.hero-slider {
  position: relative; height: 260px; border-radius: 14px;
  overflow: hidden; background: #E8CED0; touch-action: pan-y;
}
.slider-viewport { width: 100%; height: 100%; overflow: hidden; }
.slider-track { display: flex; height: 100%; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.slide {
  position: relative; flex: 0 0 100%; height: 100%;
  display: block; color: var(--white); user-select: none;
}
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.slide.ph-a { background: #ECD4D6; } .slide.ph-b { background: #E4CCCE; }
.slide.ph-c { background: #DCC4C8; } .slide.ph-d { background: #F0DADA; }
.slide-info {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; gap: 8px;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(42,26,26,0.55), transparent);
}
.slide-handle { font-size: 12px; font-weight: 600; letter-spacing: 0.3px; }
.slide-plat {
  font-size: 8px; letter-spacing: 0.8px; text-transform: uppercase; font-weight: 700;
  background: rgba(255,255,255,0.92); color: var(--rose-deep);
  padding: 3px 7px; border-radius: 20px;
}
.slide-cta { margin-left: auto; font-size: 10px; opacity: 0.92; white-space: nowrap; }

.slider-tag {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  font-size: 9px; letter-spacing: 1px; font-weight: 600;
  background: rgba(255,255,255,0.92); color: var(--dark);
  padding: 5px 10px; border-radius: 20px;
}
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.85); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  opacity: 0.9; transition: opacity 0.25s, background 0.2s;
}
.slider-arrow.prev { left: 10px; } .slider-arrow.next { right: 10px; }
.slider-arrow svg { width: 16px; height: 16px; }
.slider-arrow:hover { background: var(--white); }
.hero-slider:hover .slider-arrow { opacity: 1; }
.slider-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 6px;
}
.slider-dots button {
  width: 6px; height: 6px; border-radius: 50%; padding: 0;
  background: rgba(255,255,255,0.55); transition: all 0.25s;
}
.slider-dots button.active { background: var(--white); width: 18px; border-radius: 3px; }

/* embed mode: IG / Facebook cards inside a fixed hero frame */
.hero-slider.embeds { height: 515px; background: var(--bg); }
/* embed cards show their own username/brand — hide our overlapping labels */
.hero-slider.embeds .slider-tag,
.hero-slider.embeds .embed-handle { display: none; }
.slide-embed { background: var(--bg); overflow: hidden; }
.embed-frame { width: 100%; height: 100%; overflow: hidden; display: flex; justify-content: center; align-items: flex-start; }
.embed-frame .instagram-media,
.embed-frame .fb-post,
.embed-frame iframe { margin: 0 auto !important; max-width: 100% !important; }
.embed-handle {
  position: absolute; top: 10px; left: 12px; z-index: 4;
  font-size: 9px; font-weight: 600; letter-spacing: 0.3px;
  background: rgba(255,255,255,0.92); color: var(--dark);
  padding: 4px 9px; border-radius: 20px;
}

/* ─── TIKTOK STRIP ─── */
.tiktok-strip {
  display: flex; gap: 12px; overflow-x: auto; margin-top: 18px;
  padding-bottom: 10px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.tiktok-strip > * { flex: 0 0 auto; scroll-snap-align: start; }
.tiktok-strip .tiktok-embed { margin: 0 !important; }
.tk-card {
  width: 260px; height: 420px; border-radius: 12px; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
}
.tk-ph .tk-plh {
  font-size: 10px; color: var(--text-muted);
  background: rgba(255,255,255,0.85); padding: 5px 9px;
  margin: 0 0 14px; border-radius: 20px;
}
/* live TikTok embed cards (from the sheet) */
.tk-card.tk-live { width: 325px; height: auto; border-radius: 14px; overflow: hidden; background: var(--bg); }
.tk-card.tk-live .tiktok-embed,
.tk-card.tk-live iframe { margin: 0 !important; border-radius: 14px !important; }
.tiktok-follow { display: inline-block; margin-top: 14px; font-size: 12px; color: var(--rose-deep); font-weight: 600; }

/* ─── FOUNDER ─── */
.founder-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: 14px; padding: 14px 15px; margin-top: 16px;
  display: flex; gap: 12px; align-items: flex-start;
}
.founder-av {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--rose); display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; color: var(--white); flex-shrink: 0;
}
.founder-name { font-size: 13px; font-weight: 600; color: var(--dark); }
.founder-role { font-size: 9px; color: var(--rose); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.founder-quote { font-family: var(--font-serif); font-style: italic; font-size: 12px; color: #5A3A3A; line-height: 1.65; margin-top: 8px; }

/* ─── STATS ─── */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
.stat {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: 10px; padding: 12px 6px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.stat-n { font-family: var(--font-serif); font-size: 20px; color: var(--rose-deep); }
.stat-l { font-size: 9px; color: var(--text-muted); line-height: 1.4; }

/* ─── COLLECTION ─── */
.coll-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 16px; }
.coll-card { border: 0.5px solid var(--border); border-radius: 12px; overflow: hidden; transition: transform 0.2s; }
.coll-card:hover { transform: translateY(-2px); }
.coll-img {
  height: 110px; position: relative;
  display: flex; align-items: flex-start; padding: 10px;
}
.coll-a { background: #ECD4D6; }
.coll-b { background: #E4CCCE; }
.coll-c { background: #DCC4C8; }
.coll-d { background: #F0DADA; }
.coll-badge {
  font-size: 8px; padding: 3px 8px; border-radius: 10px;
  background: var(--white); color: var(--rose-deep); font-weight: 600; letter-spacing: 0.5px;
}
.coll-info { padding: 10px 11px; background: var(--white); }
.coll-name { font-family: var(--font-serif); font-size: 13px; color: var(--dark); margin-bottom: 3px; }
.coll-desc { font-size: 10px; color: var(--text-muted); line-height: 1.5; margin-bottom: 5px; }
.coll-link { font-size: 10px; color: var(--rose-deep); font-weight: 500; }

/* ─── WHY ─── */
.why-grid { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.why-row {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: 10px; padding: 12px 14px;
  display: flex; gap: 12px; align-items: flex-start;
}
.why-icon {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: #FBEDEF; color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 19px; height: 19px; }
.why-title { font-size: 12px; font-weight: 600; color: var(--dark); margin-bottom: 3px; }
.why-desc { font-size: 11px; color: var(--text-muted); line-height: 1.55; }

/* featured "promise" card — the honesty differentiator */
.why-feature {
  background: linear-gradient(135deg, #FDEFF1, #F6E2E7);
  border-color: #E8C4CC;
}
.why-feature .why-icon { width: 44px; height: 44px; background: var(--white); }
.why-feature .why-icon svg { width: 22px; height: 22px; }
.why-eyebrow {
  font-size: 8px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--rose-deep); font-weight: 700; margin-bottom: 4px;
}
.why-feature .why-title { font-size: 13.5px; }
.why-feature .why-desc { font-size: 11.5px; color: #6A4A4A; }

/* ─── REVIEWS ─── */
.reviews-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.rv { background: var(--white); border: 0.5px solid var(--border); border-radius: 13px; padding: 14px 15px; }
.rv-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.rv-stars { color: var(--rose-deep); font-size: 12px; letter-spacing: 1.5px; }
.rv-verified { font-size: 9px; color: #7AAA8A; }
.rv-text { font-family: var(--font-serif); font-style: italic; font-size: 12.5px; color: var(--dark); line-height: 1.55; margin-bottom: 10px; }
.rv-foot { display: flex; align-items: center; gap: 9px; }
.rv-av {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--rose); display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: var(--white); font-weight: 600; flex-shrink: 0;
}
.rv-info { flex: 1; }
.rv-name { font-size: 11px; color: var(--dark); font-weight: 500; }
.rv-meta { font-size: 9.5px; color: var(--text-muted); }
.rv-tag {
  font-size: 9px; color: #8A4A5A;
  background: #FDF0F2; padding: 3px 8px;
  border-radius: 20px; border: 0.5px solid #E8C4CC; white-space: nowrap;
}

/* ─── COMMUNITY ─── */
.comm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin-top: 14px; }
.comm-img { border-radius: 10px; overflow: hidden; position: relative; height: 90px; display: flex; align-items: flex-end; }
.comm-a { background: #ECD4D6; }
.comm-b { background: #E4CCCE; }
.comm-c { background: #DCC4C8; }
.comm-d { background: #F0DADA; }
.comm-label {
  font-size: 8.5px; color: var(--dark); opacity: 0.8;
  background: rgba(255,255,255,0.85); padding: 3px 7px; width: 100%;
}

/* ─── FAQ ─── */
.faq-list { margin-top: 16px; border: 0.5px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-item { border-bottom: 0.5px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 10px;
  padding: 14px 15px; font-size: 12px; font-weight: 600; color: var(--dark);
  text-align: left; background: var(--white);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--bg); }
.faq-icon { color: var(--rose); font-size: 16px; flex-shrink: 0; transition: transform 0.25s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 15px 14px; font-size: 11.5px;
  color: var(--text-muted); line-height: 1.65; background: var(--white);
}

/* ─── CHANNELS ─── */
.channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 16px; }
.ch {
  border: 0.5px solid var(--border); border-radius: 10px;
  padding: 12px 9px; text-align: center; background: var(--white);
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  transition: border-color 0.2s, transform 0.2s;
}
.ch:hover { border-color: var(--rose); transform: translateY(-2px); }
.ch-icon { color: var(--rose-deep); margin-bottom: 4px; line-height: 0; }
.ch-icon svg { width: 23px; height: 23px; }
.ch-name { font-size: 11px; color: var(--dark); font-weight: 600; letter-spacing: 0.3px; }
.ch-handle { font-size: 9px; color: var(--text-muted); }
.ch-note { font-size: 9px; color: var(--rose); word-break: break-all; }
.ch-line {
  grid-column: span 3;
  background: var(--dark); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px; transition: opacity 0.2s;
}
.ch-line:hover { opacity: 0.9; }
.ch-line-icon { color: var(--white); line-height: 0; }
.ch-line-icon svg { width: 22px; height: 22px; }
.ch-line-main { font-size: 13px; color: var(--white); font-weight: 600; letter-spacing: 0.5px; display: block; }
.ch-line-sub { font-size: 10px; color: var(--text-muted); display: block; margin-top: 2px; }

/* ─── STORE INFO ─── */
.store {
  margin-top: 12px; border: 0.5px solid var(--border); border-radius: 12px;
  padding: 16px; background: var(--white);
  display: flex; flex-direction: column; gap: 10px;
}
.store-name { font-family: var(--font-serif); font-size: 15px; color: var(--dark); margin-bottom: 5px; }
.store-addr { font-size: 11px; color: var(--text-muted); line-height: 1.65; margin-bottom: 8px; }
.store-tel { font-size: 13px; color: var(--dark); font-weight: 600; }
.store-map {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  font-size: 12px; color: var(--rose-deep); font-weight: 600;
}
.store-map svg { width: 15px; height: 15px; }

/* ─── FOOTER ─── */
.footer { background: var(--dark); padding: 32px var(--pad); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.ft-logo { display: flex; flex-direction: column; margin-bottom: 6px; }
.ft-logo .logo-main { color: #F5EFEF; }
.ft-logo .logo-sub { color: var(--rose); }
.ft-tagline { font-size: 11px; color: #6A5454; margin-bottom: 20px; font-weight: 300; }
.ft-links { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.ft-links a { font-size: 10px; color: #7A6464; letter-spacing: 0.5px; transition: color 0.2s; }
.ft-links a:hover { color: var(--rose); }
.ft-hr { height: 0.5px; background: #3A2A2A; margin: 14px 0; }
.ft-social { display: flex; gap: 20px; }
.ft-social a { font-size: 10px; color: #6A5454; letter-spacing: 1px; transition: color 0.2s; }
.ft-social a:hover { color: var(--rose); }
.ft-copy { font-size: 9px; color: #4E3E3E; margin-top: 14px; }

/* ─── BACK TO TOP ─── */
.back-top {
  position: fixed; bottom: 24px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--dark); color: var(--rose); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 90;
}
.back-top.show { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-2px); }

/* ─── ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── TABLET ─── */
@media (min-width: 600px) {
  :root { --pad: 32px; --max-w: 620px; }
  .hero-h1 { font-size: 44px; }
  .hero-slider { height: 340px; }
  .section-h2 { font-size: 28px; }
  .coll-img { height: 150px; }
  .comm-img { height: 130px; }
}

/* ─── DESKTOP ─── */
@media (min-width: 1024px) {
  :root { --pad: 48px; --max-w: 1120px; }

  /* nav: swap hamburger for inline menu */
  .nav { padding: 16px var(--pad); }
  .nav-menu { display: none; }
  .nav-logo { align-items: flex-start; }
  .logo-main { font-size: 19px; }
  .logo-sub { font-size: 7.5px; }
  .nav-desktop { display: flex; gap: 30px; }
  .nav-right { gap: 14px; }

  /* typography scales up for the wider canvas */
  .eyebrow { font-size: 10px; letter-spacing: 3px; margin-bottom: 12px; }
  .section-h2 { font-size: 40px; line-height: 1.2; margin-bottom: 18px; }
  .body-text { font-size: 15px; max-width: 560px; }
  .section { padding: 80px var(--pad); }
  .divider { margin: 8px auto; }

  /* HERO — two columns: text left, image right */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
    align-items: center;
    padding: 72px var(--pad) 80px;
  }
  .hero .eyebrow { grid-column: 1; grid-row: 1; align-self: end; font-size: 11px; }
  .hero-h1 { grid-column: 1; grid-row: 2; font-size: 58px; line-height: 1.12; }
  .hero-sub { grid-column: 1; grid-row: 3; align-self: start; font-size: 16px; margin-bottom: 0; }
  .hero-slider { grid-column: 2; grid-row: 1 / 4; height: 500px; border-radius: 18px; }
  .hero-slider.embeds { height: 585px; }
  .slider-arrow { opacity: 1; }
  .tk-card { width: 300px; height: 460px; }

  /* STORY — founder card + stats side by side */
  #story { display: grid; grid-template-columns: 1fr 1fr; column-gap: 56px; row-gap: 8px; align-items: start; }
  #story .eyebrow { grid-column: 1; }
  #story .section-h2 { grid-column: 1; }
  #story .body-text { grid-column: 1; }
  #story .founder-card { grid-column: 2; grid-row: 1 / 4; align-self: center; margin-top: 0; padding: 24px; }
  #story .founder-av { width: 60px; height: 60px; font-size: 19px; }
  #story .founder-name { font-size: 15px; }
  #story .founder-quote { font-size: 14px; }
  #story .stats { grid-column: 1 / 3; grid-row: 4; gap: 14px; margin-top: 24px; }
  .stat { padding: 20px 10px; }
  .stat-n { font-size: 28px; }
  .stat-l { font-size: 11px; }

  /* COLLECTION — 4 across */
  .coll-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
  .coll-img { height: 200px; }
  .coll-name { font-size: 15px; }
  .coll-desc { font-size: 11px; }
  .coll-link { font-size: 11px; }

  /* WHY — featured promise on top (full width) + 2 x 2 below */
  .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
  .why-row { padding: 20px 22px; }
  .why-icon { width: 44px; height: 44px; }
  .why-icon svg { width: 22px; height: 22px; }
  .why-title { font-size: 14px; }
  .why-desc { font-size: 12.5px; }
  .why-feature { grid-column: 1 / 3; padding: 26px 30px; gap: 16px; }
  .why-feature .why-icon { width: 52px; height: 52px; }
  .why-feature .why-icon svg { width: 26px; height: 26px; }
  .why-eyebrow { font-size: 9px; letter-spacing: 2.5px; margin-bottom: 5px; }
  .why-feature .why-title { font-size: 17px; }
  .why-feature .why-desc { font-size: 13.5px; max-width: 640px; }

  /* REVIEWS — 3 across */
  .reviews-list { flex-direction: row; gap: 16px; margin-top: 28px; }
  .rv { flex: 1; padding: 20px 22px; }
  .rv-text { font-size: 14px; }

  /* COMMUNITY — 4 across */
  .comm-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 24px; }
  .comm-img { height: 200px; }
  .comm-label { font-size: 10px; }

  /* FAQ — centered, roomier */
  .faq-list { max-width: 760px; margin-top: 28px; }
  .faq-q { font-size: 14px; padding: 20px 24px; }
  .faq-a { font-size: 13px; padding: 0 24px 20px; }

  /* CHANNELS — 3 shops across, LINE full-width below */
  .channels { grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
  .ch { padding: 22px 14px; }
  .ch-icon svg { width: 28px; height: 28px; }
  .ch-name { font-size: 13px; }
  .ch-line { grid-column: span 3; }
  .store { flex-direction: row; align-items: center; justify-content: space-between; padding: 22px 28px; }
  .store-map { align-self: center; }

  /* FOOTER */
  .footer { padding: 56px var(--pad); }
  .footer-inner { display: grid; grid-template-columns: 1fr auto; row-gap: 20px; align-items: center; }
  .ft-logo { grid-column: 1; margin-bottom: 0; }
  .ft-tagline { grid-column: 1; grid-row: 2; margin-bottom: 0; font-size: 12px; }
  .ft-links { grid-column: 2; grid-row: 1 / 3; justify-content: flex-end; gap: 24px; margin-bottom: 0; }
  .ft-hr { grid-column: 1 / 3; }
  .ft-social { grid-column: 1; }
  .ft-copy { grid-column: 2; grid-row: 4; text-align: right; margin-top: 0; align-self: center; }
}
