/* ============================================================
   Lap-Jap Frozen Foods
   Palette: warm cream paper, deep warm-black, antique gold
   Type:    Cormorant Garamond (display) / Karla (body) / Vazirmatn (Persian)
   ============================================================ */

:root {
  --cream:       #f6efe1;
  --cream-deep:  #efe5d2;
  --paper:       #fbf6ec;
  --ink:         #1a1611;
  --ink-soft:    #3c352b;
  --gold:        #b08736;
  --gold-bright: #caa14b;
  --gold-pale:   #e7d4a3;
  --line:        rgba(26, 22, 17, 0.14);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Karla", "Helvetica Neue", Arial, sans-serif;
  --font-fa:      "Vazirmatn", "Cormorant Garamond", serif;

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.075rem);
  overflow-x: hidden;
  /* subtle paper grain */
  background-image:
    radial-gradient(circle at 12% 18%, rgba(176,135,54,0.05), transparent 38%),
    radial-gradient(circle at 88% 82%, rgba(176,135,54,0.045), transparent 42%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
em { font-style: italic; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--ink); color: var(--cream); padding: 0.75rem 1.25rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal 1s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes reveal { to { opacity: 1; transform: none; } }

.io {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.io.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal, .io { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0.65rem 0;
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav--scrolled {
  background: rgba(251, 246, 236, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(26,22,17,0.06);
}

.nav__brand { display: flex; align-items: center; gap: 0.7rem; }
.nav__logo {
  width: 44px; height: 44px; object-fit: contain;
}
.nav__brandtext { display: flex; flex-direction: column; line-height: 1; }
.nav__brandname {
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem;
  letter-spacing: 0.01em;
}
.nav__brandsub {
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.32em;
  color: var(--gold); font-weight: 600; margin-top: 2px;
}

.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.1rem); }
.nav__links a {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em;
  font-weight: 600; color: var(--ink-soft); position: relative; padding: 0.4rem 0;
  transition: color 0.3s;
}
.nav__links a:not(.nav__call)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.35s var(--ease);
}
.nav__links a:not(.nav__call):hover { color: var(--ink); }
.nav__links a:not(.nav__call):hover::after { width: 100%; }

.nav__call {
  background: var(--ink); color: var(--cream) !important;
  padding: 0.6rem 1.1rem !important; border-radius: 100px;
  letter-spacing: 0.06em !important; font-size: 0.8rem !important;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.nav__call:hover { background: var(--gold); transform: translateY(-1px); }

.nav__toggle { display: none; width: 42px; height: 42px; position: relative; }
.nav__toggle span {
  position: absolute; left: 9px; right: 9px; height: 2px; background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
.nav__toggle span:nth-child(1) { top: 14px; }
.nav__toggle span:nth-child(2) { top: 20px; }
.nav__toggle span:nth-child(3) { top: 26px; }
.nav--open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav--open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav--open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem clamp(1.1rem, 4vw, 2.5rem) 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, var(--paper), transparent 70%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.steam {
  position: absolute; bottom: -10%; width: 140px; height: 70%;
  background: radial-gradient(ellipse at center, rgba(176,135,54,0.12), transparent 70%);
  filter: blur(28px); border-radius: 50%; opacity: 0;
  animation: rise 9s ease-in-out infinite;
}
.steam--1 { left: 18%; animation-delay: 0s; }
.steam--2 { left: 50%; animation-delay: 2.5s; width: 180px; }
.steam--3 { left: 78%; animation-delay: 4.5s; }
@keyframes rise {
  0%   { transform: translateY(40px) scale(0.9); opacity: 0; }
  35%  { opacity: 0.9; }
  100% { transform: translateY(-220px) scale(1.4); opacity: 0; }
}

.hero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; text-align: center; }

.hero__eyebrow {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.38em;
  color: var(--gold); font-weight: 700; margin-bottom: 1.6rem;
}
.hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.9rem, 9vw, 7.5rem); line-height: 0.98; letter-spacing: -0.01em;
}
.hero__title span { display: block; }
.hero__title-em { font-style: italic; font-weight: 400; color: var(--gold); }

.hero__sub {
  margin: 1.8rem auto 0; max-width: 36ch;
  font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--ink-soft); font-weight: 500;
}
.hero__sub .dot { color: var(--gold); margin: 0 0.35rem; }

.hero__cta {
  margin-top: 2.6rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

.hero__badges {
  margin-top: 2.8rem; display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap;
}
.badge {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 600;
  color: var(--ink-soft); padding: 0.45rem 0.95rem; border: 1px solid var(--line);
  border-radius: 100px; background: rgba(251,246,236,0.5);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0.85rem 1.8rem; border-radius: 100px; font-weight: 700;
  letter-spacing: 0.04em; transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, color 0.3s;
  line-height: 1.15;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #fff; box-shadow: 0 10px 26px rgba(176,135,54,0.34);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(176,135,54,0.42); }
.btn--gold .btn__label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; opacity: 0.92; font-weight: 600; }
.btn--gold .btn__num { font-size: 1.18rem; font-weight: 700; letter-spacing: 0.02em; }

.btn--ghost {
  border: 1px solid var(--ink); color: var(--ink); padding: 1.05rem 1.8rem;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.16em;
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }

.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 1.1rem 2.6rem; }
.btn--lg.btn--gold .btn__num { font-size: 1.3rem; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink); color: var(--cream); overflow: hidden;
  padding: 0.95rem 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.marquee__track {
  display: flex; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee__group {
  display: flex; align-items: center; justify-content: space-around;
  flex: 0 0 auto; min-width: 100vw; gap: 2.5rem; padding: 0 1.25rem;
  white-space: nowrap;
}
.marquee__group span {
  font-family: var(--font-display); font-size: 1.45rem; font-style: italic;
  display: inline-flex; align-items: center;
}
.marquee__sep { height: 22px; width: auto; opacity: 0.85; flex: 0 0 auto; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-head { max-width: 760px; margin: 0 auto; text-align: center; }
.section-head__eyebrow {
  font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.34em;
  color: var(--gold); font-weight: 700; margin-bottom: 1rem;
}
.section-head__eyebrow--center { text-align: center; }
.section-head__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.8rem); line-height: 1.05; letter-spacing: -0.01em;
}
.section-head__title em { color: var(--gold); }
.section-head__lead {
  margin: 1.4rem auto 0; max-width: 52ch; color: var(--ink-soft); font-size: 1.05rem;
}
.section-head--light .section-head__title,
.section-head--light .section-head__eyebrow { color: inherit; }
.section-head--light .section-head__eyebrow { color: var(--gold-pale); }
.section-head--light .section-head__title em { color: var(--gold-bright); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1.1rem, 4vw, 2.5rem);
  max-width: var(--maxw); margin: 0 auto;
}
.product-grid {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem);
}

.product {
  background: var(--paper); border: 1px solid var(--line); border-radius: 4px;
  overflow: hidden; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.product:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(26,22,17,0.12); }

.product__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.product__photo {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(202,161,75,0.35), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(176,135,54,0.25), transparent 55%),
    linear-gradient(135deg, #2a241b, #14110c);
  overflow: hidden;
}
.product__script {
  font-family: var(--font-fa); font-size: clamp(3rem, 6vw, 4.6rem); color: var(--gold-pale);
  opacity: 0.92; position: relative; z-index: 2;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.product__shape {
  position: absolute; width: 160px; height: 160px; border-radius: 46% 54% 50% 50%;
  border: 1px solid rgba(231,212,163,0.35); opacity: 0.5;
  animation: float 12s ease-in-out infinite;
}
.product__shape--2 { border-radius: 60% 40% 55% 45%; animation-duration: 14s; }
.product__shape--3 { border-radius: 42% 58% 48% 52%; animation-duration: 16s; }
@keyframes float { 0%,100% { transform: rotate(0) scale(1); } 50% { transform: rotate(180deg) scale(1.12); } }

.product__body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.product__head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; }
.product__name { font-family: var(--font-display); font-weight: 600; font-size: 1.9rem; line-height: 1; }
.product__fa { font-family: var(--font-fa); color: var(--gold); font-size: 1.45rem; }
.product__desc { margin-top: 0.7rem; color: var(--ink-soft); font-size: 0.97rem; flex: 1; }

.product__more {
  margin-top: 1.2rem; align-self: flex-start;
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700;
  color: var(--gold); display: inline-flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color 0.3s, color 0.3s;
}
.product__more::after { content: "+"; font-size: 1rem; transition: transform 0.3s; }
.product__more:hover { color: var(--ink); border-color: var(--ink); }
.product__more[aria-expanded="true"]::after { transform: rotate(45deg); }

/* Ingredients panel (collapsible, animated via grid-rows) */
.ingredients {
  display: grid; grid-template-rows: 0fr; opacity: 0; margin-top: 0;
  transition: grid-template-rows 0.5s var(--ease), opacity 0.4s var(--ease), margin-top 0.5s var(--ease);
}
.ingredients.is-open { grid-template-rows: 1fr; opacity: 1; margin-top: 2rem; }
.ingredients__wrap { overflow: hidden; min-height: 0; }
.ingredients__inner {
  background: var(--ink); color: var(--cream); border-radius: 4px;
  padding: clamp(1.6rem, 4vw, 2.6rem); max-width: 820px;
}
.ingredients__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1.1rem;
}
.ingredients h4 {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap;
}
.ingredients__tag {
  font-family: var(--font-body); font-size: 0.66rem; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--ink); background: var(--gold-bright);
  padding: 0.3rem 0.7rem; border-radius: 100px; font-weight: 700;
}
.ingredients p { color: rgba(246,239,225,0.82); }
.ingredients strong { color: #fff; }
.ingredients__allergy { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.12); }

/* Meat selector */
.meat-select {
  display: inline-flex; padding: 4px; gap: 2px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 100px;
}
.meat-select__btn {
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700;
  color: rgba(246,239,225,0.7); padding: 0.45rem 0.95rem; border-radius: 100px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.meat-select__btn:hover { color: var(--cream); }
.meat-select__btn.is-active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #fff;
}

/* ============================================================
   WHY US
   ============================================================ */
.why {
  background: var(--ink); color: var(--cream);
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1.1rem, 4vw, 2.5rem);
  position: relative; overflow: hidden;
}
.why::before {
  content: "\2766"; position: absolute; top: -3rem; right: -1rem; font-size: 22rem;
  color: rgba(202,161,75,0.05); pointer-events: none;
}
.why__inner { max-width: var(--maxw); margin: 0 auto; position: relative; }
.why__grid {
  list-style: none; margin-top: clamp(2.8rem, 6vw, 5rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1);
}
.why__item { background: var(--ink); padding: clamp(1.6rem, 3vw, 2.4rem); transition: background 0.4s; }
.why__item:hover { background: #221d15; }
.why__num {
  display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--gold-bright);
  font-style: italic; letter-spacing: 0.06em; line-height: 1;
}
.why__item h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.55rem; margin: 0.6rem 0 0.5rem;
}
.why__item p { color: rgba(246,239,225,0.66); font-size: 0.97rem; }

/* ============================================================
   HOW TO ORDER
   ============================================================ */
.order { padding: clamp(4.5rem, 9vw, 8rem) clamp(1.1rem, 4vw, 2.5rem); }
.order__inner { max-width: var(--maxw); margin: 0 auto; }
.order__layout {
  margin-top: clamp(2.8rem, 6vw, 4.5rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start;
}

.price-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 6px;
  padding: clamp(1.8rem, 4vw, 2.8rem); position: relative;
  box-shadow: 0 20px 50px rgba(26,22,17,0.07);
}
.price-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 6px; padding: 1px;
  background: linear-gradient(135deg, var(--gold-bright), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.price-card__label {
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); font-weight: 700;
}
.price-card__amount {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(3.4rem, 9vw, 5rem); line-height: 1; margin: 0.5rem 0 0.2rem;
}
.price-card__unit { font-size: 1.4rem; color: var(--ink-soft); font-style: italic; font-weight: 400; }
.price-card__list { list-style: none; margin: 1.4rem 0 1.8rem; }
.price-card__list li {
  padding: 0.6rem 0 0.6rem 1.7rem; position: relative; border-bottom: 1px solid var(--line);
  color: var(--ink-soft); font-weight: 500;
}
.price-card__list li:last-child { border-bottom: none; }
.price-card__list li::before {
  content: "\2766"; position: absolute; left: 0; color: var(--gold); font-size: 0.9rem; top: 0.7rem;
}

.delivery-note {
  margin-top: 1.5rem; padding: 1.5rem 1.7rem; border: 1px dashed var(--gold);
  border-radius: 6px; background: rgba(202,161,75,0.06);
}
.delivery-note h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.4rem; }
.delivery-note p { color: var(--ink-soft); font-size: 0.97rem; }

.order__stockists-title { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 600; }
.order__stockists-lead { color: var(--ink-soft); margin-top: 0.3rem; margin-bottom: 1.6rem; }
.stockist-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.stockist {
  padding: 1.4rem 1.6rem; background: var(--paper); border: 1px solid var(--line);
  border-left: 3px solid var(--gold); border-radius: 4px; transition: transform 0.35s var(--ease);
}
.stockist:hover { transform: translateX(5px); }
.stockist h4 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.stockist p { color: var(--ink-soft); font-size: 0.95rem; margin-top: 0.25rem; }
.stockist--soon { border-left-color: var(--line); opacity: 0.72; font-style: italic; }
.stockist--soon p { font-style: italic; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: linear-gradient(180deg, var(--cream-deep), var(--cream));
  padding: clamp(4.5rem, 9vw, 8.5rem) clamp(1.1rem, 4vw, 2.5rem);
  position: relative; overflow: hidden;
}
.about__inner {
  max-width: var(--maxw); margin: 0 auto; position: relative;
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.about__script {
  font-family: var(--font-fa); font-size: clamp(7rem, 20vw, 16rem); color: var(--gold);
  opacity: 0.13; line-height: 0.8; text-align: center; user-select: none;
}
.about__title {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.06; letter-spacing: -0.01em; margin: 0.8rem 0 1.4rem;
}
.about__title em { color: var(--gold); }
.about__lead { font-size: 1.2rem; color: var(--ink); font-weight: 500; margin-bottom: 1rem; }
.about p { color: var(--ink-soft); }
.about__seal { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }
.about__seal-line { height: 1px; background: var(--line); flex: 1; }
.about__seal-text {
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); font-weight: 700;
  white-space: nowrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, #221d15, var(--ink));
  color: var(--cream); text-align: center;
  padding: clamp(5rem, 11vw, 9rem) clamp(1.1rem, 4vw, 2.5rem);
  position: relative; overflow: hidden;
}
.contact::before, .contact::after {
  content: ""; position: absolute; width: 1px; height: 60%; top: 20%;
  background: linear-gradient(transparent, var(--gold), transparent); opacity: 0.4;
}
.contact::before { left: 8%; }
.contact::after { right: 8%; }
.contact__inner { max-width: 760px; margin: 0 auto; position: relative; }
.contact .section-head__eyebrow { color: var(--gold-bright); }
.contact__title {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1; margin: 0.6rem 0;
}
.contact__sub { color: rgba(246,239,225,0.72); font-size: 1.1rem; margin-bottom: 2rem; max-width: 40ch; margin-inline: auto; }
.contact__phone {
  display: block; font-family: var(--font-display); font-style: italic;
  font-size: clamp(2.6rem, 8vw, 4.5rem); color: var(--gold-bright); font-weight: 500;
  letter-spacing: 0.02em; margin-bottom: 1.8rem; transition: color 0.3s, transform 0.3s;
}
.contact__phone:hover { color: #fff; transform: scale(1.02); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--cream); padding: clamp(3rem, 6vw, 4.5rem) clamp(1.1rem, 4vw, 2.5rem) 0; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
  width: 66px; height: 66px; object-fit: contain; margin-bottom: 1rem;
}
.footer__name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
.footer__tagline { color: rgba(246,239,225,0.6); font-size: 0.95rem; margin-top: 0.3rem; max-width: 30ch; }
.footer__nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__nav a {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600;
  color: rgba(246,239,225,0.7); transition: color 0.3s, padding-left 0.3s; width: fit-content;
}
.footer__nav a:hover { color: var(--gold-bright); padding-left: 6px; }
.footer__label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold-bright); font-weight: 700; }
.footer__phone {
  display: block; font-family: var(--font-display); font-size: 1.9rem; font-weight: 600;
  margin: 0.4rem 0 1rem; transition: color 0.3s;
}
.footer__phone:hover { color: var(--gold-bright); }
.footer__halal {
  display: inline-block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em;
  font-weight: 700; border: 1px solid rgba(255,255,255,0.2); padding: 0.35rem 0.8rem; border-radius: 100px;
}
.footer__bar {
  max-width: var(--maxw); margin: 0 auto; padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: 0.82rem; color: rgba(246,239,225,0.5);
}

/* ============================================================
   STICKY MOBILE CALL BAR
   ============================================================ */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; align-items: center; justify-content: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #fff;
  padding: 0.95rem 1rem; font-weight: 700; letter-spacing: 0.04em;
  box-shadow: 0 -6px 24px rgba(26,22,17,0.18);
}
.callbar__icon { font-size: 1.2rem; }
.callbar__text { font-size: 0.95rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .order__layout { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; text-align: center; }
  .about__script { font-size: 9rem; }
  .about__seal { justify-content: center; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    background: var(--paper); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 1.6rem; padding: 2rem 2.2rem;
    transform: translateX(100%); transition: transform 0.45s var(--ease);
    box-shadow: -20px 0 60px rgba(26,22,17,0.18); z-index: 99;
  }
  .nav--open .nav__links { transform: translateX(0); }
  .nav__links a { font-size: 1rem; letter-spacing: 0.1em; }
  .nav__call { margin-top: 0.5rem; }
  .nav__toggle { display: block; z-index: 100; }

  .callbar { display: flex; }
  body { padding-bottom: 3.6rem; } /* room for call bar */
  .hero { padding-bottom: 5rem; }
  .footer__bar { padding-bottom: 4.5rem; }
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__title { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero__badges { gap: 0.45rem; }
  .badge { font-size: 0.64rem; padding: 0.38rem 0.7rem; }
  .marquee__track { font-size: 1.15rem; }
}
