/* ══════════════════════════════════════════════════════════════════
   TAPUA — home.css
   All homepage section styles (hero, why, cats, madhubani, story,
   products, testimonials, newsletter, footer)
   ══════════════════════════════════════════════════════════════════ */

/* ── HERO ──────────────────────────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 74px);
  position: relative;
}
.hero > * { min-width: 0; }

/* LEFT */
.hero-l {
  background: var(--teal-deep);
  padding: 8vh 5vw 8vh 7vw;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-l::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 26px 26px; pointer-events: none;
}
.hero-peacock-bg {
  position: absolute; bottom: -20px; right: -20px;
  width: 280px; height: 280px; opacity: .07; pointer-events: none;
}
.hero-fish-row {
  position: absolute; top: 0; left: 0; right: 0;
  height: 36px; opacity: .18; pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-l); margin-bottom: 26px;
  position: relative; z-index: 1;
}
.hero-badge::before { content: ''; display: block; width: 26px; height: 1.5px; background: var(--gold-l); }
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4.8vw, 74px);
  line-height: 1.06; color: #FDFAF6; font-weight: 700;
  margin-bottom: 10px; position: relative; z-index: 1;
}
.hero-h1 .o { color: var(--orange); }
.hero-h1 .g { color: var(--olive-l); }
.hero-h1 em { font-style: italic; color: var(--gold-l); }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(15px, 1.5vw, 21px); font-weight: 300;
  color: rgba(253,250,246,.6); letter-spacing: .05em;
  margin-bottom: 28px; font-style: italic; position: relative; z-index: 1;
}
.hero-desc {
  font-size: 14px; line-height: 1.85; color: rgba(253,250,246,.6);
  max-width: 430px; margin-bottom: 42px; font-weight: 300;
  position: relative; z-index: 1;
}
.hero-acts {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.hero-stats {
  display: flex; gap: 26px; margin-top: 50px; padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
  position: relative; z-index: 1; flex-wrap: wrap;
}
.stat .n {
  font-family: 'Playfair Display', serif;
  font-size: 27px; font-weight: 700; color: var(--gold-l); display: block;
}
.stat .l {
  font-size: 9.5px; letter-spacing: .17em; text-transform: uppercase;
  color: rgba(253,250,246,.4); margin-top: 1px; display: block;
}

/* Madhubani edge border */
.hero-madhubani-edge {
  position: absolute; top: 0; right: 0; bottom: 0; width: 14px; z-index: 5;
}

/* RIGHT */
.hero-r {
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-r-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(232,130,154,.1) 0%, transparent 55%),
    radial-gradient(ellipse at 25% 80%, rgba(45,107,107,.08) 0%, transparent 55%);
  pointer-events: none;
}
.hero-r-top-band, .hero-r-bot-band {
  position: absolute; left: 0; right: 0; height: auto;
}
.hero-r-top-band { top: 0; }
.hero-r-bot-band { bottom: 0; transform: scaleY(-1); }
.hero-lotus-bg-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: .07; pointer-events: none;
}
.logo-wrap {
  position: relative; display: flex;
  align-items: center; justify-content: center; z-index: 2;
}
.mandala-ring { position: absolute; width: 400px; height: 400px; }
.hero-logo {
  width: 300px; height: 300px; object-fit: contain; border-radius: 50%;
  position: relative; z-index: 2;
  animation: tapua-float 5s ease-in-out infinite;
  box-shadow: 0 24px 70px rgba(30,82,82,.18), 0 8px 28px rgba(232,101,42,.1);
}
.hero-logo-placeholder {
  width: 300px; height: 300px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 120px;
  background: rgba(255,255,255,.1);
  animation: tapua-float 5s ease-in-out infinite;
}
@keyframes tapua-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

/* Floating chips */
.chip {
  position: absolute; background: #fff; border-radius: 4px;
  padding: 11px 16px; box-shadow: 0 8px 28px rgba(30,82,82,.12);
  z-index: 5; animation: tapua-cf 3.5s ease-in-out infinite;
}
.chip:nth-child(3) { animation-delay: -1.3s; }
.chip:nth-child(4) { animation-delay: -2.6s; }
@keyframes tapua-cf {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.chip.a { top: 13%; right: 4%; }
.chip.b { bottom: 15%; left: 4%; }
.chip .ct { font-size: 9px; letter-spacing: .17em; text-transform: uppercase; color: var(--olive); font-weight: 700; margin-bottom: 2px; }
.chip .cv { font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700; color: var(--teal-deep); }
.chip .cs { font-size: 10px; color: var(--ink-light); margin-top: 1px; }

/* ── WHY STRIP ─────────────────────────────────────────────────────── */
.why-strip {
  padding: 60px 7vw;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-bottom: 1px solid var(--border);
  background: var(--warm-white); position: relative;
}
.why-item {
  padding: 26px 28px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.why-item:last-child { border-right: none; }
.why-ico {
  width: 46px; height: 46px; background: var(--teal-pale); border-radius: 4px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  border: 1px solid rgba(45,107,107,.12); margin-bottom: 4px;
}
.why-t { font-weight: 700; font-size: 14px; color: var(--teal-deep); }
.why-d { font-size: 12.5px; color: var(--ink-light); line-height: 1.65; }

/* ── CATEGORIES ────────────────────────────────────────────────────── */
.cats { padding: var(--section-pad); background: var(--cream); position: relative; }
.cats-lotus-band { width: 100%; display: block; margin: 28px 0 48px; opacity: .55; }
.cat-hdr {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.see-all {
  font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal-mid); font-weight: 700; text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: gap .2s, color .2s;
}
.see-all:hover { gap: 12px; color: var(--orange); }
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.cat-card {
  background: #fff; border-radius: 6px; overflow: hidden; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid transparent; position: relative;
  text-decoration: none; color: inherit; display: block;
}
.cat-card:hover {
  transform: translateY(-5px); box-shadow: 0 16px 44px rgba(30,82,82,.1);
  border-color: rgba(45,107,107,.15);
}
.cat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  opacity: 0; transition: opacity .3s;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0, var(--orange) 8px,
    var(--gold) 8px, var(--gold) 16px,
    var(--olive) 16px, var(--olive) 24px
  );
}
.cat-card:hover::before { opacity: 1; }
.cat-ico-wrap {
  height: 134px; display: flex; align-items: center; justify-content: center;
  font-size: 52px; position: relative; overflow: hidden;
}
.cat-ico-wrap::after {
  content: ''; position: absolute;
  width: 90px; height: 90px; border-radius: 50%;
  border: 1px dashed rgba(45,107,107,.15);
}
.cat-body { padding: 16px 15px 18px; }
.cat-name { font-family: 'Playfair Display', serif; font-size: 15px; color: var(--teal-deep); font-weight: 600; margin-bottom: 3px; }
.cat-cnt { font-size: 10.5px; letter-spacing: .06em; color: var(--ink-light); font-weight: 500; }
.cat-card.big { grid-column: span 2; }
.cat-card.big .cat-ico-wrap { height: 214px; font-size: 76px; }
.cat-card.big .cat-ico-wrap::after { width: 130px; height: 130px; }
.cat-card.big .cat-name { font-size: 19px; }

/* ── MADHUBANI SHOWCASE ────────────────────────────────────────────── */
.mbd-showcase {
  background: var(--teal-deep);
  padding: 64px 7vw;
  position: relative; overflow: hidden;
}
.mbd-showcase::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.mbd-sc-inner {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 28px; align-items: center;
}
.mbd-sc-inner > * { min-width: 0; }
.mbd-sc-text { color: var(--cream); }
.mbd-sc-text .h2 { margin-bottom: 16px; }
.mbd-sc-text p { font-size: 13.5px; line-height: 1.85; color: rgba(253,250,246,.55); }
.mbd-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px; padding: 20px;
  display: flex; align-items: center; justify-content: center;
  min-height: 200px;
  position: relative; overflow: hidden;
}
.mbd-panel svg { width: 100%; height: 160px; }

/* ── BRAND STORY ───────────────────────────────────────────────────── */
.story {
  display: grid; grid-template-columns: 5fr 6fr;
  min-height: 600px;
}
.story > * { min-width: 0; }
.story-l {
  background: var(--teal-deep);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 50px;
}
.story-l::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,.04) 0%, transparent 45%),
    radial-gradient(circle at 75% 75%, rgba(232,101,42,.07) 0%, transparent 45%),
    radial-gradient(circle, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: auto, auto, 28px 28px; pointer-events: none;
}
.story-logo {
  width: 250px; height: 250px; object-fit: contain; border-radius: 50%;
  position: relative; z-index: 2;
  box-shadow: 0 0 70px rgba(232,130,154,.14), 0 0 36px rgba(30,82,82,.28);
}
.story-logo-placeholder {
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; position: relative; z-index: 2;
}
.story-rings {
  position: absolute; inset: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.sr { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.05); }
.sr:nth-child(1) { width: 310px; height: 310px; border-style: dashed; border-color: rgba(255,255,255,.07); }
.sr:nth-child(2) { width: 400px; height: 400px; }
.sr:nth-child(3) { width: 500px; height: 500px; border-color: rgba(200,134,10,.07); }
.story-edge-strip { position: absolute; right: 0; top: 0; bottom: 0; width: auto; }
.story-r {
  padding: 76px 58px 76px 66px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--warm-white); position: relative;
}
.story-fish-bg {
  position: absolute; top: 20px; right: 20px;
  width: 140px; height: 80px; opacity: .05; pointer-events: none;
}
.story-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 300; line-height: 1.9;
  color: var(--ink-mid); font-style: italic; margin-bottom: 20px;
}
.story-body { font-size: 13.5px; line-height: 1.9; color: var(--ink-light); margin-bottom: 32px; }
.pillars {
  display: flex; gap: 0; margin-bottom: 42px;
  border: 1px solid var(--border); border-radius: 5px; overflow: hidden;
}
.pillar { flex: 1; padding: 18px; border-right: 1px solid var(--border); text-align: center; }
.pillar:last-child { border-right: none; }
.pillar-ico { font-size: 22px; margin-bottom: 6px; }
.pillar-v { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; color: var(--teal-deep); }
.pillar-l { font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-light); margin-top: 2px; }

/* ── PRODUCTS GRID ─────────────────────────────────────────────────── */
.prods { padding: var(--section-pad); background: var(--cream); position: relative; }
.prods-top-band { width: 100%; display: block; margin-bottom: 60px; }
.prod-hdr {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 40px;
}
.prod-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.ptab {
  font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  padding: 7px 17px; border-radius: 100px; border: 1.5px solid var(--border);
  cursor: pointer; color: var(--ink-light); background: #fff; transition: all .2s;
}
.ptab.on, .ptab:hover { background: var(--teal-mid); color: #fff; border-color: var(--teal-mid); }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pc {
  background: #fff; border-radius: 6px; overflow: hidden;
  transition: transform .3s, box-shadow .3s; cursor: pointer;
  border: 1px solid var(--border); position: relative;
  display: flex; flex-direction: column;
}
.pc:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(30,82,82,.1); }
.pi {
  width: 100%; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 58px; position: relative; overflow: hidden;
}
.pi::before {
  content: ''; position: absolute;
  width: 130px; height: 130px; border-radius: 50%;
  border: 1px dashed rgba(45,107,107,.14);
}
.pi::after {
  content: ''; position: absolute;
  width: 96px; height: 96px; border-radius: 50%;
  border: 1px dashed rgba(45,107,107,.08);
}
.pbadge {
  position: absolute; top: 11px; left: 11px;
  font-size: 9px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; padding: 3px 9px; border-radius: 2px;
  z-index: 2;
}
.pb-b { background: var(--orange); color: #fff; }
.pb-n { background: var(--olive); color: #fff; }
.pb-s { background: var(--teal-mid); color: #fff; }
.pb { padding: 16px 17px 18px; flex: 1; display: flex; flex-direction: column; }
.po { font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--olive); font-weight: 700; margin-bottom: 4px; }
.pn { font-family: 'Nunito', sans-serif; font-size: clamp(13px, 1.2vw, 15px); font-weight: 600; color: var(--teal-deep); margin-bottom: 5px; line-height: 1.35; }
.pn a { text-decoration: none; color: inherit; }
.pd {
  font-size: 12px; color: var(--ink-light); line-height: 1.6; margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pf { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; }
.pp { font-family: 'Nunito', sans-serif; font-size: clamp(14px, 1.3vw, 17px); color: var(--teal-deep); font-weight: 800; }
.pp .u { font-family: 'Nunito', sans-serif; font-size: 10.5px; color: var(--ink-light); font-weight: 400; margin-left: 2px; }
.ac, .pc .add_to_cart_button, .pc .button {
  height: 34px; padding: 0 13px; background: var(--orange); color: #fff;
  border: none; border-radius: 3px; font-size: 10.5px; font-weight: 700;
  letter-spacing: .05em; cursor: pointer; transition: background .2s;
  font-family: 'Nunito', sans-serif; text-decoration: none;
  display: inline-flex; align-items: center;
}
.ac:hover, .pc .add_to_cart_button:hover, .pc .button:hover { background: var(--teal-deep); }

/* Hide WooCommerce "View Cart" link on product cards */
.pc .added_to_cart { display: none !important; }

/* Inline cart counter (replaces Add to Cart button) */
.tapua-cart-counter {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  animation: tapua-counter-in .3s ease;
  transition: opacity .2s;
}
.tapua-cart-counter.tapua-cc-updating {
  opacity: .55;
  pointer-events: none;
}
.tapua-cc-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--teal-pale);
  color: var(--teal-deep);
  font-size: 16px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  line-height: 1;
  padding: 0;
}
.tapua-cc-btn:hover {
  background: var(--teal-mid);
  color: #fff;
}
.tapua-cc-dec:hover {
  background: #f5dede;
  color: #c0392b;
}
.tapua-cc-qty {
  min-width: 30px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--teal-deep);
  background: #fff;
  user-select: none;
}
@keyframes tapua-counter-in {
  0% { opacity: 0; transform: scale(.85); }
  100% { opacity: 1; transform: scale(1); }
}

/* WooCommerce price inside grid */
.pc .price { font-family: 'Nunito', sans-serif; font-size: clamp(14px, 1.3vw, 17px); color: var(--teal-deep); font-weight: 800; }
.pc .price del { font-size: 12px; color: var(--ink-light); font-weight: 400; margin-right: 4px; }
.pc .price ins { text-decoration: none; }

/* ── TESTIMONIALS ──────────────────────────────────────────────────── */
.tests { padding: var(--section-pad); background: var(--warm-white); position: relative; }
.test-hdr { text-align: center; margin-bottom: 52px; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tc {
  background: #fff; border-radius: 6px; padding: 34px 28px 30px;
  border: 1px solid var(--border); position: relative;
  transition: border-color .3s, transform .3s; overflow: hidden;
}
.tc:hover { border-color: rgba(45,107,107,.3); transform: translateY(-4px); }
.tc-corner { position: absolute; top: 0; right: 0; width: 64px; height: 64px; opacity: .12; }
.tqm {
  font-family: 'Playfair Display', serif; font-size: 72px;
  color: rgba(45,107,107,.08); line-height: .6; margin-bottom: 18px; display: block;
}
.ts { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 12px; }
.tt {
  font-family: 'Cormorant Garamond', serif; font-size: 17.5px;
  line-height: 1.8; color: var(--ink-mid); font-weight: 300; margin-bottom: 22px;
}
.ta { display: flex; align-items: center; gap: 11px; padding-top: 18px; border-top: 1px solid var(--border); }
.tav {
  width: 40px; height: 40px; border-radius: 50%; background: var(--teal-pale);
  border: 2px solid rgba(45,107,107,.15); display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.tn { font-weight: 700; font-size: 13px; color: var(--teal-deep); }
.tl { font-size: 11px; color: var(--ink-light); margin-top: 1px; }
.tc.feat { border-top: 3px solid var(--teal-mid); }

/* ── NEWSLETTER ────────────────────────────────────────────────────── */
.nl-sec {
  background: var(--teal-deep);
  position: relative; overflow: hidden;
  /* Full viewport width bleed */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  /* Pad the inner content to perfectly match the 1440px site alignment */
  padding: 78px max(7vw, calc(50vw - 720px + 7vw));
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.nl-sec > * { min-width: 0; }
.nl-sec::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 26px 26px; pointer-events: none;
}
.nl-peacock-bg {
  position: absolute; right: -30px; bottom: -20px;
  width: 320px; height: 320px; opacity: .06; pointer-events: none;
}
.nl-top-band { position: absolute; top: 0; left: 0; right: 0; }
.nl-l { position: relative; z-index: 1; }
.nl-t {
  font-family: 'Playfair Display', serif; font-size: clamp(24px, 2.6vw, 40px);
  color: #FDFAF6; font-weight: 700; line-height: 1.15; margin-bottom: 13px;
}
.nl-t em { color: var(--gold-l); font-style: italic; }
.nl-d { font-size: 13.5px; color: rgba(253,250,246,.5); line-height: 1.75; }
.nl-r { position: relative; z-index: 1; }
.nl-form { display: flex; flex-direction: column; gap: 11px; }
.nl-inp {
  width: 100%; padding: 14px 17px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 3px; color: #fff; font-size: 13.5px; font-family: 'Nunito', sans-serif;
  outline: none; transition: border-color .2s;
}
.nl-inp::placeholder { color: rgba(255,255,255,.3); }
.nl-inp:focus { border-color: var(--gold-l); }
.nl-sub {
  background: var(--orange); color: #fff; border: none; padding: 14px; border-radius: 3px;
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  cursor: pointer; font-family: 'Nunito', sans-serif; transition: background .2s;
}
.nl-sub:hover { background: var(--orange-s); }
.nl-perks { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 8px; }
.nl-pk { font-size: 11px; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 5px; }
.nl-pk::before { content: '✓'; color: var(--olive-l); font-weight: 700; }

/* ── FOOTER ────────────────────────────────────────────────────────── */
footer { position: relative; background: var(--ink); padding: 58px 7vw 26px; color: rgba(253,250,246,.43); }
footer .page-strip-bot { position: absolute; top: 0; left: 0; width: 100%; }
.ft-top {
  display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 44px;
  margin-bottom: 44px; padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ft-brand .custom-logo { height: 58px; width: 58px; border-radius: 50%; object-fit: contain; margin-bottom: 14px; display: block; }
.ft-bn { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; color: rgba(253,250,246,.85); letter-spacing: .05em; margin-bottom: 4px; }
.ft-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; color: var(--gold-l); opacity: .8; margin-bottom: 9px; }
.ft-bd { font-size: 12.5px; line-height: 1.8; max-width: 275px; margin-bottom: 22px; }
.ft-soc { display: flex; gap: 7px; }
.sb {
  width: 35px; height: 35px; background: rgba(255,255,255,.05); border-radius: 3px;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  cursor: pointer; transition: background .2s;
  border: 1px solid rgba(255,255,255,.06); text-decoration: none; color: rgba(253,250,246,.6);
}
.sb:hover { background: var(--teal-mid); color: #fff; }
.ft-col h4 { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: rgba(253,250,246,.7); margin-bottom: 18px; font-weight: 700; }
.ft-col ul { list-style: none; }
.ft-col li { margin-bottom: 9px; }
.ft-col a, .ft-col ul a { text-decoration: none; font-size: 12.5px; color: rgba(253,250,246,.36); transition: color .2s; }
.ft-col a:hover, .ft-col ul a:hover { color: var(--gold-l); }
.ft-bot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 9px; }
.ft-bot > * { min-width: 0; }
.ft-bot p { font-size: 11.5px; }
.ft-bl { display: flex; gap: 16px; flex-wrap: wrap; }
.ft-bl a { font-size: 11.5px; color: rgba(253,250,246,.26); text-decoration: none; transition: color .2s; }
.ft-bl a:hover { color: rgba(253,250,246,.6); }

/* ── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-r { height: 480px; }
  .hero-logo { width: 260px; height: 260px; }
  .mandala-ring { width: 340px; height: 340px; }
  .why-strip { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(2) { border-right: none; }
  .why-item:nth-child(3), .why-item:nth-child(4) { border-top: 1px solid var(--border); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-card.big { grid-column: span 1; }
  .cat-card.big .cat-ico-wrap { height: 134px; font-size: 52px; }
  .mbd-sc-inner { grid-template-columns: 1fr 1fr; }
  .story { grid-template-columns: 1fr; }
  .story-l { height: 360px; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .nl-sec { grid-template-columns: 1fr; gap: 40px; }
  .ft-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .hero-l { padding: 50px 5vw; }
  .hero-r { height: 380px; }
  .hero-logo { width: 200px; height: 200px; }
  .chip { display: none; }
  .why-strip { grid-template-columns: 1fr; padding: var(--section-pad-sm); }
  .why-item { border-right: none; border-bottom: 1px solid var(--border); }
  .why-item:last-child { border-bottom: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card.big { grid-column: span 2; }
  .mbd-sc-inner { grid-template-columns: 1fr; }
  .story-r { padding: 50px 5vw; }
  .prod-grid { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; gap: 28px; }
  .pillars { flex-wrap: wrap; }
  .pillar { flex: 1 1 45%; }
  .nl-sec {
    margin-left: 0;
    margin-right: 0;
    padding: 60px 5vw;
  }
}
@media (max-width: 420px) {
  .prod-grid, .cat-grid { grid-template-columns: 1fr; }
  .cat-card.big { grid-column: span 1; }
}
