/* ==========================================================================
   Dakshini Sweets — brand palette drawn from the badge logo:
   plum ink ring, rose bloom, dusty-blue leaves, ghee gold, cream paper.
   ========================================================================== */

:root {
  --ink: #2a161f;
  --maroon: #5f1f2d;
  --maroon-soft: #7c2c3d;
  --rose: #e2574c;
  --leaf: #44626e;
  --gold: #d9a63f;
  --cream: #faf3ea;
  --surface: #fffdf8;
  --text: #372a2b;
  --muted: #75625f;
  --line: rgba(95, 31, 45, 0.12);
  --shadow-soft: 0 12px 30px rgba(42, 22, 31, 0.08);
  --shadow-lift: 0 18px 40px rgba(42, 22, 31, 0.14);
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1160px;
  --header-h: 76px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  color: var(--maroon);
  font-family: var(--font-display);
  font-weight: 600;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--leaf);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.eyebrow--light {
  color: #f3d9a8;
}

.eyebrow--gold {
  color: var(--gold);
}

.section__heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.section__heading h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
}

.section__heading--light h2 {
  color: #fdf6ec;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0.5rem;
  background: var(--maroon);
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 0.5rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 0.5rem;
}

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 2px;
}

.ghee-thumb:focus-visible {
  outline-color: var(--maroon);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding-top: env(safe-area-inset-top, 0px);
  backdrop-filter: blur(10px);
  background: rgba(250, 243, 234, 0.9);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(42, 22, 31, 0.08);
}

.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__logo {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(42, 22, 31, 0.14);
}

.brand__text {
  display: grid;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--maroon);
  white-space: nowrap;
}

.brand__tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__links a:not(.btn) {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  white-space: nowrap;
  transition: color 200ms ease;
}

@media (min-width: 761px) and (max-width: 1020px) {
  .nav__links {
    gap: 1rem;
  }

  .brand__tag {
    display: none;
  }
}

.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.nav__links a:not(.btn):hover,
.nav__links a:not(.btn):focus-visible,
.nav__links a:not(.btn).is-active {
  color: var(--maroon);
}

.nav__links a:not(.btn):hover::after,
.nav__links a:not(.btn):focus-visible::after,
.nav__links a:not(.btn).is-active::after {
  transform: scaleX(1);
}

.nav__toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  cursor: pointer;
  border-radius: 10px;
}

.nav__toggle-line {
  width: 22px;
  height: 2px;
  background: var(--maroon);
  display: block;
  margin: 4px auto;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.78rem 1.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease,
    color 200ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--maroon);
  color: #fff;
  box-shadow: 0 10px 24px rgba(95, 31, 45, 0.28);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--maroon-soft);
}

.btn--outline {
  border-color: rgba(95, 31, 45, 0.3);
  color: var(--maroon);
  background: transparent;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--maroon);
  color: #fff;
  box-shadow: 0 10px 22px rgba(95, 31, 45, 0.25);
}

.btn--whatsapp {
  background: #1f9d55;
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 157, 85, 0.28);
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  background: #178548;
}

.btn--nav {
  padding: 0.55rem 1.05rem;
  font-size: 0.88rem;
}

.icon-wa {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: min(88vh, 820px);
  padding: clamp(4rem, 9vw, 7rem) 0;
  color: #fff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(31, 13, 20, 0.82) 8%, rgba(74, 24, 36, 0.55) 48%, rgba(31, 13, 20, 0.25) 100%),
    url("../img/hero-dark.jpg") center 35% / cover no-repeat;
  pointer-events: none;
}

.hero__inner {
  position: relative;
}

.hero__content {
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  color: #fdf6ec;
  max-width: 15ch;
}

.hero__lead {
  margin-top: 1.15rem;
  color: rgba(253, 246, 236, 0.9);
  max-width: 52ch;
  font-size: 1.06rem;
}

.hero__actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  margin: 2.2rem 0 0;
  padding: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(253, 246, 236, 0.85);
}

.hero__trust li {
  position: relative;
  padding-left: 1.1rem;
}

.hero__trust li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Products
   -------------------------------------------------------------------------- */

.products__grid {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.4rem);
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.product-card__media {
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 450ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.05);
}

.product-card__content {
  padding: clamp(1.3rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.55rem;
}

.product-card__content .eyebrow {
  margin-bottom: 0;
}

.product-card h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--ink);
}

.product-card__price strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
}

.price__symbol {
  font-size: 0.6em;
  font-weight: 600;
  margin-right: 0.1em;
}

.price__label,
.price__unit {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.product-card__note {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--rose);
  background: rgba(226, 87, 76, 0.09);
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
}

.product-card__desc {
  color: var(--muted);
  max-width: 56ch;
}

.product-card .btn {
  margin-top: 0.8rem;
}

/* --------------------------------------------------------------------------
   Ghee feature card
   -------------------------------------------------------------------------- */

.ghee-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.55rem;
}

.ghee-gallery__main {
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 6px);
  flex: 1;
}

.ghee-gallery__main img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ghee-gallery__main img.is-swapping {
  animation: gheeSwap 420ms ease;
}

@keyframes gheeSwap {
  from {
    opacity: 0.25;
  }
  to {
    opacity: 1;
  }
}

.ghee-gallery__thumbs {
  display: grid;
  grid-auto-flow: column;
  /* 4.5 thumbs visible — the half thumb signals there is more to scroll */
  grid-auto-columns: calc((100% - 3.5 * 0.55rem) / 4.5);
  gap: 0.55rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(95, 31, 45, 0.3) transparent;
  padding: 2px 2px 6px;
}

.ghee-gallery__thumbs::-webkit-scrollbar {
  height: 6px;
}

.ghee-gallery__thumbs::-webkit-scrollbar-thumb {
  background: rgba(95, 31, 45, 0.28);
  border-radius: 3px;
}

.ghee-gallery__thumbs::-webkit-scrollbar-track {
  background: transparent;
}

.ghee-thumb {
  scroll-snap-align: start;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.75;
  transition: opacity 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.ghee-thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.ghee-thumb:hover,
.ghee-thumb:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}

.ghee-thumb.is-active,
.ghee-thumb[aria-pressed="true"] {
  opacity: 1;
  border-color: var(--rose);
}

.price-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0.35rem 0 0.2rem;
}

.price-tier {
  display: grid;
  justify-items: start;
  gap: 0.1rem;
  background: rgba(217, 166, 63, 0.09);
  border: 1px solid rgba(217, 166, 63, 0.35);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem 0.7rem;
}

.price-tier strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--ink);
}

.price-tier__unit {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--maroon);
}

.price-tier__courier {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.batch-info {
  margin-top: 0.5rem;
  border: 1px solid rgba(88, 127, 142, 0.3);
  background: rgba(88, 127, 142, 0.07);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem 1rem;
}

.batch-info__title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leaf);
  margin: 0 0 0.45rem;
}

.batch-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.batch-info__list li {
  position: relative;
  padding-left: 1.15rem;
}

.batch-info__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.batch-info__list strong {
  color: var(--maroon);
}

.candor-note {
  margin-top: 0.55rem;
  border-left: 3px solid var(--rose);
  background: rgba(226, 87, 76, 0.07);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.candor-note strong {
  color: var(--maroon);
}

/* --------------------------------------------------------------------------
   Why band
   -------------------------------------------------------------------------- */

.why {
  position: relative;
  background:
    linear-gradient(115deg, rgba(31, 13, 20, 0.94), rgba(74, 24, 36, 0.9)),
    url("../img/ghee-ingredients.jpg") center / cover no-repeat;
  color: #fdf6ec;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.why-tile {
  background: rgba(253, 246, 236, 0.06);
  border: 1px solid rgba(253, 246, 236, 0.16);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.3rem 1.5rem;
  backdrop-filter: blur(2px);
}

.why-tile__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.why-tile h3 {
  color: #fdf6ec;
  font-size: 1.25rem;
  margin: 0.45rem 0 0.4rem;
}

.why-tile p {
  color: rgba(253, 246, 236, 0.78);
  font-size: 0.93rem;
}

/* --------------------------------------------------------------------------
   About / story
   -------------------------------------------------------------------------- */

.about__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center;
}

.about__media {
  position: relative;
}

.about__media::before {
  content: "";
  position: absolute;
  inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(217, 166, 63, 0.35), rgba(226, 87, 76, 0.25));
  z-index: 0;
}

.about__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
}

.about h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  margin-bottom: 1rem;
}

.about__text p:not(.eyebrow) {
  color: var(--muted);
  max-width: 58ch;
}

.about__text p + p {
  margin-top: 0.9rem;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact__panel {
  background:
    linear-gradient(130deg, rgba(95, 31, 45, 0.05), rgba(226, 87, 76, 0.07), rgba(88, 127, 142, 0.06)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 3vw, 2.5rem);
  align-items: start;
  box-shadow: var(--shadow-soft);
}

.contact h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.contact__info > p:not(.eyebrow) {
  margin-top: 0.8rem;
  color: var(--muted);
  max-width: 48ch;
}

.contact__quick-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contact__address {
  margin-top: 1.6rem;
  font-style: normal;
  color: var(--muted);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  line-height: 1.7;
}

.contact__address strong {
  color: var(--maroon);
}

.contact__form {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  padding: clamp(1.1rem, 2.6vw, 1.6rem);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(42, 22, 31, 0.1);
}

.contact__field {
  display: grid;
  gap: 0.36rem;
  margin-bottom: 0.9rem;
}

.contact__field span {
  font-size: 0.85rem;
  color: var(--maroon);
  font-weight: 700;
}

.contact__field input,
.contact__field textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(95, 31, 45, 0.2);
  border-radius: 10px;
  padding: 0.72rem 0.85rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact__field input:focus,
.contact__field textarea:focus {
  border-color: var(--maroon-soft);
  box-shadow: 0 0 0 3px rgba(124, 44, 61, 0.15);
}

.contact__submit {
  width: 100%;
  margin-top: 0.2rem;
}

.contact__note {
  margin-top: 0.6rem;
  min-height: 1.2em;
  color: var(--maroon);
  font-size: 0.9rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: rgba(253, 246, 236, 0.82);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 0;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-footer__brand img {
  border-radius: 50%;
  background: #fff;
}

.site-footer__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: #fdf6ec;
}

.site-footer__tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 246, 236, 0.6);
}

.site-footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.site-footer address {
  font-style: normal;
  line-height: 1.7;
}

.site-footer__legal {
  border-top: 1px solid rgba(253, 246, 236, 0.14);
  padding-top: 1.1rem;
  padding-bottom: 1.4rem;
  font-size: 0.85rem;
  color: rgba(253, 246, 236, 0.6);
  text-align: center;
}

.zn-footer-parent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.zn-footer-parent-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 246, 236, 0.55);
}

.zn-footer-parent-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: opacity 180ms ease;
}

.zn-footer-parent-lockup:hover,
.zn-footer-parent-lockup:focus-visible {
  opacity: 0.85;
}

.zn-footer-parent-logo {
  height: 40px;
  width: auto;
}

.zn-footer-parent-name {
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   WhatsApp widget
   -------------------------------------------------------------------------- */

.whatsapp-widget {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 120;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: #1f9d55;
  box-shadow: 0 14px 30px rgba(22, 71, 44, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.whatsapp-widget:hover,
.whatsapp-widget:focus-visible {
  transform: translateY(-2px);
  background: #178548;
  box-shadow: 0 18px 32px rgba(22, 71, 44, 0.35);
}

.whatsapp-widget svg {
  width: 32px;
  height: 32px;
  display: block;
}

/* --------------------------------------------------------------------------
   Motion
   -------------------------------------------------------------------------- */

/* Entrance animation uses the independent `translate` property so it never
   competes with hover `transform` lifts on cards/panels. */
.fade-up {
  opacity: 0;
  translate: 0 24px;
  transition: opacity 600ms ease, translate 600ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.fade-up.is-visible {
  opacity: 1;
  translate: 0 0;
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(22, 71, 44, 0.28);
  }
  50% {
    box-shadow: 0 14px 30px rgba(22, 71, 44, 0.28), 0 0 0 8px rgba(31, 157, 85, 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up {
    opacity: 1;
    translate: none;
    transition: none;
  }

  .btn,
  .product-card,
  .product-card__media img,
  .ghee-thumb {
    transition: none;
  }

  .product-card:hover,
  .ghee-thumb:hover,
  .ghee-thumb:focus-visible {
    transform: none;
  }

  .ghee-gallery__main img.is-swapping {
    animation: none;
  }

  .whatsapp-widget {
    transition: none;
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   Desktop product rows
   -------------------------------------------------------------------------- */

@media (min-width: 961px) {
  .product-card {
    display: grid;
    grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
    align-items: stretch;
  }

  .product-card--flip {
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  }

  .product-card--flip .product-card__media {
    order: 2;
  }

  .product-card--flip .product-card__content {
    order: 1;
  }

  .product-card__media img {
    aspect-ratio: auto;
    min-height: 320px;
  }

  .product-card--feature {
    grid-template-columns: minmax(380px, 1fr) minmax(0, 1.1fr);
  }

  .product-card--feature .ghee-gallery__main img {
    aspect-ratio: auto;
    min-height: 0;
  }
}

/* --------------------------------------------------------------------------
   Tablet & below
   -------------------------------------------------------------------------- */

@media (max-width: 960px) {
  .why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about__inner,
  .contact__panel {
    grid-template-columns: 1fr;
  }

  .about__media {
    max-width: 560px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .contact__quick-actions .btn {
    flex: 1 1 220px;
  }
}

@media (max-width: 760px) {
  .nav__toggle {
    display: inline-block;
  }

  .nav__links {
    position: absolute;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    right: 1rem;
    width: min(260px, calc(100% - 2rem));
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__trust {
    gap: 0.45rem 1.2rem;
  }

  .ghee-gallery__thumbs {
    grid-auto-columns: calc((100% - 2.5 * 0.55rem) / 3.5);
  }

  .whatsapp-widget {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 52px;
    height: 52px;
  }
}
