/* ============================================
   ASSAM FURNITURE — DEMO 2
   Local trustworthy catalog style for Kampur
   ============================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul { list-style: none; }
input, select, textarea { font: inherit; color: inherit; }

/* ---------- THEME ---------- */
:root {
  --terracotta: #C8553D;
  --terracotta-dark: #A8412B;
  --terracotta-soft: #F2D5CC;

  --wood: #3E2C1F;
  --wood-2: #5C4533;
  --wood-soft: #E8DDD0;

  --cream: #F8F1E5;
  --cream-2: #FBF6EC;
  --white: #FFFFFF;

  --green: #6E8B5C;
  --green-dark: #50694A;

  --gold: #D4A24C;
  --gold-soft: #F5E5C2;

  --ink: #2A1F15;
  --muted: #7A6E62;
  --line: #E5DAC9;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 6px rgba(62,44,31,.06);
  --shadow: 0 8px 24px rgba(62,44,31,.10);
  --shadow-lg: 0 18px 50px rgba(62,44,31,.14);

  --container: 1200px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  color: var(--wood);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--ink); }
.muted { color: var(--muted); }
.small { font-size: 0.875rem; }
.strong { font-weight: 600; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.bg-cream { background: var(--cream); }
.bg-cream-2 { background: var(--cream-2); }
.bg-white { background: var(--white); }
.bg-wood { background: var(--wood); color: var(--cream); }
.bg-wood h2, .bg-wood h3, .bg-wood h4 { color: var(--cream); }
.bg-wood p { color: rgba(248,241,229,.85); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  background: var(--terracotta-soft);
  padding: 6px 14px;
  border-radius: 999px;
}
.eyebrow-light {
  background: rgba(255,255,255,.18);
  color: var(--cream);
}

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }
.align-center { align-items: center; }
.text-center { text-align: center; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--terracotta); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--terracotta-dark); box-shadow: var(--shadow); }

.btn-dark { background: var(--wood); color: var(--cream); }
.btn-dark:hover { background: #2a1c11; }

.btn-outline {
  background: transparent;
  color: var(--wood);
  border: 1.5px solid var(--wood);
}
.btn-outline:hover { background: var(--wood); color: var(--cream); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,.6);
}
.btn-outline-light:hover { background: var(--cream); color: var(--wood); }

.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe57; }

.btn-call { background: var(--green); color: #fff; }
.btn-call:hover { background: var(--green-dark); }

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--wood);
  color: var(--cream);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: var(--cream); opacity: .9; }
.topbar a:hover { opacity: 1; color: var(--gold); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-right .pipe { opacity: .35; }
.topbar svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 4px; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248,241,229,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--container);
  margin-inline: auto;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--terracotta);
  color: #fff;
  border-radius: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .5px;
}
.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--wood);
  line-height: 1;
}
.brand-name small {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 500;
}

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--wood);
  font-size: 0.95rem;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--terracotta-soft); color: var(--terracotta-dark); }
.nav-links a.active { color: var(--terracotta); background: var(--terracotta-soft); }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--wood);
}
.menu-toggle:hover { background: var(--wood-soft); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 20px 20px;
  border-top: 1px solid var(--line);
  background: var(--cream);
  gap: 4px;
}
.mobile-menu a {
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--wood);
}
.mobile-menu a:hover { background: var(--terracotta-soft); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    linear-gradient(180deg, rgba(248,241,229,.4) 0%, var(--cream) 100%),
    radial-gradient(900px 500px at 85% 0%, rgba(212,162,76,.15), transparent 60%),
    var(--cream);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow { margin-bottom: 18px; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .accent {
  color: var(--terracotta);
  font-style: italic;
  font-weight: 400;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--wood-2);
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-trust .ht-item p { font-size: 0.85rem; color: var(--muted); margin-top: 2px; }
.hero-trust .ht-item strong { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--wood); display: block; }

.hero-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-floater {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}
.hero-floater.fl-emi { left: -16px; bottom: 36px; }
.hero-floater.fl-warranty { right: -16px; top: 36px; }
.hero-floater .ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--terracotta-soft);
  color: var(--terracotta-dark);
  flex-shrink: 0;
}
.hero-floater .ic-green { background: #DDE9D2; color: var(--green-dark); }
.hero-floater .ic svg { width: 20px; height: 20px; }
.hero-floater strong { display: block; color: var(--wood); }
.hero-floater small { color: var(--muted); }

/* ---------- CATEGORY STRIP ---------- */
.cat-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  transition: transform .15s, box-shadow .2s, border-color .2s;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--terracotta-soft);
}
.cat-card .cat-ic {
  width: 52px; height: 52px;
  margin: 0 auto 10px;
  background: var(--cream);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--terracotta);
}
.cat-card .cat-ic svg { width: 26px; height: 26px; }
.cat-card h4 { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--wood); margin-bottom: 2px; }
.cat-card p { font-size: 0.78rem; color: var(--muted); }

/* ---------- PRODUCT CARD ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.product {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .15s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--wood-soft);
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.product:hover .product-img img { transform: scale(1.04); }
.badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--white);
  color: var(--wood);
  padding: 5px 11px;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-emi {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: var(--wood);
  padding: 5px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 6px;
}
.badge-deal {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--terracotta);
  color: #fff;
  padding: 5px 11px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.product-cat { font-size: 0.78rem; color: var(--muted); font-weight: 500; margin-bottom: 4px; letter-spacing: .04em; text-transform: uppercase; }
.product-name {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--wood);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-rating {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.product-rating .star { color: var(--gold); display: inline-flex; }
.product-price-row {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 6px;
}
.product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--terracotta);
  font-family: 'Fraunces', serif;
}
.product-mrp {
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: line-through;
}
.product-emi {
  font-size: 0.82rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.product-actions { display: flex; gap: 8px; margin-top: auto; }
.product-actions .btn { flex: 1; }

/* ---------- EMI BANNER ---------- */
.emi-banner {
  background: linear-gradient(135deg, var(--wood) 0%, #2a1c11 100%);
  color: var(--cream);
  border-radius: 22px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.emi-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(212,162,76,.25), transparent 70%);
  pointer-events: none;
}
.emi-banner h2 { color: var(--cream); margin-bottom: 12px; }
.emi-banner h2 .accent { color: var(--gold); font-style: italic; font-weight: 400; }
.emi-banner p { color: rgba(248,241,229,.85); margin-bottom: 24px; max-width: 480px; }
.emi-tile-group { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.emi-tile {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(212,162,76,.25);
  border-radius: 12px;
  padding: 18px;
}
.emi-tile h4 { color: var(--gold); font-family: 'DM Sans', sans-serif; font-size: 0.78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.emi-tile p { font-family: 'Fraunces', serif; font-size: 1.4rem; color: var(--cream); margin: 0; }

/* ---------- TRUST FEATURES ---------- */
.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform .15s, box-shadow .2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  background: var(--terracotta-soft);
  color: var(--terracotta-dark);
  border-radius: 14px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { font-size: 0.92rem; color: var(--muted); }
.feature.alt .feature-icon { background: #DDE9D2; color: var(--green-dark); }
.feature.gold .feature-icon { background: var(--gold-soft); color: #8a6a26; }
.feature.wood .feature-icon { background: var(--wood-soft); color: var(--wood); }

/* ---------- WEDDING TEASER ---------- */
.wedding-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.wedding-teaser .wt-text {
  background: var(--terracotta);
  color: #fff;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wedding-teaser .wt-text .eyebrow {
  background: rgba(255,255,255,.2);
  color: var(--cream);
  margin-bottom: 16px;
}
.wedding-teaser .wt-text h2 {
  color: #fff;
  margin-bottom: 14px;
}
.wedding-teaser .wt-text p { color: rgba(255,255,255,.9); margin-bottom: 24px; }
.wedding-teaser .wt-text .btn { align-self: flex-start; }
.wedding-teaser .wt-img { background: var(--wood-soft); }
.wedding-teaser .wt-img img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }

/* ---------- TESTIMONIALS ---------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid var(--line);
  position: relative;
}
.testimonial .quote-mark {
  position: absolute;
  top: 18px; right: 22px;
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--terracotta-soft);
}
.testimonial p.body { color: var(--wood-2); font-size: 0.98rem; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial .person { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-family: 'Fraunces', serif;
}
.testimonial .person h4 { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; margin: 0; }
.testimonial .person p { font-size: 0.8rem; color: var(--muted); }
.testimonial .stars { color: var(--gold); margin-bottom: 12px; display: flex; gap: 2px; }
.testimonial .stars svg { width: 16px; height: 16px; }

/* ---------- STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  padding: 40px 0 0;
  border-top: 1px solid var(--line);
  margin-top: 56px;
}
.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  color: var(--terracotta);
  font-weight: 700;
}
.stat-label {
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---------- FILTER BAR (PRODUCTS PAGE) ---------- */
.filterbar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.filter-group { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.filter-group .label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-right: 6px;
}
.chip {
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--wood);
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.chip:hover { background: var(--terracotta-soft); border-color: var(--terracotta-soft); }
.chip.active { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }

/* ---------- PAGE HERO (sub-pages) ---------- */
.page-hero {
  background:
    linear-gradient(180deg, rgba(248,241,229,.6), var(--cream-2)),
    radial-gradient(700px 360px at 80% 0%, rgba(200,85,61,.12), transparent 60%);
  padding: 70px 0 50px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { margin-bottom: 14px; }
.page-hero h1 .accent { color: var(--terracotta); font-style: italic; font-weight: 400; }
.page-hero p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--terracotta); }

/* ---------- WEDDING COMBO CARDS ---------- */
.combo {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .15s, box-shadow .2s;
}
.combo:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.combo.featured { border: 2px solid var(--terracotta); position: relative; }
.combo.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 14px; right: 14px;
  background: var(--terracotta);
  color: #fff;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  z-index: 2;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.combo-img {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--wood-soft);
}
.combo-img img { width: 100%; height: 100%; object-fit: cover; }
.combo-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.combo-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.combo-body .combo-tag {
  font-size: 0.82rem;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.combo-includes {
  list-style: none;
  margin-bottom: 22px;
}
.combo-includes li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--wood-2);
}
.combo-includes li:last-child { border-bottom: 0; }
.combo-includes li svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }
.combo-price-block {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.combo-price {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--terracotta);
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.combo-price .mrp {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
}
.combo-emi { font-size: 0.85rem; color: var(--green-dark); font-weight: 600; margin-bottom: 16px; }

/* ---------- ABOUT PAGE BITS ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}
.story-grid img { border-radius: var(--radius); box-shadow: var(--shadow); }
.story-grid h2 .accent { color: var(--terracotta); font-style: italic; font-weight: 400; }
.story-grid p { color: var(--wood-2); margin-bottom: 14px; font-size: 1.02rem; }

.process-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.process-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
  font-weight: 700;
}
.process-step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.process-step p { font-size: 0.92rem; color: var(--muted); }

.craftsmen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.craftsman {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.craftsman-img { aspect-ratio: 4/5; background: var(--wood-soft); }
.craftsman-img img { width: 100%; height: 100%; object-fit: cover; }
.craftsman-body { padding: 20px; }
.craftsman h4 { font-family: 'Fraunces', serif; font-size: 1.15rem; margin-bottom: 4px; }
.craftsman p.role { color: var(--terracotta); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.craftsman p.bio { color: var(--muted); font-size: 0.9rem; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.contact-card .ic-box {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: var(--terracotta-soft);
  color: var(--terracotta-dark);
  border-radius: 12px;
  flex-shrink: 0;
}
.contact-card.green .ic-box { background: #DDE9D2; color: var(--green-dark); }
.contact-card.gold .ic-box { background: var(--gold-soft); color: #8a6a26; }
.contact-card .ic-box svg { width: 22px; height: 22px; }
.contact-card h3 { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.contact-card p { color: var(--wood-2); font-size: 0.95rem; }
.contact-card .btn { margin-top: 12px; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.single { grid-template-columns: 1fr; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--wood); margin-bottom: 6px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream-2);
  font-size: 0.95rem;
  transition: border-color .2s, background .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
}
.form-field textarea { min-height: 120px; resize: vertical; }

.map-block {
  background: var(--wood-soft);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  padding: 30px;
}
.map-block svg { width: 48px; height: 48px; color: var(--terracotta); margin-bottom: 14px; }
.map-block p.strong { color: var(--wood); font-size: 1.05rem; margin-bottom: 4px; }
.map-block p.small { color: var(--muted); margin-bottom: 16px; }

.delivery-zone {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.zone-pill {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--wood);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.zone-pill .dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
}
.zone-pill.featured { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.zone-pill.featured .dot { background: var(--gold); }

/* ---------- ALERT / NOTICE ---------- */
.notice {
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.notice svg { color: #8a6a26; flex-shrink: 0; }
.notice strong { color: var(--wood); }
.notice p { color: var(--wood-2); font-size: 0.95rem; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--wood);
  color: var(--cream);
  padding: 64px 0 0;
  margin-top: 0;
}
.footer h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer ul li { margin-bottom: 8px; font-size: 0.92rem; }
.footer a { color: rgba(248,241,229,.8); transition: color .2s; }
.footer a:hover { color: var(--gold); }
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer .brand-name, .footer .brand-name small { color: var(--cream); }
.footer .brand-mark { background: var(--terracotta); }
.footer-desc { color: rgba(248,241,229,.78); font-size: 0.92rem; margin: 18px 0; max-width: 360px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  color: var(--cream);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--terracotta); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(248,241,229,.6);
}
.footer-bottom .heart { color: var(--terracotta); }

/* ---------- WHATSAPP FLOATING BUTTON ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.4);
  z-index: 90;
  transition: transform .15s;
  animation: wa-pulse 2.4s ease-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37,211,102,.4); }
  50% { box-shadow: 0 10px 28px rgba(37,211,102,.4), 0 0 0 14px rgba(37,211,102,.0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { aspect-ratio: 4/3; max-width: 560px; }
  .hero-floater.fl-emi, .hero-floater.fl-warranty { left: 16px; right: auto; }
  .hero-floater.fl-warranty { top: auto; bottom: 16px; right: 16px; left: auto; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cat-strip { grid-template-columns: repeat(3, 1fr); }
  .craftsmen-grid { grid-template-columns: repeat(2, 1fr); }

  .emi-banner { grid-template-columns: 1fr; padding: 36px; }
  .wedding-teaser { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }

  .footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .nav-links.desktop-only { display: none; }
  .menu-toggle { display: flex; }
  .mobile-menu.open { display: flex; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .product-grid, .product-grid.cols-4 { grid-template-columns: 1fr; }
  .cat-strip { grid-template-columns: repeat(2, 1fr); }
  .craftsmen-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .emi-tile-group { grid-template-columns: 1fr; }
  .emi-banner { padding: 28px; }
  .wedding-teaser .wt-text { padding: 36px 28px; }
  .topbar { font-size: 0.78rem; }
  .topbar .container { justify-content: center; gap: 10px; }
  .topbar-left { display: none; }
  .hero-floater { display: none; }
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
}

/* ---------- HELPERS ---------- */
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 40px; }
.hidden { display: none !important; }
