/* ============================================
   Odisha Heritage — design system
   ============================================ */

:root {
  --bg: #f5ecdc;
  --bg-2: #efe4cf;
  --bg-grid: #f8f0e0;
  --paper: #fbf6ec;
  --ink: #1a1a1a;
  --ink-2: #5a5046;
  --rule: #d8c9b1;
  --navy: #1f2a78;
  --navy-2: #2a378f;
  --red: #b51d1d;
  --gold: #b8853a;
  --gold-2: #d4a050;
  --dark: #2b2218;

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Inter Tight", system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;
  --odia: "Noto Sans Oriya", "Noto Serif Oriya", system-ui, sans-serif;

  --pad: clamp(12px, 3vw, 1cm);
  --maxw: 1400px;
}

body[data-palette="indigo"] { --navy: #283b6e; --red: #a14a2a; --gold: #b89548; }
body[data-palette="maroon"] { --navy: #6e1f24; --red: #8a3a1a; --gold: #b8853a; }
body[data-palette="moss"]   { --navy: #3d4a2c; --red: #6e3a24; --gold: #a8853a; }

body[data-type="literary"]  { --serif: "EB Garamond", Georgia, serif; --sans: "EB Garamond", Georgia, serif; }
body[data-type="modern"]    { --serif: "Fraunces", Georgia, serif; --sans: "DM Sans", system-ui, sans-serif; }

/* ── Content protection ─────────────────────────────────────────────────────── */
* {
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
/* Allow text selection only inside form inputs */
input, textarea, select { user-select: text; -webkit-user-select: text; }

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none; /* blocks right-click > Save Image */
}
/* Re-enable pointer events for images that are also links */
a > img, button > img { pointer-events: none; }
a, button { pointer-events: auto; }

/* Block printing entirely */
@media print {
  html { display: none !important; }
}

/* ── Screenshot warning overlay ─────────────────────────────────────────────── */
#_ohSec {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
#_ohSec._ohSecVisible {
  opacity: 1;
  pointer-events: all;
}
._ohSecBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #f5ecdc;
  text-align: center;
  padding: 48px 40px;
  border: 1px solid rgba(184,133,58,.4);
  background: rgba(31,42,120,.15);
  border-radius: 4px;
  max-width: 340px;
}
._ohSecBox svg { color: #b8853a; width: 44px; height: 44px; }
._ohSecBox strong { font-family: var(--serif, serif); font-size: 22px; font-weight: 500; }
._ohSecBox span   { font-size: 14px; opacity: .8; }
._ohSecBox em     { font-size: 11px; opacity: .5; font-style: normal; margin-top: 4px; }

html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  background-image:
    linear-gradient(to right, rgba(31,42,120,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31,42,120,0.04) 1px, transparent 1px);
  background-size: 8px 8px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

.shell { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ============================================
   Header
   ============================================ */
header.site {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245,236,220,0.95);
  backdrop-filter: blur(8px);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 24px;
}
.brand-block { display: flex; flex-direction: column; align-items: center; gap: 4px; line-height: 1; }
.brand-logo { width: 56px; max-width: 100%; height: auto; }
.brand-block .odia {
  display: block;
  font-family: var(--odia);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 44px;
  justify-content: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-links a { padding: 6px 0; position: relative; }
.nav-links a:hover { color: var(--navy); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: -2px;
  height: 1px;
  background: var(--navy);
  transition: left 0.3s ease, right 0.3s ease;
}
.nav-links a:hover::after { left: 0; right: 0; }

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}
.icon-btn {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  position: relative;
}
.icon-btn:hover { color: var(--navy); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--red);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  line-height: 1;
}
.hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 38px; height: 38px;
  place-items: center;
}
.hamburger svg { width: 22px; height: 22px; }

/* Diamond border strip */
.diamond-strip {
  height: 18px;
  background-image:
    linear-gradient(45deg, transparent 45%, var(--navy) 45%, var(--navy) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, var(--navy) 45%, var(--navy) 55%, transparent 55%);
  background-size: 16px 16px;
  background-position: 0 0, 8px 0;
  background-repeat: repeat-x;
  opacity: 0.35;
  border-top: 1px solid rgba(31,42,120,0.15);
  border-bottom: 1px solid rgba(31,42,120,0.15);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 40vh;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7) contrast(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(43,34,24,0.7) 0%, rgba(43,34,24,0.35) 60%, transparent 100%),
              linear-gradient(180deg, transparent 40%, rgba(43,34,24,0.5) 100%);
}
.hero .shell {
  position: relative;
  z-index: 2;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 40px;
}
.hero-inner {
  max-width: 760px;
  position: relative;
  color: var(--paper);
}
.hero-corners::before, .hero-corners::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold-2);
}
.hero-corners::before {
  top: -28px; left: -28px;
  border-right: 0; border-bottom: 0;
}
.hero-corners::after {
  bottom: -28px; right: -28px;
  border-left: 0; border-top: 0;
}
.hero-corner-glyph {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-2);
}
.hero-corner-glyph.tl { top: -22px; left: -22px; }
.hero-corner-glyph.br { bottom: -22px; right: -22px; }

.hero-eyebrow {
  font-family: var(--odia);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: inline-flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}
.hero-eyebrow .sep { color: var(--gold-2); opacity: 0.6; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 8.5vw, 130px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--paper);
}
.hero h1 em { font-style: italic; color: var(--gold-2); display: block; }
.hero-odia {
  font-family: var(--odia);
  font-size: clamp(16px, 1.4vw, 22px);
  color: var(--gold-2);
  margin-top: 32px;
  letter-spacing: 0.04em;
}
.hero-lead {
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: rgba(251, 246, 236, 0.85);
  margin-top: 24px;
  max-width: 52ch;
}
.hero-cta {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 36px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: none;
  background: var(--paper);
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-pill::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.btn-pill:hover { background: var(--gold-2); color: var(--ink); }
.btn-text {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper);
  padding: 16px 4px;
  position: relative;
}
.btn-text:hover { color: var(--gold-2); }
.btn-text::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 8px;
  height: 1px;
  background: var(--gold-2);
  transition: right 0.3s ease;
}
.btn-text:hover::after { right: 0; }

/* Marquee */
.marquee {
  background: var(--dark);
  color: var(--paper);
  overflow: hidden;
  border-top: 1px solid rgba(184,133,58,0.3);
  border-bottom: 1px solid rgba(184,133,58,0.3);
}
.marquee-track {
  display: flex;
  gap: 56px;
  padding: 22px 0;
  white-space: nowrap;
  animation: marq 50s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .dot { color: var(--gold-2); font-style: normal; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   Sections
   ============================================ */
.section { padding-top: clamp(34px, 2vw, 80px); padding-bottom: clamp(34px, 2vw, 80px); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 4vw, 60px);
  align-items: end;
  padding-bottom: clamp(40px, 2vw, 90px);
}
.section-head.center {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.section-head .left { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.section-head.center .left { align-items: center; }

.eyebrow {
  font-family: var(--odia);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  gap: 12px;
  align-items: center;
}
.eyebrow .sep { opacity: 0.55; }

.h-section {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.h-section em { font-style: italic; color: var(--navy); }
.h-section .red { font-style: italic; color: var(--red); }

.section-head .right {
  font-family: var(--sans);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 52ch;
}

/* Dotted divider */
.dotted {
  height: 14px;
  background-image:
    linear-gradient(45deg, transparent 45%, rgba(31,42,120,0.45) 45%, rgba(31,42,120,0.45) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(31,42,120,0.45) 45%, rgba(31,42,120,0.45) 55%, transparent 55%);
  background-size: 12px 12px;
  background-position: 0 0, 6px 0;
  background-repeat: repeat-x;
  margin: clamp(10px, 1vw, 10px) 0;
}

/* ============================================
   Collection
   ============================================ */
.collection {
  display: grid;
  grid-template-columns: repeat(3, 354px);
  justify-content: center;
  column-gap: 0.5cm;
  row-gap: 1cm;
  padding: 0 clamp(20px, 4vw, 40px);
}
.product {
  width: 354px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: inherit;
  transition: transform 0.3s ease;
  padding: 8px;
}
.product:hover {
  transform: rotate(1deg);
}
.product:nth-child(2) {
  transform: translateY(24px);
}
.product:nth-child(2):hover {
  transform: translateY(20px) rotate(1deg);
}
.product-img {
  position: relative;
  aspect-ratio: 4/5;
  min-height: 316px;
  overflow: hidden;
  background: var(--bg-2);
  border-radius: 0;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
  border-radius: 0;
}
.product:hover .product-img img { transform: scale(1.04); }
.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(251,246,236,0.92);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 8px 14px;
}
.product-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  padding-top: 4px;
}
.product-odia {
  font-family: var(--odia);
  font-size: 14px;
  color: var(--red);
  letter-spacing: 0.04em;
  grid-column: 1;
}
.product-meta h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  margin: 0;
  letter-spacing: -0.005em;
  grid-column: 1;
}
.product-meta .where {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-2);
  grid-column: 1;
}
.product-meta .price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  text-align: right;
  grid-row: 2;
  grid-column: 2;
  align-self: end;
}
.product-meta .single {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-align: right;
  grid-row: 3;
  grid-column: 2;
}

.product-list-main {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
.product-sidebar {
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 18px;
}
.sidebar-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.category-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 13px 0;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  margin: 0;
  transition: color 0.2s;
}
.category-title:hover { color: var(--navy); }
.category-item.open > .category-title { color: var(--navy); border-bottom-color: transparent; }
.cat-chevron {
  width: 14px; height: 14px;
  flex-shrink: 0;
  color: var(--ink-2);
  transition: transform 0.28s ease;
}
.category-item.open .cat-chevron { transform: rotate(180deg); }
.subcategory-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 16px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.category-item.open .subcategory-list { max-height: 280px; }
.subcategory-list a {
  display: block;
  font-family: var(--sans);
  color: var(--ink-2);
  font-size: 14px;
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s;
}
.subcategory-list li:first-child a { padding-top: 10px; }
.subcategory-list li:last-child a { padding-bottom: 10px; }
.subcategory-list a:hover { color: var(--navy); }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 40px 20px;
}
.catalog-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transform: none;
  transition: none;
}
.catalog-card:hover {
  transform: none;
  box-shadow: none;
}
.catalog-media {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-2);
  margin: 0 auto;
  width: 86%;
  box-shadow:
    0 2px 4px rgba(26, 26, 26, 0.08),
    0 8px 20px rgba(26, 26, 26, 0.13),
    0 20px 40px rgba(26, 26, 26, 0.09);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.catalog-card:hover .catalog-media {
  transform: translateY(-7px);
  box-shadow:
    0 4px 8px rgba(26, 26, 26, 0.10),
    0 16px 36px rgba(31, 42, 120, 0.13),
    0 32px 60px rgba(26, 26, 26, 0.12);
}
.catalog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s ease;
}
.catalog-card:hover .catalog-media img {
  transform: scale(1.05);
}
.catalog-body {
  padding: 14px 4px 0;
  display: grid;
  gap: 5px;
  text-align: center;
}
.catalog-tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
}
.catalog-title {
  font-family: var(--serif);
  font-size: 18px;
  margin: 0;
  letter-spacing: -0.02em;
}
.catalog-subtitle {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.6;
}
.catalog-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.catalog-price {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
}
.catalog-shape {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-2);
}

.contact-grid,
.payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 44px);
  align-items: start;
}
.contact-card,
.payment-card,
.payment-summary {
  background: var(--paper);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 24px;
  padding: 32px;
}
.contact-card h3,
.payment-card h3,
.payment-summary .sidebar-head h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}
.contact-card p,
.payment-summary .summary-note {
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}
.contact-info {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.contact-info div {
  display: grid;
  gap: 8px;
}
.contact-info strong {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.contact-form label,
.payment-form label {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.contact-form input,
.contact-form textarea,
.payment-form input {
  width: 100%;
  border: 1px solid rgba(26, 26, 26, 0.12);
  background: var(--bg-2);
  border-radius: 18px;
  padding: 16px 18px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  margin-top: 10px;
}
.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}
.payment-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.payment-summary .sidebar-head {
  margin-bottom: 24px;
}
.summary-item,
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}
.summary-total {
  border-bottom: 0;
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 12px;
}
.summary-note {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px);
  margin-top: 28px;
}
.terms-card {
  background: var(--paper);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 22px;
  padding: 28px;
}
.terms-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 18px;
}
.terms-card p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.8;
}

@media (max-width: 980px) {
  .product-list-main {
    grid-template-columns: 1fr;
  }
  .product-sidebar {
    width: 100%;
  }
  .contact-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }
  .payment-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .product-sidebar {
    padding: 18px;
  }
}

/* ============================================
   Artisan section (dark)
   ============================================ */
.artisan-section {
  background: var(--dark);
  color: var(--paper);
  padding: clamp(44px, 3vw, 100px) 0;
}
.artisan-section .eyebrow { color: var(--gold-2); }
.artisan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2vw, 50px);
  align-items: center;
}
.artisan-portrait {
  position: relative;
  aspect-ratio: 5/5;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.artisan-portrait img { width: 100%; height: 100%; object-fit: cover; }

.artisan-text { display: flex; flex-direction: column; gap: 32px; }
.quote {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin: 0;
}
.quote em { font-style: italic; color: var(--gold-2); }

.artisan-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  border-top: 1px solid rgba(184,133,58,0.3);
  padding-top: 28px;
}
.artisan-initial {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(184,133,58,0.18);
  border: 1px solid var(--gold-2);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-family: var(--odia);
  font-size: 22px;
}
.artisan-name {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.005em;
}
.artisan-role {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(251,246,236,0.65);
  margin-top: 4px;
}

.artisan-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 8px;
}
.artisan-stats > div {
  padding: 0;
}
.artisan-stats > div + div { padding-left: 32px; border-left: 1px solid rgba(184,133,58,0.3); margin-left: 32px; }
.artisan-stats .num {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1;
  color: var(--gold-2);
}
.artisan-stats .lbl {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(251,246,236,0.7);
  margin-top: 12px;
}

/* ============================================
   Process timeline (vertical lines + red dots)
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 30px);
  margin-top: 0;
}
.process-step {
  position: relative;
  padding: 32px 0 0 32px;
  border-left: 1px solid var(--rule);
}
.process-step::before {
  content: "";
  position: absolute;
  left: 7px; top: 3px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--red);
}
.process-step .num {
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 84px);
  line-height: 0.9;
  color: rgba(31,42,120,0.18);
  letter-spacing: -0.02em;
}
.process-step .step-odia {
  font-family: var(--odia);
  font-size: 14px;
  color: var(--gold);
  margin-top: 22px;
  letter-spacing: 0.04em;
}
.process-step h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 40px);
  margin: 8px 0 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.process-step p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}
.process-grid.row2 { margin-top: clamp(40px, 5vw, 60px); }

/* ============================================
   Trust seals
   ============================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.seal {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.seal:hover { border-color: var(--navy); transform: translateY(-2px); }
.seal h4 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.seal p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-2);
  margin: 0;
}
.seal .seal-odia {
  font-family: var(--odia);
  color: var(--red);
  font-size: 13px;
  margin-top: auto;
  letter-spacing: 0.04em;
}

.trust-section .h-section em { color: var(--navy); font-style: italic; }

/* ============================================
   Footer
   ============================================ */
footer.site {
  background: var(--dark);
  color: var(--paper);
  padding: 05px 0 20px;
  position: relative;
}
.footer-strip {
  height: 16px;
  background-image:
    linear-gradient(45deg, transparent 45%, var(--navy) 45%, var(--navy) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, var(--navy) 45%, var(--navy) 55%, transparent 55%);
  background-size: 14px 14px;
  background-position: 0 0, 7px 0;
  background-repeat: repeat-x;
  opacity: 0.7;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: 60px;
}
.footer-brand .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--paper);
  font-weight: 500;
}
.footer-brand .odia {
  font-family: var(--odia);
  color: var(--gold-2);
  font-size: 14px;
  margin-top: 8px;
}
.footer-brand p {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(251,246,236,0.7);
  line-height: 1.6;
  max-width: 36ch;
  margin-top: 22px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 22px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(251,246,236,0.85);
}
.footer-col a:hover { color: var(--gold-2); }

.newsletter p {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(251,246,236,0.7);
  margin: 0 0 20px;
  line-height: 1.5;
}
.newsletter-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(184,133,58,0.4);
  padding-bottom: 8px;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 8px 0;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  outline: none;
}
.newsletter input::placeholder { color: rgba(251,246,236,0.5); }
.newsletter button {
  background: transparent;
  border: 0;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.newsletter button:hover { color: var(--gold-2); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(251,246,236,0.55);
  padding-top: 28px;
  border-top: 1px solid rgba(184,133,58,0.2);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-social img {
  width: 18px;
  height: 18px;
  display: block;
}
.footer-bottom .odia { font-family: var(--odia); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100;
  padding: 24px var(--pad);
  display: none;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 18px;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 18px; }
.mobile-menu nav a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--navy);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .nav-links { gap: 28px; font-size: 11px; }
}
@media (max-width: 860px) {
  .nav { grid-template-columns: auto auto auto; }
  .nav-links { display: none; }
  .hamburger { display: grid; }
  .nav-right .icon-btn:first-child { display: none; }

  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .section-head .right { max-width: none; }

  .collection { grid-template-columns: repeat(2, 1fr); }

  .artisan-grid { grid-template-columns: 1fr; gap: 32px; }
  .artisan-stats { grid-template-columns: repeat(3, 1fr); }
  .artisan-stats > div + div { padding-left: 16px; margin-left: 16px; }

  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .hero h1 { font-size: clamp(40px, 11vw, 72px); }
  .hero { min-height: 70vh; }
  .hero .shell { min-height: 70vh; }
}

@media (max-width: 540px) {
  .collection { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .artisan-stats { grid-template-columns: 1fr; gap: 16px; }
  .artisan-stats > div + div { padding-left: 0; border-left: 0; margin-left: 0; padding-top: 16px; border-top: 1px solid rgba(184,133,58,0.3); }
  .hero-cta { gap: 16px; }
  .btn-pill { padding: 14px 22px; font-size: 12px; }
}

.tweaks-fab { z-index: 90 !important; }

/* ============================================
   Catalog search & filter (products.html)
   ============================================ */
.catalog-controls { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.catalog-filter-bar { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--rule); }
.filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-label { font-family: var(--sans); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-2); white-space: nowrap; }
.sidebar-all { display: block; font-family: var(--sans); font-size: 13px; color: var(--ink-2); margin-top: 8px; transition: color 0.2s; }
.sidebar-all:hover { color: var(--navy); }
.sidebar-all.active { color: var(--navy); font-weight: 600; }
.subcategory-list a.active { color: var(--navy); font-weight: 600; }
.catalog-search { position: relative; }
.catalog-search input { width: 100%; background: var(--paper); border: 1px solid var(--rule); padding: 13px 18px 13px 44px; font-family: var(--sans); font-size: 14px; color: var(--ink); outline: none; transition: border-color 0.2s; border-radius: 0; }
.catalog-search input:focus { border-color: var(--navy); }
.catalog-search input::placeholder { color: var(--ink-2); }
.catalog-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--ink-2); pointer-events: none; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; padding: 7px 14px; border: 1px solid var(--rule); background: transparent; color: var(--ink-2); cursor: pointer; transition: all 0.2s; }
.chip:hover { border-color: var(--navy); color: var(--navy); }
.chip.active { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.catalog-card.hidden { display: none; }
.no-results { grid-column: 1/-1; text-align: center; padding: 60px 20px; font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--ink-2); display: none; }
.no-results.visible { display: block; }
a.catalog-card { display: block; color: inherit; text-decoration: none; }

/* ============================================
   Auth / Login page
   ============================================ */
.auth-page { padding-top: clamp(60px, 8vw, 120px); padding-bottom: clamp(60px, 8vw, 120px); min-height: calc(100vh - 200px); display: flex; align-items: center; }
.auth-wrap { max-width: 460px; margin: 0 auto; width: 100%; }
.auth-eyebrow { font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); margin-bottom: 24px; display: block; }
.auth-title { font-family: var(--serif); font-size: clamp(36px, 5vw, 56px); margin: 0 0 40px; font-weight: 400; line-height: 1.05; }
.auth-title em { font-style: italic; color: var(--navy); }
.auth-tabs { display: flex; border-bottom: 1px solid var(--rule); margin-bottom: 36px; }
.auth-tab { flex: 1; font-family: var(--sans); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; padding: 14px; background: transparent; border: 0; border-bottom: 2px solid transparent; color: var(--ink-2); cursor: pointer; transition: all 0.2s; margin-bottom: -1px; }
.auth-tab.active { color: var(--navy); border-bottom-color: var(--navy); }
.auth-panel { display: none; }
.auth-panel.active { display: block; }
.auth-field { margin-bottom: 20px; }
.auth-field label { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 8px; }
.auth-field input { width: 100%; background: var(--paper); border: 1px solid var(--rule); padding: 14px 18px; font-family: var(--sans); font-size: 15px; color: var(--ink); outline: none; transition: border-color 0.2s; border-radius: 0; }
.auth-field input:focus { border-color: var(--navy); }
.auth-submit { width: 100%; background: var(--navy); color: var(--paper); border: 0; padding: 18px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; margin-top: 10px; }
.auth-submit:hover { background: var(--ink); }
.auth-note { font-family: var(--sans); font-size: 13px; color: var(--ink-2); text-align: center; margin-top: 24px; line-height: 1.6; }
.auth-note a { color: var(--navy); }
.auth-forgot { font-family: var(--sans); font-size: 12px; color: var(--navy); text-align: right; margin-top: 6px; display: block; }

/* ============================================
   Order Tracking page
   ============================================ */
.tracking-page { padding-top: clamp(50px, 2vw, 100px); padding-bottom: clamp(50px, 4vw, 100px); }
.tracking-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.tracking-info { display: flex; flex-direction: column; gap: 20px; position: sticky; top: calc(60px + 34px); }
.tracking-info .h-section { margin: 0; }
.tracking-info > p { font-family: var(--sans); font-size: clamp(15px, 1.15vw, 17px); line-height: 1.65; color: var(--ink-2); max-width: 40ch; margin: 0; }
.tracking-form-col { display: flex; flex-direction: column; gap: clamp(18px, 2.5vw, 28px); }
.tracking-card { background: var(--paper); border: 1px solid var(--rule); padding: clamp(28px, 4vw, 40px); }
.tracking-card h3 { font-family: var(--serif); font-size: 32px; margin: 0 0 8px; font-weight: 400; }
.tracking-card > p { font-family: var(--sans); font-size: 14px; color: var(--ink-2); margin: 0 0 28px; line-height: 1.6; }
.tracking-field { margin-bottom: 18px; }
.tracking-field label { display: block; font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 8px; }
.tracking-field input { width: 100%; background: var(--bg-2); border: 1px solid var(--rule); padding: 14px 18px; font-family: var(--sans); font-size: 14px; color: var(--ink); outline: none; transition: border-color 0.2s; border-radius: 0; }
.tracking-field input:focus { border-color: var(--navy); }
.tracking-submit { width: 100%; background: var(--navy); color: var(--paper); border: 0; padding: 16px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; margin-top: 8px; }
.tracking-submit:hover { background: var(--ink); }
.order-meta { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--rule); }
.order-meta h3 { font-family: var(--serif); font-size: 26px; margin: 0 0 4px; font-weight: 400; }
.order-id { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 10px; bottom: 10px; width: 1px; background: var(--rule); }
.tl-step { position: relative; margin-bottom: 28px; }
.tl-step:last-child { margin-bottom: 0; }
.tl-step::before { content: ""; position: absolute; left: -32px; top: 5px; width: 14px; height: 14px; border-radius: 50%; background: var(--bg-2); border: 2px solid var(--rule); }
.tl-step.done::before { background: var(--navy); border-color: var(--navy); }
.tl-step.active::before { background: var(--red); border-color: var(--red); box-shadow: 0 0 0 4px rgba(181,29,29,0.12); }
.tl-label { font-family: var(--serif); font-size: 20px; margin: 0 0 3px; font-weight: 400; }
.tl-meta { font-family: var(--sans); font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.tl-date { font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; color: var(--navy); margin-top: 4px; text-transform: uppercase; }
@media (max-width: 860px) {
  .tracking-grid { grid-template-columns: 1fr; }
  .tracking-info { position: static; }
}

/* ============================================
   Payment page — method tabs
   ============================================ */
.pay-tabs { display: flex; border-bottom: 1px solid var(--rule); margin-bottom: 28px; }
.pay-tab { flex: 1; font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; padding: 12px 6px; background: transparent; border: 0; border-bottom: 2px solid transparent; color: var(--ink-2); cursor: pointer; transition: color 0.2s, border-color 0.2s; margin-bottom: -1px; }
.pay-tab:hover { color: var(--navy); }
.pay-tab.active { color: var(--navy); border-bottom-color: var(--navy); }
.pay-panel { display: none; }
.pay-panel.active { display: block; }

.upi-block { display: flex; gap: 22px; align-items: flex-start; margin-bottom: 22px; }
.upi-qr { width: 130px; height: 130px; flex-shrink: 0; border: 1px solid var(--rule); background: var(--paper); display: grid; place-items: center; overflow: hidden; padding: 8px; }
.upi-qr svg { width: 100%; height: 100%; }
.upi-info { flex: 1; display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.upi-label { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); }
.upi-id-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.upi-id { font-family: var(--mono); font-size: 14px; color: var(--navy); background: var(--bg-2); padding: 6px 10px; border: 1px solid var(--rule); }
.upi-copy { font-family: var(--sans); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; background: transparent; border: 1px solid var(--rule); color: var(--ink-2); padding: 6px 10px; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.upi-copy:hover, .upi-copy.copied { border-color: var(--navy); color: var(--navy); }

.pay-steps { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; counter-reset: step; }
.pay-steps li { font-family: var(--sans); font-size: 13px; color: var(--ink-2); line-height: 1.55; display: flex; gap: 12px; counter-increment: step; }
.pay-steps li::before { content: counter(step); font-family: var(--serif); font-size: 20px; color: var(--navy); line-height: 1; min-width: 16px; flex-shrink: 0; }

.bank-table { display: grid; grid-template-columns: auto 1fr; border-top: 1px solid var(--rule); margin-bottom: 24px; }
.bank-row { display: contents; }
.bank-row > * { padding: 11px 0; border-bottom: 1px solid var(--rule); font-family: var(--sans); font-size: 14px; line-height: 1.4; }
.bank-row > *:first-child { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); padding-right: 24px; white-space: nowrap; }
.bank-row > *:last-child { color: var(--ink); font-weight: 500; }

.pay-other-note { font-family: var(--sans); font-size: 14px; color: var(--ink-2); line-height: 1.65; margin: 0 0 24px; }
.pay-gateway-btn { display: flex; align-items: center; width: 100%; background: var(--navy); color: var(--paper); border: 0; padding: 18px 24px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; }
.pay-gateway-btn::after { content: "→"; margin-left: auto; font-size: 16px; letter-spacing: 0; }
.pay-gateway-btn:hover { background: var(--ink); }
.pay-return-note { font-family: var(--sans); font-size: 12px; color: var(--ink-2); margin-top: 12px; line-height: 1.55; }

.pay-confirm { padding: 20px 0 8px; text-align: center; }
.pay-confirm-check { width: 48px; height: 48px; border-radius: 50%; background: rgba(31,42,120,0.07); border: 1px solid var(--navy); color: var(--navy); display: grid; place-items: center; margin: 0 auto 14px; font-size: 20px; font-family: var(--sans); }
.pay-confirm h4 { font-family: var(--serif); font-size: 24px; margin: 0 0 8px; font-weight: 400; }
.pay-confirm p { font-family: var(--sans); font-size: 13px; color: var(--ink-2); line-height: 1.6; margin: 0; }

.pay-success-page { padding-top: clamp(60px, 8vw, 120px); padding-bottom: clamp(60px, 8vw, 120px); text-align: center; }
.pay-success-page .pay-confirm-check { width: 64px; height: 64px; font-size: 26px; margin-bottom: 24px; }
.pay-success-page p { font-family: var(--sans); font-size: clamp(15px, 1.2vw, 17px); color: var(--ink-2); line-height: 1.65; max-width: 48ch; margin: 16px auto 36px; }

/* ============================================
   Artisan page (artisan.html)
   ============================================ */
.ar-hero { padding-top: clamp(28px, 2vw, 56px); padding-bottom: clamp(24px, 2vw, 48px); }
.ar-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(52px, 1vw, 80px); align-items: end; }
.ar-meta { display: flex; flex-direction: column; gap: 20px; }
.ar-name { font-family: var(--serif); font-size: clamp(56px, 7vw, 110px); line-height: 0.95; letter-spacing: -0.02em; margin: 0; font-weight: 400; }
.ar-name em { font-style: italic; color: var(--navy); display: block; }
.ar-script { font-family: var(--odia); font-size: 22px; color: var(--red); letter-spacing: 0.04em; }
.ar-portrait { aspect-ratio: 6/4; overflow: hidden; background: var(--bg-2); }
.ar-portrait img { width: 100%; height: 100%; object-fit: cover; }
.ar-bio { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: start; padding-top: clamp(20px, 2.5vw, 36px); }
.ar-bio p { font-family: var(--serif); font-size: clamp(19px, 1.5vw, 24px); line-height: 1.6; color: var(--ink); margin: 0 0 12px; }
.ar-bio p::first-letter { font-size: 3em; float: left; line-height: 0.85; padding: 6px 10px 0 0; font-style: italic; color: var(--navy); font-family: var(--serif); }
.ar-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--rule); }
.ar-stats > div { padding: 16px 0; border-bottom: 1px solid var(--rule); }
.ar-stats > div:nth-child(odd) { padding-right: 16px; border-right: 1px solid var(--rule); }
.ar-stats > div:nth-child(even) { padding-left: 16px; }
.ar-stats .num { font-family: var(--serif); font-size: clamp(40px, 4vw, 56px); color: var(--navy); line-height: 1; }
.ar-stats .lbl { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); margin-top: 8px; }

.pull-quote { background: var(--dark); color: var(--paper); padding: clamp(32px, 2vw, 70px) 0; text-align: center; }
.pull-quote .q { font-family: var(--serif); font-size: clamp(32px, 4vw, 64px); line-height: 1.15; letter-spacing: -0.015em; max-width: 22ch; margin: 0 auto; }
.pull-quote .q em { font-style: italic; color: var(--gold-2); }
.pull-quote .attrib { font-family: var(--sans); font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-2); margin-top: 24px; }

.chapters { padding-top: clamp(36px, 5vw, 72px); padding-bottom: clamp(36px, 5vw, 72px); }
.chapter { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; padding: clamp(24px, 3vw, 50px) 0; border-bottom: 1px solid var(--rule); }
.chapter:last-child { border-bottom: 0; }
.chapter.flip .ch-img { order: 2; }
.ch-img { aspect-ratio: 4/5; overflow: hidden; background: var(--bg-2); }
.ch-img img { width: 100%; height: 100%; object-fit: cover; }
.ch-num { font-family: var(--serif); font-size: clamp(56px, 6vw, 84px); color: rgba(31,42,120,0.18); line-height: 0.9; letter-spacing: -0.02em; }
.ch-eyebrow { font-family: var(--odia); font-size: 14px; color: var(--gold); letter-spacing: 0.04em; margin: 16px 0 4px; }
.ch-title { font-family: var(--serif); font-size: clamp(32px, 3.5vw, 52px); line-height: 1.05; margin: 0 0 18px; font-weight: 400; }
.ch-title em { font-style: italic; color: var(--navy); }
.ch-text { font-family: var(--sans); font-size: clamp(15px, 1.15vw, 17px); line-height: 1.65; color: var(--ink-2); max-width: 50ch; }

.ar-timeline { background: var(--bg-2); padding: clamp(32px, 5vw, 60px) 0; }
.ar-timeline .section-head { padding-bottom: clamp(16px, 2vw, 24px); }
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: clamp(20px, 3vw, 36px); }
.tl-item { padding: 16px 16px 16px 0; border-left: 1px solid var(--rule); padding-left: 28px; position: relative; }
.tl-item::before { content: ""; position: absolute; left: -7px; top: 16px; width: 14px; height: 14px; border-radius: 50%; background: var(--red); }
.tl-year { font-family: var(--serif); font-size: 32px; color: var(--navy); margin: 0 0 8px; }
.tl-text { font-family: var(--sans); font-size: 14px; color: var(--ink-2); line-height: 1.55; margin: 0; }

.other-makers { padding-top: clamp(32px, 5vw, 60px); padding-bottom: clamp(32px, 5vw, 60px); }
.other-makers .section-head { padding-bottom: clamp(24px, 3vw, 40px); }
.makers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); }
.maker-card { display: flex; flex-direction: column; gap: 10px; }
.maker-img { aspect-ratio: 4/5; overflow: hidden; background: var(--bg-2); }
.maker-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.maker-card:hover .maker-img img { transform: scale(1.04); }
.maker-card h4 { font-family: var(--serif); font-size: 26px; margin: 0; font-weight: 400; }
.maker-card .role { font-family: var(--sans); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); }
.maker-card .script { font-family: var(--odia); color: var(--red); font-size: 14px; }

.ar-hero, .chapters, .other-makers { padding-left: 1cm; padding-right: 1cm; }

@media (max-width: 960px) {
  .ar-hero-grid { grid-template-columns: 1fr; }
  .ar-bio { grid-template-columns: 1fr; }
  .ar-stats { grid-template-columns: 1fr; }
  .ar-stats > div:nth-child(odd) { padding-right: 0; border-right: 0; }
  .ar-stats > div:nth-child(even) { padding-left: 0; }
  .chapter { grid-template-columns: 1fr; }
  .chapter.flip .ch-img { order: 0; }
  .timeline-grid { grid-template-columns: 1fr 1fr; }
  .makers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .timeline-grid { grid-template-columns: 1fr; }
  .makers-grid { grid-template-columns: 1fr; }
}

/* ============================================
   WhatsApp Float
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.wa-float * { pointer-events: auto; }
.wa-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(26,26,26,0.12);
  max-width: 220px;
  opacity: 0;
  transform: translateX(12px) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.wa-float.open .wa-card {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.wa-card-name {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.wa-card-msg {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 12px;
}
.wa-card-link {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #25D366;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wa-card-link:hover { color: #1aab52; }
.wa-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #25D366;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-btn img { width: 28px; height: 28px; filter: brightness(0) invert(1); display: block; }
@media (max-width: 540px) {
  .wa-float { bottom: 18px; right: 18px; }
  .wa-card { max-width: 180px; }
}
