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

html:focus-within {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

/* ─── Design tokens ──────────────────────────────────────────────────────── */
:root {
  --bg:           #0d0a06;
  --surface:      #17120a;
  --surface2:     #221a0e;
  --gold:         #c9a227;
  --gold-light:   #e2bc5a;
  --spice:        #9b2d0e;
  --spice-dark:   #6b1a00;
  --cream:        #ede0c4;
  --cream-muted:  #a89070;
  --text-muted:   #8a7860;
  --border:       rgba(201, 162, 39, 0.18);

  --heading-font: "Playfair Display", Georgia, "Times New Roman", serif;
  --body-font:    "DM Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --radius-sm:  0.5rem;
  --radius-md:  0.75rem;
  --shadow-sm:  0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-md:  0 16px 48px rgba(0, 0, 0, 0.5);
  --container:  1200px;
}

/* ─── Base ───────────────────────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--body-font);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: clamp(1rem, 0.98rem + 0.2vw, 1.06rem);
}

/* Grain texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.3;
}

h1,
h2,
h3,
h4 {
  font-family: var(--heading-font);
  line-height: 1.15;
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.2rem, 6vw, 5.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.75rem); }
h4 { font-size: clamp(1.05rem, 1.4vw, 1.2rem); }

em {
  font-style: italic;
  color: var(--gold);
}

p {
  text-wrap: pretty;
}

/* ─── Layout ─────────────────────────────────────────────────────────────── */
main {
  flex: 1 0 auto;
}

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

/* ─── Top Banner ─────────────────────────────────────────────────────────── */
.site-banner {
  background: var(--spice);
  text-align: center;
  padding: 9px 16px;
  font-size: 12px;
  letter-spacing: 0.07em;
  color: var(--cream);
  font-weight: 500;
  position: relative;
  z-index: 200;
}

/* ─── Header / Nav ───────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  padding: 0 2.5rem;
  height: 68px;
  display: flex;
  align-items: center;
}

.site-header.scrolled {
  background: rgba(13, 10, 6, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: var(--container);
}

.site-title {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  flex-shrink: 0;
}

.site-title-sub {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--cream-muted);
  text-transform: uppercase;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

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

.nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  min-height: 44px;
  color: var(--cream-muted);
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.06);
}

.nav-list a.active {
  color: var(--gold);
}

.nav-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #0d0a06;
  padding: 9px 22px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease;
  min-height: 44px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-order-btn:hover,
.nav-order-btn:focus-visible {
  background: var(--gold-light);
  color: #0d0a06;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  font: inherit;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
}

.nav-toggle-bar {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

.nav-toggle-label {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  background-image: url("../img/home-prepared-achar-dining-table.jpeg");
  background-size: cover;
  background-position: center;
  filter: brightness(0.28) saturate(0.8);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 10, 6, 0.92) 40%, rgba(13, 10, 6, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 640px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 500;
  display: block;
}

.hero h1 {
  margin-bottom: 28px;
  text-wrap: pretty;
}

.hero-tagline {
  font-size: 17px;
  color: var(--cream-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 44px;
}

.hero-cta-primary {
  background: var(--gold);
  color: #0d0a06;
  border: 1px solid var(--gold);
}

.hero-cta-primary:hover,
.hero-cta-primary:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #0d0a06;
}

.hero-cta-secondary {
  border: 1px solid var(--border);
  color: var(--cream);
  background: transparent;
}

.hero-cta-secondary:hover,
.hero-cta-secondary:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.trust-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-muted);
  font-weight: 400;
}

.trust-row li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── SEO Intro ──────────────────────────────────────────────────────────── */
.seo-intro {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.seo-intro h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
}

.seo-intro p {
  color: var(--cream-muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 80ch;
}

.seo-intro p + p {
  margin-top: 0.75rem;
}

.seo-intro strong {
  color: var(--cream);
  font-weight: 500;
}

/* ─── Products Section ───────────────────────────────────────────────────── */
.products-section {
  padding: 100px 0;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}

.products-header .section-eyebrow {
  margin-bottom: 12px;
}

.products-header h2 {
  margin: 0;
}

.products-header-desc {
  max-width: 340px;
  font-size: 14.5px;
  color: var(--cream-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Product cards — JS-rendered, flat structure (no wrapper div inside) */
.product-card {
  background: var(--surface);
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.product-card:hover {
  background: var(--surface2);
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.8);
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

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

/* All non-image content within JS-generated cards gets horizontal padding */
.product-card h3,
.product-card .sizes,
.product-card .size-select-label,
.product-card .size-select,
.product-card .order-button,
.product-card .btn-whatsapp,
.product-card .know-more-link {
  margin-left: 1.1rem;
  margin-right: 1.1rem;
}

.product-card h3 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  margin-top: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.sizes {
  font-size: 13px;
  color: var(--cream-muted);
  margin-bottom: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
}

.sizes span {
  color: var(--gold);
  font-weight: 500;
}

.size-select-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  margin-top: 0.1rem;
  font-weight: 500;
}

.size-select {
  display: block;
  width: calc(100% - 2.2rem);
  min-height: 44px;
  padding: 0.45rem 0.55rem;
  border-radius: 0.4rem;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--cream);
  font-family: var(--body-font);
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 0.6rem;
  appearance: auto;
}

.order-button,
.btn-whatsapp {
  display: block;
  margin-top: auto;
  margin-bottom: 1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream-muted);
  padding: 10px 0;
  width: calc(100% - 2.2rem);
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--body-font);
  transition: all 0.2s ease;
  min-height: 44px;
}

.product-card:hover .order-button,
.product-card:hover .btn-whatsapp,
.order-button:hover,
.order-button:focus-visible,
.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.know-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  min-height: 44px;
  padding: 0.55rem 0.8rem;
  border-radius: 4px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold);
  font-weight: 500;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  width: calc(100% - 2.2rem);
}

.know-more-link:hover,
.know-more-link:focus-visible {
  background: rgba(201, 162, 39, 0.1);
}

.home-shop-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  min-height: 44px;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--cream-muted);
  font-weight: 500;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.home-shop-link:hover,
.home-shop-link:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── WhatsApp CTA ───────────────────────────────────────────────────────── */
.whatsapp-cta {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  text-align: center;
}

.whatsapp-cta h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  margin-bottom: 0.75rem;
}

.whatsapp-cta p {
  color: var(--cream-muted);
  font-size: 15px;
  margin-bottom: 1.5rem;
  max-width: 60ch;
  margin-inline: auto;
}

/* ─── Image Slider ───────────────────────────────────────────────────────── */
.intro-slider {
  padding: 60px 0;
}

.intro-slider-title {
  margin-bottom: 1rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.intro-slider-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  max-width: 780px;
  margin-inline: auto;
}

.intro-slider-shell:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.intro-slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-sm);
  touch-action: pan-y;
  border: 1px solid var(--border);
}

.intro-slider-track {
  display: flex;
  width: 100%;
  transition: transform 360ms ease;
  will-change: transform;
  touch-action: pan-y;
}

.intro-slide {
  margin: 0;
  flex: 0 0 100%;
  background: var(--surface2);
}

.intro-slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.85);
}

.intro-slider-control {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--cream-muted);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-slider-control:hover,
.intro-slider-control:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--surface2);
}

.intro-slider-control:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

@media (prefers-reduced-motion: reduce) {
  .intro-slider-track {
    transition: none;
  }
}

/* ─── Story Section ──────────────────────────────────────────────────────── */
.story-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-image-wrap {
  position: relative;
}

.story-image-wrap img {
  width: 100%;
  border-radius: 8px;
  filter: saturate(0.8) brightness(0.85);
}

.story-rating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--spice);
  border-radius: 8px;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.rating-score {
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}

.rating-stars {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 4px;
  letter-spacing: 0.1em;
}

.rating-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.story-content {
  padding-bottom: 24px;
}

.story-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.875rem);
  margin: 16px 0 24px;
  line-height: 1.15;
  text-wrap: pretty;
}

.story-content p {
  font-size: 15px;
  color: var(--cream-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 18px;
}

.story-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(1rem, 2vw, 1.25rem);
  box-shadow: var(--shadow-sm);
}

.story-card h3 {
  margin: 0 0 0.75rem;
}

.story-card p {
  color: var(--cream-muted);
  margin-bottom: 1rem;
}

.story-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0.6rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.4);
  margin: 1rem 0 0.5rem;
}

.story-video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.story-highlights {
  display: flex;
  gap: 48px;
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

.story-highlights li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.highlight-title {
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
}

.highlight-sub {
  font-size: 12px;
  color: var(--cream-muted);
  letter-spacing: 0.06em;
}

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.testimonials-section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-eyebrow {
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.875rem);
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  opacity: 0.9;
}

.testimonial-comment {
  font-size: 15px;
  color: var(--cream);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

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

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
}

.testimonial-location {
  font-size: 11px;
  color: var(--cream-muted);
  letter-spacing: 0.08em;
}

/* ─── Contact Section ────────────────────────────────────────────────────── */
.contact-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

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

.contact-info .section-eyebrow {
  margin-bottom: 16px;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.625rem);
  margin-bottom: 32px;
  line-height: 1.2;
}

.contact-details {
  display: grid;
}

.contact-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.contact-row:not(:last-child) {
  margin-bottom: 20px;
}

.contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-row dt {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  min-width: 80px;
  padding-top: 2px;
  font-weight: 500;
  font-style: normal;
  flex-shrink: 0;
}

.contact-row dd {
  font-size: 14.5px;
  color: var(--cream);
}

.contact-row dd a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-row dd a:hover,
.contact-row dd a:focus-visible {
  color: var(--gold);
}

.contact-cta-card {
  background: linear-gradient(135deg, var(--spice) 0%, var(--spice-dark) 100%);
  border-radius: 12px;
  padding: 48px 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-cta-card h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-cta-card > p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--spice-dark);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 44px;
  border: 1px solid transparent;
}

.cta-button:hover,
.cta-button:focus-visible {
  background: #f0e4e4;
  color: var(--spice-dark);
}

.contact-delivery {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
}

.delivery-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-delivery p:last-child {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 36px 0;
}

.site-footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.footer-center {
  text-align: center;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.footer-heading {
  color: var(--cream);
  font-size: 1rem;
  font-family: var(--heading-font);
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.site-footer p {
  font-size: 0.9rem;
  color: var(--cream-muted);
  margin-bottom: 0.25rem;
}

.site-footer a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-trust-signals {
  margin-top: 0.75rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
}

.footer-trust-fssai {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.footer-trust-fssai img {
  width: 80px;
  max-width: 100%;
  height: auto;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.15rem;
}

.footer-trust-fssai span {
  font-size: 0.88rem;
  color: var(--cream-muted);
}

.footer-stars {
  color: var(--gold);
  letter-spacing: 0.05em;
}

.social-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 0 0 0.65rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--cream-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.2s ease;
  min-height: 44px;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.social-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* ─── Products Page ──────────────────────────────────────────────────────── */
.products-section h2 {
  margin-bottom: 1rem;
}

.breadcrumb {
  margin-bottom: 0.9rem;
  color: var(--cream-muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--gold-light);
}

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

.product-detail-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.product-detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.product-detail-card img {
  width: 100%;
  border-radius: 0.45rem;
  max-height: 360px;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.85);
}

.product-detail-meta {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0;
}

.product-detail-meta p {
  color: var(--cream-muted);
  font-size: 0.95rem;
}

.product-detail-meta strong {
  color: var(--gold-light);
}

.product-detail-description {
  color: var(--cream-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.product-detail-card ul {
  margin: 0.45rem 0 1rem 1.15rem;
  color: var(--cream-muted);
  font-size: 0.95rem;
}

/* Trust banner (products page) */
.trust-banner {
  margin-bottom: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  box-shadow: var(--shadow-sm);
}

.trust-banner-title {
  margin: 0;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--heading-font);
  font-size: 1rem;
}

.trust-banner-meta {
  margin: 0.2rem 0 0;
  color: var(--cream-muted);
  font-size: 0.9rem;
}

/* ─── About Page ─────────────────────────────────────────────────────────── */
.about-page {
  display: grid;
  gap: 1.25rem;
  padding: 2rem 0;
}

.about-story,
.about-makers,
.kitchen-process {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.about-story h2,
.about-makers h2,
.kitchen-process h2 {
  margin: 0 0 0.75rem;
}

.about-story p,
.about-makers p {
  color: var(--cream-muted);
  font-size: 0.97rem;
  line-height: 1.8;
}

.about-story p + p,
.about-makers p + p {
  margin-top: 0.65rem;
}

.kitchen-process-intro {
  margin: 0 0 1rem;
  color: var(--cream-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.process-card {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 0.55rem;
  overflow: hidden;
  background: var(--surface2);
}

.process-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.85);
}

.process-card figcaption {
  padding: 0.7rem 0.75rem 0.8rem;
  font-size: 0.92rem;
  color: var(--cream-muted);
}

/* ─── FAQ Page ───────────────────────────────────────────────────────────── */
.faq-page {
  display: grid;
  gap: 1rem;
  padding: 2rem 0;
}

.faq-intro,
.faq-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.faq-intro h2,
.faq-card h2 {
  margin: 0 0 0.5rem;
}

.faq-intro p {
  margin-top: 0.45rem;
  color: var(--cream-muted);
  font-size: 0.97rem;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-card h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.faq-card p {
  color: var(--cream-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}

/* ─── Reduced Motion ─────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Responsive: ≤1024px ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .story-grid {
    gap: 48px;
  }

  .story-rating-badge {
    bottom: 12px;
    right: 12px;
  }
}

/* ─── Responsive: ≤960px ─────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-rating-badge {
    bottom: auto;
    right: auto;
    top: 16px;
    left: 16px;
  }

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

  .products-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .footer-center {
    grid-column: 1 / -1;
    text-align: left;
    order: 3;
  }

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

  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Responsive: ≤720px ─────────────────────────────────────────────────── */
@media (max-width: 720px) {
  .hero-tagline {
    max-width: 100%;
  }

  .hero::after {
    background: rgba(13, 10, 6, 0.72);
  }

  .story-highlights {
    gap: 24px;
    flex-wrap: wrap;
  }

  .contact-cta-card {
    padding: 32px 28px;
  }
}

/* ─── Responsive: ≤640px (mobile) ───────────────────────────────────────── */
@media (max-width: 640px) {
  .site-header {
    padding: 0.75rem 1rem;
    height: auto;
  }

  .site-header .container {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    width: 100%;
    order: 3;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
  }

  .js-enabled .main-nav {
    display: none;
    margin-top: 0.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    background: rgba(13, 10, 6, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .js-enabled .main-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    margin-bottom: 0.5rem;
    gap: 0.25rem;
  }

  .nav-list a {
    width: 100%;
    justify-content: flex-start;
    padding: 0.65rem 0.85rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    font-size: 14px;
  }

  .nav-list a.active {
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
  }

  .nav-order-btn {
    width: 100%;
    justify-content: center;
    border-radius: 0.5rem;
    padding: 12px 22px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-cta {
    width: 100%;
  }

  .trust-row {
    gap: 16px;
  }

  .products-section,
  .story-section,
  .testimonials-section,
  .contact-section {
    padding: 64px 0;
  }

  .seo-intro,
  .whatsapp-cta,
  .intro-slider {
    padding: 48px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-content {
    grid-template-columns: 1fr;
  }

  .footer-center {
    order: unset;
    grid-column: unset;
    text-align: left;
  }

  .intro-slide img {
    height: 260px;
  }

  .intro-slider-control {
    width: 2.5rem;
    height: 2.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .home-shop-link {
    width: 100%;
  }
}
