/* ============================================
   SOHLA FARMS — Premium Luxury Ecommerce
   ============================================ */

:root {
  /* Palette — matched to Sohla Farms brand packaging (deep emerald + gold) */
  --ivory: #F7F2E9;
  --ivory-deep: #EDE4D0;
  --cream: #FAF6EE;
  --beige: #E2D5B8;
  --forest-deep: #0E2A22;   /* deep emerald like the mango-box background */
  --forest: #134032;
  --forest-mid: #1F5544;
  --earth: #4A3220;
  --earth-dark: #2A1C12;
  --gold: #C9A04A;          /* brand gold from the wordmark */
  --gold-deep: #A98232;
  --gold-light: #E4C277;
  --sage: #8A9A82;
  --rust: #A0522D;
  --saffron: #E08531;
  --terracotta: #C46A4E;
  --mango: #E5B04A;

  /* Type */
  --f-display: "Cormorant Garamond", "Bodoni Moda", Georgia, serif;
  --f-body: "Jost", "Helvetica Neue", sans-serif;
  --f-hindi: "Tiro Devanagari Hindi", "Cormorant Garamond", serif;
  --f-gujarati: "Tiro Gurmukhi", "Noto Serif Gujarati", "Cormorant Garamond", serif;

  /* Geometry */
  --r-sm: 4px;
  --r-md: 12px;
  --r-lg: 24px;
  --r-xl: 36px;

  /* Easing */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-luxe: cubic-bezier(0.65, 0, 0.35, 1);

  /* Container */
  --max: 1440px;
  --pad: clamp(20px, 5vw, 80px);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--earth-dark);
  background: var(--ivory);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   GRAIN OVERLAY (atmosphere)
   ============================================ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--forest-deep);
  z-index: 10000;
  display: grid;
  place-items: center;
  transition: opacity 0.8s var(--ease-luxe), visibility 0s 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader__inner {
  text-align: center;
  color: var(--ivory);
}
.loader__mark {
  font-family: var(--f-display);
  font-size: 56px;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeIn 0.6s 0.2s var(--ease-out) forwards;
}
.loader__bar {
  width: 120px;
  height: 1px;
  background: rgba(247, 242, 233, 0.2);
  margin: 0 auto;
  overflow: hidden;
}
.loader__bar::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: var(--gold-light);
  transform: translateX(-100%);
  animation: load 1.6s 0.4s var(--ease-luxe) forwards;
}
.loader__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 16px;
  opacity: 0;
  animation: fadeIn 0.6s 1.2s var(--ease-out) forwards;
  color: var(--gold-light);
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes load { to { transform: translateX(0); } }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  padding: 14px var(--pad);
  background: rgba(247, 242, 233, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(74, 50, 32, 0.08);
}
.nav__phone {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}
.nav.scrolled .nav__phone { color: var(--forest-deep); }
.nav__phone-dot {
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}
.nav__brand {
  text-align: center;
  font-family: var(--f-display);
  color: var(--ivory);
  transition: color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1;
}
/* (overridden below to keep tree mark) */
.nav__brand-name {
  display: block;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav__brand-sub {
  display: block;
  font-family: var(--f-body);
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.7;
}
.nav__links {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: nowrap;
}
.nav__links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav.scrolled .nav__links a { color: var(--forest-deep); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); }

@media (max-width: 900px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav__phone span:not(.nav__phone-dot) { display: none; }
  .nav__links { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 42, 34, 0.45) 0%, rgba(14, 42, 34, 0.15) 35%, rgba(14, 42, 34, 0.55) 75%, rgba(14, 42, 34, 0.92) 100%),
    radial-gradient(ellipse at 25% 45%, transparent 0%, rgba(14, 42, 34, 0.35) 100%);
}
.hero img { filter: saturate(1.06) contrast(1.02); }

/* Tree-mark logo — brand identifier */
.tree-mark {
  width: 26px;
  height: 26px;
  color: var(--gold-light);
  flex-shrink: 0;
}
.nav__brand {
  text-align: center;
  font-family: var(--f-display);
  color: var(--ivory);
  transition: color 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1;
  white-space: nowrap;
}
.nav.scrolled .nav__brand { color: var(--forest-deep); }
.nav.scrolled .tree-mark { color: var(--gold-deep); }
.nav__brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__brand-row .nav__brand-name { margin: 0; font-size: 22px; }
.nav__brand .nav__brand-sub { font-size: 8.5px; letter-spacing: 0.32em; }
@media (max-width: 1100px) {
  .nav__brand .nav__brand-sub { display: none; }
  .nav__brand-row .nav__brand-name { font-size: 20px; }
  .tree-mark { width: 22px; height: 22px; }
}

.hero__content {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 160px var(--pad) 100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}
.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  opacity: 0;
  animation: revealUp 1s 0.3s var(--ease-out) forwards;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold-light);
}
.hero__eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold-light);
}
.hero__hindi {
  font-family: var(--f-hindi);
  font-size: 28px;
  opacity: 0;
  margin-bottom: -8px;
  animation: revealUp 1s 0.4s var(--ease-out) forwards;
  color: var(--gold-light);
  font-weight: 400;
}
.hero__gujarati {
  font-family: var(--f-gujarati);
  font-size: 22px;
  opacity: 0;
  margin-top: 6px;
  animation: revealUp 1s 0.5s var(--ease-out) forwards;
  color: var(--gold-light);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(48px, 8.5vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: revealUp 1.2s 0.6s var(--ease-out) forwards;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.hero__sub {
  font-size: clamp(16px, 1.4vw, 20px);
  max-width: 520px;
  opacity: 0;
  animation: revealUp 1s 0.9s var(--ease-out) forwards;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: revealUp 1s 1.1s var(--ease-out) forwards;
}
@keyframes revealUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__bottom {
  position: absolute;
  bottom: 36px;
  left: var(--pad);
  right: var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0;
  animation: fadeIn 1s 1.4s var(--ease-out) forwards;
}
.hero__phone-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__phone-card strong {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: var(--gold-light);
  text-transform: none;
}
.hero__scroll {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__scroll-line {
  width: 60px;
  height: 1px;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  animation: scrollLine 2.5s var(--ease-luxe) infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* Floating leaves */
.leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.25;
  animation: float 18s linear infinite;
  z-index: -1;
}
.leaf--1 { top: 15%; left: 8%; width: 60px; animation-delay: 0s; }
.leaf--2 { top: 60%; right: 10%; width: 80px; animation-delay: -6s; animation-duration: 22s; }
.leaf--3 { top: 30%; right: 25%; width: 50px; animation-delay: -12s; animation-duration: 20s; }
@keyframes float {
  0%   { transform: translateY(0) translateX(0) rotate(0); }
  25%  { transform: translateY(-30px) translateX(20px) rotate(15deg); }
  50%  { transform: translateY(-10px) translateX(-15px) rotate(-10deg); }
  75%  { transform: translateY(-40px) translateX(10px) rotate(8deg); }
  100% { transform: translateY(0) translateX(0) rotate(0); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  font-weight: 400;
  white-space: nowrap;
}
.btn__arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}
.btn:hover .btn__arrow { transform: translateX(6px); }

.btn--gold {
  background: var(--gold-light);
  color: var(--forest-deep);
}
.btn--gold:hover { background: var(--ivory); }

.btn--outline {
  border: 1px solid currentColor;
  color: var(--ivory);
}
.btn--outline:hover {
  background: var(--ivory);
  color: var(--forest-deep);
}

.btn--dark {
  background: var(--forest-deep);
  color: var(--ivory);
}
.btn--dark:hover { background: var(--earth-dark); }

.btn--whatsapp {
  background: #25D366;
  color: white;
}
.btn--whatsapp:hover { background: #1da851; }

.btn--ghost {
  color: var(--forest-deep);
  border: 1px solid var(--forest-deep);
}
.btn--ghost:hover { background: var(--forest-deep); color: var(--ivory); }

/* ============================================
   GENERIC SECTION
   ============================================ */
.section {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.section--full {
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
}
.section--dark {
  background: var(--forest-deep);
  color: var(--ivory);
}
.section--cream {
  background: var(--cream);
}
.section--earth {
  background: var(--earth-dark);
  color: var(--ivory);
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-deep);
  margin-bottom: 20px;
  font-weight: 400;
}
.eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: currentColor;
}
.section--dark .eyebrow, .section--earth .eyebrow { color: var(--gold-light); }

.section-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.section-title em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.section--dark .section-title em, .section--earth .section-title em { color: var(--gold-light); }

/* ============================================
   TRUST BAR
   ============================================ */
.trust {
  background: var(--forest-deep);
  color: var(--ivory);
  padding: 0;
  border-top: 1px solid rgba(184, 147, 90, 0.2);
  border-bottom: 1px solid rgba(184, 147, 90, 0.2);
  overflow: hidden;
}
.trust__track {
  display: flex;
  gap: 80px;
  padding: 28px 0;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.trust__icon {
  width: 8px; height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  transform: rotate(45deg);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   PRODUCTS
   ============================================ */
.products__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.products__head p {
  font-size: 17px;
  max-width: 440px;
  color: var(--earth);
  line-height: 1.6;
}
@media (max-width: 800px) { .products__head { grid-template-columns: 1fr; } }

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .products__grid { grid-template-columns: 1fr; } }

.product {
  background: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.6s var(--ease-out);
  border: 1px solid rgba(74, 50, 32, 0.06);
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(26, 46, 34, 0.2);
}
.product__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: var(--ivory-deep);
}
.product__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-luxe);
}
.product:hover .product__media img { transform: scale(1.08); }
.product__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--ivory);
  color: var(--forest-deep);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  font-weight: 500;
}
.product__tag--gold { background: var(--gold-light); color: var(--earth-dark); }
.product__body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product__cat {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.product__title {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 4px;
}
.product__desc {
  font-size: 14px;
  color: var(--earth);
  line-height: 1.5;
  margin-bottom: 16px;
}
.product__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(74, 50, 32, 0.1);
  margin-bottom: 18px;
}
.product__price {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--forest-deep);
  font-weight: 500;
}
.product__unit {
  font-size: 12px;
  color: var(--earth);
  opacity: 0.7;
}
.product__actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.product__actions .btn {
  padding: 14px 18px;
  font-size: 10px;
  letter-spacing: 0.2em;
  flex: 1;
  justify-content: center;
}

/* ============================================
   ABOUT — alternating cinematic
   ============================================ */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.about-block:last-child { margin-bottom: 0; }
.about-block--reverse { direction: rtl; }
.about-block--reverse > * { direction: ltr; }

@media (max-width: 900px) {
  .about-block { grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
  .about-block--reverse { direction: ltr; }
}

.about-block__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-md);
  position: relative;
}
.about-block__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-block__num {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 80px;
  color: var(--ivory);
  line-height: 1;
  opacity: 0.85;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.about-block__body {
  padding: 0 20px;
}
.about-block__body .section-title {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 24px;
}
.about-block__body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--earth);
  margin-bottom: 16px;
  max-width: 480px;
}

/* ============================================
   WHY CHOOSE US — comparison grid
   ============================================ */
.why__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.why__head p {
  margin-top: 20px;
  font-size: 17px;
  opacity: 0.85;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(184, 147, 90, 0.2);
  border: 1px solid rgba(184, 147, 90, 0.2);
}
@media (max-width: 900px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why__grid { grid-template-columns: 1fr; } }

.why__cell {
  background: var(--forest-deep);
  padding: 48px 36px;
  transition: background 0.4s;
  position: relative;
}
.why__cell:hover { background: var(--forest); }
.why__cell-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}
.why__cell-title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.1;
}
.why__cell-desc {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1.6;
}
.why__cell-icon {
  position: absolute;
  top: 36px; right: 36px;
  width: 32px; height: 32px;
  opacity: 0.4;
}

/* ============================================
   THREE GENERATIONS — lineage timeline
   ============================================ */
.lineage {
  background:
    radial-gradient(ellipse at top, rgba(184, 147, 90, 0.08) 0%, transparent 60%),
    var(--earth-dark);
}
.lineage__head {
  max-width: 760px;
  margin: 0 auto 100px;
  text-align: center;
}
.lineage__lede {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.78;
}
.lineage__timeline {
  list-style: none;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.lineage__entry {
  display: grid;
  grid-template-columns: 60px 140px 1fr;
  gap: 40px;
  padding: 50px 0;
  align-items: start;
  position: relative;
}
.lineage__entry + .lineage__entry { border-top: 1px solid rgba(228, 194, 119, 0.12); }
.lineage__rail {
  position: relative;
  width: 60px;
  height: 100%;
  display: flex;
  justify-content: center;
}
.lineage__rail::before {
  content: "";
  position: absolute;
  top: 0; bottom: -100px;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(228, 194, 119, 0.4), rgba(228, 194, 119, 0.05));
  transform: translateX(-50%);
}
.lineage__entry:last-child .lineage__rail::before { background: linear-gradient(to bottom, rgba(228, 194, 119, 0.4) 0%, rgba(228, 194, 119, 0.4) 30%, transparent 100%); }
.lineage__dot {
  position: absolute;
  top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(228, 194, 119, 0.18), 0 0 0 8px rgba(228, 194, 119, 0.08);
}

.lineage__year {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 0;
}
.lineage__year-num {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-light);
  font-feature-settings: "lnum";
}
.lineage__year-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.65;
  margin-top: 6px;
}
.lineage__body {
  max-width: 580px;
}
.lineage__name {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.15;
}
.lineage__name span {
  font-style: italic;
  color: var(--gold-light);
  font-size: 22px;
  opacity: 0.7;
  margin-left: 4px;
}
.lineage__role {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 18px;
}
.lineage__body p {
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.82;
  margin-bottom: 14px;
}
.lineage__quote {
  font-family: var(--f-gujarati);
  font-style: normal;
  font-size: 17px;
  color: var(--gold-light);
  border-left: 1.5px solid var(--gold-light);
  padding-left: 18px;
  margin-top: 22px;
  line-height: 1.5;
  opacity: 0.95 !important;
}
.lineage__quote em {
  display: block;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--ivory);
  opacity: 0.75;
  font-size: 15px;
  margin-top: 6px;
  font-weight: 400;
}

@media (max-width: 800px) {
  .lineage__entry { grid-template-columns: 30px 1fr; gap: 24px; }
  .lineage__rail { width: 30px; }
  .lineage__year { grid-column: 2; }
  .lineage__body { grid-column: 2; }
  .lineage__year-num { font-size: 42px; }
  .lineage__name { font-size: 26px; }
}

.lineage__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 100px;
  border-top: 1px solid rgba(228, 194, 119, 0.18);
  border-bottom: 1px solid rgba(228, 194, 119, 0.18);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.lineage__stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(228, 194, 119, 0.12);
}
.lineage__stat:last-child { border-right: none; }
.lineage__stat-num {
  display: block;
  font-family: var(--f-display);
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.lineage__stat-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
}
@media (max-width: 800px) {
  .lineage__stats { grid-template-columns: repeat(2, 1fr); }
  .lineage__stat:nth-child(2) { border-right: none; }
  .lineage__stat:nth-child(1), .lineage__stat:nth-child(2) {
    border-bottom: 1px solid rgba(228, 194, 119, 0.12);
  }
}

/* Footer brand row with tree mark */
.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ============================================
   PRODUCT ILLUSTRATIONS — painterly SVG art
   ============================================ */
.product__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background: var(--ivory-deep);
}
.product__media--illus {
  background: linear-gradient(165deg, var(--cream) 0%, var(--ivory-deep) 100%);
}
.product__illus {
  width: 100%;
  height: 100%;
  display: block;
}
/* Subtle paper grain inside product art */
.product__media--illus::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.08;
  mix-blend-mode: multiply;
  pointer-events: none;
}
/* Decorative product backdrop — hand-drawn arch / kothi shape */
.product__backdrop {
  position: absolute;
  inset: 12% 14% 0;
  border-radius: 50% 50% 8% 8% / 60% 60% 8% 8%;
  background: var(--ivory);
  border: 1px solid rgba(184, 147, 90, 0.25);
  pointer-events: none;
}
.product__backdrop--green { background: rgba(45, 74, 56, 0.06); border-color: rgba(45, 74, 56, 0.2); }
.product__backdrop--gold  { background: rgba(212, 181, 130, 0.12); border-color: rgba(184, 147, 90, 0.4); }
.product__backdrop--cream { background: rgba(247, 242, 233, 0.7); }
.product__backdrop--earth { background: rgba(74, 50, 32, 0.05); border-color: rgba(74, 50, 32, 0.18); }

.product__monogram {
  position: absolute;
  bottom: 18px; right: 22px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 12px;
  color: var(--gold-deep);
  opacity: 0.7;
  letter-spacing: 0.1em;
}
.product__corner {
  position: absolute;
  top: 16px; right: 16px;
  width: 28px; height: 28px;
  opacity: 0.4;
  color: var(--gold-deep);
}

/* ============================================
   GALLERY ILLUSTRATIONS
   ============================================ */

/* ============================================
   GALLERY — masonry
   ============================================ */
.gallery {
  padding: clamp(80px, 12vw, 160px) var(--pad);
  background: var(--ivory);
}
.gallery__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 30px;
}
.gallery__head p {
  max-width: 360px;
  color: var(--earth);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}
.gallery__item {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-luxe);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 46, 34, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__cap {
  position: absolute;
  bottom: 16px; left: 16px;
  color: var(--ivory);
  font-family: var(--f-display);
  font-size: 20px;
  font-style: italic;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out);
  z-index: 2;
}
.gallery__item:hover .gallery__cap { opacity: 1; transform: translateY(0); }

.gallery__item--a { grid-column: span 5; grid-row: span 4; }
.gallery__item--b { grid-column: span 4; grid-row: span 2; }
.gallery__item--c { grid-column: span 3; grid-row: span 3; }
.gallery__item--d { grid-column: span 4; grid-row: span 2; }
.gallery__item--e { grid-column: span 3; grid-row: span 2; }
.gallery__item--f { grid-column: span 4; grid-row: span 3; }
.gallery__item--g { grid-column: span 5; grid-row: span 3; }

@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 100px; }
  .gallery__item--a, .gallery__item--g { grid-column: span 6; grid-row: span 3; }
  .gallery__item--b, .gallery__item--d, .gallery__item--f { grid-column: span 3; grid-row: span 2; }
  .gallery__item--c, .gallery__item--e { grid-column: span 3; grid-row: span 2; }
}

/* ============================================
   TESTIMONIALS — glassmorphism on bg image
   ============================================ */
.testimonials {
  position: relative;
  background: var(--forest-deep);
  color: var(--ivory);
  overflow: hidden;
  padding: clamp(100px, 14vw, 180px) var(--pad);
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1591946062763-a33cce86b615?w=2000&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}
.testimonials__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}
.testimonials__head {
  text-align: center;
  margin-bottom: 80px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonials__grid { grid-template-columns: 1fr; } }
.testimonial {
  background: rgba(247, 242, 233, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(247, 242, 233, 0.15);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial__stars {
  color: var(--gold-light);
  letter-spacing: 0.2em;
  font-size: 14px;
}
.testimonial__quote {
  font-family: var(--f-display);
  font-size: 21px;
  line-height: 1.45;
  font-weight: 300;
  font-style: italic;
  flex: 1;
}
.testimonial__quote::before { content: "“"; color: var(--gold-light); margin-right: 4px; font-size: 28px; }
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 242, 233, 0.15);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-light);
  display: grid; place-items: center;
  font-family: var(--f-display);
  color: var(--forest-deep);
  font-size: 18px;
  font-weight: 500;
}
.testimonial__name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.testimonial__loc {
  font-size: 11px;
  opacity: 0.7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ============================================
   FAQ
   ============================================ */
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
}
@media (max-width: 900px) { .faq__grid { grid-template-columns: 1fr; gap: 40px; } }

.faq__list { display: flex; flex-direction: column; }
.faq__item {
  border-bottom: 1px solid rgba(74, 50, 32, 0.15);
  padding: 28px 0;
  cursor: pointer;
}
.faq__item:first-child { border-top: 1px solid rgba(74, 50, 32, 0.15); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.faq__toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--earth);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all 0.4s;
  font-size: 18px;
  color: var(--earth);
}
.faq__item.open .faq__toggle {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--ivory);
  transform: rotate(45deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.4s, opacity 0.4s;
  opacity: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--earth);
}
.faq__item.open .faq__a {
  max-height: 300px;
  padding-top: 16px;
  opacity: 1;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--forest-deep);
  color: var(--ivory);
  padding: clamp(80px, 12vw, 140px) var(--pad);
}
.contact__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 900px) { .contact__inner { grid-template-columns: 1fr; } }

.contact__phone-card {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 100%);
  color: var(--earth-dark);
  padding: 40px;
  border-radius: var(--r-lg);
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.contact__phone-card svg {
  width: 48px; height: 48px;
  flex-shrink: 0;
}
.contact__phone-num {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
}
.contact__phone-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
}
.contact__channels {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.contact__map {
  margin-top: 40px;
  height: 200px;
  border-radius: var(--r-md);
  background:
    linear-gradient(135deg, rgba(184,147,90,0.2), transparent),
    repeating-linear-gradient(0deg, rgba(184,147,90,0.05) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(184,147,90,0.05) 0 1px, transparent 1px 40px),
    var(--earth-dark);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.contact__map-pin {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold-light);
  position: relative;
  box-shadow: 0 0 0 8px rgba(184,147,90,0.2), 0 0 0 16px rgba(184,147,90,0.1);
  animation: pinPulse 2s infinite;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(184,147,90,0.2), 0 0 0 16px rgba(184,147,90,0.1); }
  50% { box-shadow: 0 0 0 14px rgba(184,147,90,0.15), 0 0 0 28px rgba(184,147,90,0.05); }
}
.contact__map-label {
  position: absolute;
  bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Contact form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
}
.field input, .field textarea, .field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(247,242,233,0.25);
  color: var(--ivory);
  font-family: var(--f-body);
  font-size: 16px;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(247,242,233,0.4); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold-light); }
.field textarea { resize: vertical; min-height: 80px; font-family: var(--f-body); }
.field select { appearance: none; background: transparent; }
.field select option { background: var(--forest-deep); color: var(--ivory); }

.contact__socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.contact__socials a {
  width: 44px; height: 44px;
  border: 1px solid rgba(184,147,90,0.3);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all 0.3s;
  color: var(--ivory);
}
.contact__socials a:hover {
  background: var(--gold-light);
  color: var(--forest-deep);
  border-color: var(--gold-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--earth-dark);
  color: var(--ivory);
  padding: 100px var(--pad) 30px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(247,242,233,0.1);
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__brand {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.footer__tag {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 20px;
  opacity: 0.7;
  max-width: 320px;
  line-height: 1.4;
}
.footer__hindi {
  font-family: var(--f-hindi);
  font-size: 18px;
  color: var(--gold-light);
  margin-top: 24px;
}
.footer__col h4 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--gold-light);
  font-weight: 500;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__col a {
  font-size: 14px;
  opacity: 0.75;
  transition: all 0.2s;
}
.footer__col a:hover { opacity: 1; color: var(--gold-light); }
.footer__phone {
  font-family: var(--f-display);
  font-size: 24px;
  margin-top: 4px;
}
.footer__bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============================================
   STICKY WHATSAPP
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 14px;
  background: #25D366;
  color: white;
  border-radius: 100px;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5), 0 0 0 6px rgba(37, 211, 102, 0.15);
  transition: all 0.3s var(--ease-out);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.15);
}
.wa-float__icon {
  width: 28px; height: 28px;
  background: white;
  color: #25D366;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.wa-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 2px solid #25D366;
  opacity: 0;
  animation: waPulse 2.4s infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0% { opacity: 0.6; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(1.2); }
}
@media (max-width: 600px) {
  .wa-float span:not(.wa-float__icon) { display: none; }
  .wa-float { padding: 14px; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ============================================
   TORANA — traditional Indian arch border decoration
   Used as a top/bottom border on key sections
   ============================================ */
.torana {
  display: block;
  width: 100%;
  height: 28px;
  color: var(--gold-deep);
  opacity: 0.55;
}
.torana--ivory { color: var(--gold-light); opacity: 0.85; }

/* Block-print pattern as a subtle band background */
.heritage-band {
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0 28px,
      currentColor 28px 30px,
      transparent 30px 58px,
      currentColor 58px 60px
    );
  background-size: 60px 100%;
  height: 14px;
  color: var(--gold-deep);
  opacity: 0.3;
}

/* Saffron accent dot for decorative inline use */
.saffron-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--saffron);
  vertical-align: middle;
  margin: 0 8px;
  box-shadow: 0 0 0 3px rgba(224, 133, 49, 0.18);
}

/* Heritage stamp — small circular wax-seal style for trust elements */
.heritage-stamp {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 92px; height: 92px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-deep);
  color: var(--gold-deep);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  padding: 8px;
}
.heritage-stamp::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 0.5px dashed currentColor;
  opacity: 0.5;
}

/* ============================================
   DECORATIVE
   ============================================ */
.divider-mark {
  display: flex; align-items: center; gap: 12px;
  justify-content: center; margin: 40px 0;
  color: var(--gold-deep);
  font-family: var(--f-display);
  font-style: italic;
}
.divider-mark::before, .divider-mark::after {
  content: ""; height: 1px; flex: 1; max-width: 80px;
  background: currentColor; opacity: 0.4;
}
