/* =========================================================
   Polygon Papertech — Design System
   Eco-friendly · professional · modern
   ========================================================= */

:root {
  /* Brand palette */
  --forest:   #0f3d2e;   /* deepest green, ink */
  --green:    #1f7a4d;   /* primary brand green */
  --leaf:     #34a36a;   /* bright accent green */
  --sage:     #8fb89a;
  --mint:     #e8f3ec;   /* soft green tint */
  --kraft:    #e7d9bd;   /* paper */
  --cream:    #faf8f2;   /* page background */
  --amber:    #e0a458;   /* warm accent */

  --ink:      #14241c;
  --muted:    #5b6b60;
  --line:     rgba(15, 61, 46, 0.10);
  --white:    #ffffff;

  /* Type */
  --serif: "Fraunces", Georgia, serif;
  --sans:  "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;

  /* System */
  --radius:   18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(15, 61, 46, .06);
  --shadow:    0 18px 50px -20px rgba(15, 61, 46, .28);
  --shadow-lg: 0 40px 90px -30px rgba(15, 61, 46, .35);
  --container: 1180px;
  --ease: cubic-bezier(.4, 0, .15, 1);
}

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

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 200;
  background: var(--forest); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { left: 12px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 600; line-height: 1.1; color: var(--forest); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.35rem; }
.kicker {
  display: inline-block; font-family: var(--sans); font-weight: 700; font-size: .76rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green);
  background: var(--mint); padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.kicker.center { display: block; width: max-content; margin-inline: auto; }
.kicker.light { color: #bdf0d2; background: rgba(255,255,255,.12); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: .98rem; padding: 15px 28px; border-radius: 100px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap; will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 12px 26px -10px rgba(31,122,77,.7); }
.btn-primary:hover { background: var(--forest); box-shadow: 0 18px 34px -12px rgba(31,122,77,.8); }
.btn-ghost { color: var(--forest); }
.btn-ghost:hover { color: var(--green); }
.btn-light { background: #fff; color: var(--forest); }
.btn-ghost-light { color: #eafff3; border: 1.5px solid rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0; transition: padding .3s var(--ease), background .3s, box-shadow .3s;
}
.site-header.scrolled {
  padding: 10px 0; background: rgba(250,248,242,.92);
  -webkit-backdrop-filter: saturate(150%) blur(14px); backdrop-filter: saturate(150%) blur(14px);
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 52px; width: auto; display: block; transition: height .3s var(--ease); }
.site-header.scrolled .brand-logo { height: 44px; }
/* white variant for the dark footer (logo art is green/black on transparent) */
.brand-logo--light { height: 58px; filter: brightness(0) invert(1); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a { font-weight: 600; font-size: .96rem; color: var(--ink); padding: 9px 14px; border-radius: 100px; transition: color .2s, background .2s; }
.main-nav a:hover { color: var(--green); background: var(--mint); }
.main-nav .nav-cta { background: var(--green); color: #fff; margin-left: 8px; }
.main-nav .nav-cta:hover { background: var(--forest); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--forest); border-radius: 3px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 6vw, 70px); }
.section-sub { color: var(--muted); font-size: 1.08rem; margin-top: 12px; }

/* ======================= HERO ======================= */
.hero { position: relative; padding: clamp(130px, 17vw, 200px) 0 0; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.blob-1 { width: 560px; height: 560px; background: radial-gradient(circle, #bfe9cf, transparent 70%); top: -160px; right: -120px; }
.blob-2 { width: 480px; height: 480px; background: radial-gradient(circle, #f3e6c8, transparent 70%); bottom: -180px; left: -140px; }
.leaf-pattern {
  position: absolute; inset: 0; opacity: .4;
  background-image: radial-gradient(var(--mint) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 60%);
          mask-image: linear-gradient(to bottom, #000, transparent 60%);
}

.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: .82rem;
  color: var(--green); background: var(--white); padding: 8px 16px; border-radius: 100px;
  box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 4px rgba(52,163,106,.2); }
.hero-copy h1 { margin-bottom: 22px; }
.hl { color: var(--green); position: relative; white-space: nowrap; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--muted); max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-badges li { font-weight: 600; font-size: .92rem; color: var(--forest); }

.hero-visual { position: relative; }
.hero-card { position: relative; border-radius: 28px; overflow: visible; }
.hero-card img {
  width: 100%; aspect-ratio: 1 / 1; height: auto; object-fit: cover;
  border-radius: 28px; box-shadow: var(--shadow-lg);
}
.hero-stat-chip {
  position: absolute; background: rgba(255,255,255,.96);
  padding: 14px 20px; border-radius: 16px; box-shadow: var(--shadow); display: flex; flex-direction: column;
  animation: floaty 5s ease-in-out infinite;
}
.hero-stat-chip strong { font-family: var(--serif); font-size: 1.5rem; color: var(--green); line-height: 1; }
.hero-stat-chip span { font-size: .8rem; color: var(--muted); font-weight: 600; }
.hero-stat-chip { top: 26px; left: -26px; }
.hero-stat-chip.chip-2 { top: auto; left: auto; bottom: 30px; right: -22px; animation-delay: -2.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Trust marquee */
.trust-bar { margin-top: clamp(60px, 8vw, 96px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.5); }
.marquee { overflow: hidden; padding: 18px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 34px; width: max-content; animation: scroll 32s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: 1.15rem; color: var(--green); font-weight: 500; white-space: nowrap; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ======================= ABOUT ======================= */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: auto; display: block; background: #eef0ed; }
.about-media-badge {
  position: absolute; bottom: -22px; right: -10px; background: var(--green); color: #fff;
  display: flex; align-items: center; gap: 12px; padding: 16px 22px; border-radius: 16px; box-shadow: var(--shadow);
}
.about-media-badge strong { display: block; font-family: var(--serif); font-size: 1.05rem; }
.about-media-badge span { font-size: .82rem; opacity: .85; }
.about-copy h2 { margin-bottom: 20px; }
.about-copy p { color: var(--muted); margin-bottom: 16px; max-width: 560px; }
.about-copy strong { color: var(--forest); }
.about-points { display: grid; gap: 18px; margin-top: 30px; }
.point { display: flex; gap: 16px; align-items: flex-start; }
.point-ic { font-size: 1.5rem; flex: none; background: var(--mint); width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; }
.point h4 { font-size: 1.05rem; margin-bottom: 2px; }
.point p { margin: 0; font-size: .95rem; }

/* ======================= PRODUCTS ======================= */
.products { background: linear-gradient(180deg, var(--cream), #f3efe4); }
.products-banner { border-radius: var(--radius); overflow: hidden; margin-bottom: 34px; box-shadow: var(--shadow); height: clamp(220px, 30vw, 360px); }
.products-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.pc-img {
  display: block; height: 250px; background: #eef0ed; border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.pc-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.product-card:hover .pc-img img { transform: scale(1.05); }
.product-card h3 { margin: 24px 28px 8px; }
.product-card p { color: var(--muted); font-size: .96rem; margin: 0 28px 18px; }
.product-tag { display: inline-block; margin: 0 28px 28px; font-size: .76rem; font-weight: 700; color: var(--green); background: var(--mint); padding: 6px 12px; border-radius: 100px; letter-spacing: .02em; }
.tag-link { transition: background .2s, color .2s; }
.tag-link:hover { background: var(--green); color: #fff; }
.product-card h3 a { transition: color .2s; }
.product-card h3 a:hover { color: var(--green); }
.product-tag.accent { background: var(--amber); color: #4a2f06; }
.feature-card { background: linear-gradient(160deg, #14543a, #0f3d2e); border-color: transparent; }
.feature-card h3, .feature-card .product-ic { color: #eafff3; }
.feature-card .product-ic { background: rgba(255,255,255,.12); }
.feature-card p { color: #bfe0cd; }

.product-cta {
  margin-top: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.product-cta strong { display: block; font-family: var(--serif); font-size: 1.25rem; color: var(--forest); }
.product-cta span { color: var(--muted); font-size: .95rem; }

/* ======================= IMPACT ======================= */
.impact { background: radial-gradient(120% 120% at 80% 0%, #14543a 0%, var(--forest) 55%); color: #eafff3; overflow: hidden; }
.section-head.light h2 { color: #fff; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 36px 26px; text-align: center; contain: content; }
.stat-num { font-family: var(--serif); font-size: clamp(2.4rem, 4.4vw, 3.4rem); font-weight: 600; color: #fff; display: block; line-height: 1; font-variant-numeric: tabular-nums; }
.stat-unit { display: block; margin-top: 10px; color: #aedcc1; font-weight: 600; font-size: .92rem; }
.impact-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.impact-item { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,.05); border-radius: var(--radius-sm); padding: 20px; }
.impact-item span { font-size: 1.5rem; }
.impact-item p { font-size: .95rem; color: #cfe9d8; margin: 0; }
.impact-item strong { color: #fff; }

/* ======================= CERTIFICATIONS ======================= */
.certs { background: var(--cream); }
.cert-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 14px; }
.cert { width: 144px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cert-logo {
  width: 100%; height: 96px; margin-bottom: 16px; padding: 4px 10px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease);
}
.cert-logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
.cert:hover .cert-logo { transform: translateY(-4px); }
.cert span { color: var(--muted); font-size: .85rem; line-height: 1.35; font-weight: 600; }

.made-in-india { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 48px; }
.made-in-india img { height: 58px; width: auto; }
.made-in-india span { font-family: var(--serif); color: var(--forest); font-weight: 600; font-size: 1.1rem; }

/* ======================= CUSTOMIZE ======================= */
.customize-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.customize-copy p { color: var(--muted); margin-bottom: 24px; max-width: 520px; }
.check-list { display: grid; gap: 14px; margin-bottom: 32px; }
.check-list li { position: relative; padding-left: 36px; color: var(--ink); font-weight: 500; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); color: #fff; font-size: .8rem; font-weight: 800; display: grid; place-items: center;
}
.customize-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.customize-inner { max-width: 860px; margin: 0 auto; }
.check-grid { grid-template-columns: 1fr 1fr; gap: 16px 36px; max-width: 740px; margin: 4px auto 36px; }
.customize-cta { text-align: center; }

/* ======================= PROCESS ======================= */
.process { background: linear-gradient(180deg, #f3efe4, var(--cream)); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s var(--ease); }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-no { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; color: var(--sage); display: block; line-height: 1; margin-bottom: 14px; }
.step h4 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .94rem; }

/* ======================= CTA BANNER ======================= */
.cta-banner { background: linear-gradient(rgba(13, 54, 40, .80), rgba(13, 54, 40, .88)), url('../assets/cta.jpg') center / cover no-repeat; color: #fff; padding: clamp(60px, 8vw, 96px) 0; text-align: center; }
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: #cfe9d8; font-size: 1.1rem; margin-bottom: 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ======================= CONTACT ======================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 70px); align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--muted); margin-bottom: 30px; max-width: 440px; }
.contact-list { display: grid; gap: 20px; margin-bottom: 30px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.ci-ic { font-size: 1.2rem; flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--mint); display: grid; place-items: center; }
.contact-list strong { display: block; color: var(--forest); font-family: var(--serif); margin-bottom: 2px; }
.contact-list div { color: var(--muted); font-size: .96rem; }
.contact-list a { color: var(--green); font-weight: 600; }
.socials { display: flex; gap: 12px; }
.socials a { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; color: var(--forest); padding: 8px 16px; border: 1px solid var(--line); border-radius: 100px; transition: background .2s, color .2s, border-color .2s; }
.socials a:hover { background: var(--green); color: #fff; border-color: transparent; }

.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: .88rem; color: var(--forest); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: .98rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--cream);
  transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--leaf); box-shadow: 0 0 0 4px rgba(52,163,106,.14); background: #fff;
}
.form-note { margin-top: 14px; color: var(--green); font-weight: 600; font-size: .9rem; }
.form-note.error { color: #c0392b; }
.form-note a { color: inherit; text-decoration: underline; }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

/* ======================= COLOUR STUDIO (customize) ======================= */
.colour-studio {
  background: linear-gradient(165deg, #ffffff, var(--mint));
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 28px; text-align: center;
}
.studio-tag {
  display: inline-block; font-weight: 700; font-size: .82rem; color: var(--green);
  background: #fff; padding: 7px 16px; border-radius: 100px; box-shadow: var(--shadow-sm); margin-bottom: 16px;
}
.cutlery-preview {
  background: radial-gradient(120% 120% at 50% 18%, #f3f8f4, #e4f0e8);
  border-radius: 14px; padding: 18px; margin-bottom: 18px;
}
.cutlery-preview svg { width: 100%; max-width: 280px; height: auto; display: block; margin: 0 auto; }
.cutlery-fill { transition: fill .25s var(--ease); }
.studio-note { font-size: .78rem; color: var(--muted); font-style: italic; margin: -6px 0 14px; }
.studio-label { font-size: .95rem; color: var(--muted); margin-bottom: 16px; }
.studio-label strong { color: var(--forest); }
.swatch-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 20px; }
.swatch {
  width: 34px; height: 34px; border-radius: 50%; background: var(--sw); cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(20,36,28,.18); transition: transform .2s var(--ease), box-shadow .2s;
}
.swatch:hover { transform: scale(1.12); }
.swatch.is-active { box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--leaf); transform: scale(1.08); }
.colour-any { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .9rem; color: var(--forest); cursor: pointer; }
.colour-any input[type="color"] {
  -webkit-appearance: none; appearance: none; width: 40px; height: 32px; padding: 0;
  border: 1px solid var(--line); border-radius: 8px; background: none; cursor: pointer;
}
.colour-any input[type="color"]::-webkit-color-swatch-wrapper { padding: 3px; }
.colour-any input[type="color"]::-webkit-color-swatch { border: none; border-radius: 5px; }

/* ======================= FAQ ======================= */
.faq { background: linear-gradient(180deg, var(--cream), #f3efe4); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left; padding: 24px 4px; font-family: var(--serif); font-size: 1.18rem; font-weight: 600;
  color: var(--forest); transition: color .2s;
}
.faq-q:hover { color: var(--green); }
.faq-ic { position: relative; flex: none; width: 20px; height: 20px; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: var(--green); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-ic::before { top: 9px; left: 0; width: 20px; height: 2.5px; }
.faq-ic::after { top: 0; left: 9px; width: 2.5px; height: 20px; }
.faq-item.open .faq-ic::after { transform: scaleY(0); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p { color: var(--muted); padding: 0 4px 24px; max-width: 720px; }
.faq-a-inner a { color: var(--green); font-weight: 600; }

/* ======================= READING PROGRESS (blog) ======================= */
.reading-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--leaf), var(--green)); z-index: 200;
  transition: width .1s linear; pointer-events: none;
}

/* ======================= FOOTER ======================= */
.site-footer { background: var(--forest); color: #cfe9d8; padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand p { margin-top: 16px; font-size: .95rem; max-width: 300px; color: #a9cdb8; }
.footer-col h5 { color: #fff; font-family: var(--sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; color: #a9cdb8; font-size: .95rem; margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: .88rem; color: #87b39a; flex-wrap: wrap; gap: 12px; }
.footer-eco { color: #aedcc1; font-weight: 600; }

/* ======================= BLOG ======================= */
.page-hero {
  position: relative; text-align: center; overflow: hidden;
  padding: clamp(140px, 17vw, 200px) 0 clamp(46px, 6vw, 72px);
  background: radial-gradient(120% 120% at 50% -10%, var(--mint) 0%, var(--cream) 60%);
}
.page-hero .kicker { margin-inline: auto; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { max-width: 600px; margin: 16px auto 0; color: var(--muted); font-size: 1.08rem; }

.blog-section { padding: clamp(40px, 6vw, 70px) 0 clamp(70px, 9vw, 120px); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card {
  display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.post-cover { height: 180px; display: grid; place-items: center; font-size: 3.4rem; color: #fff; }
.post-cover.c1 { background: radial-gradient(130% 130% at 20% 20%, #2a9d5a, var(--forest)); }
.post-cover.c2 { background: radial-gradient(130% 130% at 20% 20%, #3faf6e, #14543a); }
.post-cover.c3 { background: radial-gradient(130% 130% at 20% 20%, #59b97f, #1f7a4d); }
.post-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.post-cat { align-self: flex-start; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); background: var(--mint); padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; }
.post-card h3 { font-size: 1.25rem; margin-bottom: 10px; line-height: 1.2; }
.post-card h3 a { transition: color .2s; }
.post-card h3 a:hover { color: var(--green); }
.post-excerpt { color: var(--muted); font-size: .96rem; margin-bottom: 18px; flex: 1; }
.post-meta { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--muted); font-weight: 600; }
.post-meta .read-more { margin-left: auto; color: var(--green); }

/* Single article */
.article { padding: clamp(120px, 15vw, 170px) 0 clamp(60px, 8vw, 100px); }
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-back { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--green); margin-bottom: 26px; }
.article-cat { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); background: var(--mint); padding: 6px 14px; border-radius: 100px; }
.article h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin: 20px 0 16px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--muted); font-weight: 600; font-size: .92rem; padding-bottom: 28px; border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.article-cover { height: clamp(220px, 34vw, 360px); border-radius: var(--radius); margin: 30px 0 36px; display: grid; place-items: center; font-size: 5rem; color: #fff; background: radial-gradient(130% 130% at 20% 20%, #2a9d5a, var(--forest)); }
.article-cover.c2 { background: radial-gradient(130% 130% at 20% 20%, #3faf6e, #14543a); }
.article-cover.c3 { background: radial-gradient(130% 130% at 20% 20%, #59b97f, #1f7a4d); }
.article-body { font-size: 1.08rem; color: #2c3a32; line-height: 1.8; }
.article-body > p { margin-bottom: 22px; }
.article-body h2 { font-size: 1.6rem; margin: 38px 0 14px; }
.article-body h3 { font-size: 1.25rem; margin: 28px 0 10px; }
.article-body ul, .article-body ol { margin: 0 0 22px 1.1em; }
.article-body li { margin-bottom: 10px; }
.article-body strong { color: var(--forest); }
.article-body blockquote {
  margin: 28px 0; padding: 18px 26px; border-left: 4px solid var(--leaf);
  background: var(--mint); border-radius: 0 12px 12px 0; font-family: var(--serif); font-size: 1.15rem; color: var(--forest);
}
.article-cta { margin-top: 44px; padding: 32px; background: linear-gradient(160deg, #14543a, var(--forest)); border-radius: var(--radius); text-align: center; color: #fff; }
.article-cta h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.article-cta p { color: #cfe9d8; margin-bottom: 20px; }

/* ======================= PRODUCT PAGES ======================= */
.product-page-hero { padding: clamp(120px, 15vw, 175px) 0 clamp(50px, 7vw, 84px); }
.product-hero { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.product-figure {
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; min-height: 380px;
}
.product-figure img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; display: block; }
.breadcrumb { font-size: .85rem; font-weight: 600; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--green); }
.product-info h1 { font-size: clamp(2.1rem, 4.6vw, 3.1rem); margin-bottom: 16px; }
.product-lead { font-size: 1.1rem; color: var(--muted); margin-bottom: 24px; max-width: 520px; }
.product-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.spec { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.spec .spec-ic { font-size: 1.5rem; margin-bottom: 10px; display: block; }
.spec h4 { font-size: 1.05rem; margin-bottom: 6px; }
.spec p { color: var(--muted); font-size: .92rem; }

.product-certs { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: center; margin-top: 6px; }
.product-certs img { height: 42px; width: auto; }

.product-more { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.more-card { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px; transition: transform .3s var(--ease), box-shadow .3s; }
.more-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.more-card .mc-fig { width: 64px; height: 64px; flex: none; border-radius: 12px; overflow: hidden; }
.more-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.more-card strong { font-family: var(--serif); color: var(--forest); font-size: 1.1rem; }
.more-card span { display: block; color: var(--green); font-size: .85rem; font-weight: 600; }

/* ======================= CUSTOM CURSOR ======================= */
body { cursor: url('../assets/cursor-spoon.svg') 7 5, auto; }
a, button, [role="button"], select, label[for], input[type="color"], .swatch { cursor: url('../assets/cursor-spoon.svg') 7 5, pointer; }

/* ======================= SUPPLY MAP ======================= */
.supply-map { background: var(--cream); }
.map-frame {
  position: relative; width: 100%; margin-bottom: 36px;
  background: linear-gradient(165deg, #eef6f0, #e2f0e7);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(16px, 3vw, 32px);
}
.world-map-img { display: block; width: 100%; height: auto; }

/* Pins positioned over the map */
.map-pin { position: absolute; transform: translate(-50%, -50%); }
.pin-dot {
  display: block; width: 14px; height: 14px; border-radius: 50%;
  background: var(--green); border: 2.5px solid #fff;
  box-shadow: 0 2px 6px rgba(15,61,46,.4); position: relative; z-index: 2;
}
.pin-dot::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  background: var(--leaf); opacity: .5; z-index: -1;
  animation: pin-pulse 2.2s ease-out infinite;
}
.pin-label {
  position: absolute; left: 50%; bottom: calc(100% + 6px); transform: translateX(-50%);
  font-family: var(--sans); font-weight: 700; font-size: .82rem; color: var(--forest);
  background: rgba(255,255,255,.92); padding: 3px 10px; border-radius: 100px;
  box-shadow: var(--shadow-sm); white-space: nowrap;
}
.pin-d1 .pin-dot::before { animation-delay: .55s; }
.pin-d2 .pin-dot::before { animation-delay: 1.1s; }
.pin-d3 .pin-dot::before { animation-delay: 1.65s; }
@keyframes pin-pulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(3); opacity: 0; }
}

.supply-regions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.supply-region {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow-sm);
}
.sr-flag { font-size: 2rem; flex: none; }
.supply-region strong { display: block; font-family: var(--serif); color: var(--forest); font-size: 1.05rem; margin-bottom: 2px; }
.supply-region span { font-size: .85rem; color: var(--muted); }

/* ======================= REVEAL ANIMATION ======================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ======================= RESPONSIVE ======================= */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .customize-grid, .contact-grid { grid-template-columns: 1fr; }
  .product-grid, .stat-grid, .steps, .impact-strip, .supply-regions { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .product-hero { grid-template-columns: 1fr; }
  .product-figure { order: -1; max-width: 420px; margin-inline: auto; min-height: 320px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .product-more { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 10px auto 0; }
  .about-media { max-width: 460px; }
  .customize-media { order: -1; max-width: 480px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  /* backdrop-filter blur repaints slowly on mobile GPUs and leaves a "halo"
     over sections that change background colour — use a near-solid bar instead */
  .site-header.scrolled { background: rgba(250, 248, 242, .98); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); flex-direction: column;
    align-items: stretch; justify-content: flex-start; gap: 6px; padding: 96px 24px 40px;
    background: var(--cream); box-shadow: -20px 0 60px -20px rgba(0,0,0,.3);
    transform: translateX(100%); transition: transform .35s var(--ease); z-index: 105;
  }
  .main-nav.open { transform: none; }
  .main-nav a { padding: 14px 16px; font-size: 1.05rem; }
  .main-nav .nav-cta { margin: 8px 0 0; text-align: center; }
  .nav-toggle { display: flex; }
  .product-grid, .stat-grid, .steps, .impact-strip, .footer-grid, .field-row, .check-grid, .blog-grid, .spec-grid, .supply-regions { grid-template-columns: 1fr; }
  .hero-stat-chip { left: 8px; } .hero-stat-chip.chip-2 { right: 8px; }
  .product-cta { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
