﻿/* ============================================================
   Dutch & Habro India â€” Site Stylesheet
   Design system replicated from dutchnhabro.com (UAE site)
   ============================================================ */

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+00??, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --color-primary: #2b1f28;      /* warm dark plum — text/headings (no blue, no black) */
  --color-accent: #da067a;       /* brand pink — the primary colour */
  --color-accent-dark: #b00560;
  --color-accent-light: #e84a9a;
  --color-surface: #ffffff;
  --color-surface-warm: #fbf4f8;  /* soft pink-tinted light */
  --color-surface-dark: #3a0f27;  /* deep wine (pink family) — footer & grounding only */
  --color-text: #2b1f28;
  --font-sans: 'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- layout helpers ---------- */
.container-wide { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
@media (min-width: 1024px) { .section-pad { padding: 128px 0; } }

.bg-warm  { background: var(--color-surface-warm); }
.bg-dark  { background: var(--color-surface-dark); color: #fff; }
.bg-white { background: var(--color-surface); }

/* ---------- typography ---------- */
.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(43,31,40,0.35);
}
.bg-dark .label, .on-dark .label { color: rgba(255,255,255,0.4); }
.label.accent { color: var(--color-accent); }

.heading-xl { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 300; line-height: 1.06; letter-spacing: -0.02em; }
.heading-lg { font-size: clamp(2rem, 4.4vw, 3.2rem);  font-weight: 300; line-height: 1.12; letter-spacing: -0.015em; }
.heading-md { font-size: clamp(1.5rem, 3vw, 2.1rem);  font-weight: 400; line-height: 1.2; }
.heading-xl strong, .heading-lg strong { font-weight: 600; }

.body-lg { font-size: 1.0625rem; line-height: 1.75; color: rgba(43,31,40,0.6); }
.bg-dark .body-lg { color: rgba(255,255,255,0.55); }
.accent-text { color: var(--color-accent); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  border: 1px solid transparent;
}
.btn-accent { background: var(--color-accent); color: #fff; }
.btn-accent:hover { background: var(--color-accent-dark); transform: scale(1.03); box-shadow: 0 10px 30px rgba(218,6,122,.25); }
.btn-outline { border-color: rgba(43,31,40,.25); color: var(--color-primary); }
.btn-outline:hover { background: rgba(43,31,40,.06); }
.btn-outline-light { border-color: rgba(255,255,255,.3); color: #fff; backdrop-filter: blur(4px); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.btn-dark { background: var(--color-primary); color: #fff; }
.btn-dark:hover { background: #1f1620; transform: scale(1.03); }

.btn .arrow { display: inline-block; transition: transform .3s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s, box-shadow .4s, padding .4s;
  padding: 20px 0;
}
.site-header .container-wide { display: flex; align-items: center; justify-content: space-between; }
.site-header.scrolled, .site-header.solid {
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(43,31,40,.06);
  padding: 12px 0;
}
.brand-lockup { display: flex; align-items: center; gap: 12px; }
.brand-lockup img { height: 40px; width: auto; }
.brand-lockup .logo-dark { display: none; }
.brand-lockup .india-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: #fff; border: 1px solid rgba(255,255,255,.4);
  padding: 3px 8px; border-radius: 3px;
}
.site-header.scrolled .logo-white, .site-header.solid .logo-white { display: none; }
.site-header.scrolled .logo-dark,  .site-header.solid .logo-dark  { display: block; }
.site-header.scrolled .india-tag, .site-header.solid .india-tag {
  color: var(--color-accent); border-color: rgba(218,6,122,.45);
}

.main-nav { display: flex; align-items: center; gap: 36px; }
.main-nav a {
  font-size: 13px; font-weight: 500; letter-spacing: .04em;
  color: rgba(255,255,255,.75); transition: color .3s;
}
.main-nav a:hover, .main-nav a.active { color: #fff; }
.site-header.scrolled .main-nav a, .site-header.solid .main-nav a { color: rgba(43,31,40,.6); }
.site-header.scrolled .main-nav a:hover, .site-header.solid .main-nav a:hover,
.site-header.scrolled .main-nav a.active, .site-header.solid .main-nav a.active { color: var(--color-primary); }
.main-nav .btn { padding: 10px 24px; }

.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; position: relative; z-index: 210; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; margin: 5px auto;
  background: #fff; transition: all .3s;
}
.site-header.scrolled .nav-toggle span, .site-header.solid .nav-toggle span { background: var(--color-primary); }

@media (max-width: 900px) {
  .main-nav {
    position: fixed; inset: 0; background: var(--color-surface-dark);
    flex-direction: column; justify-content: center; gap: 28px;
    opacity: 0; pointer-events: none; transition: opacity .35s;
    z-index: 200;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .main-nav a { color: rgba(255,255,255,.8) !important; font-size: 18px; }
  .nav-toggle { display: block; }
  body.nav-open .nav-toggle span { background: #fff !important; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- hero (home) ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--color-surface-dark); color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(58,15,39,.88) 18%, rgba(160,5,92,.55) 65%, rgba(218,6,122,.4));
}
.hero-content { position: relative; z-index: 2; padding: 140px 0 100px; max-width: 720px; }
.hero-content h1 { margin: 22px 0 26px; }
.hero-content .body-lg { color: rgba(255,255,255,.55); max-width: 540px; margin-bottom: 40px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  position: relative; padding: 200px 0 110px;
  background: linear-gradient(150deg, #3a0f27 0%, #a0055c 60%, #da067a 100%);
  color: #fff; overflow: hidden;
}
.page-hero .bg { position: absolute; inset: 0; }
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.page-hero .container-wide { position: relative; z-index: 2; }
.page-hero h1 { margin: 20px 0 24px; max-width: 800px; }
.page-hero p { max-width: 620px; color: rgba(255,255,255,.55); font-size: 1.0625rem; }

/* ---------- stats ---------- */
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: rgba(43,31,40,.08);
  border-top: 1px solid rgba(43,31,40,.08);
  border-bottom: 1px solid rgba(43,31,40,.08);
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-cell { background: var(--color-surface); padding: 56px 24px; text-align: center; }
.stat-cell .num {
  font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 300; letter-spacing: -.02em;
  color: var(--color-primary);
}
.stat-cell .num em { font-style: normal; color: var(--color-accent); }
.stat-cell .lbl {
  margin-top: 10px; font-size: 11px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: rgba(43,31,40,.35);
  white-space: pre-line;
}

/* dark variant (sustainability page) */
.stats-grid.dark { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.08); }
.stats-grid.dark .stat-cell { background: var(--color-surface-dark); }
.stats-grid.dark .num { color: #fff; }
.stats-grid.dark .lbl { color: rgba(255,255,255,.35); }

/* ---------- two-column feature ---------- */
.split { display: grid; gap: 56px; align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1fr 1fr; gap: 96px; } }
.split .img-wrap { position: relative; overflow: hidden; }
.split .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.16,1,.3,1); }
.split .img-wrap:hover img { transform: scale(1.04); }
.split h2 { margin: 18px 0 24px; }
.split p + p { margin-top: 18px; }
.split .btn { margin-top: 34px; }

/* ---------- principles / numbered cards ---------- */
.numbered-grid { display: grid; gap: 1px; background: rgba(43,31,40,.06); border: 1px solid rgba(43,31,40,.06); }
@media (min-width: 700px)  { .numbered-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .numbered-grid { grid-template-columns: repeat(4, 1fr); } }
.numbered-grid.cols-3 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 700px)  { .numbered-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.num-card { background: var(--color-surface); padding: 44px 32px; transition: background .4s; }
.num-card:hover { background: var(--color-surface-warm); }
.num-card .idx { font-size: 13px; font-weight: 600; color: var(--color-accent); letter-spacing: .1em; }
.num-card h3 { font-size: 1.2rem; font-weight: 500; line-height: 1.3; margin: 16px 0 14px; white-space: pre-line; }
.num-card p { font-size: .92rem; color: rgba(43,31,40,.55); line-height: 1.7; }

/* ---------- brand grid (home) ---------- */
.brand-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(43,31,40,.06); border: 1px solid rgba(43,31,40,.06); }
@media (min-width: 900px) { .brand-grid { grid-template-columns: repeat(3, 1fr); } }
.brand-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; min-height: 240px; background: var(--color-surface); padding: 40px 20px; text-align: center; transition: background .4s; min-width: 0; overflow: hidden; }
.brand-card:hover { background: var(--color-surface-warm); }
.brand-card .logo-box { display: flex; align-items: center; justify-content: center; width: 100%; height: 72px; }
.brand-card img { max-height: 72px; max-width: 90%; width: auto; height: auto; margin: 0; object-fit: contain; }
.brand-card .cat { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(43,31,40,.4); font-weight: 600; line-height: 1.5; }
@media (max-width: 480px) { .brand-card { min-height: 200px; padding: 32px 16px; gap: 18px; } .brand-card .logo-box { height: 60px; } .brand-card img { max-height: 60px; } }

/* ---------- checklist (sustainability band) ---------- */
.check-list { list-style: none; display: grid; gap: 20px; margin-top: 10px; }
.check-list li { display: flex; gap: 16px; align-items: flex-start; font-size: 1rem; color: rgba(255,255,255,.75); }
.check-list li::before {
  content: ''; flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px;
  border-radius: 50%; background: var(--color-accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/14px no-repeat, linear-gradient(#fff,#fff);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/14px no-repeat, linear-gradient(#fff,#fff);
  -webkit-mask-composite: destination-out; mask-composite: exclude;
}

/* ---------- map section ---------- */
.map-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.map-filters button {
  font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  padding: 9px 18px; background: transparent; border: 1px solid rgba(43,31,40,.08);
  color: rgba(43,31,40,.4); transition: all .3s;
}
.map-filters button:hover { border-color: rgba(43,31,40,.25); color: rgba(43,31,40,.7); }
.map-filters button.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.map-wrap { max-width: 1000px; margin: 0 auto; position: relative; }
.map-wrap svg { width: 100%; height: auto; max-height: 480px; }
.map-wrap .geo { fill: #e8e6e1; stroke: #d5d2cc; stroke-width: .4; }
.map-wrap .marker-dot { fill: var(--color-accent); transition: opacity .5s; }
.map-wrap .marker-ring { fill: none; stroke: var(--color-accent); stroke-width: 1; transform-origin: center; }
.map-wrap .marker.dim { opacity: .08; }
.map-wrap .marker .ping { animation: mapPing 2.5s ease-in-out infinite; }
@keyframes mapPing {
  0% { opacity: .5; transform: scale(.6); }
  70% { opacity: 0; transform: scale(1.8); }
  100% { opacity: 0; transform: scale(1.8); }
}
.map-stats { display: flex; justify-content: center; gap: clamp(32px, 8vw, 96px); margin-top: 48px; text-align: center; }
.map-stats .num { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 300; }
.map-stats .num em { font-style: normal; color: var(--color-accent); }
.map-stats .lbl { font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(43,31,40,.35); margin-top: 6px; }

/* ---------- impact cards ---------- */
.impact-grid { display: grid; gap: 28px; }
@media (min-width: 700px)  { .impact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .impact-grid { grid-template-columns: repeat(4, 1fr); } }
.impact-card { background: var(--color-surface); border: 1px solid rgba(43,31,40,.06); overflow: hidden; display: flex; flex-direction: column; }
.impact-card .img { aspect-ratio: 4/3; overflow: hidden; }
.impact-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.16,1,.3,1); }
.impact-card:hover .img img { transform: scale(1.05); }
.impact-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.impact-card .idx { font-size: 12px; font-weight: 600; color: var(--color-accent); }
.impact-card h3 { font-size: 1.05rem; font-weight: 600; margin: 12px 0 10px; line-height: 1.35; }
.impact-card p { font-size: .88rem; color: rgba(43,31,40,.55); line-height: 1.65; flex: 1; }
.impact-card .stat { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(43,31,40,.08); }
.impact-card .stat .num { font-size: 1.7rem; font-weight: 300; color: var(--color-primary); }
.impact-card .stat .lbl { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(43,31,40,.35); }

/* ---------- retailers marquee ---------- */
.marquee { overflow: hidden; position: relative; }
.marquee-track { display: flex; align-items: center; gap: 72px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img { height: 44px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .55; transition: all .3s; }
.marquee-track img:hover { filter: none; opacity: 1; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin: 18px auto 20px; max-width: 720px; }
.cta-band p { max-width: 560px; margin: 0 auto 40px; }
.cta-band .actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ---------- portfolio ---------- */
.brand-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 20px; position: sticky; top: 64px; z-index: 50; background: rgba(255,255,255,.95); backdrop-filter: blur(8px); padding: 16px 0; }
.brand-tabs button {
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 20px; border: 1px solid rgba(43,31,40,.1); background: transparent;
  color: rgba(43,31,40,.45); transition: all .3s;
}
.brand-tabs button:hover { border-color: rgba(43,31,40,.3); color: var(--color-primary); }
.brand-tabs button.active { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }

.brand-section { padding: 72px 0 24px; }
.brand-head { display: grid; gap: 40px; align-items: center; margin-bottom: 56px; }
@media (min-width: 1024px) { .brand-head { grid-template-columns: 1.2fr 1fr; gap: 80px; } }
.brand-head h2 { margin: 16px 0 18px; }
.brand-head p { color: rgba(43,31,40,.55); max-width: 560px; }
.brand-head .meta { margin-top: 22px; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(43,31,40,.35); }
.brand-head .meta em { font-style: normal; color: var(--color-accent); }
.brand-head .img-wrap { aspect-ratio: 4/3; overflow: hidden; background: var(--color-surface-warm); }
.brand-head .img-wrap img.cover   { width: 100%; height: 100%; object-fit: cover; }
.brand-head .img-wrap img.contain { width: 100%; height: 100%; object-fit: contain; padding: 40px; }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(43,31,40,.05); border: 1px solid rgba(43,31,40,.05); }
@media (min-width: 700px)  { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
.product-card { background: #fff; position: relative; overflow: hidden; }
.product-card .ph { aspect-ratio: 1/1; position: relative; overflow: hidden; }
.product-card .ph img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 18px; opacity: .9;
  transition: all .7s cubic-bezier(.16,1,.3,1);
}
.product-card:hover .ph img { opacity: 1; transform: scale(1.05); }
.product-card .ph .tag {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(58,15,39,0); color: #fff; font-size: 11px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; opacity: 0;
  transition: all .5s;
}
.product-card:hover .ph .tag { background: rgba(58,15,39,.3); opacity: 1; }
.product-card .info { padding: 20px; }
.product-card .info h3 { font-size: 14px; font-weight: 500; line-height: 1.4; transition: color .3s; }
.product-card:hover .info h3 { color: var(--color-accent); }
.product-card .info span { display: block; margin-top: 4px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(43,31,40,.25); font-weight: 500; }

/* ---------- timeline (about) ---------- */
.timeline { display: grid; gap: 1px; background: rgba(43,31,40,.06); border: 1px solid rgba(43,31,40,.06); }
@media (min-width: 900px) { .timeline { grid-template-columns: repeat(4, 1fr); } }
.tl-item { background: var(--color-surface); padding: 44px 32px; }
.tl-item .year { font-size: 2rem; font-weight: 300; color: var(--color-accent); }
.tl-item h3 { font-size: 1.05rem; font-weight: 600; margin: 14px 0 10px; }
.tl-item p { font-size: .9rem; color: rgba(43,31,40,.55); line-height: 1.65; }

/* ---------- vision cards ---------- */
.vision-grid { display: grid; gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08); }
@media (min-width: 900px) { .vision-grid { grid-template-columns: repeat(3, 1fr); } }
.vision-card { background: var(--color-surface-dark); padding: 48px 36px; }
.vision-card .lbl { font-size: 11px; font-weight: 700; letter-spacing: .25em; color: var(--color-accent); }
.vision-card p { margin-top: 18px; color: rgba(255,255,255,.65); line-height: 1.75; }

/* ---------- pillars (sustainability) ---------- */
.pillar-grid { display: grid; gap: 28px; }
@media (min-width: 900px) { .pillar-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar-card { position: relative; overflow: hidden; aspect-ratio: 3/4; display: flex; align-items: flex-end; }
.pillar-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.16,1,.3,1); }
.pillar-card:hover img { transform: scale(1.05); }
.pillar-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,.85), rgba(10,10,10,.1) 55%); }
.pillar-card .body { position: relative; z-index: 2; padding: 32px; color: #fff; }
.pillar-card h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; }
.pillar-card p { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.65; }

/* ---------- contact ---------- */
.contact-cards { display: grid; gap: 1px; background: rgba(43,31,40,.06); border: 1px solid rgba(43,31,40,.06); }
@media (min-width: 900px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.contact-card { background: var(--color-surface); padding: 44px 32px; }
.contact-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; }
.contact-card p { font-size: .92rem; color: rgba(43,31,40,.55); line-height: 1.7; }

.contact-layout { display: grid; gap: 64px; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 1.2fr; gap: 96px; } }

.contact-info h2 { margin: 16px 0 30px; }
.info-block { padding: 26px 0; border-top: 1px solid rgba(43,31,40,.08); }
.info-block .lbl { font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(43,31,40,.35); margin-bottom: 8px; }
.info-block p, .info-block a { font-size: 1rem; color: rgba(43,31,40,.75); line-height: 1.7; }
.info-block a:hover { color: var(--color-accent); }

.contact-form { background: var(--color-surface); border: 1px solid rgba(43,31,40,.08); padding: clamp(28px, 4vw, 56px); }
.contact-form .response-tag { font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--color-accent); }
.contact-form h2 { font-size: 1.7rem; font-weight: 400; margin: 12px 0 34px; }
.form-row { display: grid; gap: 24px; margin-bottom: 24px; }
@media (min-width: 700px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(43,31,40,.4); margin-bottom: 10px; }
.field input, .field select, .field textarea {
  width: 100%; border: 0; border-bottom: 1px solid rgba(43,31,40,.15);
  background: transparent; padding: 10px 2px; font-family: inherit; font-size: 15px;
  color: var(--color-primary); outline: none; transition: border-color .3s;
  border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--color-accent); }
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: .8rem; color: rgba(43,31,40,.4); margin-top: 18px; }

/* ---------- footer ---------- */
.site-footer { background: var(--color-surface-dark); color: #fff; padding: 76px 0 34px; }
.footer-grid { display: grid; gap: 40px 48px; margin-bottom: 52px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 2.2fr 1fr 1.2fr 1fr; } }
.footer-brand { max-width: 340px; }
.site-footer .logo { height: 44px; width: auto; margin-bottom: 20px; }
.site-footer .tagline { color: rgba(255,255,255,.5); font-size: .9rem; line-height: 1.7; }
.footer-wa { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: .85rem; font-weight: 600; color: #fff; border: 1px solid rgba(255,255,255,.25); padding: 8px 16px; border-radius: 999px; transition: all .3s; }
.footer-wa::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #1fa855; }
.footer-wa:hover { border-color: var(--color-accent); background: rgba(218,6,122,.12); }
.site-footer h4 { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.site-footer ul { list-style: none; display: grid; gap: 11px; }
.site-footer ul a { color: rgba(255,255,255,.6); font-size: .9rem; transition: color .3s; }
.site-footer ul a:hover { color: var(--color-accent-light); }

/* state directory — neat auto-fitting columns */
.footer-states { border-top: 1px solid rgba(255,255,255,.1); padding-top: 34px; margin-bottom: 34px; }
.footer-states ul {
  list-style: none; margin-top: 6px; display: block;
  column-width: 160px; column-gap: 28px;
}
.footer-states li { break-inside: avoid; margin-bottom: 11px; }
.footer-states a { color: rgba(255,255,255,.55); font-size: .86rem; transition: color .3s; }
.footer-states a:hover { color: var(--color-accent-light); }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; margin-bottom: 26px;
  font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.7;
}
.footer-legal a { color: rgba(255,255,255,.55); }
.footer-legal a:hover { color: var(--color-accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between;
  font-size: .8rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--color-accent-light); }
.social-links { display: flex; gap: 14px; }
.social-links a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 12px; font-weight: 600;
  transition: all .3s;
}
.social-links a:hover { border-color: var(--color-accent); color: #fff; background: var(--color-accent); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; } .reveal.d4 { transition-delay: .4s; }

.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 16px 0 20px; }

.placeholder-note { outline: 1px dashed rgba(218,6,122,.35); outline-offset: 2px; }

/* ============================================================
   dutchnhabro.in â€” India adaptations (Â§10) + app components
   Appended to the shared design system.
   ============================================================ */

:root {
  --color-cta: #da067a;          /* brand pink — primary conversion CTA */
  --color-cta-dark: #b00560;
}

/* Saffron conversion CTA */
.btn-cta { background: var(--color-cta); color: #fff; }
.btn-cta:hover { background: var(--color-cta-dark); transform: scale(1.03); box-shadow: 0 10px 30px rgba(232,93,4,.3); }

/* Festival banner (Â§10.3) */
.festival-banner { position: relative; overflow: hidden; }
.festival-banner img { width: 100%; max-height: 320px; object-fit: cover; }
.festival-banner .fb-body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 0 6%; background: linear-gradient(90deg, rgba(10,10,10,.55), transparent 65%); color: #fff; }
.festival-banner h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 600; margin-bottom: 14px; max-width: 560px; }

/* Trust bar (Â§10.2 #2) */
.trust-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; padding: 22px 0; border-top: 1px solid rgba(43,31,40,.07); border-bottom: 1px solid rgba(43,31,40,.07); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(43,31,40,.45); }
.trust-bar span::before { content: "\2713\00a0"; color: var(--color-cta); }

/* Opportunity strip (Â§10.2 #3) */
.opp-strip { background: var(--color-surface-warm); color: var(--color-primary); border-top: 1px solid rgba(218,6,122,.12); border-bottom: 1px solid rgba(218,6,122,.12); }
.opp-strip .inner { display: grid; gap: 32px; padding: 64px 24px; align-items: center; }
@media (min-width: 1000px) { .opp-strip .inner { grid-template-columns: repeat(3, 1fr) auto; } }
.opp-strip .num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: var(--color-accent); }
.opp-strip .num em { font-style: normal; color: var(--color-accent); }
.opp-strip .lbl { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(43,31,40,.45); margin-top: 6px; }

/* Sticky mobile bottom bar (Â§10.3) */
.mobile-bar { display: none; }
@media (max-width: 820px) {
  .mobile-bar { display: grid; grid-template-columns: 1fr 1fr 1.4fr; position: fixed; bottom: 0; left: 0; right: 0; z-index: 120; box-shadow: 0 -4px 20px rgba(0,0,0,.15); }
  .mobile-bar a { padding: 14px 6px; text-align: center; font-size: 13px; font-weight: 700; letter-spacing: .04em; }
  .mobile-bar .mb-call { background: #2b1f28; color: #fff; }
  .mobile-bar .mb-wa { background: #1fa855; color: #fff; }
  .mobile-bar .mb-apply { background: var(--color-cta); color: #fff; }
  body { padding-bottom: 52px; }
}

/* Floating WhatsApp (desktop) */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 110; width: 54px; height: 54px; border-radius: 50%; background: #1fa855; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 8px 24px rgba(0,0,0,.25); transition: transform .3s; }
.wa-float:hover { transform: scale(1.08); }
@media (max-width: 820px) { .wa-float { display: none; } }

/* India coverage map (states list) */
.state-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 700px) { .state-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .state-grid { grid-template-columns: repeat(4, 1fr); } }
.state-cell { position: relative; min-width: 0; display: flex; justify-content: space-between; align-items: center; gap: 10px; min-height: 62px; background: #fff; border: 1px solid rgba(43,31,40,.1); border-radius: 12px; padding: 14px 16px; font-size: .9rem; font-weight: 500; line-height: 1.35; color: var(--color-text); transition: border-color .25s, box-shadow .25s, transform .25s; }
.state-cell > span:first-child { min-width: 0; overflow-wrap: break-word; }
.state-cell .zone { flex-shrink: 0; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: rgba(43,31,40,.42); background: var(--color-surface-warm); padding: 4px 9px; border-radius: 30px; }
a.state-cell:hover { border-color: var(--color-cta); box-shadow: 0 8px 22px rgba(218,6,122,.12); transform: translateY(-2px); }
.state-cell.open .zone { color: var(--color-cta); background: rgba(218,6,122,.08); }

/* Forms (shared) */
.form-grid { display: grid; gap: 22px; }
@media (min-width: 720px) { .form-grid.two { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.f-field label { display: block; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(43,31,40,.45); margin-bottom: 8px; }
.f-field label .req { color: var(--color-cta); }
.f-field input, .f-field select, .f-field textarea { width: 100%; border: 1px solid rgba(43,31,40,.15); background: #fff; padding: 12px 14px; font-family: inherit; font-size: 15px; border-radius: 4px; outline: none; transition: border-color .3s; }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { border-color: var(--color-cta); }
.f-field .err { display: none; color: #c62828; font-size: .8rem; margin-top: 6px; }
.f-field.invalid input, .f-field.invalid select, .f-field.invalid textarea { border-color: #c62828; }
.f-field.invalid .err { display: block; }
.f-field .hint { font-size: .78rem; color: rgba(43,31,40,.45); margin-top: 6px; }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-row label { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(43,31,40,.15); border-radius: 999px; padding: 9px 16px; font-size: .88rem; cursor: pointer; text-transform: none; letter-spacing: 0; color: var(--color-primary); font-weight: 500; }
.radio-row input { width: auto; }
.radio-row label:has(input:checked) { border-color: var(--color-cta); background: rgba(232,93,4,.06); }

/* Wizard (Â§6) */
.wizard { background: #fff; border: 1px solid rgba(43,31,40,.08); padding: clamp(24px, 4vw, 48px); }
.wiz-progress { display: flex; gap: 6px; margin-bottom: 36px; }
.wiz-progress .seg { flex: 1; height: 4px; background: rgba(43,31,40,.1); border-radius: 2px; }
.wiz-progress .seg.done { background: var(--color-cta); }
.wiz-step-label { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--color-cta); margin-bottom: 8px; }
.wizard h2 { font-size: 1.5rem; font-weight: 500; margin-bottom: 28px; }
.wiz-step { display: none; }
.wiz-step.active { display: block; }
.wiz-nav { display: flex; justify-content: space-between; gap: 14px; margin-top: 34px; }
.wiz-fieldset { border: 1px solid rgba(43,31,40,.08); border-radius: 6px; padding: 20px; margin-bottom: 22px; }
.wiz-fieldset legend { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(43,31,40,.5); padding: 0 8px; }

/* Tables (AEO D.3) */
.dh-table { width: 100%; border-collapse: collapse; margin: 26px 0; font-size: .95rem; }
.dh-table th { background: var(--color-surface-dark); color: #fff; text-align: left; padding: 12px 16px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.dh-table td { padding: 12px 16px; border-bottom: 1px solid rgba(43,31,40,.08); }
.dh-table tr:nth-child(even) td { background: var(--color-surface-warm); }
.table-scroll { overflow-x: auto; }

/* Answer block (AEO D.1) */
.answer-block { border-left: 4px solid var(--color-cta); background: var(--color-surface-warm); padding: 22px 26px; margin: 26px 0 34px; font-size: 1.05rem; line-height: 1.7; color: rgba(43,31,40,.8); }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid rgba(43,31,40,.09); }
.faq-item summary { cursor: pointer; padding: 20px 0; font-weight: 600; font-size: 1.02rem; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq-item summary::after { content: "+"; color: var(--color-cta); font-size: 1.3rem; font-weight: 300; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item .faq-a { padding: 0 0 22px; color: rgba(43,31,40,.65); line-height: 1.75; max-width: 760px; }

/* Blog cards */
.post-grid { display: grid; gap: 32px; }
@media (min-width: 720px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card { border: 1px solid rgba(43,31,40,.08); background: #fff; overflow: hidden; display: flex; flex-direction: column; }
.post-card .pc-img { aspect-ratio: 16/9; overflow: hidden; background: var(--color-surface-warm); }
.post-card .pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.post-card:hover .pc-img img { transform: scale(1.04); }
.post-card .pc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card .pc-cat { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--color-cta); }
.post-card h3 { font-size: 1.08rem; font-weight: 600; line-height: 1.4; margin: 10px 0; }
.post-card p { font-size: .9rem; color: rgba(43,31,40,.55); flex: 1; }
.post-card .pc-meta { margin-top: 16px; font-size: .78rem; color: rgba(43,31,40,.4); }

/* Article body */
.article-body { max-width: 760px; font-size: 1.05rem; line-height: 1.85; color: rgba(43,31,40,.78); }
.article-body h2 { font-size: 1.5rem; font-weight: 600; margin: 42px 0 16px; color: var(--color-primary); }
.article-body h3 { font-size: 1.15rem; font-weight: 600; margin: 30px 0 12px; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body img { margin: 26px 0; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 24px; font-size: .85rem; color: rgba(43,31,40,.5); margin: 18px 0 8px; }

/* Price/pack table on product pages */
.pack-table td:first-child { font-weight: 600; }
.mrp { font-weight: 600; color: var(--color-primary); }

/* Breadcrumbs */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 2px; font-size: .82rem; line-height: 1.5; padding: 18px 0 0; }
.crumbs a { color: rgba(43,31,40,.6); font-weight: 500; text-decoration: none; padding: 2px 0; transition: color .25s; }
.crumbs a:hover { color: var(--color-cta); text-decoration: underline; text-underline-offset: 3px; }
.crumbs > span:last-child { color: var(--color-text); font-weight: 600; }
.crumbs .sep { margin: 0 8px; color: rgba(43,31,40,.3); font-weight: 400; }

/* Utility */
.badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; background: rgba(232,93,4,.1); color: var(--color-cta); }
.section-tight { padding: 64px 0; }
.mt-0{margin-top:0}.mb-24{margin-bottom:24px}.mb-40{margin-bottom:40px}.center{text-align:center}

/* ============================================================
   Distributorship hub — search + cultural state cards
   ============================================================ */
.state-search {
  display: flex; align-items: center; gap: 10px;
  max-width: 560px; margin: 8px 0 6px;
  border: 1.5px solid rgba(43,31,40,.14); border-radius: 999px;
  padding: 4px 6px 4px 18px; background: #fff; transition: border-color .25s, box-shadow .25s;
}
.state-search:focus-within { border-color: var(--color-accent); box-shadow: 0 6px 24px rgba(218,6,122,.12); }
.state-search svg { color: rgba(43,31,40,.4); flex: 0 0 auto; }
.state-search input { flex: 1; border: 0; outline: 0; font-family: inherit; font-size: 16px; padding: 12px 0; background: transparent; color: var(--color-primary); }
.state-search #state-clear { display: none; width: 34px; height: 34px; border: 0; border-radius: 50%; background: var(--color-surface-warm); color: var(--color-primary); font-size: 20px; line-height: 1; cursor: pointer; align-items: center; justify-content: center; }
.state-search #state-clear:hover { background: rgba(218,6,122,.1); color: var(--color-accent); }
.state-count { font-size: .82rem; color: rgba(43,31,40,.45); margin: 0 0 30px; }
.state-noresult { font-size: 1rem; color: rgba(43,31,40,.6); padding: 20px 0; }
.state-noresult a { color: var(--color-accent); }

.zone-block { margin-bottom: 40px; }
.zone-block .label { display: block; margin-bottom: 16px; }
.dist-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px) { .dist-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .dist-grid { grid-template-columns: repeat(3, 1fr); } }

.dist-card {
  position: relative; display: flex; align-items: center; gap: 14px;
  padding: 18px 18px 18px 16px; border-radius: 12px;
  background: #fff; border: 1px solid rgba(43,31,40,.08);
  overflow: hidden; transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s, border-color .3s;
}
.dist-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--dc); }
.dist-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(43,31,40,.12); border-color: transparent; }
.dc-motif {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
  background: color-mix(in srgb, var(--dc) 16%, #fff);
}
.dc-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.dc-name { font-weight: 600; font-size: 1.02rem; color: var(--color-primary); }
.dc-culture { font-size: .78rem; color: rgba(43,31,40,.5); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dc-open { flex: 0 0 auto; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dc); display: inline-flex; align-items: center; gap: 5px; }
.dist-card:hover .dc-open .arrow { transform: translateX(3px); }

/* Themed state-page hero */
.state-hero .state-motif {
  position: absolute; right: -10px; bottom: -30px; font-size: 260px; line-height: 1;
  opacity: .1; pointer-events: none; user-select: none; z-index: 1;
  filter: grayscale(.2);
}
.state-hero .container-wide { position: relative; z-index: 2; }
.state-culture { margin-top: 18px; font-size: 1rem; color: rgba(255,255,255,.8); font-weight: 500; }
.state-culture .motif-sm { font-size: 1.15rem; margin-right: 4px; }

/* ---- SVG icon adjustments (replace emoji) ---- */
.dc-motif svg { display: block; }
.state-hero .state-motif { display: block; }
.state-hero .state-motif svg { width: 320px; height: 320px; stroke-width: 1; }
.state-culture .motif-sm { display: inline-flex; vertical-align: -3px; margin-right: 6px; }
.state-culture .motif-sm svg { stroke: rgba(255,255,255,.85); }

/* ---- Cultural preloader ---- */
#state-preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff; text-align: center;
  animation: spOut .55s ease 1.05s forwards;
}
#state-preloader .sp-icon svg { stroke: #fff; stroke-width: 1.4; animation: spPop .7s cubic-bezier(.16,1,.3,1) both; }
#state-preloader .sp-name {
  margin-top: 18px; font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 600; letter-spacing: -.01em;
  opacity: 0; animation: spRise .6s cubic-bezier(.16,1,.3,1) .18s forwards;
}
#state-preloader .sp-culture {
  margin-top: 8px; font-size: .95rem; color: rgba(255,255,255,.8); letter-spacing: .02em;
  opacity: 0; animation: spRise .6s cubic-bezier(.16,1,.3,1) .3s forwards;
}
@keyframes spPop { from { transform: scale(.6) rotate(-8deg); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes spRise { from { transform: translateY(14px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes spOut { to { opacity: 0; visibility: hidden; pointer-events: none; } }
@media (prefers-reduced-motion: reduce) {
  #state-preloader { animation: spOut .2s ease .1s forwards; }
  #state-preloader .sp-icon svg, #state-preloader .sp-name, #state-preloader .sp-culture { animation: none; opacity: 1; }
}

/* ---- state cards: image thumbnail with a small colour icon badge (colours kept) ---- */
.dc-thumb { position: relative; flex: 0 0 auto; width: 56px; height: 56px; border-radius: 12px; overflow: hidden; background: var(--color-surface-warm); }
.dc-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dc-badge { position: absolute; right: -4px; bottom: -4px; width: 24px; height: 24px; border-radius: 50%; background: #fff; box-shadow: 0 2px 6px rgba(43,31,40,.2); display: flex; align-items: center; justify-content: center; }
.dc-badge svg { width: 15px; height: 15px; }
.dist-card:hover .dc-thumb img { transform: scale(1.06); transition: transform .5s cubic-bezier(.16,1,.3,1); }

/* ---- state hero: photo blended with the colour gradient (gradient/colour unchanged) ---- */
.state-hero .state-photo { position: absolute; inset: 0; z-index: 0; }
.state-hero .state-photo img { width: 100%; height: 100%; object-fit: cover; opacity: .42; mix-blend-mode: soft-light; }
.state-hero::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(0,0,0,.28), transparent 55%); pointer-events: none; }
.state-hero .container-wide { position: relative; z-index: 2; }

/* ---- preloader photo ---- */
#state-preloader .sp-photo { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .22; mix-blend-mode: soft-light; }
#state-preloader .sp-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }

/* ---- pink-theme consistency: state cards + preloader use brand pink, not per-state colours ---- */
.dist-card { --dc: var(--color-accent); }
.dc-badge { color: var(--color-accent); }
#state-preloader { background: linear-gradient(140deg, var(--color-surface-dark) 0%, var(--color-accent) 100%); }

/* ---- India–Europe Advantage: trade-corridor cards (reuses card + badge tokens) ---- */
.corridor-grid { display: grid; gap: 1px; background: rgba(43,31,40,.06); border: 1px solid rgba(43,31,40,.06); }
@media (min-width: 800px) { .corridor-grid { grid-template-columns: 1fr 1fr; } }
.corridor-card { background: var(--color-surface); padding: 44px 32px; display: flex; flex-direction: column; }
.corridor-card .flag { display: block; border-radius: 2px; box-shadow: 0 1px 4px rgba(43,31,40,.18); margin-bottom: 22px; }
.corridor-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 12px; }
.corridor-card .badge { align-self: flex-start; }
.corridor-card .badge-muted { background: rgba(43,31,40,.07); color: rgba(43,31,40,.55); }
.corridor-card .stat-line { font-size: 1.05rem; color: var(--color-primary); font-weight: 500; line-height: 1.55; margin: 18px 0 12px; }
.corridor-card .note { font-size: .9rem; color: rgba(43,31,40,.55); line-height: 1.7; margin-top: auto; }
.corridor-disclaimer { font-size: .8rem; color: rgba(43,31,40,.4); line-height: 1.7; margin-top: 26px; max-width: 900px; }

/* ---- A Cleaner India: CSR stat callout (matches .impact-card .stat) ---- */
.cleaner-stat { margin-top: 32px; padding-top: 22px; border-top: 1px solid rgba(43,31,40,.1); max-width: 440px; }
.cleaner-stat .num { font-size: 1.6rem; font-weight: 300; color: var(--color-accent); line-height: 1.15; }
.cleaner-stat .lbl { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(43,31,40,.4); margin-top: 8px; }

/* ============================================================
   Responsive scaling (mobile → ultrawide/curved) + cross-browser
   ============================================================ */

/* Ultrawide & large screens — use the extra width instead of stranding content */
@media (min-width: 1600px) {
  .container-wide { max-width: 1480px; }
  .dist-grid { grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 2000px) {
  .container-wide { max-width: 1680px; }
  html { font-size: 17px; }
}
@media (min-width: 2560px) {
  .container-wide { max-width: 1900px; }
  html { font-size: 18px; }
}

/* Reading columns stretch a little on large screens (kept comfortable for text) */
@media (min-width: 1500px) {
  .container-wide[style*="max-width:900px"] { max-width: 1060px !important; }
  .container-wide[style*="max-width:860px"] { max-width: 1000px !important; }
}
@media (min-width: 2000px) {
  .container-wide[style*="max-width:900px"] { max-width: 1180px !important; }
  .container-wide[style*="max-width:860px"] { max-width: 1080px !important; }
}

/* Small phones — tighter gutters, guaranteed no horizontal overflow */
@media (max-width: 480px) {
  .container-wide { padding-left: 16px; padding-right: 16px; }
  .hero-content, .page-hero .container-wide { padding-right: 8px; }
}
img, video, table, iframe, svg { max-width: 100%; }
.table-scroll { -webkit-overflow-scrolling: touch; }

/* Cross-browser: Safari needs the -webkit- backdrop-filter prefix */
.site-header.scrolled, .site-header.solid { -webkit-backdrop-filter: blur(10px); }
.brand-tabs { -webkit-backdrop-filter: blur(8px); }
.btn-outline-light { -webkit-backdrop-filter: blur(4px); }

/* Fallback for browsers without color-mix() (orphaned motif tile, kept safe) */
.dc-motif { background: rgba(218,6,122,.12); }

/* :has() fallback — JS adds .is-checked; keep the pink highlight either way */
.radio-row label:has(input:checked),
.radio-row label.is-checked { border-color: var(--color-accent); background: rgba(218,6,122,.06); }

/* Graceful fallback where mix-blend-mode / aspect-ratio are unsupported */
@supports not (aspect-ratio: 1) {
  .img-wrap, .brand-head .img-wrap, .pillar-card, .impact-card .img, .product-card .ph { min-height: 220px; }
}

/* ============================================================
   State page — two-column layout (fills wide screens)
   ============================================================ */
.state-layout { display: grid; gap: 40px; }
@media (min-width: 1080px) {
  .state-layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 64px; align-items: start;
    max-width: 1440px; margin: 0 auto;
  }
}
.state-main { min-width: 0; }
.state-main > *:first-child { margin-top: 0 !important; }

.state-aside .aside-card {
  background: var(--color-surface-warm);
  border: 1px solid rgba(43,31,40,.08);
  border-radius: 16px; padding: 26px 24px;
}
@media (min-width: 1080px) { .state-aside { position: sticky; top: 92px; } }
.aside-card h3 {
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: 18px;
}
.aside-card ul { list-style: none; margin: 0 0 22px; display: grid; gap: 0; }
.aside-card li {
  display: flex; justify-content: space-between; gap: 14px; align-items: baseline;
  font-size: .92rem; padding: 11px 0; border-bottom: 1px solid rgba(43,31,40,.08);
}
.aside-card li:last-of-type { border-bottom: 0; }
.aside-card li span:first-child { color: rgba(43,31,40,.55); white-space: nowrap; }
.aside-card li span:last-child { font-weight: 600; text-align: right; color: var(--color-primary); }
.aside-card .btn { width: 100%; justify-content: center; }
.aside-card .btn + .btn { margin-top: 10px; }

/* State page: fill wide screens far more (main text kept to a sane upper bound via the sidebar) */
.container-flush { max-width: min(94vw, 1680px); }
.state-layout { max-width: none !important; }
@media (min-width: 1080px) {
  .state-layout { grid-template-columns: minmax(0, 1fr) 360px; gap: 60px; }
}
@media (min-width: 1600px) {
  .state-layout { grid-template-columns: minmax(0, 1fr) 400px; gap: 72px; }
}

/* ============================================================
   FINAL: one shared container width — header, hero, content, footer all align & fill
   ============================================================ */
.container-flush { max-width: inherit; }   /* neutralise old special container */
@media (min-width: 1500px) { .container-wide { max-width: 1440px; } }
@media (min-width: 1750px) { .container-wide { max-width: 1620px; } }
@media (min-width: 2100px) { .container-wide { max-width: 1820px; } }
@media (min-width: 2560px) { .container-wide { max-width: 2000px; } }

/* Larger real screens (4K / ultrawide) — let the shared container grow a bit more */
@media (min-width: 2100px) { .container-wide { max-width: 1900px; } }
@media (min-width: 2560px) { .container-wide { max-width: 2200px; } }
@media (min-width: 3200px) { .container-wide { max-width: 2500px; } }

/* ============================================================
   FIX: mobile nav overlay — header's backdrop-filter was trapping the
   fixed full-screen menu inside the header box. Disable it on mobile.
   ============================================================ */
@media (max-width: 900px) {
  .site-header,
  .site-header.scrolled,
  .site-header.solid {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .site-header.scrolled, .site-header.solid { background: #ffffff; }
  .main-nav { background: var(--color-surface-dark); }   /* opaque full-screen overlay */
  .main-nav .btn-cta { margin-top: 8px; }
}
