/* ============================================================
   TAASIR — "The Royal Ledger" design system
   Navy #12263F · Platinum gold #D8C49A · Ivory paper #F7F2E9
   Display: Cormorant Garamond · Body: Jost · Hindi: Tiro Devanagari
   ============================================================ */

:root {
  --navy: #12263f;
  --navy-deep: #0c1a2c;
  --gold: #d8c49a;
  --gold-dark: #b39a63;
  --ivory: #ffffff;
  --ivory-warm: #fafaf8;
  --ink: #22303f;
  --muted: #6b7686;
  --wa: #1fa855;
  --shadow-soft: 0 24px 60px -28px rgba(18, 38, 63, 0.35);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Paper grain texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.5 0 0 0 0 0.42 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3 { font-family: "Cormorant Garamond", serif; color: var(--navy); font-weight: 600; line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
em { font-style: italic; color: var(--gold-dark); }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: transform 0.16s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out), color 0.2s var(--ease-out);
  cursor: pointer;
}
.btn:active { transform: scale(0.97); }
.btn-navy { background: var(--navy); color: var(--gold); }
.btn-navy:hover { background: var(--navy-deep); box-shadow: var(--shadow-soft); }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; box-shadow: var(--shadow-soft); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--gold); }
.btn-lg { padding: 1.05rem 2.3rem; font-size: 0.95rem; }
.wa-ic { width: 1.05em; height: 1.05em; }

/* ---------- gold rule divider ---------- */
.gold-rule {
  position: relative;
  max-width: 1080px;
  margin: 3.5rem auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
}
.gold-rule .sprig {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  color: var(--gold-dark);
  padding: 0 0.9rem;
  font-size: 0.85rem;
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(179, 154, 99, 0.35);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand-badge { width: 46px; height: 46px; border-radius: 50%; box-shadow: 0 4px 14px -6px rgba(18,38,63,.5); }
.brand-word { display: flex; flex-direction: column; line-height: 1.05; }
.brand-en { font-family: "Cormorant Garamond", serif; font-weight: 700; letter-spacing: 0.3em; color: var(--navy); font-size: 1.05rem; }
.brand-hi { font-family: "Tiro Devanagari Hindi", serif; font-size: 0.7rem; color: var(--gold-dark); letter-spacing: 0.2em; }
.main-nav { display: flex; gap: 1.8rem; margin-left: auto; }
.main-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  position: relative;
  padding: 0.3rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.main-nav a:hover::after { transform: scaleX(1); }
.header-cta { margin-left: 0.5rem; padding: 0.6rem 1.15rem; font-size: 0.72rem; }
.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); display: block; }

/* ---------- language switch (pill slider) ---------- */
.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 0.5rem;
  padding: 3px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  flex: none;
}
.lang-switch .lang-opt {
  position: relative;
  z-index: 2;
  padding: 0.28rem 0.85rem;
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.4;
  transition: color 0.25s var(--ease-out);
  white-space: nowrap;
}
.lang-switch .lang-opt.active { color: var(--gold); }
.lang-thumb {
  position: absolute;
  z-index: 1;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  background: var(--navy);
  border-radius: 999px;
  transition: transform 0.28s var(--ease-out), width 0.28s var(--ease-out);
}
.lang-switch.hi .lang-thumb { transform: translateX(100%); }
.lang-switch:active .lang-thumb { transform-origin: center; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 9.5rem 1.5rem 1.5rem; overflow: hidden; }
.hero-watermark {
  position: absolute;
  right: -2rem;
  top: 1.5rem;
  white-space: nowrap;
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: clamp(12rem, 26vw, 24rem);
  color: rgba(18, 38, 63, 0.06);
  user-select: none;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}
@media (min-width: 1025px) {
  .hero-watermark { right: 1.5rem; }
  .hero-visual { margin-top: 5rem; height: 480px; }
  .hero-card-front { height: 420px; }
  .hero-card-back { height: 360px; }
  .hero { padding-bottom: 1.5rem; }
  .hero .gold-rule { margin: 9rem auto 0; }
  .story { padding-top: 3rem; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.hero-copy .lede { font-size: 1.08rem; font-weight: 300; color: var(--muted); max-width: 34rem; margin: 1.4rem 0 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-meta { display: flex; align-items: center; gap: 1.6rem; margin-top: 3rem; }
.hero-meta div:not(.meta-rule) { display: flex; flex-direction: column; }
.hero-meta strong { font-family: "Cormorant Garamond", serif; font-size: 1.9rem; color: var(--navy); line-height: 1; }
.hero-meta span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }
.meta-rule { width: 1px; height: 2.6rem; background: var(--gold); }

.hero-visual { position: relative; height: 540px; }
.hero-card {
  position: absolute;
  background: transparent;
}
.hero-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-card-front { width: 62%; height: 470px; left: 4%; top: 30px; z-index: 2; transform: rotate(-2deg); }
.hero-card-back { width: 52%; height: 400px; right: 0; top: 0; z-index: 1; transform: rotate(3.5deg); opacity: 0.94; }

/* ---------- story ---------- */
.story { padding: 3rem 1.5rem 5.5rem; }
.story-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}
.story-body p { color: var(--muted); font-weight: 300; font-size: 1.02rem; margin-bottom: 1.2rem; }
.story-body p strong { color: var(--navy); font-weight: 500; }
.story-points { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 1.6rem; }
.point { display: flex; gap: 1.2rem; align-items: flex-start; }
.point-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  line-height: 1.3;
}
.point h4 { font-family: "Jost", sans-serif; font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.2rem; }
.point p { font-size: 0.92rem; color: var(--muted); font-weight: 300; margin: 0; }

/* ---------- collection ---------- */
/* ---------- kitchen (family lifestyle) ---------- */
.kitchen { padding: 1rem 1.5rem 0; }
.kitchen-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}
.kitchen-media { margin: 0; }
.kitchen-media img {
  width: 100%;
  display: block;
  border-radius: 6px;
  border: 1px solid rgba(179, 154, 99, 0.3);
}
.kitchen-copy p:not(.eyebrow) { color: var(--muted); font-weight: 300; font-size: 1.02rem; margin-top: 1.2rem; max-width: 30rem; }

.collection { padding: 5.5rem 1.5rem; }
.collection-head { max-width: 1240px; margin: 0 auto 3rem; }
.collection-note { color: var(--muted); font-weight: 300; margin-top: 0.8rem; }
.product-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(179, 154, 99, 0.35);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--gold); }
.card-index {
  position: absolute;
  top: 0.8rem; left: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--gold-dark);
  z-index: 2;
}
@media (max-width: 768px) {
  .card-index {
    position: static;
    display: block;
    padding: 0.5rem 0.9rem 0;
    font-size: 0.95rem;
  }
}
.card-media { aspect-ratio: 3 / 4; overflow: hidden; background: #fff; }
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.product-card:hover .card-media img { transform: scale(1.045); }
.card-body { padding: 1.1rem 1.2rem 1.3rem; border-top: 2px solid var(--accent, var(--navy)); }
.card-body h3 { font-size: 1.22rem; }
.card-hi { font-family: "Tiro Devanagari Hindi", serif; color: var(--gold-dark); font-size: 0.85rem; margin-top: 0.1rem; }
.card-cta {
  margin-top: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}
.card-cta::after { content: "\2192"; transition: transform 0.2s var(--ease-out); }
.product-card:hover .card-cta::after { transform: translateX(4px); }

/* ---------- promise ---------- */
.promise { padding: 5.5rem 1.5rem; background: var(--navy); position: relative; }
.promise .eyebrow { color: var(--gold); }
.promise h2 { color: #f7f2e9; }
.promise em { color: var(--gold); }
.promise-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.promise-copy p { color: rgba(247, 242, 233, 0.75); font-weight: 300; margin: 1.2rem 0 1.8rem; max-width: 30rem; }
.promise-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.promise-list li { color: #f7f2e9; font-weight: 300; display: flex; gap: 0.7rem; align-items: baseline; }
.promise-list span { color: var(--gold); font-size: 0.8rem; }
.promise-visual img {
  width: 100%;
  max-width: 380px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
  transform: rotate(1.5deg);
}
.promise .gold-rule { display: none; }

/* ---------- contact ---------- */
.contact { padding: 6rem 1.5rem 5rem; text-align: center; }
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact-lede { color: var(--muted); font-weight: 300; margin: 1rem 0 2.2rem; }
.contact-addr { margin-top: 2rem; font-size: 0.8rem; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid rgba(179, 154, 99, 0.35); padding: 2.5rem 1.5rem; }
.footer-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; }
.footer-brand img { width: 40px; height: 40px; border-radius: 50%; }
.footer-brand div { display: flex; flex-direction: column; line-height: 1.05; }
.footer-tag { font-family: "Cormorant Garamond", serif; font-style: italic; color: var(--gold-dark); }
.footer-legal { margin-left: auto; font-size: 0.78rem; color: var(--muted); }

/* ---------- modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(12, 26, 44, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out), visibility 0s 0.25s;
}
.modal-backdrop[hidden] { display: none; }
.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.25s var(--ease-out);
}
.modal {
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  max-width: 860px;
  width: 100%;
  max-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.55);
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.28s var(--ease-out), opacity 0.28s var(--ease-out);
}
.modal-backdrop.open .modal { transform: scale(1); opacity: 1; }
.modal-close {
  position: absolute;
  top: 0.6rem; right: 0.8rem;
  z-index: 3;
  background: none;
  border: none;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--navy);
}
.modal-media { position: relative; background: #fff; display: flex; align-items: center; justify-content: center; padding-bottom: 3rem; }
.modal-media img {
  width: 100%;
  height: 100%;
  max-height: 84vh;
  object-fit: contain;
  display: block;
}
.modal-flip {
  position: absolute;
  bottom: 0.55rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--gold);
  border-radius: 3px;
  overflow: hidden;
}
.flip-btn {
  border: none;
  background: transparent;
  padding: 0.45rem 1rem;
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  transition: background 0.2s, color 0.2s;
}
.flip-btn.active { background: var(--navy); color: var(--gold); }
.modal-info { padding: 2.2rem 2rem; display: flex; flex-direction: column; gap: 0.4rem; overflow-y: auto; }
.modal-info h3 { font-size: 1.9rem; }
.modal-hi { font-family: "Tiro Devanagari Hindi", serif; color: var(--gold-dark); font-size: 1.05rem; }
.modal-desc { color: var(--muted); font-weight: 300; font-size: 0.95rem; margin: 0.8rem 0 1.2rem; }
.modal-specs { display: flex; gap: 1.6rem; margin-bottom: 1.6rem; }
.modal-specs div { display: flex; flex-direction: column; }
.modal-specs span { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.modal-specs strong { font-family: "Cormorant Garamond", serif; font-size: 1.15rem; color: var(--navy); }
.veg-dot { color: #1c7c2f; }

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px -10px rgba(31, 168, 85, 0.65);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: translateY(-3px) scale(1.05); }
.wa-float:active { transform: scale(0.95); }

/* ---------- reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 460px; max-width: 560px; }
  .header-cta { display: none; }
  .hero .gold-rule { margin-top: 9rem; }
}
@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: rgba(247, 242, 233, 0.98);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    gap: 0;
    padding: 0.6rem 0 1rem;
    box-shadow: 0 20px 40px -20px rgba(18, 38, 63, 0.3);
    transform: translateY(-130%);
    transition: transform 0.3s var(--ease-out);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 0.8rem 1.6rem; }
  .lang-switch { margin-left: auto; }
  .nav-toggle { display: flex; margin-left: 0.35rem; }
  .story-inner, .promise-inner, .kitchen-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .modal {
    grid-template-columns: 1fr;
    overflow-y: auto;
    max-height: 90dvh;
    border-radius: 10px;
  }
  .modal-media { padding: 0.5rem 0.5rem 3.2rem; }
  .modal-media img { max-height: 48vh; height: auto; }
  .modal-info { padding: 1.4rem 1.4rem 1.8rem; }
  .modal-info h3 { font-size: 1.55rem; }
  .modal-close {
    top: 0.4rem; right: 0.5rem;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 14px -6px rgba(18, 38, 63, 0.4);
  }
  .hero { padding-top: 7.5rem; }
  .hero-visual { height: 380px; max-width: 100%; }
  .hero-watermark { right: 0.5rem; top: 4.5rem; font-size: clamp(6rem, 30vw, 10rem); }
  .footer-legal { margin-left: 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .story, .collection, .promise { padding: 3.5rem 1.25rem; }
  .contact { padding: 4rem 1.25rem 3.5rem; }
  .kitchen { padding: 0.5rem 1.25rem 0; }
  .gold-rule { margin: 2.5rem auto; }
  .hero-meta { flex-wrap: wrap; row-gap: 1.2rem; }
  .btn { padding: 0.85rem 1.4rem; }
  .contact .btn-lg { padding: 0.95rem 1.4rem; font-size: 0.82rem; }
}
@media (max-width: 460px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
  .card-body { padding: 0.8rem 0.85rem 1rem; }
  .card-body h3 { font-size: 1rem; }
  .card-hi { font-size: 0.78rem; }
  .card-cta { font-size: 0.65rem; }
  .hero-meta { gap: 1rem; }
  .hero-visual { height: 300px; }
  .hero-watermark { font-size: 5.5rem; top: 4.8rem; }
  .hero { padding: 6.8rem 1.1rem 3rem; }
  h1 { font-size: 2.35rem; }
  h2 { font-size: 1.75rem; }
  .hero-copy .lede { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-meta strong { font-size: 1.55rem; }
  .hero-meta span { font-size: 0.62rem; }
  .brand-badge { width: 38px; height: 38px; }
  .brand-en { font-size: 0.92rem; letter-spacing: 0.22em; }
  .header-inner { padding: 0.65rem 0.9rem; gap: 0.6rem; }
  .lang-switch .lang-opt { padding: 0.24rem 0.65rem; font-size: 0.68rem; }
  .main-nav { top: 56px; }
  .modal-specs { gap: 1.1rem; flex-wrap: wrap; }
  .modal-info .btn { justify-content: center; }
  .wa-float { width: 50px; height: 50px; right: 1rem; bottom: 1rem; }
  .contact-lede { font-size: 0.95rem; }
  .footer-legal { font-size: 0.7rem; }
  .promise-visual img { max-width: 300px; }
  .kitchen-copy p:not(.eyebrow) { font-size: 0.96rem; }
  .story-body p { font-size: 0.96rem; }
}
