/* =============================================================
   CITIFRAG INDIA PRIVATE LIMITED
   Design System & Global Styles
   Brand primary: #001E60  |  Statement: Trust & Relax
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --navy: #001E60;
  --navy-700: #0a2a72;
  --navy-600: #14357f;
  --navy-050: #eef1f8;

  /* Accent — refined champagne gold (used sparingly) */
  --gold: #b8975a;
  --gold-soft: #cbb182;
  --gold-050: #f7f1e6;

  /* Neutrals — warm, calm, premium */
  --ink: #1c2333;
  --body: #4a5163;
  --muted: #7b8296;
  --line: #e6e8ee;
  --line-soft: #eef0f5;
  --cream: #faf8f4;
  --cream-2: #f4f1ea;
  --paper: #ffffff;
  --mist: #f6f8fb;

  /* Typography */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;

  /* Layout */
  --maxw: 1200px;
  --maxw-wide: 1360px;
  --radius: 4px;
  --radius-lg: 10px;
  --radius-xl: 20px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(0, 30, 96, 0.05);
  --shadow: 0 10px 30px rgba(0, 30, 96, 0.08);
  --shadow-lg: 0 24px 60px rgba(0, 30, 96, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.005em;
  /* Balance heading lines so no single word is ever stranded on its own line */
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--gold-soft); }

.display {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
}
.h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
.h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); }
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--body);
  line-height: 1.75;
}

.text-navy { color: var(--navy); }
.text-gold { color: var(--gold); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}
.container--wide { max-width: var(--maxw-wide); }

.section { padding-block: clamp(3.5rem, 8vw, var(--space-xl)); }
.section--tight { padding-block: clamp(2.5rem, 5vw, var(--space-lg)); }
.section--cream { background: var(--cream); }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy); color: rgba(255,255,255,0.82); }
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 { color: #fff; }

.section-head { max-width: 720px; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1rem; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.divider-line {
  width: 56px; height: 2px;
  background: var(--gold);
  margin-block: 1.25rem;
}
.section-head--center .divider-line { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.95rem 1.9rem;
  border-radius: 40px;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease), box-shadow 0.35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { background: var(--navy); color: #fff; }
.btn--primary:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--outline { border: 1.5px solid var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.btn--light { border: 1.5px solid rgba(255,255,255,0.5); color: #fff; }
.btn--light:hover { background: #fff; color: var(--navy); border-color: #fff; transform: translateY(-2px); }

.btn--ghost { color: var(--navy); padding-inline: 0; }
.btn--ghost:hover { color: var(--gold); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.9rem; color: var(--navy);
  letter-spacing: 0.03em;
}
.link-arrow svg { width: 15px; transition: transform 0.35s var(--ease); }
.link-arrow:hover { color: var(--gold); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: height 0.4s var(--ease), background 0.4s var(--ease),
    border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand { display: flex; align-items: center; }
.brand img { height: 26px; width: auto; }
.site-header.scrolled .brand img { height: 23px; }

.nav { display: flex; align-items: center; gap: 2.25rem; }
.nav a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  padding-block: 0.4rem;
  transition: color 0.25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav a:hover,
.nav a.active { color: var(--navy); }
.nav a:hover::after,
.nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile Nav ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy);
  color: #fff;
  padding: calc(var(--header-h) + 2rem) clamp(1.5rem, 6vw, 3rem) 3rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: #fff;
  padding-block: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-nav a.active { color: var(--gold-soft); }
.mobile-nav .btn { margin-top: 2rem; align-self: flex-start; }
.mobile-nav .m-contact { margin-top: auto; padding-top: 2rem; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.mobile-nav .m-contact a { font-family: var(--font-body); font-size: 0.95rem; border: none; padding: 0.15rem 0; display: inline; }

body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background:
    radial-gradient(1200px 600px at 78% 20%, rgba(184,151,90,0.10), transparent 60%),
    linear-gradient(160deg, #fbfaf7 0%, #f2f0ea 55%, #eaeef6 100%);
  overflow: hidden;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
}
.hero__inner { max-width: 700px; padding-block: 4rem; }
.hero__inner .display {
  color: var(--navy);
  /* Slightly smaller than the global display so each line fits without stranding a word */
  font-size: clamp(2rem, 3.9vw, 3.2rem);
  text-wrap: balance;
}
.hero__statement {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero__lead { max-width: 560px; margin-top: 1.5rem; }
.hero__cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__visual {
  position: relative;
  /* Keep the image compact and anchored to the right edge of its column */
  width: 100%;
  max-width: 360px;
  margin-left: auto;
}
.hero__visual::before {
  content: "";
  position: absolute;
  right: -1.5rem; top: -1.5rem;
  width: 55%; aspect-ratio: 1;
  border: 1px solid rgba(184,151,90,0.5);
  border-radius: 50%;
  z-index: -1;
}
.hero__visual-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero__visual-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual-badge {
  position: absolute;
  left: clamp(-1rem, -1.5vw, -1.5rem);
  bottom: 1.75rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 0.95rem 1.35rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  border-left: 3px solid var(--gold);
}
.hero__visual-badge strong { color: var(--navy); font-size: 0.98rem; font-weight: 600; }
.hero__visual-badge span { color: var(--muted); font-size: 0.78rem; letter-spacing: 0.03em; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(3rem, 7vw, 6rem));
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(184,151,90,0.10), transparent 60%),
    linear-gradient(160deg, #fbfaf7, #eef1f8);
  position: relative;
}
.page-hero__inner { max-width: 760px; }
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding-block: 1.5rem;
}
.trust-strip .container { overflow: hidden; }
.trust-marquee { display: flex; }
.trust-group {
  flex: 1 0 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}
/* Desktop: show one static, spaced row; the clone is only for the mobile loop */
.trust-group[aria-hidden="true"] { display: none; }
.trust-item {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.82rem; letter-spacing: 0.05em;
}
.trust-item svg { width: 20px; height: 20px; color: var(--gold-soft); flex-shrink: 0; }
.trust-item strong { color: #fff; font-weight: 600; }

/* On mobile, the trust strip becomes an infinite right-to-left auto-scroll marquee */
@media (max-width: 860px) {
  .trust-strip .container { padding-inline: 0; overflow: hidden; }
  .trust-marquee {
    width: max-content;
    animation: trust-marquee 22s linear infinite;
  }
  .trust-group {
    flex: 0 0 auto;
    justify-content: flex-start;
    gap: 2rem;
    padding-right: 2rem;
  }
  .trust-group[aria-hidden="true"] { display: flex; }
  .trust-item { flex: 0 0 auto; white-space: nowrap; }
}
/* Two identical groups; shifting by exactly one group (-50%) loops seamlessly */
@keyframes trust-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trust-marquee { animation: none; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--navy-050);
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.96rem; }

.card--value .card__icon { background: var(--gold-050); color: var(--gold); }

/* Feature list */
.feature-list { display: grid; gap: 1rem; margin-top: 1.5rem; }
.feature-list li {
  display: flex; gap: 0.85rem; align-items: flex-start;
  font-size: 0.98rem; color: var(--body);
}
.feature-list svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Stats */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--navy);
  line-height: 1;
  font-weight: 600;
}
.section--navy .stat__num { color: #fff; }
.stat__num span { color: var(--gold); }
/* Text-based stat (e.g. a name) — same size as other stats, kept on one line */
.stat__num--name { white-space: nowrap; }
.stat__label {
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-top: 0.65rem;
}
.section--navy .stat__label { color: rgba(255,255,255,0.6); }

/* Media / image blocks */
.media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(150deg, var(--navy-050), var(--cream-2));
  aspect-ratio: 4/3;
}
.media--tall { aspect-ratio: 3/4; }
.media--wide { aspect-ratio: 16/10; }
.media__ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem; text-align: center; padding: 1.5rem;
  color: var(--navy);
}
.media__ph svg { width: 46px; height: 46px; opacity: 0.35; }
.media__ph span {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.media__badge {
  position: absolute; left: 1.25rem; bottom: 1.25rem;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem; border-radius: 40px;
}

/* Pillars / philosophy */
.philosophy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.pillar {
  padding: 2rem 1.75rem;
  border-left: 2px solid var(--gold);
  background: var(--paper);
}
.pillar__k {
  font-family: var(--font-display);
  font-size: 2.4rem; color: var(--navy-050);
  line-height: 1;
}
.section--cream .pillar { background: transparent; }

/* Product ranges pills */
.range-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.range-pill {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 40px;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.3s var(--ease);
}
.range-pill:hover { border-color: var(--gold); background: var(--gold-050); }

/* Process steps */
.process { counter-reset: step; display: grid; gap: 1.25rem; }
.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  align-items: start;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.process-step:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.process-step__n {
  counter-increment: step;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
}
.process-step__n::before { content: counter(step, decimal-leading-zero); }
.process-step h4 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.process-step p { font-size: 0.94rem; }

/* Timeline */
.timeline { position: relative; margin-top: 2rem; }
.timeline::before {
  content: ""; position: absolute; left: 19px; top: 8px; bottom: 8px;
  width: 2px; background: var(--line);
}
.timeline-item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item__dot {
  position: absolute; left: 8px; top: 4px;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 3px solid var(--gold);
  z-index: 1;
}
.timeline-item__year {
  font-family: var(--font-display);
  font-size: 1.6rem; color: var(--navy); font-weight: 600;
  line-height: 1; margin-bottom: 0.4rem;
}
.timeline-item h4 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.timeline-item p { font-size: 0.95rem; }

/* Accordion */
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 600;
}
.accordion-trigger .plus {
  position: relative; width: 20px; height: 20px; flex-shrink: 0;
}
.accordion-trigger .plus::before,
.accordion-trigger .plus::after {
  content: ""; position: absolute; background: var(--gold);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.accordion-trigger .plus::before { left: 0; top: 9px; width: 20px; height: 2px; }
.accordion-trigger .plus::after { left: 9px; top: 0; width: 2px; height: 20px; }
.accordion-item.open .plus::after { transform: rotate(90deg); opacity: 0; }
.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.accordion-panel__inner { padding-bottom: 1.5rem; color: var(--body); font-size: 0.98rem; }

/* Collection / product grid */
.collection-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  height: 100%;
  display: flex; flex-direction: column;
}
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.collection-card__media {
  aspect-ratio: 4/3;
  background: linear-gradient(150deg, var(--gold-050), var(--navy-050));
  display: grid; place-items: center;
  color: var(--navy);
}
.collection-card__media svg { width: 44px; height: 44px; opacity: 0.4; }
.collection-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.collection-card__body h4 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.collection-card__body p { font-size: 0.92rem; }
.tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.75rem;
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(184,151,90,0.18), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, #061a4d 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 620px; margin: 1rem auto 2rem; }
.cta-band .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); }
.contact-block { margin-bottom: 2rem; }
.contact-block h4 {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.6rem;
}
.contact-block p { font-size: 0.98rem; color: var(--body); }
.contact-block a:hover { color: var(--navy); }

.contact-form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--ink); letter-spacing: 0.02em; }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(0,30,96,0.08);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--muted); }
.form-success {
  display: none;
  background: var(--gold-050);
  border: 1px solid var(--gold-soft);
  color: var(--navy);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
}
.form-success.show { display: block; }
.form-error {
  display: none;
  background: #fdecec;
  border: 1px solid #f0b4b4;
  color: #8a1f1f;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
}
.form-error.show { display: block; }
.form-error a { color: #8a1f1f; font-weight: 600; text-decoration: underline; }

/* Map frame placeholder */
.map-embed {
  width: 100%; aspect-ratio: 16/7;
  border: 0; border-radius: var(--radius-lg);
  filter: grayscale(0.2);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding-top: clamp(3rem, 6vw, 5rem);
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand img { height: 26px; margin-bottom: 1.25rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.92rem; max-width: 320px; }
.footer-statement { font-family: var(--font-display); font-style: italic; color: var(--gold-soft); font-size: 1.15rem; margin-top: 1rem; }
.footer-col h5 {
  font-family: var(--font-body);
  color: #fff; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul { display: grid; gap: 0.75rem; }
.footer-col a, .footer-col p { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-block: 1.75rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.footer-bottom a:hover { color: var(--gold-soft); }

.footer-credit {
  padding-block: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: right;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-credit a { color: var(--gold-soft); }
.footer-credit a:hover { color: #fff; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  display: flex; align-items: center; gap: 0;
  background: #25D366;
  color: #fff;
  border-radius: 40px;
  padding: 0;
  width: 58px; height: 58px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(37,211,102,0.35);
  transition: width 0.45s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}
.wa-float__icon { width: 58px; height: 58px; flex-shrink: 0; display: grid; place-items: center; }
.wa-float__icon svg { width: 30px; height: 30px; }
.wa-float__label { white-space: nowrap; font-size: 0.9rem; font-weight: 600; padding-right: 1.4rem; opacity: 0; transition: opacity 0.3s var(--ease); }
.wa-float:hover { width: 200px; transform: translateY(-2px); }
.wa-float:hover .wa-float__label { opacity: 1; }
@media (max-width: 640px) {
  .wa-float:hover { width: 58px; }
  .wa-float:hover .wa-float__label { opacity: 0; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.maxw-sm { max-width: 560px; }
.flex-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.badge-iso {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--navy-050); color: var(--navy);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 0.5rem 1rem; border-radius: 40px;
}
.badge-iso svg { width: 16px; height: 16px; color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2,1fr); gap: 2rem; }
}
@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split .media { order: -1; }
  .grid-2, .grid-3, .philosophy-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-bottom: 1.25rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero__inner { padding-block: 1.5rem 0; max-width: none; }
  .hero__visual { max-width: 380px; margin: 0 auto; width: 100%; }
  .hero__visual-frame { aspect-ratio: 4/5; }
  .hero__visual::before { display: none; }
  .hero__visual-badge { left: 1rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2,1fr); gap: 1.75rem 1rem; }
  .stat__num { font-size: clamp(1.75rem, 9vw, 2.4rem); }
  .stat__num--name { white-space: normal; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; gap: 1rem; }
}

/* --- Cali collaboration: real product posters --- */
.media img { width: 100%; height: 100%; display: block; }
.media--poster { aspect-ratio: 3/4; background: #f6f1e8; }
.media--poster img { object-fit: contain; }

.collection-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collection-card--poster .collection-card__media {
  aspect-ratio: 3/4;
  background: #f6f1e8;
  padding: 0;
}
.collection-card--poster .collection-card__media img { object-fit: contain; }
.collection-card__body h4 span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* --- Brand ranges: lifestyle product photos --- */
.collection-card--photo .collection-card__media {
  aspect-ratio: 4/5;
  background: #efe9dd;
  padding: 0;
}
.collection-card--photo .collection-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- About: India 500 Startup Award showcase --- */
.award-showcase {
  position: relative;
  margin: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #fbf7ef 0%, #eef1f8 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  overflow: hidden;
}
.award-showcase__ribbon {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 2;
  background: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 40px;
  border-left: 3px solid var(--gold);
}
.award-showcase__imgs {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 1.75rem);
}
.award-showcase__imgs img { display: block; width: auto; height: auto; }
.award-showcase__cert {
  max-width: 58%;
  max-height: 380px;
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}
.award-showcase__trophy {
  max-width: 30%;
  max-height: 420px;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.28));
}
.award-showcase__caption {
  text-align: center;
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
}
.award-showcase__caption strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 600;
}
.award-showcase__caption span {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Home "Who We Are": Premium Incense banner (shown at true ratio) --- */
.media--poster-wide {
  aspect-ratio: 1600 / 695;
  align-self: center;
  background: #f9ebda;
}
.media--poster-wide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Split used as a single centered/left column (e.g. Our Ranges after image removal) */
.split--single { grid-template-columns: 1fr; }
.split--single > * { max-width: 720px; }

/* Home "Market Presence": animated India map */
.media--map { background: linear-gradient(160deg, #f7f9fc 0%, #eef1f8 100%); }
.media--map img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: clamp(0.75rem, 2.5vw, 1.5rem);
}

/* Illustration panels (e.g. careers handshake) */
.media--illus { background: linear-gradient(160deg, #f7f9fc 0%, #eef1f8 100%); }
.media--illus img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: clamp(1rem, 3vw, 2rem);
}

/* ---------- Video showcase (YouTube facade) ---------- */
.video-grid {
  display: grid;
  gap: clamp(1.25rem, 2.4vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.video-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  margin: 0;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.video-card__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  margin: 0;
  border: 0;
  background: #0a1a3a;
  cursor: pointer;
  overflow: hidden;
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
}
.video-card__thumb:hover img,
.video-card__thumb:focus-visible img { transform: scale(1.04); opacity: 0.92; }
.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(184, 151, 90, 0.96);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
  pointer-events: none;
}
.video-card__play svg { width: 28px; height: 28px; margin-left: 4px; }
.video-card__thumb:hover .video-card__play,
.video-card__thumb:focus-visible .video-card__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--gold);
}
.video-card__thumb:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.video-card__body { padding: 1.25rem 1.5rem 1.5rem; }
.video-card__body h4 { font-size: 1.15rem; margin: 0.4rem 0 0.35rem; }
.video-card__body p { font-size: 0.92rem; color: var(--muted); margin: 0; }
.video-card__iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  background: #000;
}
@media (max-width: 640px) {
  .video-card__play { width: 60px; height: 60px; }
  .video-card__play svg { width: 24px; height: 24px; }
}
