/* ═══════════════════════════════════════════════════════════════
   Modern Yogi · modernyogi.co · Wholesale & Studio
   v4 — complete clean rebuild
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --teal:      #2E8B8B;
  --teal-d:    #1e6060;
  --teal-l:    #4AADAD;
  --teal-pale: #e8f5f5;
  --sage:      #8CB84A;
  --sage-l:    #a8d463;
  --sage-pale: #f0f7e4;
  --dark:      #0e1e1e;
  --off:       #fafaf8;
  --warm:      #f5f0e8;
  --text:      #3a4a4a;
  --text-l:    #6a7e7e;
  --border:    rgba(46,139,139,.12);
  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Inter', system-ui, sans-serif;
  --radius:   14px;
  --radius-l: 24px;
  --shadow:   0 8px 40px rgba(14,30,30,.09);
  --shadow-l: 0 24px 80px rgba(14,30,30,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--fb); color: var(--text); background: #fff; line-height: 1.6; overflow-x: hidden; }

h1, h2, h3, h4 { font-family: var(--fd); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.8rem); }
h4 { font-size: 1.1rem; }
em { font-style: italic; color: var(--teal); }
p  { color: var(--text); line-height: 1.78; }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

.eyebrow {
  font-family: var(--fb); font-size: .68rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--teal);
  display: block; margin-bottom: 12px;
}
.section-subtitle {
  font-size: .95rem; color: var(--text-l); line-height: 1.75;
  max-width: 560px; margin: 0 auto;
}

.container    { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 820px;  margin: 0 auto; padding: 0 40px; }
.section      { padding: 96px 0; }
.section-white { background: #fff; }
.section-off   { background: var(--off); }
.section-warm  { background: var(--warm); }
.section-dark  { background: var(--dark); color: #fff; }
.section-dark p { color: rgba(255,255,255,.5); }
.section-dark .eyebrow { color: var(--sage-l); }
.section-teal  { background: var(--teal); }

.text-center { text-align: center; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 999px;
  font-family: var(--fb); font-size: .78rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer; transition: all .2s; border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-d); border-color: var(--teal-d); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(46,139,139,.3); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-dark  { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover  { background: #1a3030; }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); }
.btn-sm { padding: 9px 20px; font-size: .72rem; }
.btn-lg { padding: 17px 40px; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(46,139,139,.1);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(14,30,30,.08); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 20px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: .76rem; font-weight: 500; padding: 7px 13px; border-radius: 999px;
  color: var(--text-l); transition: .2s; letter-spacing: .04em; text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active { color: var(--teal); background: var(--teal-pale); }
.nav-end { display: flex; align-items: center; gap: 10px; }
.nav-wa {
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
  font-size: .72rem; font-weight: 600; color: var(--teal);
  letter-spacing: .04em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  border: 1.5px solid rgba(46,139,139,.3); transition: .2s;
}
.nav-wa svg { flex-shrink: 0; }
.nav-wa:hover { background: var(--teal-pale); border-color: var(--teal); }
.hamburger { display: none; cursor: pointer; background: none; border: none; padding: 8px; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 4px 0; transition: .3s; border-radius: 2px; }
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px; z-index: 199;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 11px 14px; font-size: .9rem;
  color: var(--text); border-radius: 8px; transition: .2s;
}
.mobile-nav a:hover { background: var(--teal-pale); color: var(--teal); }
.mobile-nav-divider { border: none; border-top: 1px solid var(--border); margin: 10px 0; }

/* ── MODAL ───────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,20,20,.75); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: var(--radius-l);
  max-width: 520px; width: 100%; padding: 40px;
  position: relative; max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 14px; right: 18px;
  font-size: 1.6rem; cursor: pointer; color: var(--text-l);
  background: none; border: none; line-height: 1; padding: 4px;
}
.modal-title { font-family: var(--fd); font-size: 1.8rem; color: var(--dark); margin-bottom: 4px; }
.modal-sub { font-size: .83rem; color: var(--text-l); margin-bottom: 24px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-l); margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid #ddd; border-radius: 8px;
  font-family: var(--fb); font-size: .87rem; color: var(--dark);
  transition: border-color .2s; background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(46,139,139,.1); }
.form-group textarea { height: 90px; resize: vertical; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  background: var(--warm);
  border-top: 1px solid #ede7d9; border-bottom: 1px solid #ede7d9;
  padding: 18px 0;
}
.trust-inner {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 6px 18px;
  font-size: .73rem; font-weight: 600; color: var(--text);
  letter-spacing: .04em;
}
.trust-dot { color: var(--text-l); opacity: .35; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { background: var(--dark); padding: 64px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 52px;
}
.footer-logo { height: 60px; width: auto; display: block; margin-bottom: 16px; }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.4); line-height: 1.75; margin-bottom: 16px; max-width: 280px; }
.footer-flags {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: rgba(255,255,255,.45); margin-bottom: 16px;
}
.footer-flags .dot { color: rgba(255,255,255,.18); }
.footer-social { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.footer-social a {
  font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.1); transition: .2s;
}
.footer-social a:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.footer-email { font-size: .8rem; color: var(--teal-l); font-weight: 600; }
.footer-email:hover { color: #fff; }
.footer-col h5 {
  font-family: var(--fb); font-size: .64rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .82rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-col a:hover { color: var(--teal-l); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; padding: 22px 0;
  font-size: .7rem; color: rgba(255,255,255,.2);
}
.footer-bl-links { display: flex; gap: 18px; }
.footer-bl-links a { font-size: .7rem; color: rgba(255,255,255,.2); transition: color .2s; }
.footer-bl-links a:hover { color: rgba(255,255,255,.6); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--dark); min-height: 92vh;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(46,139,139,.18) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(140,184,74,.08) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .025;
  background-image: linear-gradient(var(--teal) 1px, transparent 1px),
                    linear-gradient(90deg, var(--teal) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; padding: 100px 0;
}
.hero-pill {
  display: inline-block; font-size: .65rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px;
  background: rgba(46,139,139,.15); color: var(--teal-l);
  border: 1px solid rgba(46,139,139,.3); margin-bottom: 22px;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero-sub { font-size: .97rem; color: rgba(255,255,255,.5); line-height: 1.82; margin-bottom: 38px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 36px; }
.hero-stat { }
.hero-stat-num { font-family: var(--fd); font-size: 2rem; font-weight: 600; color: #fff; line-height: 1; }
.hero-stat-label { font-size: .68rem; color: rgba(255,255,255,.32); letter-spacing: .06em; margin-top: 3px; }
.hero-right { display: flex; flex-direction: column; gap: 14px; }
.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-l); padding: 24px 28px; backdrop-filter: blur(12px);
}
.hero-card-badge {
  display: inline-block; font-size: .63rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px;
  border-radius: 999px; background: rgba(140,184,74,.15); color: var(--sage-l);
  border: 1px solid rgba(140,184,74,.25); margin-bottom: 10px;
}
.hero-card h3 { font-family: var(--fd); font-size: 1.2rem; color: #fff; margin-bottom: 6px; }
.hero-card p  { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.6; }

/* ── TICKER ──────────────────────────────────────────────── */
.ticker-wrap { background: var(--teal); padding: 10px 0; overflow: hidden; }
.ticker { display: flex; white-space: nowrap; animation: ticker 32s linear infinite; }
.ticker span { font-size: .68rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.75); padding: 0 26px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PRODUCT CARDS ───────────────────────────────────────── */
.product-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-l); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-l); }
.product-card-img {
  aspect-ratio: 1/1; position: relative; overflow: hidden;
  background: var(--off);
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px;
}
.badge-anchor   { background: var(--teal); color: #fff; }
.badge-seasonal { background: var(--sage); color: #fff; }
.badge-limited  { background: #8B5E2E; color: #fff; }
.badge-new      { background: var(--dark); color: #fff; }
.product-card-body { padding: 20px 22px; }
.product-card-cat  { font-size: .63rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.product-card-name { font-family: var(--fd); font-size: 1.25rem; color: var(--dark); margin-bottom: 6px; line-height: 1.2; }
.product-card-desc { font-size: .82rem; color: var(--text-l); line-height: 1.65; margin-bottom: 14px; }
.product-card-price { font-family: var(--fd); font-size: 1.4rem; color: var(--dark); margin-bottom: 16px; }
.product-card-price span { font-size: .74rem; font-family: var(--fb); color: var(--text-l); }
.product-card-actions { display: flex; gap: 8px; }
.product-card-actions .btn { flex: 1; justify-content: center; }

/* ── COLOUR SWATCH CARDS ─────────────────────────────────── */
.colour-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 16px; }
.colour-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; background: #fff; }
.colour-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.colour-swatch { height: 100px; position: relative; overflow: hidden; }
.colour-swatch img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.swatch-badge {
  position: absolute; bottom: 8px; right: 8px;
  font-size: .58rem; font-weight: 700; padding: 3px 9px;
  border-radius: 999px; backdrop-filter: blur(8px);
}
.swatch-anchor   { background: rgba(46,139,139,.9);    color: #fff; }
.swatch-seasonal { background: rgba(140,184,74,.9);   color: #fff; }
.swatch-limited  { background: rgba(139,94,46,.9);    color: #fff; }
.colour-info { padding: 12px 14px; }
.colour-name { font-family: var(--fd); font-size: 1.05rem; color: var(--dark); margin-bottom: 2px; }
.colour-desc { font-size: .75rem; color: var(--text-l); line-height: 1.5; margin-bottom: 10px; }

/* ── TIER BADGE ──────────────────────────────────────────── */
.tier-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.tier-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.tier-label { font-size: .67rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.tier-anchor   .tier-dot { background: var(--teal); } .tier-anchor   .tier-label { color: var(--teal); }
.tier-seasonal .tier-dot { background: var(--sage); } .tier-seasonal .tier-label { color: var(--sage); }
.tier-limited  .tier-dot { background: #8B5E2E; }    .tier-limited  .tier-label { color: #8B5E2E; }

/* ── SPECS TABLE ─────────────────────────────────────────── */
.specs-table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.specs-table td { padding: 11px 14px; border-bottom: 1px solid var(--border); }
.specs-table td:first-child { font-weight: 600; color: var(--text-l); width: 40%; }
.specs-table td:last-child { color: var(--dark); }
.specs-table tr:last-child td { border-bottom: none; }

/* ── PROP CARD ───────────────────────────────────────────── */
.prop-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-l);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.prop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-l); }
.prop-card-img { aspect-ratio: 1/1; overflow: hidden; background: var(--off); }
.prop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.prop-card:hover .prop-card-img img { transform: scale(1.05); }
.prop-card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.prop-card-cat  { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 5px; }
.prop-card-name { font-family: var(--fd); font-size: 1.2rem; color: var(--dark); margin-bottom: 6px; }
.prop-card-desc { font-size: .81rem; color: var(--text-l); line-height: 1.65; flex: 1; margin-bottom: 14px; }
.prop-card-price { font-family: var(--fd); font-size: 1.3rem; color: var(--dark); margin-bottom: 14px; }
.prop-card-price span { font-size: .72rem; font-family: var(--fb); color: var(--text-l); }

/* ── STUDIO KIT CARDS ────────────────────────────────────── */
.kit-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-l); overflow: hidden; transition: transform .25s, box-shadow .25s; }
.kit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-l); }
.kit-header { padding: 30px; }
.kit-hdr-teal { background: linear-gradient(135deg, var(--teal-pale), #d0eaea); }
.kit-hdr-sage { background: linear-gradient(135deg, var(--sage-pale), #ddf0c0); }
.kit-hdr-dark { background: linear-gradient(135deg, var(--dark), #1e3a3a); }
.kit-hdr-dark .kit-title { color: #fff; }
.kit-hdr-dark .kit-sub   { color: rgba(255,255,255,.4); }
.kit-icon  { font-size: 2.4rem; margin-bottom: 12px; }
.kit-title { font-family: var(--fd); font-size: 1.5rem; color: var(--dark); margin-bottom: 5px; }
.kit-sub   { font-size: .82rem; color: var(--text-l); }
.kit-body  { padding: 26px 30px; }
.kit-items { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.kit-item  { display: flex; align-items: center; gap: 11px; font-size: .83rem; color: var(--text); padding: 9px 13px; background: var(--off); border-radius: 8px; }
.kit-item-icon { width: 24px; text-align: center; flex-shrink: 0; }
.kit-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.kit-price { font-family: var(--fd); font-size: 2rem; color: var(--dark); }
.kit-price-note { font-size: .76rem; color: var(--text-l); }
.kit-discount { font-size: .74rem; font-weight: 700; color: var(--sage); background: var(--sage-pale); padding: 3px 10px; border-radius: 999px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-group { margin-bottom: 52px; scroll-margin-top: 80px; }
.faq-group-title { font-family: var(--fd); font-size: 1.7rem; color: var(--dark); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--teal-pale); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; text-align: left; padding: 17px 0;
  font-size: .88rem; font-weight: 600; color: var(--dark);
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-btn::after { content: '+'; flex-shrink: 0; font-size: 1.2rem; color: var(--teal); transition: transform .2s; }
.faq-btn.open { color: var(--teal); }
.faq-btn.open::after { transform: rotate(45deg); }
.faq-body { display: none; padding: 0 0 17px; font-size: .85rem; color: var(--text-l); line-height: 1.82; }
.faq-body p { margin-bottom: 10px; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body a { color: var(--teal); font-weight: 600; }
.faq-body strong { color: var(--dark); }
.faq-topic-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.faq-tab {
  font-size: .74rem; font-weight: 600; padding: 7px 16px; border-radius: 999px;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.15); transition: .2s;
}
.faq-tab:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band { background: var(--teal); padding: 72px 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,.65); margin-bottom: 30px; }

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero { background: var(--dark); padding: 80px 0; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero em { color: var(--teal-l); }
.page-hero p  { color: rgba(255,255,255,.45); font-size: .95rem; line-height: 1.8; }

/* ── POLICY ──────────────────────────────────────────────── */
.policy-content { padding: 60px 0 80px; }
.policy-content h2 { font-family: var(--fd); font-size: 1.5rem; color: var(--dark); margin: 34px 0 12px; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.policy-content h2:first-child { margin-top: 0; }
.policy-content h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin: 20px 0 7px; font-family: var(--fb); }
.policy-content p  { font-size: .88rem; color: var(--text); line-height: 1.82; margin-bottom: 14px; }
.policy-content ul { margin: 10px 0 16px 20px; display: flex; flex-direction: column; gap: 6px; }
.policy-content li { font-size: .86rem; color: var(--text); line-height: 1.72; }
.policy-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .83rem; border-radius: 8px; border: 1px solid var(--border); overflow: hidden; }
.policy-table th { background: var(--teal-pale); color: var(--teal-d); padding: 10px 14px; text-align: left; font-weight: 700; font-size: .76rem; }
.policy-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); }
.policy-table tr:last-child td { border-bottom: none; }

/* ── ABOUT ───────────────────────────────────────────────── */
.about-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-2col p { font-size: .9rem; color: var(--text-l); line-height: 1.85; margin-bottom: 14px; }
.about-2col h2 { margin-bottom: 16px; }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 22px 20px; }
.about-stat-num { font-family: var(--fd); font-size: 2.2rem; color: var(--teal-l); line-height: 1; margin-bottom: 5px; }
.about-stat-label { font-size: .73rem; color: rgba(255,255,255,.45); }
.about-block { border-radius: var(--radius-l); padding: 34px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 180px; }
.about-quote { font-family: var(--fd); font-size: 1.35rem; color: rgba(255,255,255,.85); line-height: 1.35; font-style: italic; }
.about-quote-sub { font-size: .7rem; color: rgba(255,255,255,.35); letter-spacing: .06em; margin-top: 8px; text-transform: uppercase; }
.about-checks { margin-top: 18px; display: flex; flex-direction: column; gap: 7px; }
.about-check { display: flex; align-items: center; gap: 10px; font-size: .83rem; color: var(--text); padding: 7px 11px; background: var(--off); border-radius: 8px; }
.phil-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.phil-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-l); padding: 30px; }
.phil-num { font-family: var(--fd); font-size: 2.8rem; color: rgba(46,139,139,.3); margin-bottom: 8px; line-height: 1; }
.phil-card h3 { font-family: var(--fd); font-size: 1.35rem; color: #fff; margin-bottom: 8px; }
.phil-card p { font-size: .82rem; color: rgba(255,255,255,.4); line-height: 1.8; margin: 0; }
.sustain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sustain-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.sustain-icon { font-size: 1.8rem; margin-bottom: 10px; }
.sustain-card h4 { font-size: .87rem; font-weight: 700; color: var(--dark); margin-bottom: 7px; }
.sustain-card p { font-size: .79rem; color: var(--text-l); line-height: 1.72; margin: 0; }
.fact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fact-card { background: var(--off); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; font-size: .82rem; color: var(--text); font-weight: 600; }
.fact-icon { font-size: 1.5rem; margin-bottom: 7px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .sustain-grid { grid-template-columns: repeat(2, 1fr); }
  .phil-grid    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links, .nav-wa { display: none; }
  .hamburger { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 70px 0; }
  .hero-right { display: none; }
  .about-2col { grid-template-columns: 1fr; gap: 32px; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 24px; }
}
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-logo  { height: 48px; }
  .footer-tagline { max-width: 100%; }
  .phil-grid     { grid-template-columns: 1fr; }
  .sustain-grid  { grid-template-columns: 1fr; }
  .fact-grid     { grid-template-columns: 1fr; }
  .form-2col     { grid-template-columns: 1fr; }
  .colour-grid   { grid-template-columns: repeat(2, 1fr); }
  .section       { padding: 64px 0; }
  .page-hero     { padding: 56px 0; }
}
