/* ============================================================
   DESI NURTURE — Premium Indian Wellness Brand
   Design System & Global Styles
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Palette */
  --midnight: #0D1B2A;
  --midnight-light: #1B2D45;
  --ivory: #FDF6EC;
  --ivory-dark: #F5E6D0;
  --warm-beige: #E8D5B7;
  --copper: #B87333;
  --copper-light: #D4956A;
  --gold: #C9A84C;
  --gold-light: #E0C97F;

  /* Neutral */
  --charcoal: #2C2C2C;
  --grey-dark: #555555;
  --grey-mid: #888888;
  --grey-light: #CCCCCC;
  --white: #FFFFFF;

  /* Accent */
  --deep-maroon: #6B1D2A;
  --sage: #7A8B6F;
  --terracotta: #C4654A;

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: 100px 0;
  --container-width: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: all 0.35s var(--ease);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--midnight);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.3vw, 2.35rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  font-size: 1rem;
  color: var(--grey-dark);
  max-width: 680px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey-dark);
  max-width: 600px;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Layout ---------- */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section {
  padding: var(--section-pad);
}

.section--dark {
  background-color: var(--midnight);
}

.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p,
.section--dark .section-label,
.section--dark .section-subtitle {
  color: var(--ivory);
}

.section--dark .section-label {
  color: var(--gold-light);
}

.section--beige {
  background-color: var(--ivory-dark);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background-color: var(--copper);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--midnight);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 27, 42, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--copper);
  border: 2px solid var(--copper);
}

.btn--outline:hover {
  background-color: var(--copper);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background-color: var(--white);
  color: var(--midnight);
}

.btn--white:hover {
  background-color: var(--gold);
  color: var(--midnight);
  transform: translateY(-2px);
}

.btn--gold {
  background-color: var(--gold);
  color: var(--midnight);
}

.btn--gold:hover {
  background-color: var(--copper);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
  background: var(--midnight);
}

.navbar.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__logo {
  height: 96px;
  width: auto;
  transition: var(--transition);
}

.navbar__links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.navbar__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ivory);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--copper);
  transition: var(--transition);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--ivory);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Keeps content clear of the fixed navbar above and the scroll cue below. */
  padding: 148px 0 150px;
  background-color: var(--midnight);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 27, 42, 0.78) 0%,
    rgba(13, 27, 42, 0.42) 50%,
    rgba(13, 27, 42, 0.68) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero__brand {
  color: var(--ivory);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero__content .section-label {
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero__content h1 {
  color: var(--ivory);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero__content h1 span {
  color: var(--gold);
  display: inline;
}

.hero__content p {
  color: rgba(253, 246, 236, 0.85);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero decorative line */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.4s var(--ease);
}

.hero__scroll.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero__scroll span {
  width: 1px;
  height: 40px;
  background: var(--gold-light);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Brand Story Section ---------- */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-story__image {
  position: relative;
  overflow: hidden;
}

.brand-story__image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease);
}

.brand-story__image:hover img {
  transform: scale(1.03);
}

.brand-story__image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--gold);
  z-index: -1;
}

.brand-story__text .section-label {
  margin-bottom: 16px;
}

.brand-story__text h2 {
  margin-bottom: 24px;
}

.brand-story__text p {
  margin-bottom: 16px;
  line-height: 1.9;
}

.brand-story__text .btn {
  margin-top: 20px;
}

/* ---------- Product Card ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 50px;
}

.products-grid--four {
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.product-card__image {
  position: relative;
  overflow: hidden;
  height: 340px;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-card__image img {
  transform: scale(1.06);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--copper);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
}

.product-card__body {
  padding: 28px 24px;
}

.product-card__category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--midnight);
  margin-bottom: 8px;
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--grey-mid);
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---------- Why Section (USPs) ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.usp-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.usp-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: var(--transition);
}

.usp-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.35);
}

.usp-card__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.usp-card__icon svg {
  width: 34px;
  height: 34px;
  margin: 0 auto;
  color: var(--gold);
}

.usp-card h4 {
  font-family: var(--font-heading);
  color: var(--ivory);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.usp-card p {
  font-size: 0.9rem;
  color: rgba(253, 246, 236, 0.65);
  max-width: 100%;
  line-height: 1.7;
}

/* ---------- Gifting Banner ---------- */
.gifting-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gifting-banner__bg {
  position: absolute;
  inset: 0;
}

.gifting-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gifting-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 27, 42, 0.92) 0%, rgba(13, 27, 42, 0.5) 100%);
}

.gifting-banner__content {
  position: relative;
  z-index: 2;
  max-width: 550px;
}

.gifting-banner__content h2 {
  color: var(--ivory);
  margin-bottom: 20px;
}

.gifting-banner__content p {
  color: rgba(253, 246, 236, 0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--grey-dark);
  margin-bottom: 24px;
  max-width: 100%;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--midnight);
}

.testimonial-card__location {
  font-size: 0.8rem;
  color: var(--grey-mid);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

/* ---------- Customer feedback screenshots ---------- */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
  /* Screenshots vary in aspect ratio, so cards size to their own image. */
  align-items: start;
}

.feedback-card {
  margin: 0;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.feedback-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.feedback-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-light) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--ivory);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(253, 246, 236, 0.75);
  font-size: 1.1rem;
  margin: 0 auto 36px;
}

.cta-banner .hero__buttons {
  justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--midnight);
  padding: 80px 0 0;
  color: var(--ivory);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(253, 246, 236, 0.1);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 24px;
  font-weight: 600;
}

.footer__links a {
  display: block;
  color: rgba(253, 246, 236, 0.6);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer__contact p {
  color: rgba(253, 246, 236, 0.6);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__contact svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.footer__contact a {
  color: inherit;
  transition: var(--transition);
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__contact a:hover {
  color: var(--gold);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  color: rgba(253, 246, 236, 0.6);
  font-size: 0.8rem;
  max-width: 100%;
}

.footer__bottom .footer__fssai {
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.whatsapp-float::after {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 14px;
  background: var(--midnight);
  color: var(--ivory);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

.whatsapp-float:focus-visible::after {
  opacity: 1;
}

@media (hover: hover) {
  .whatsapp-float:hover::after {
    opacity: 1;
    /* Cancels the parent's hover scale so the label stays crisp. */
    transform: translateY(-50%) scale(0.909);
  }
}

/* ---------- Page Header (for inner pages) ---------- */
.page-header {
  position: relative;
  background: linear-gradient(135deg, var(--midnight) 0%, var(--midnight-light) 100%);
  padding: 150px 0 80px;
  text-align: center;
  overflow: hidden;
}

/* Photo backdrop, same treatment as the homepage hero. */
.page-header__bg {
  position: absolute;
  inset: 0;
}

.page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--ivory);
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(253, 246, 236, 0.7);
  font-size: 1.1rem;
  margin: 0 auto;
}

.page-header .section-label {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.page-header--shop h1 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

/* ---------- Shop Page ---------- */
.shop-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--grey-light);
  color: var(--grey-dark);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--midnight);
  color: var(--ivory);
  border-color: var(--midnight);
}

/* ---------- About Page ---------- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story--reverse {
  direction: rtl;
}

.about-story--reverse > * {
  direction: ltr;
}

.about-story__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-story__text h2 {
  margin-bottom: 24px;
}

.about-story__text p {
  margin-bottom: 16px;
  line-height: 1.9;
}

.about-story__text .btn {
  margin-top: 24px;
}

/* ---------- About Page ---------- */
/* Tightened vertical rhythm: the page stacks several full-height blocks in a row. */
.page-about .section {
  padding: 72px 0;
}

.page-about .about-story {
  gap: 60px;
}

.page-about .about-story__image img {
  height: 400px;
}

.story-quote {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.story-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.4;
  color: var(--midnight);
  margin: 16px 0 24px;
}

.story-quote blockquote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 4px;
}

.story-quote p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--grey-dark);
  line-height: 1.9;
}

/* ---------- Gifting Page ---------- */
.hamper-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.hamper-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.hamper-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.hamper-card__image {
  height: 290px;
  overflow: hidden;
  background: var(--ivory);
}

.hamper-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}

.hamper-card:hover .hamper-card__image img {
  transform: scale(1.05);
}

.hamper-card__body {
  padding: 22px 24px 26px;
}

.hamper-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--midnight);
  margin-bottom: 10px;
}

.hamper-card__desc {
  font-size: 0.85rem;
  color: var(--grey-mid);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-grid > * {
  min-width: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--midnight);
}

.form-required {
  color: var(--copper);
  margin-left: 2px;
}

/* Netlify honeypot: bots fill it, humans never see it. */
.form-honeypot {
  display: none;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--grey-light);
  background: var(--white);
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info {
  padding: 48px 40px;
  background: var(--midnight);
}

.contact-info h3 {
  color: var(--ivory);
  margin-bottom: 24px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info__item:last-child {
  margin-bottom: 0;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
}

.contact-info__text h4 {
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info__text p {
  color: rgba(253, 246, 236, 0.6);
  font-size: 0.9rem;
  max-width: 100%;
}

/* ---------- Divider ---------- */
.divider {
  width: 60px;
  height: 2px;
  background: var(--copper);
  margin: 24px 0;
}

.divider--center {
  margin: 24px auto;
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }

/* ---------- Sticky CTA (Mobile) ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background: var(--midnight);
  padding: 12px 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.sticky-cta .btn {
  flex: 0 1 160px;
  text-align: center;
  padding: 12px 16px;
  font-size: 0.8rem;
}

/* ---------- Ingredient ticker ---------- */
.ticker {
  overflow: hidden;
  padding: 16px 0;
  background: var(--midnight);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.ticker__track {
  display: flex;
  gap: 60px;
  animation: ticker 25s linear infinite;
  width: max-content;
}

.ticker__item {
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.6;
}

.ticker__item span {
  color: var(--copper);
  margin: 0 20px;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .products-grid,
  .testimonials-grid,
  .feedback-grid,
  .hamper-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .brand-story,
  .about-story,
  .contact-grid {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 70px 0;
  }

  /* Nav */
  .navbar {
    padding: 10px 0;
  }

  .navbar__logo {
    height: 64px;
  }

  .hamburger {
    display: flex;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--midnight);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.4s var(--ease);
  }

  .navbar__links.active {
    right: 0;
  }

  .navbar__links a {
    color: var(--ivory) !important;
    font-size: 1rem;
  }

  /* Mobile overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }

  /* Hero */
  .hero {
    padding: 108px 0 136px;
  }

  .hero__content h1 {
    font-size: 2rem;
  }

  .hero__content p {
    font-size: 1rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Grids */
  .brand-story,
  .about-story,
  .about-story--reverse,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story--reverse {
    direction: ltr;
  }

  .products-grid,
  .testimonials-grid,
  .feedback-grid,
  .hamper-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .usp-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .product-card__image {
    height: 280px;
  }

  /* Sticky CTA */
  .sticky-cta {
    display: block;
  }

  .whatsapp-float {
    right: 20px;
    bottom: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float--above-cta {
    bottom: 92px;
  }

  /* Page header */
  .page-header {
    padding: 130px 0 60px;
  }

  .brand-story__image img,
  .about-story__image img {
    height: 320px;
  }

  .contact-info {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero__content h1 {
    font-size: 1.7rem;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.8rem;
  }

  .product-card__image {
    height: 240px;
  }

  .testimonial-card {
    padding: 28px 20px;
  }
}

/* Short viewports: reclaim the scroll cue's space so the hero buttons stay in view. */
@media (max-height: 760px) {
  .hero {
    padding-bottom: 60px;
  }

  .hero__scroll {
    display: none;
  }
}
