/* ============================================
   PRASANNA GHEE — Design tokens
   Palette: ivory ground, maroon + turmeric gold
   Type: Playfair Display (display) + Poppins (body)
   Signature: concentric "ghee ripple" rings
   ============================================ */

:root {
  --ivory: #FBF3E4;
  --cream-card: #FFFDF8;
  --maroon: #6B1E23;
  --maroon-dark: #4C1519;
  --gold: #C98A2B;
  --gold-light: #E8C170;
  --charcoal: #2B1B12;
  --charcoal-soft: #5A4A3F;
  --border-soft: #E6D8BE;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, sans-serif;

  --radius: 4px;
  --shadow-soft: 0 10px 30px rgba(43, 27, 18, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--maroon-dark);
  line-height: 1.15;
  font-weight: 700;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; position: relative; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Ripple signature (SVG-free, pure CSS) ---------- */
.ripple {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--gold-light);
  opacity: 0.5;
  pointer-events: none;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--maroon);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.site-header .nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.01em;
}

.brand .drop {
  width: 22px;
  height: 26px;
  background: linear-gradient(160deg, var(--gold-light), var(--gold));
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px rgba(232,193,112,0.18);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--ivory);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  border-bottom-color: var(--gold-light);
  color: var(--gold-light);
}

.nav-links a:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ivory);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--cream-card);
}
.btn-primary:hover {
  background: var(--maroon);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn-outline {
  background: transparent;
  border-color: var(--maroon);
  color: var(--maroon);
}
.btn-outline:hover {
  background: var(--maroon);
  color: var(--ivory);
}

/* ---------- Hero ---------- */
.hero {
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero .ripple:nth-child(1) { width: 520px; height: 520px; top: -220px; right: -160px; }
.hero .ripple:nth-child(2) { width: 380px; height: 380px; top: -150px; right: -80px; }
.hero .ripple:nth-child(3) { width: 240px; height: 240px; top: -80px; right: 0px; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin: 14px 0 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero p.lead {
  font-size: 1.08rem;
  color: var(--charcoal-soft);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual .photo-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--cream-card);
}
.hero-visual .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Photo-based product/feature media */
.photo-media {
  height: 190px;
  overflow: hidden;
}
.photo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-row {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.stat-row .stat {
  text-align: center;
  padding: 20px 10px;
  border-left: 1px solid var(--border-soft);
}
.stat-row .stat:first-child { border-left: none; }
.stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--maroon);
}
.stat .label {
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  letter-spacing: 0.03em;
}

/* ---------- Section headers ---------- */
.section-head {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-top: 10px; }
.section-head p { color: var(--charcoal-soft); margin-top: 14px; }

/* ---------- Feature / why cards ---------- */
.why { background: var(--cream-card); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.feature-card {
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.feature-card .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--charcoal-soft); font-size: 0.92rem; }

/* ---------- Process (bilona steps) ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border-soft);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 14px;
}
.step .step-num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.1rem;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--charcoal-soft); }

/* ---------- Products preview / grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--cream-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.product-media {
  height: 170px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-body { padding: 24px; }
.product-body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.product-body p { font-size: 0.88rem; color: var(--charcoal-soft); margin-bottom: 14px; }
.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price-tag {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--maroon);
  font-size: 1.15rem;
}
.mini-btn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--maroon); color: var(--ivory); }
.testimonials .section-head h2,
.testimonials .section-head .eyebrow { color: var(--ivory); }
.testimonials .section-head p { color: rgba(251,243,228,0.75); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: rgba(251,243,228,0.06);
  border: 1px solid rgba(251,243,228,0.15);
  border-radius: var(--radius);
  padding: 28px;
}
.testi-card .stars { color: var(--gold-light); margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p.quote { font-size: 0.94rem; margin-bottom: 16px; color: rgba(251,243,228,0.9); }
.testi-card .who { font-weight: 600; font-size: 0.88rem; color: var(--gold-light); }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--gold);
  text-align: center;
}
.cta-strip h2 { color: var(--maroon-dark); margin-bottom: 10px; }
.cta-strip p { color: var(--maroon-dark); opacity: 0.85; margin-bottom: 26px; }
.cta-strip .btn-primary { background: var(--maroon); }
.cta-strip .btn-primary:hover { background: var(--maroon-dark); }

/* ---------- Footer ---------- */
footer {
  background: var(--charcoal);
  color: rgba(251,243,228,0.7);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(251,243,228,0.12);
}
.footer-brand {
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: 1.3rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col h4 {
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.social-row { display: flex; gap: 14px; }
.social-row a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(251,243,228,0.08);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--gold); color: var(--charcoal); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 90;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Inner page header banner ---------- */
.page-banner {
  padding: 64px 0 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner .ripple:nth-child(1) { width: 320px; height: 320px; top: -140px; left: -80px; }
.page-banner .ripple:nth-child(2) { width: 200px; height: 200px; bottom: -100px; right: -60px; }
.page-banner .eyebrow { display: block; margin-bottom: 10px; }
.page-banner h1 { font-size: clamp(2rem, 4vw, 2.8rem); position: relative; z-index: 2; }
.page-banner p { color: var(--charcoal-soft); max-width: 560px; margin: 14px auto 0; position: relative; z-index: 2; }

/* ---------- About page specifics ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-grid .visual {
  background: linear-gradient(155deg, var(--gold-light), var(--gold));
  border-radius: 12px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: var(--shadow-soft);
}
.story-grid h2 { margin-bottom: 18px; }
.story-grid p { color: var(--charcoal-soft); margin-bottom: 16px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 30px 20px;
}
.value-card .icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { font-size: 0.9rem; color: var(--charcoal-soft); }

/* ---------- Products page filter note ---------- */
.products-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
  color: var(--charcoal-soft);
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
}
.contact-cards { display: grid; gap: 18px; }
.contact-card {
  display: flex;
  gap: 16px;
  background: var(--cream-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px;
}
.contact-card .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.9rem; color: var(--charcoal-soft); }

.contact-form {
  background: var(--cream-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-form h3 { margin-bottom: 20px; }
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--maroon-dark);
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--ivory);
  color: var(--charcoal);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row textarea { resize: vertical; min-height: 110px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-steps::before { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .story-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--maroon);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 320px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 16px 24px; border-bottom: 1px solid rgba(251,243,228,0.1); }
  .nav-toggle { display: flex; }
  .card-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
}
