/* =====================================================================
   Organise My Puja — Sydney
   Design system stylesheet
   Palette : lamp-lit mandir at night (deep plum + temple brass)
             on haldi cream daylight sections
   Type    : Marcellus (display)  ·  Karla (body + utility)
   ===================================================================== */

/* ------------------------------- Tokens ------------------------------ */
:root {
  /* Colour */
  --plum-900: #170a20;
  --plum-800: #23102f;
  --plum-700: #33163f;
  --plum-600: #4a2154;

  --brass: #d9a93f;
  --brass-soft: #f0cd74;
  --brass-deep: #a87c22;

  --sindoor: #b3312b;
  --leaf: #4a7c59;

  --cream: #faf3e6;
  --cream-2: #f2e6d1;
  --cream-3: #e7d7bc;

  --ink: #2a1720;
  --ink-soft: #5d4a53;
  --ink-faint: #8a7680;

  --white: #fffdf9;

  /* Type */
  --display: "Marcellus", "Cormorant Garamond", Georgia, serif;
  --body: "Karla", "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --fs-hero: clamp(2.6rem, 6.2vw, 5rem);
  --fs-h1: clamp(2.2rem, 5vw, 3.75rem);
  --fs-h2: clamp(1.85rem, 3.6vw, 2.85rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.6rem);
  --fs-lead: clamp(1.05rem, 1.5vw, 1.2rem);
  --fs-body: 1.02rem;
  --fs-small: 0.9rem;
  --fs-label: 0.72rem;

  /* Space + shape */
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --maxw: 1200px;
  --maxw-narrow: 760px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(42, 23, 32, 0.07);
  --shadow-md: 0 14px 34px -14px rgba(42, 23, 32, 0.24);
  --shadow-lg: 0 30px 70px -28px rgba(23, 10, 32, 0.45);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --header-h: 74px;
  --topbar-h: 40px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

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

ul, ol { margin: 0 0 1.1em; padding-left: 1.15rem; }
li { margin-bottom: 0.4em; }

button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--brass-soft); color: var(--plum-900); }

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 999;
  background: var(--plum-800);
  color: var(--cream);
  padding: 0.7rem 1.1rem;
  border-radius: var(--r-sm);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------ Helpers ------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--cream2 { background: var(--cream-2); }
.section--dark { background: var(--plum-800); color: var(--cream); }
.section--dark h2,
.section--dark h3 { color: var(--white); }

.eyebrow {
  font-family: var(--body);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--brass);
}
.section--dark .eyebrow { color: var(--brass-soft); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head p { color: var(--ink-soft); font-size: var(--fs-lead); }
.section--dark .section-head p { color: rgba(250, 243, 230, 0.76); }

.lead { font-size: var(--fs-lead); color: var(--ink-soft); }

/* ------------------------------ Buttons ------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 0.6rem;
  padding: 0.92rem 1.6rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease),
              color 0.25s var(--ease), border-color 0.25s var(--ease),
              box-shadow 0.25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn--primary {
  background: var(--brass);
  color: var(--plum-900);
  box-shadow: 0 10px 26px -12px rgba(217, 169, 63, 0.9);
}
.btn--primary:hover { background: var(--brass-soft); }

.btn--whatsapp {
  background: #1faa55;
  color: #fff;
  box-shadow: 0 10px 26px -12px rgba(31, 170, 85, 0.8);
}
.btn--whatsapp:hover { background: #17974a; }

.btn--ghost {
  background: transparent;
  border-color: rgba(250, 243, 230, 0.32);
  color: var(--cream);
}
.btn--ghost:hover { border-color: var(--brass); color: var(--brass-soft); }

.btn--outline {
  background: transparent;
  border-color: var(--cream-3);
  color: var(--ink);
}
.btn--outline:hover { border-color: var(--plum-700); background: var(--white); }

.btn--block { width: 100%; }

/* ------------------------------ Top bar ------------------------------ */
.topbar {
  background: var(--plum-900);
  color: var(--cream-2);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar__note { display: inline-flex; align-items: center; gap: 0.5rem; opacity: 0.85; }
.topbar__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brass); flex: none;
}
.topbar__links { display: flex; gap: 1.4rem; align-items: center; }
.topbar__links a { display: inline-flex; align-items: center; gap: 0.45rem; }
.topbar__links a:hover { color: var(--brass-soft); }
.topbar__links svg { width: 14px; height: 14px; }

/* ------------------------------- Header ------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(250, 243, 230, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease),
              background-color 0.3s var(--ease);
}
.header.is-stuck {
  border-bottom-color: var(--cream-3);
  box-shadow: 0 8px 26px -20px rgba(42, 23, 32, 0.6);
}
.header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--display);
  font-size: 1.22rem;
  white-space: nowrap;
  color: var(--plum-800);
  letter-spacing: 0.005em;
}
.brand__sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 700;
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 0.15rem; }

/* Links and the dropdown trigger share one box so the row never shifts.
   The active underline is absolutely positioned — it adds no height, so an
   active item sits on exactly the same baseline as an inactive one. */
.nav__link,
.nav__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  height: 40px;
  padding: 0 0.85rem;
  border: 0;
  background: none;
  border-radius: var(--r-pill);
  font-family: var(--body);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav__link::after,
.nav__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--brass);
  transform: translateX(-50%) scaleX(0);
  transition: transform 0.25s var(--ease);
}
.nav__link:hover,
.nav__toggle:hover,
.nav__group[data-open="true"] .nav__toggle {
  color: var(--plum-800);
  background: rgba(217, 169, 63, 0.16);
}
.nav__link.is-active,
.nav__group.is-active .nav__toggle { color: var(--plum-800); }
.nav__link.is-active::after,
.nav__group.is-active .nav__toggle::after { transform: translateX(-50%) scaleX(1); }

.nav__group { position: relative; display: inline-flex; }
.nav__toggle svg { width: 12px; height: 12px; transition: transform 0.25s var(--ease); }
.nav__group[data-open="true"] .nav__toggle svg { transform: rotate(180deg); }

.nav__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 262px;
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.nav__group[data-open="true"] .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__menu li { margin: 0; }
.nav__menu a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.6rem 0.75rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.92rem;
}
.nav__menu a span {
  font-weight: 500;
  font-size: 0.78rem;
  color: var(--ink-faint);
}
.nav__menu a:hover { background: var(--cream); }

.header__cta { display: flex; align-items: center; gap: 0.6rem; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--cream-3);
  border-radius: var(--r-sm);
  background: var(--white);
  padding: 0;
  place-items: center;
}
.burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--plum-800);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.burger span + span { margin-top: 4px; }
body.nav-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--plum-900);
  color: var(--cream);
  padding: calc(var(--header-h) + 2rem) var(--gutter) 2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
body.nav-open .drawer { opacity: 1; visibility: visible; transform: none; }
.drawer a { display: block; }
.drawer__primary { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.drawer__primary > li { border-bottom: 1px solid rgba(250, 243, 230, 0.12); }
.drawer__primary > li > a {
  font-family: var(--display);
  font-size: 1.6rem;
  padding: 0.85rem 0;
}
.drawer__sub { list-style: none; margin: 0 0 1rem; padding: 0 0 0.5rem 0.2rem; }
.drawer__sub a {
  padding: 0.4rem 0;
  color: rgba(250, 243, 230, 0.7);
  font-size: 0.98rem;
}
.drawer__sub a::before { content: "◦  "; color: var(--brass); }
.drawer__actions { display: grid; gap: 0.7rem; }

/* -------------------------------- Hero ------------------------------- */
.hero {
  position: relative;
  background: var(--plum-800);
  color: var(--cream);
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem);
}
.hero::before {
  content: "";
  position: absolute;
  width: 780px; height: 780px;
  right: -220px; top: -280px;
  background: radial-gradient(circle, rgba(217, 169, 63, 0.22), transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  opacity: 0.55;
}
.hero .wrap { position: relative; z-index: 2; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { font-size: var(--fs-hero); color: var(--white); margin-bottom: 0.35em; }
.hero h1 em {
  font-style: normal;
  color: var(--brass-soft);
  position: relative;
}
.hero__lead {
  font-size: var(--fs-lead);
  color: rgba(250, 243, 230, 0.8);
  max-width: 46ch;
  margin-bottom: 1.9rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 243, 230, 0.14);
}
.hero__trust-item { display: flex; flex-direction: column; gap: 2px; }
.hero__trust-num {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--brass-soft);
  line-height: 1;
}
.hero__trust-label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 243, 230, 0.6);
  font-weight: 600;
}
.stars { color: var(--brass); letter-spacing: 0.1em; font-size: 1.05rem; line-height: 1; }

/* Signature element — the thali */
.thali { position: relative; aspect-ratio: 1; width: 100%; max-width: 460px; margin-inline: auto; }
.thali__ring {
  position: absolute;
  inset: 0;
  animation: spin 60s linear infinite;
}
.thali__ring--inner {
  inset: 11%;
  animation: spin 44s linear infinite reverse;
  opacity: 0.75;
}
@keyframes spin { to { transform: rotate(360deg); } }

.thali__photo {
  position: absolute;
  inset: 21%;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(217, 169, 63, 0.55);
  box-shadow: var(--shadow-lg), 0 0 0 12px rgba(217, 169, 63, 0.07);
  background: radial-gradient(circle, var(--plum-700), var(--plum-900));
  display: flex;
  align-items: center;
  justify-content: center;
}
.thali__photo img,
.thali__photo svg { width: 62%; height: 62%; object-fit: contain; }

.manifest-card {
  background: var(--plum-800);
  color: var(--cream);
  border: 1px solid rgba(217, 169, 63, 0.35);
  border-radius: var(--r-lg);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  overflow: hidden;
}
.manifest-card::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(217, 169, 63, 0.18), transparent 70%);
  pointer-events: none;
}
.manifest-card__icon {
  width: 54px; height: 54px;
  color: var(--brass-soft);
  flex: none;
}
.manifest-card h3 {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0;
}
.manifest-card p {
  color: rgba(250, 243, 230, 0.78);
  font-size: 0.95rem;
  margin: 0;
}

.thali__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(23, 10, 32, 0.86);
  border: 1px solid rgba(217, 169, 63, 0.4);
  color: var(--cream);
  border-radius: var(--r-pill);
  padding: 0.42rem 0.85rem;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}
.thali__chip svg { width: 13px; height: 13px; color: var(--brass); flex: none; }
.thali__chip:nth-of-type(1) { top: 6%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.thali__chip:nth-of-type(2) { top: 44%; right: -6%; animation-delay: 1.5s; }
.thali__chip:nth-of-type(3) { bottom: 6%; left: 50%; transform: translateX(-50%); animation-delay: 3s; }
.thali__chip:nth-of-type(4) { top: 44%; left: -6%; animation-delay: 4.5s; }

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

/* --------------------------- Page hero (inner) ----------------------- */
.pagehero {
  background: var(--plum-800);
  color: var(--cream);
  padding-block: clamp(2.75rem, 6vw, 4.75rem);
  position: relative;
  overflow: hidden;
}
.pagehero::before {
  content: "";
  position: absolute;
  width: 620px; height: 620px;
  left: -180px; bottom: -340px;
  background: radial-gradient(circle, rgba(217, 169, 63, 0.18), transparent 65%);
}
.pagehero .wrap { position: relative; z-index: 2; }
.pagehero h1 { color: var(--white); font-size: var(--fs-h1); max-width: 18ch; }
.pagehero p { color: rgba(250, 243, 230, 0.78); font-size: var(--fs-lead); max-width: 58ch; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(250, 243, 230, 0.6);
  margin-bottom: 1.1rem;
  letter-spacing: 0.03em;
}
.crumbs a:hover { color: var(--brass-soft); }
.crumbs span[aria-hidden] { opacity: 0.5; }

.meta-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }
.meta-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  background: rgba(250, 243, 230, 0.08);
  border: 1px solid rgba(250, 243, 230, 0.18);
  border-radius: var(--r-pill);
  padding: 0.5rem 1rem;
  font-size: 0.87rem;
}
.meta-chip strong { color: var(--brass-soft); font-weight: 700; }
.meta-chip span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 243, 230, 0.55);
  font-weight: 700;
}

/* ------------------------------ Services ----------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--cream-3);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.service {
  background: var(--cream);
  padding: 1.9rem 1.5rem;
  transition: background-color 0.3s var(--ease);
}
.service:hover { background: var(--white); }
.service__icon {
  width: 44px; height: 44px;
  color: var(--brass-deep);
  margin-bottom: 1rem;
}
.service h3 { font-size: 1.18rem; margin-bottom: 0.35em; }
.service p { font-size: 0.93rem; color: var(--ink-soft); }

/* ----------------------------- Puja cards ---------------------------- */
.puja-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.puja-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  padding: 2rem 1.6rem 1.6rem;
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
}
.puja-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brass);
}
.puja-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: rgba(217, 169, 63, 0.12);
  color: var(--brass-deep);
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(217, 169, 63, 0.3);
}
.puja-card__icon svg { width: 28px; height: 28px; }
.puja-card:hover .puja-card__thumb img { transform: scale(1.07); }
.puja-card h3 { font-size: 1.22rem; margin-bottom: 0.35em; }
.puja-card p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1.1rem; }
.puja-card__foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
}
.price {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--plum-800);
}
.price small {
  display: block;
  font-family: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
}
.puja-card__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brass-deep);
  letter-spacing: 0.02em;
}
.puja-card:hover .puja-card__link { color: var(--sindoor); }

/* ------------------------------- Steps ------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}
.step {
  position: relative;
  background: rgba(250, 243, 230, 0.04);
  border: 1px solid rgba(217, 169, 63, 0.25);
  border-radius: var(--r-md);
  padding: 1.8rem 1.6rem 1.6rem;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--brass);
  background: rgba(250, 243, 230, 0.08);
}
.step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(217, 169, 63, 0.15);
  border: 1px solid var(--brass);
  color: var(--brass-soft);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.4em; color: var(--cream); }
.step p { font-size: 0.94rem; color: rgba(250, 243, 230, 0.72); margin: 0; }

/* ---------------------------- Manifest list -------------------------- */
.manifest {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.15rem 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.manifest li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.62rem 0;
  border-bottom: 1px dashed var(--cream-3);
  font-size: 0.96rem;
  margin: 0;
}
.manifest li::before {
  content: "";
  width: 17px; height: 17px;
  flex: none;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--leaf);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat,
           linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat,
        linear-gradient(#000, #000);
  mask-composite: exclude;
}

/* --------------------------- Puja detail body ------------------------ */
.detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.prose h2 { font-size: var(--fs-h2); margin-top: 2.4rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: var(--fs-h3); margin-top: 1.9rem; }
.prose > p { color: var(--ink-soft); }
.prose ul { color: var(--ink-soft); }
.prose ul li::marker { color: var(--brass); }
.prose figure { margin: 0 0 2rem; }
.prose figure img {
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid var(--cream-3);
}
.prose strong { color: var(--ink); font-weight: 700; }

.callout {
  background: var(--cream-2);
  border-left: 3px solid var(--brass);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.2rem 1.4rem;
  margin: 1.8rem 0;
  font-size: 0.97rem;
}
.callout strong { display: block; margin-bottom: 0.2rem; }

.booking-card {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: var(--plum-800);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(217, 169, 63, 0.28);
}
.booking-card h3 { color: var(--white); font-size: 1.35rem; }
.booking-card p { font-size: 0.92rem; color: rgba(250, 243, 230, 0.74); }
.booking-card__price {
  font-family: var(--display);
  font-size: 2.1rem;
  color: var(--brass-soft);
  line-height: 1;
  margin: 0.4rem 0 0.2rem;
}
.booking-card__rule {
  height: 1px;
  background: rgba(250, 243, 230, 0.16);
  margin: 1.2rem 0;
}
.booking-card .btn { width: 100%; }
.booking-card .btn + .btn { margin-top: 0.6rem; }
.booking-card__note {
  font-size: 0.78rem;
  color: rgba(250, 243, 230, 0.55);
  text-align: center;
  margin-top: 1rem;
}

/* --------------------------- Testimonials ---------------------------- */
.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  margin-bottom: 2.25rem;
}
.reviews-score {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-pill);
  padding: 0.6rem 1.25rem 0.6rem 0.75rem;
}
.reviews-score__num {
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--plum-800);
  line-height: 1;
}
.reviews-score__meta { font-size: 0.8rem; color: var(--ink-faint); line-height: 1.35; }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 1.15rem;
}
.review {
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-md);
  padding: 1.4rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.review p { font-size: 0.96rem; color: var(--ink-soft); }
.review__who { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
.review__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--plum-700);
  color: var(--brass-soft);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.86rem;
  flex: none;
}
.review__name { font-weight: 700; font-size: 0.9rem; line-height: 1.2; }
.review__date { font-size: 0.76rem; color: var(--ink-faint); }

/* -------------------------------- FAQ -------------------------------- */
.faq { border-top: 1px solid var(--cream-3); }
.faq__item { border-bottom: 1px solid var(--cream-3); }
.faq__q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 1.25rem 2.5rem 1.25rem 0;
  position: relative;
  font-family: var(--display);
  font-size: 1.12rem;
  color: var(--ink);
  line-height: 1.35;
}
.faq__q::after {
  content: "";
  position: absolute;
  right: 4px; top: 50%;
  width: 13px; height: 13px;
  margin-top: -6px;
  background: var(--brass-deep);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.3s var(--ease);
}
.faq__item[data-open="true"] .faq__q::after { transform: rotate(135deg); }
.faq__a {
  overflow: hidden;
  height: 0;
  transition: height 0.32s var(--ease);
}
.faq__a > div { padding: 0 2.5rem 1.4rem 0; color: var(--ink-soft); font-size: 0.97rem; }

/* ------------------------------- Split ------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--cream-3);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
}
.split__media img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------ CTA band ----------------------------- */
.ctaband {
  background: linear-gradient(135deg, var(--plum-900), var(--plum-700) 55%, var(--plum-800));
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(2.2rem, 5vw, 3.6rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 169, 63, 0.3);
}
.ctaband::before {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  left: 50%; top: -300px; translate: -50% 0;
  background: radial-gradient(circle, rgba(217, 169, 63, 0.24), transparent 62%);
}
.ctaband > * { position: relative; }
.ctaband h2 { color: var(--white); font-size: var(--fs-h2); max-width: 20ch; margin-inline: auto; }
.ctaband p { color: rgba(250, 243, 230, 0.75); max-width: 52ch; margin-inline: auto 1.9rem; }
.ctaband .btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* -------------------------------- Form ------------------------------- */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: var(--fs-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-faint);
}
.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-sm);
  padding: 0.8rem 0.95rem;
  width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(217, 169, 63, 0.22);
}
.field textarea { resize: vertical; min-height: 118px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form__note { font-size: 0.82rem; color: var(--ink-faint); }

.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.4rem; }
.contact-list li { display: flex; gap: 0.9rem; margin: 0; }
.contact-list svg { width: 21px; height: 21px; color: var(--brass-deep); flex: none; margin-top: 3px; }
.contact-list strong { display: block; font-size: 0.98rem; }
.contact-list span { font-size: 0.9rem; color: var(--ink-soft); }

/* ------------------------------- Footer ------------------------------ */
.footer {
  background: var(--plum-900);
  color: rgba(250, 243, 230, 0.72);
  padding-block: clamp(3rem, 6vw, 4.5rem) 0;
  font-size: 0.93rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: 2.75rem;
}
.footer h4 {
  font-family: var(--body);
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.footer li { margin: 0; }
.footer a:hover { color: var(--brass-soft); }
.footer .brand__name { color: var(--cream); }
.footer__about { max-width: 34ch; margin-top: 1rem; font-size: 0.9rem; }
.footer__bottom {
  border-top: 1px solid rgba(250, 243, 230, 0.12);
  padding-block: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(250, 243, 230, 0.5);
}

/* ---------------------------- Floating CTA --------------------------- */
.float-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.float-cta a {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s var(--ease);
}
.float-cta a:hover { transform: scale(1.08); }
.float-cta svg { width: 24px; height: 24px; }
.float-cta__wa { background: #1faa55; color: #fff; }
.float-cta__call { background: var(--brass); color: var(--plum-900); }

/* --------------------------- Scroll reveal --------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ===================================================================== *
 *  Photography — real images in the places that used to sit empty
 * ===================================================================== */

/* --------------------- Page hero background photo -------------------- */
.pagehero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0.85;
  -webkit-mask-image: linear-gradient(100deg, transparent 8%, rgba(0, 0, 0, 0.35) 38%, #000 78%);
  mask-image: linear-gradient(100deg, transparent 8%, rgba(0, 0, 0, 0.35) 38%, #000 78%);
}
.pagehero--media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(95deg, var(--plum-800) 24%, rgba(35, 16, 47, 0.78) 48%, rgba(23, 10, 32, 0.42));
}
.pagehero--media .wrap { max-width: var(--maxw); }
.pagehero--media h1,
.pagehero--media p { max-width: 30ch; }
.pagehero--media p { max-width: 52ch; }

/* ------------------- How-it-works step photographs -------------------- */
.step__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(240, 205, 116, 0.22);
  background: var(--plum-700);
}
.step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.92) brightness(0.94);
}
.step:hover .step__media img { transform: scale(1.05); filter: none; }

/* ---------------------- Collage (split media pair) -------------------- */
.collage { position: relative; padding-bottom: 2.2rem; padding-right: 1.6rem; }
.collage__main {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--cream-3);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
}
.collage__main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collage__inset {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-lg);
  background: var(--cream-2);
}
.section--cream2 .collage__inset { border-color: var(--cream-2); }
.collage__inset img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collage__tag {
  position: absolute;
  left: -0.6rem;
  bottom: 3.4rem;
  background: var(--plum-800);
  color: var(--cream);
  border: 1px solid rgba(217, 169, 63, 0.4);
  border-radius: var(--r-pill);
  padding: 0.5rem 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}

/* ------------------------ FAQ with side photo ------------------------- */
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.faq-aside { position: sticky; top: calc(var(--header-h) + 24px); display: grid; gap: 1.25rem; }
.faq-photo {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--cream-3);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  background: var(--cream-2);
}
.faq-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.faq-help {
  background: var(--cream-2);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-md);
  padding: 1.25rem 1.35rem;
}
.section--cream2 .faq-help { background: var(--cream); }
.faq-help strong { display: block; font-family: var(--display); font-size: 1.12rem; margin-bottom: 0.3rem; }
.faq-help p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0.9rem; }

/* --------------------------- CTA band photo --------------------------- */
.ctaband__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  z-index: 0;
}
.ctaband--photo::before { z-index: 1; }
.ctaband--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(120% 100% at 50% 0%, rgba(35, 16, 47, 0.6), rgba(23, 10, 32, 0.9));
}
.ctaband--photo > *:not(.ctaband__bg) { z-index: 2; }

/* -------------------- Aside photo card (sidebars) --------------------- */
.detail__side { position: sticky; top: calc(var(--header-h) + 20px); align-self: start; }
.detail__side .booking-card { position: static; top: auto; }

.aside-photo {
  margin: 1.25rem 0 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--cream-3);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.aside-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.aside-photo figcaption {
  padding: 0.95rem 1.1rem 1.1rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.aside-photo figcaption strong { display: block; color: var(--ink); font-size: 0.95rem; margin-bottom: 0.15rem; }

/* --------------------- Care cards (About: how we work) ---------------- */
.care-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.care {
  background: var(--cream);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.care:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--brass); }
.care__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--cream-3); }
.care__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.care:hover .care__media img { transform: scale(1.05); }
.care__body { padding: 1.5rem 1.6rem 1.7rem; }
.care h3 { font-size: 1.22rem; margin-bottom: 0.4em; }
.care p { font-size: 0.94rem; color: var(--ink-soft); margin: 0; }

/* ------------------------ Coverage split media ------------------------ */
.coverage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.coverage .manifest { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.coverage__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--cream-3);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
}
.coverage__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --------------------------- Photo strip band ------------------------- */
.strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--cream-3);
  border: 1px solid var(--cream-3);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.strip figure { margin: 0; position: relative; background: var(--cream-2); }
.strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.strip figure:hover img { transform: scale(1.06); }
.strip figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(transparent, rgba(23, 10, 32, 0.85));
}

/* ---------------------- Contact page media panel ---------------------- */
.contact-media {
  margin-top: 1.5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--cream-3);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 2;
  background: var(--cream-2);
}
.contact-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --------------------------- Responsive ------------------------------- */
@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-aside { position: static; grid-template-columns: 1fr 1fr; display: grid; align-items: start; }
  .faq-photo { aspect-ratio: 4 / 3; }
  .coverage { grid-template-columns: 1fr; }
  .coverage__media { aspect-ratio: 16 / 9; }
  .pagehero__bg { opacity: 0.55; }
}

@media (max-width: 900px) {
  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .care-grid { grid-template-columns: 1fr; }
  .strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .services { grid-template-columns: 1fr; }
  .manifest { grid-template-columns: 1fr; }
  .faq-aside { grid-template-columns: 1fr; }
  .collage { padding-right: 0; padding-bottom: 0; }
  .collage__inset { display: none; }
  .collage__tag { left: 0.75rem; bottom: 0.75rem; }
}

/* ----------------------------- Credits table -------------------------- */
.credits-table { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.credits-table table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.credits-table th,
.credits-table td {
  text-align: left;
  padding: 0.75rem 1rem 0.75rem 0;
  border-bottom: 1px solid var(--cream-3);
  vertical-align: top;
}
.credits-table th {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 700;
  white-space: nowrap;
}
.credits-table td { color: var(--ink-soft); }
.credits-table code {
  font-size: 0.82rem;
  color: var(--plum-700);
  background: var(--cream-2);
  padding: 0.15rem 0.4rem;
  border-radius: 5px;
  white-space: nowrap;
}
.credits-table a { color: var(--brass-deep); text-decoration: underline; text-underline-offset: 2px; }
.credits-table a:hover { color: var(--sindoor); }

/* ----------------------------- Responsive ---------------------------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .thali { max-width: 380px; margin-top: 1rem; }
  .detail { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .detail__side { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* The header is brand + nav + two buttons on one 74px line. Each piece drops
   out at the width where it would start crowding the next one, rather than all
   at once — otherwise "Get a quote" wraps and the phone button overflows. */
@media (max-width: 1080px) {
  .header__cta .btn--outline { display: none; }
}

@media (max-width: 940px) {
  .nav { display: none; }
  .burger { display: grid; }
}

@media (max-width: 860px) {
  .topbar__note { display: none; }
  .topbar .wrap { justify-content: center; }
}

@media (max-width: 620px) {
  /* The header is a fixed 74px; the full phone number wrapped to three lines
     and burst out of it. Collapse the CTA to its icon — the number is still in
     the top bar and on the floating call button. */
  .header__cta .btn--primary {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
  }
  .header__cta .btn--primary .btn__label { display: none; }
  .header__cta .btn--primary svg { width: 19px; height: 19px; }
  .brand__mark { width: 36px; height: 36px; }
  .brand__name { font-size: 1.08rem; }

  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .thali__chip { font-size: 0.72rem; padding: 0.35rem 0.65rem; }
  .thali__chip:nth-of-type(2) { right: -2%; }
  .thali__chip:nth-of-type(4) { left: -2%; }
  .step::after { right: 0; }
  .float-cta a { width: 48px; height: 48px; }
}

/* -------------------------- Reduced motion --------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ------------------------------- Print ------------------------------- */
@media print {
  .header, .topbar, .float-cta, .drawer, .ctaband, .footer { display: none !important; }
  body { background: #fff; color: #000; }
}
