/* =========================================================
   Tulasi Areca Leaf Plates — Stylesheet
   Authentic Indian theme: terracotta, maroon, saffron gold,
   areca-leaf green, warm ivory backgrounds.
   ========================================================= */

:root {
  --maroon: #7a1f2b;
  --maroon-dark: #5a141d;
  --terracotta: #c1502e;
  --terracotta-dark: #a03d20;
  --saffron: #e0a336;
  --saffron-light: #f4c869;
  --leaf-green: #4b6a39;
  --leaf-green-dark: #34492a;
  --cream: #fdf6ea;
  --cream-dark: #f5e9d0;
  --ink: #3b2a1a;
  --ink-light: #6b5842;
  --white: #fffdf8;
  --shadow-soft: 0 10px 30px rgba(90, 40, 20, 0.12);
  --shadow-strong: 0 16px 40px rgba(90, 40, 20, 0.22);
  --radius: 16px;
  --radius-sm: 8px;
  --font-heading: 'Yatra One', cursive;
  --font-body: 'Mukta', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-width: 1180px;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--maroon);
  line-height: 1.25;
  font-weight: 400;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p { color: var(--ink-light); }
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section spacing ---------- */
section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-title {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 12px;
}
.section-subtitle {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
  color: var(--ink-light);
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.center { text-align: center; }
.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-white { background: var(--white); }

/* ---------- Motif divider (paisley strip) ---------- */
.motif-divider {
  height: 26px;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='26' viewBox='0 0 44 26'%3E%3Cpath d='M12 3c-5 0-8 3.5-8 8 0 6 5 9.5 10.5 10.5 1-3.5 3.5-6 7-6 3.5 0-1 4.5 2.5 4.5 3.5 0 6-3.5 6-7.5C30 5 22 3 12 3z' fill='%23e0a336'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  background-size: 44px 26px;
  opacity: 0.85;
}
.motif-divider.dark {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='26' viewBox='0 0 44 26'%3E%3Cpath d='M12 3c-5 0-8 3.5-8 8 0 6 5 9.5 10.5 10.5 1-3.5 3.5-6 7-6 3.5 0-1 4.5 2.5 4.5 3.5 0 6-3.5 6-7.5C30 5 22 3 12 3z' fill='%23fdf6ea'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-gold {
  background: var(--saffron);
  color: var(--maroon-dark);
  box-shadow: var(--shadow-soft);
}
.btn-gold:hover { background: var(--saffron-light); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--maroon);
  color: var(--maroon);
  background: transparent;
}
.btn-outline:hover { background: var(--maroon); color: var(--white); }
.btn-whatsapp {
  background: #3fa346;
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-whatsapp:hover { background: #338a39; transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Header ---------- */
body { padding-top: 96px; }
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1180px;
  z-index: 100;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 32px rgba(90, 40, 20, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  color: var(--maroon);
}
.logo-img {
  display: block;
  height: 82px;
  width: 82px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--terracotta); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}
.hamburger span {
  height: 3px;
  background: var(--maroon);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 55%, var(--terracotta-dark) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 100px 0 90px;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border: 2px solid rgba(224, 163, 54, 0.35);
  border-radius: 50%;
}
.hero::before { width: 420px; height: 420px; top: -180px; right: -140px; }
.hero::after { width: 260px; height: 260px; bottom: -140px; left: -80px; }
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--saffron-light);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(244, 200, 105, 0.4);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 span { color: var(--saffron-light); }
.hero p.lead {
  color: rgba(255, 253, 248, 0.88);
  max-width: 540px;
  margin-bottom: 34px;
  font-size: 1.08rem;
}
.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--saffron-light);
}
.hero-stats div span { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art svg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  max-width: 380px;
  height: auto;
}
.hero-logo {
  position: relative;
  z-index: 1;
  width: 78%;
  max-width: 290px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 34px rgba(90, 40, 20, 0.28), 0 0 0 6px rgba(253, 246, 234, 0.9);
}

/* ---------- USP strip ---------- */
.usp-strip {
  background: var(--white);
  padding: 44px 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.usp-item svg { width: 42px; height: 42px; margin: 0 auto 10px; }
.usp-item h4 { font-family: var(--font-body); font-size: 0.95rem; color: var(--ink); font-weight: 700; }
.usp-item p { font-size: 0.82rem; margin-top: 4px; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto;
  gap: 30px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.card-media {
  background: linear-gradient(160deg, var(--cream-dark), var(--saffron-light) 140%);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.card-media svg { width: 55%; height: 55%; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media .img-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 0.65rem;
  background: rgba(59, 42, 26, 0.65);
  color: var(--white);
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { margin-bottom: 2px; }
.card-body p { font-size: 0.92rem; }
.card-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 6px 0; }
.tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--leaf-green-dark);
  background: rgba(75, 106, 57, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
}
.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--cream-dark);
}
.price-note { font-size: 0.82rem; font-weight: 700; color: var(--terracotta); }

/* ---------- Product detail rows (products page) ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: center;
  padding: 46px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.product-detail:last-child { border-bottom: none; }
.product-detail.reverse { grid-template-columns: 1.15fr 0.85fr; }
.product-detail.reverse .product-media { order: 2; }
.product-media {
  background: linear-gradient(160deg, var(--cream-dark), var(--saffron-light) 140%);
  border-radius: var(--radius);
  aspect-ratio: 5 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.product-media svg { width: 48%; height: 48%; }
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.size-thumbs {
  display: flex;
  gap: 14px;
  margin: 18px 0 6px;
}
.size-thumb {
  flex: 1;
  text-align: center;
}
.size-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--cream-dark);
}
.size-thumb span {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--terracotta);
}
.product-media .img-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 0.68rem;
  background: rgba(59, 42, 26, 0.65);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 999px;
}
.spec-list { margin: 16px 0; display: grid; gap: 8px; }
.spec-list li { font-size: 0.92rem; display: flex; gap: 8px; }
.spec-list li strong { color: var(--ink); min-width: 130px; display: inline-block; }

/* ---------- Two-column content ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.two-col.reverse .two-col-media { order: 2; }
.two-col-media {
  background: linear-gradient(160deg, var(--cream-dark), var(--white));
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.feature-list { display: grid; gap: 16px; margin-top: 20px; }
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--ink-light);
}
.feature-list li svg { flex-shrink: 0; width: 26px; height: 26px; margin-top: 2px; }
.feature-list li strong { color: var(--ink); display: block; }

/* ---------- Comparison table ---------- */
.compare-table-wrap { overflow-x: auto; box-shadow: var(--shadow-soft); border-radius: var(--radius); }
table.compare {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 620px;
}
table.compare th, table.compare td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.92rem;
}
table.compare thead th {
  background: var(--maroon);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.05rem;
}
table.compare tbody tr:nth-child(odd) { background: var(--cream); }
table.compare td.good { color: var(--leaf-green-dark); font-weight: 700; }
table.compare td.bad { color: var(--terracotta-dark); font-weight: 700; }

/* ---------- Process steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
  margin-top: 20px;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--saffron);
  color: var(--maroon-dark);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
.step svg { width: 44px; height: 44px; margin: 14px auto 10px; }
.step h4 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.86rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--cream-dark), var(--saffron-light) 150%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.gallery-item svg { width: 60px; height: 60px; opacity: 0.85; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item.has-photo { overflow: hidden; }
.gallery-item span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--maroon-dark);
  text-align: center;
  padding: 0 14px;
}
.gallery-item .cat-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(59,42,26,0.65);
  color: var(--white);
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 400;
}

/* ---------- Stat band ---------- */
.stat-band {
  background: var(--leaf-green-dark);
  color: var(--white);
  padding: 50px 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-grid strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  color: var(--saffron-light);
}
.stat-grid span { font-size: 0.88rem; color: rgba(255,255,255,0.82); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--terracotta), var(--maroon));
  color: var(--white);
  border-radius: var(--radius);
  padding: 50px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-strong);
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.85); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; gap: 8px; margin-bottom: 20px; }
.form-row.two { grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row label { font-weight: 700; font-size: 0.88rem; color: var(--ink); }
.form-row input,
.form-row select,
.form-row textarea {
  font-family: inherit;
  font-size: 0.96rem;
  padding: 13px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.form-row .error-msg {
  display: none;
  color: var(--maroon);
  font-size: 0.78rem;
  font-weight: 600;
}
.form-row.invalid input,
.form-row.invalid select,
.form-row.invalid textarea { border-color: var(--maroon); }
.form-row.invalid .error-msg { display: block; }
.form-note { font-size: 0.82rem; margin-top: 14px; }
.form-success {
  display: none;
  background: rgba(75, 106, 57, 0.12);
  border: 1.5px solid var(--leaf-green);
  color: var(--leaf-green-dark);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-top: 18px;
}
.form-success.show { display: block; }

/* ---------- Contact info blocks ---------- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.contact-info-card svg { width: 40px; height: 40px; margin: 0 auto 12px; }
.contact-info-card h4 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.contact-info-card p { font-size: 0.9rem; }
.map-placeholder {
  background: repeating-linear-gradient(45deg, var(--cream-dark), var(--cream-dark) 12px, var(--cream) 12px, var(--cream) 24px);
  border-radius: var(--radius);
  aspect-ratio: 16/6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  padding: 20px;
}
.map-placeholder svg { width: 50px; height: 50px; }
.map-placeholder p { font-size: 0.85rem; max-width: 420px; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/6;
  box-shadow: var(--shadow-soft);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 600px) {
  .map-embed { aspect-ratio: 4/3; }
}

.reel-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 24px auto 0;
}
.reel-embed {
  width: 340px;
  max-width: 100%;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.reel-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Page header banner (inner pages) ---------- */
.page-banner {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark) 70%);
  color: var(--white);
  padding: 64px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border: 2px solid rgba(224,163,54,0.3);
  border-radius: 50%;
  top: -160px; right: -100px;
}
.page-banner .eyebrow { color: var(--saffron-light); }
.page-banner h1 { color: var(--white); margin-bottom: 10px; }
.page-banner p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 14px;
}
.breadcrumb a { color: var(--saffron-light); font-weight: 700; }

/* ---------- About page ---------- */
.founder-quote {
  background: var(--cream-dark);
  border-left: 5px solid var(--saffron);
  border-radius: var(--radius-sm);
  padding: 30px 34px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--maroon-dark);
}
.founder-quote span {
  display: block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-light);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
}
.value-card svg { width: 38px; height: 38px; margin-bottom: 12px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--maroon-dark);
  color: rgba(255,253,248,0.85);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .logo-img { box-shadow: 0 0 0 3px rgba(255,253,248,0.15); }
.footer-brand p { color: rgba(255,253,248,0.7); margin-top: 14px; font-size: 0.9rem; }
.footer-col h4 {
  font-family: var(--font-body);
  color: var(--saffron-light);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,253,248,0.78); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--saffron-light); }
.footer-col p { font-size: 0.9rem; color: rgba(255,253,248,0.78); }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.social-row a:hover { background: var(--saffron); }
.social-row svg { width: 18px; height: 18px; }
.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,253,248,0.6);
}
.footer-bottom strong { color: var(--saffron-light); }

/* ---------- Floating WhatsApp button ---------- */
.float-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #3fa346;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
  transition: transform 0.2s ease;
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp svg { width: 30px; height: 30px; }

/* ---------- Utility ---------- */
.mt-lg { margin-top: 40px; }
.mb-lg { margin-bottom: 40px; }
.text-wrap { max-width: 620px; }
.badge-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(75,106,57,0.1);
  color: var(--leaf-green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-stats { justify-content: center; }
  .hero-art { order: -1; max-width: 280px; margin: 0 auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail, .product-detail.reverse {
    grid-template-columns: 1fr;
  }
  .product-detail.reverse .product-media { order: 0; }
  .two-col, .two-col.reverse { grid-template-columns: 1fr; }
  .two-col.reverse .two-col-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 88px;
    left: 16px; right: 16px;
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 32px rgba(90, 40, 20, 0.18);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 420px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 10px 24px 20px; }
  .main-nav ul li { border-bottom: 1px solid var(--cream-dark); }
  .main-nav ul li:last-child { border-bottom: none; }
  .main-nav ul li a { display: block; padding: 14px 0; }
  .hamburger { display: flex; }
  .header-cta .btn span { display: none; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  table.compare { min-width: 560px; }
}

/* ---------- Traditional splash / welcome screen ---------- */
body.splash-active { overflow: hidden; }
#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background:
    radial-gradient(circle at 50% 40%, var(--maroon) 0%, var(--maroon-dark) 75%);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#splash-screen::before,
#splash-screen::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='26' viewBox='0 0 44 26'%3E%3Cpath d='M12 3c-5 0-8 3.5-8 8 0 6 5 9.5 10.5 10.5 1-3.5 3.5-6 7-6 3.5 0-1 4.5 2.5 4.5 3.5 0 6-3.5 6-7.5C30 5 22 3 12 3z' fill='%23e0a336'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
  background-size: 44px 26px;
  opacity: 0.75;
}
#splash-screen::before { top: 0; }
#splash-screen::after { bottom: 0; transform: scaleY(-1); }
#splash-screen.splash-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-glow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splash-glow::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,163,54,0.55) 0%, rgba(224,163,54,0) 70%);
  animation: splashGlowPulse 2.2s ease-in-out infinite;
}
.splash-logo {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(253,246,234,0.85), var(--shadow-strong);
  opacity: 0;
  animation: splashLogoIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards;
}
.splash-tagline {
  font-family: var(--font-heading);
  color: var(--cream);
  font-size: 1.4rem;
  text-align: center;
  opacity: 0;
  animation: splashFadeUp 0.8s ease 0.9s forwards;
}
.splash-dots {
  display: flex;
  gap: 8px;
  opacity: 0;
  animation: splashFadeUp 0.8s ease 1.2s forwards;
}
.splash-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron);
  animation: splashDotBounce 1.1s ease-in-out infinite;
}
.splash-dots span:nth-child(2) { animation-delay: 0.15s; }
.splash-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes splashLogoIn {
  0% { transform: scale(0.4) rotate(-10deg); opacity: 0; }
  70% { transform: scale(1.06) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes splashFadeUp {
  from { transform: translateY(14px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes splashGlowPulse {
  0%, 100% { transform: scale(0.92); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes splashDotBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(-6px); opacity: 1; }
}

@media (max-width: 500px) {
  .splash-logo { width: 130px; height: 130px; }
  .splash-glow::before { width: 190px; height: 190px; }
  .splash-tagline { font-size: 1.15rem; padding: 0 30px; }
}

@media (prefers-reduced-motion: reduce) {
  #splash-screen, .splash-logo, .splash-tagline, .splash-dots, .splash-glow::before {
    animation: none !important;
    transition: opacity 0.3s ease !important;
  }
  .splash-logo, .splash-tagline, .splash-dots { opacity: 1; }
}
