/* ===================================================================
   Maa Farari Centre — Static Site Styles
   Replaces Tailwind CSS v4 with equivalent vanilla CSS.
   =================================================================== */

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
input, textarea, select { font: inherit; }

/* ── Design Tokens (CSS Custom Properties) ───────────────────── */
:root {
  --radius: 0.9rem;
  --background: oklch(0.968 0.026 88);
  --foreground: oklch(0.26 0.045 168);
  --card: oklch(0.995 0.012 90);
  --card-foreground: oklch(0.26 0.045 168);
  --popover: oklch(0.995 0.012 90);
  --popover-foreground: oklch(0.26 0.045 168);
  --primary: oklch(0.30 0.062 175);
  --primary-foreground: oklch(0.97 0.03 88);
  --secondary: oklch(0.93 0.035 88);
  --secondary-foreground: oklch(0.26 0.045 168);
  --muted: oklch(0.93 0.03 88);
  --muted-foreground: oklch(0.47 0.03 160);
  --accent: oklch(0.42 0.13 25);
  --accent-foreground: oklch(0.97 0.03 88);
  --gold: oklch(0.76 0.11 84);
  --gold-foreground: oklch(0.24 0.05 168);
  --destructive: oklch(0.5 0.18 28);
  --destructive-foreground: oklch(0.97 0.02 88);
  --border: oklch(0.86 0.05 86);
  --input: oklch(0.86 0.05 86);
  --ring: oklch(0.76 0.11 84);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --shadow-warm: 0 18px 40px -22px oklch(0.30 0.062 175 / 0.55);
  --gradient-ember: linear-gradient(160deg, oklch(0.30 0.062 175) 0%, oklch(0.24 0.05 172) 60%, oklch(0.28 0.07 168) 100%);
}

/* ── Base ─────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
* { border-color: var(--border); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* ── Typography ───────────────────────────────────────────────── */
.font-display { font-family: var(--font-display); font-optical-sizing: auto; }
.font-mono { font-family: var(--font-mono); }
.font-sans { font-family: var(--font-body); }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.not-italic { font-style: normal; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.625; }

.text-center { text-align: center; }
.text-left { text-align: left; }

/* ── Colors ───────────────────────────────────────────────────── */
.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent { background-color: var(--accent); }
.bg-gold { background-color: var(--gold); }
.bg-ember { background: var(--gradient-ember); }

.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-foreground { color: var(--foreground); }
.text-card-foreground { color: var(--card-foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-accent-foreground { color: var(--accent-foreground); }
.text-gold { color: var(--gold); }
.text-gold-foreground { color: var(--gold-foreground); }
.text-white { color: #fff; }

.border-gold { border-color: var(--gold); }
.border-primary { border-color: var(--primary); }
.border-border { border-color: var(--border); }

/* opacity variants */
.text-primary-foreground-90 { color: var(--primary-foreground); opacity: 0.9; }
.text-primary-foreground-80 { color: oklch(0.97 0.03 88 / 80%); }
.text-primary-foreground-75 { color: oklch(0.97 0.03 88 / 75%); }
.text-primary-foreground-60 { color: oklch(0.97 0.03 88 / 60%); }
.text-gold-80 { color: oklch(0.76 0.11 84 / 80%); }
.text-primary-80 { color: oklch(0.30 0.062 175 / 80%); }

.bg-gold-20 { background-color: oklch(0.76 0.11 84 / 20%); }
.bg-secondary-60 { background-color: oklch(0.93 0.035 88 / 60%); }
.bg-whatsapp { background-color: #25D366; }
.bg-whatsapp-hover { background-color: #20ba5a; }

.border-gold-70 { border-color: oklch(0.76 0.11 84 / 70%); }
.border-gold-60 { border-color: oklch(0.76 0.11 84 / 60%); }
.border-gold-50 { border-color: oklch(0.76 0.11 84 / 50%); }
.border-gold-40 { border-color: oklch(0.76 0.11 84 / 40%); }
.border-border-70 { border-color: oklch(0.86 0.05 86 / 70%); }

/* ── Layout ───────────────────────────────────────────────────── */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.contents { display: contents; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.place-items-center { place-items: center; }
.self-center { align-self: center; }

.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

/* ── Sizing ───────────────────────────────────────────────────── */
.w-full { width: 100%; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-40 { width: 10rem; }

.h-3\.5 { height: 0.875rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-52 { height: 13rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }

.min-h-screen { min-height: 100vh; }
.min-w-0 { min-width: 0; }
.min-w-8 { min-width: 2rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.shrink-0 { flex-shrink: 0; }

.aspect-square { aspect-ratio: 1/1; }

/* ── Spacing ──────────────────────────────────────────────────── */
.p-1 { padding: 0.25rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-9 { padding-left: 2.25rem; padding-right: 2.25rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-28 { padding-bottom: 7rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-14 { padding-top: 3.5rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.ml-auto { margin-left: auto; }

/* ── Borders ──────────────────────────────────────────────────── */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-t-2 { border-top-width: 2px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-x { border-left-width: 1px; border-right-width: 1px; border-left-style: solid; border-right-style: solid; }
.border-y-2 { border-top-width: 2px; border-bottom-width: 2px; border-top-style: solid; border-bottom-style: solid; }

.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-md { border-radius: 0.375rem; }

/* ── Overflow ─────────────────────────────────────────────────── */
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.right-4 { right: 1rem; }
.bottom-24 { bottom: 6rem; }
.bottom-4 { bottom: 1rem; }
.left-4 { left: 1rem; }
.left-1\/2 { left: 50%; }
.-bottom-3 { bottom: -0.75rem; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ── Object Fit ───────────────────────────────────────────────── */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* ── Shadow ───────────────────────────────────────────────────── */
.shadow-warm { box-shadow: var(--shadow-warm); }
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }

/* ── Backdrop ─────────────────────────────────────────────────── */
.backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.bg-background-95 { background-color: oklch(0.968 0.026 88 / 95%); }

/* ── Transitions ──────────────────────────────────────────────── */
.transition-all { transition: all 0.15s ease-out; }
.transition-colors { transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease; }
.transition-transform { transition: transform 0.15s ease-out; }

/* ── Opacity ──────────────────────────────────────────────────── */
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }

/* ── Columns (Gallery) ────────────────────────────────────────── */
.columns-2 { column-count: 2; }
.break-inside-avoid { break-inside: avoid; }

/* ── Gradient overlay ─────────────────────────────────────────── */
.gradient-overlay-bottom {
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* ── Divide ───────────────────────────────────────────────────── */
.divide-y > * + * { border-top: 1px solid var(--border); }

/* ── Scrollbar ────────────────────────────────────────────────── */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }

/* ── Space ────────────────────────────────────────────────────── */
.space-y-8 > * + * { margin-top: 2rem; }

/* ===================================================================
   Custom Animations (from original styles.css)
   =================================================================== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .25s ease-out, transform .25s ease-out; }
.reveal.visible { opacity: 1; transform: none; }

.lift { transition: transform .15s ease-out, box-shadow .15s ease-out; }
.lift:hover, .lift:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-warm); }

.tap:active { transform: scale(.97); }
.tap { transition: transform .1s ease-out; }

.fade-swap { animation: fade-swap .15s ease-out; }
@keyframes fade-swap { from { opacity: 0 } to { opacity: 1 } }

.pulse-ring { position: relative; }
.pulse-ring::after {
  content: ""; position: absolute; inset: 0; border-radius: 9999px;
  border: 2px solid var(--primary); opacity: .5; animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring { 0% { transform: scale(1); opacity: .5 } 100% { transform: scale(1.6); opacity: 0 } }

/* Ornamental gold divider */
.gold-rule { display: flex; align-items: center; justify-content: center; gap: .5rem; }
.gold-rule::before, .gold-rule::after {
  content: ""; height: 1px; width: 3rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Hover states ─────────────────────────────────────────────── */
.hover-text-gold:hover { color: var(--gold); }
.hover-text-accent:hover { color: var(--accent); }
.hover-bg-primary:hover { background-color: var(--primary); }
.hover-text-primary-foreground:hover { color: var(--primary-foreground); }
.hover-bg-secondary:hover { background-color: var(--secondary); }
.hover-border-gold:hover { border-color: var(--gold); }
.hover-scale-103:hover { transform: scale(1.03); }
.hover-scale-110:hover { transform: scale(1.1); }
.hover-scale-102:hover { transform: scale(1.02); }
.hover-bg-whatsapp:hover { background-color: #20ba5a; }

/* ===================================================================
   Component Styles
   =================================================================== */

/* ── Header ───────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 2px solid oklch(0.76 0.11 84 / 60%);
  background-color: oklch(0.968 0.026 88 / 95%);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.site-header .header-inner {
  margin: 0 auto; display: flex; width: 100%; max-width: 80rem;
  flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.75rem; padding: 0.75rem 1rem;
}
.header-logo { display: flex; min-width: 0; align-items: center; gap: 0.75rem; }
.header-logo-text {
  display: flex; min-width: 0; flex-direction: column; line-height: 1;
}
.header-logo-title {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.header-logo-sub {
  font-family: var(--font-mono); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.35em; color: var(--gold);
}

/* Desktop nav */
.desktop-nav {
  display: none; flex: 1; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: 1.5rem;
}
.desktop-nav a {
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: oklch(0.30 0.062 175 / 80%); transition: color 0.15s;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--accent); }

.header-actions { display: flex; flex-shrink: 0; align-items: center; gap: 0.75rem; }
.header-order-btn {
  display: none; border-radius: 9999px; background-color: var(--accent);
  padding: 0.75rem 1.5rem; font-family: var(--font-mono); font-size: 0.75rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent-foreground); box-shadow: var(--shadow-warm);
}

/* Mobile menu toggle */
.menu-toggle {
  display: grid; height: 2.75rem; width: 2.75rem; place-items: center;
  border-radius: 9999px; border: 2px solid var(--gold); color: var(--primary);
}

/* Mobile nav */
.mobile-nav {
  display: flex; flex-direction: column;
  border-top: 1px solid oklch(0.76 0.11 84 / 40%);
  background-color: var(--card); padding: 0 1rem 1rem;
}
.mobile-nav a {
  border-bottom: 1px solid oklch(0.86 0.05 86 / 70%);
  padding: 1rem 0; font-family: var(--font-mono); font-size: 0.875rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--primary);
}
.mobile-nav a.active { color: var(--accent); }
.mobile-nav.is-hidden { display: none; }

/* Language toggle row — mobile */
.lang-toggle-row-mobile {
  display: flex; width: 100%; justify-content: flex-end; margin-top: 0.25rem; order: 99;
}

/* Language toggle */
.lang-toggle {
  display: inline-flex; align-items: center; border-radius: 9999px;
  border: 2px solid oklch(0.76 0.11 84 / 70%); background-color: var(--card);
  padding: 0.25rem; box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}
.lang-toggle button {
  border-radius: 9999px; padding: 0.25rem 0.75rem;
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700;
  transition: all 0.15s;
}
.lang-toggle button.active-lang {
  background-color: var(--gold); color: var(--gold-foreground); box-shadow: var(--shadow-warm);
}
.lang-toggle button:not(.active-lang) {
  color: var(--muted-foreground);
}
.lang-toggle button:not(.active-lang):hover { color: var(--primary); }
.lang-toggle .lang-gu { font-family: var(--font-body); font-size: 0.75rem; font-weight: 700; }

/* Desktop lang toggle */
.lang-toggle-desktop { display: none; }

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--gradient-ember);
  padding: 3.5rem 1rem 7rem; color: var(--primary-foreground);
}
.footer-inner {
  margin: 0 auto; display: flex; width: 100%; max-width: 80rem;
  flex-wrap: wrap; gap: 2.5rem;
}
.footer-brand { min-width: 16rem; flex: 1; }
.footer-brand-title {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.footer-brand-sub {
  margin-top: 0.25rem; font-family: var(--font-mono); font-size: 0.65rem;
  text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold);
}
.footer-brand-desc {
  margin-top: 1rem; max-width: 24rem; font-size: 0.875rem;
  color: oklch(0.97 0.03 88 / 75%);
}
.footer-links { min-width: 12rem; flex: 1; }
.footer-links-title {
  font-family: var(--font-mono); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold);
}
.footer-links ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer-links a { color: oklch(0.97 0.03 88 / 80%); }
.footer-links a:hover { color: var(--gold); }
.footer-contact { min-width: 16rem; flex: 1; }
.footer-contact-title {
  font-family: var(--font-mono); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold);
}
.footer-contact address { margin-top: 1rem; font-size: 0.875rem; color: oklch(0.97 0.03 88 / 80%); }
.footer-contact .hours { margin-top: 0.75rem; font-size: 0.875rem; color: oklch(0.97 0.03 88 / 80%); }
.footer-contact .phones { margin-top: 0.75rem; font-size: 0.875rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  margin: 2.5rem auto 0; width: 100%; max-width: 80rem;
  border-top: 1px solid oklch(0.76 0.11 84 / 30%); padding-top: 1.25rem;
  font-family: var(--font-mono); font-size: 0.75rem;
  color: oklch(0.97 0.03 88 / 60%);
}

/* ── WhatsApp Floating Button ─────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 6rem; right: 1rem; z-index: 50;
  display: grid; height: 3.5rem; width: 3.5rem; place-items: center;
  border-radius: 9999px; background-color: #25D366; color: white;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1); transition: all 0.15s;
}
.wa-float:hover { background-color: #20ba5a; transform: scale(1.1); }

/* ── Mobile Bottom Bar ────────────────────────────────────────── */
.mobile-bottom-bar {
  position: fixed; inset: auto 0 0 0; z-index: 40;
  display: flex; border-top: 2px solid var(--gold); background-color: var(--card);
}
.mobile-bottom-bar a {
  flex: 1; padding: 1rem 0; text-align: center;
  font-size: 0.875rem; font-weight: 700; color: var(--primary);
}
.mobile-bottom-bar .wa-bar {
  border-left: 1px solid oklch(0.76 0.11 84 / 50%);
  border-right: 1px solid oklch(0.76 0.11 84 / 50%);
  background-color: #25D366; color: white;
}
.mobile-bottom-bar .wa-bar:hover { background-color: #20ba5a; }

/* ── Section Heading ──────────────────────────────────────────── */
.section-heading { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-heading h2 {
  font-family: var(--font-display); font-size: 1.875rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.025em; color: var(--primary);
}
.section-heading .section-sub {
  margin-top: 1rem; max-width: 42rem; font-size: 1rem; color: var(--muted-foreground);
}

/* ── Forms ─────────────────────────────────────────────────────── */
.form-input {
  margin-top: 0.5rem; width: 100%; border-radius: 0.75rem;
  border: 2px solid var(--border); background-color: var(--background);
  padding: 0.75rem 1rem; font-size: 0.875rem; color: var(--foreground);
  outline: none; transition: border-color 0.15s;
}
.form-input:focus { border-color: var(--gold); }
.form-label { font-size: 0.875rem; font-weight: 600; color: var(--primary); }

/* ── Gold rule line (horizontal) ──────────────────────────────── */
.gold-line { display: block; height: 2px; width: 6rem; background-color: var(--gold); margin-top: 0.75rem; }

/* ── Google Review Badge ──────────────────────────────────────── */
.google-review-badge {
  display: inline-flex; align-items: center; gap: 0.625rem;
  border-radius: 9999px; border: 1px solid oklch(0.76 0.11 84 / 70%);
  background-color: var(--primary); padding: 0.5rem 1rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); transition: all 0.15s;
}
.google-review-badge:hover { border-color: var(--gold); transform: scale(1.03); }
.google-review-badge .g-icon {
  display: grid; height: 1.5rem; width: 1.5rem; flex-shrink: 0;
  place-items: center; border-radius: 9999px; background-color: oklch(0.76 0.11 84 / 20%);
}
.google-review-badge .g-icon svg { height: 0.875rem; width: 0.875rem; flex-shrink: 0; }
.google-review-badge .g-text {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold);
}
.google-review-badge .g-rating { color: var(--primary-foreground); font-weight: 800; }

/* ===================================================================
   Responsive — sm (640px)
   =================================================================== */
@media (min-width: 640px) {
  .sm-text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm-text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm-text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm-text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm-text-5xl { font-size: 3rem; line-height: 1; }
  .sm-text-6xl { font-size: 3.75rem; line-height: 1; }
  .header-logo-title { font-size: 1.5rem; }
  .header-order-btn { display: inline-block; }
  .sm-inline-block { display: inline-block; }
  .gallery-img { height: 11rem; width: 11rem; }
  .sm-columns-3 { column-count: 3; }
  .section-heading h2 { font-size: 2.25rem; }
  .sm-p-8 { padding: 2rem; }
}

/* ===================================================================
   Responsive — md (768px)
   =================================================================== */
@media (min-width: 768px) {
  .md-hidden { display: none !important; }
  .md-grid-cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
  .wa-float { bottom: 1.5rem; }
  .site-footer { padding-bottom: 3.5rem; }
}

/* ===================================================================
   Responsive — lg (1024px)
   =================================================================== */
@media (min-width: 1024px) {
  .lg-flex { display: flex !important; }
  .lg-hidden { display: none !important; }
  .lg-block { display: block !important; }
  .lg-text-left { text-align: left !important; }
  .lg-justify-start { justify-content: flex-start !important; }
  .lg-px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg-py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg-py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg-text-7xl { font-size: 4.5rem; line-height: 1; }
  .desktop-nav { display: flex; }
  .menu-toggle { display: none; }
  .lang-toggle-desktop { display: block; }
  .lang-toggle-row-mobile { display: none; }
  .site-header .header-inner { padding-left: 2rem; padding-right: 2rem; }
  .lg-columns-4 { column-count: 4; }
  .section-heading h2 { font-size: 3rem; }
}

/* ===================================================================
   Reduced Motion
   =================================================================== */
@media (prefers-reduced-motion: reduce) {
  .reveal, .lift, .tap, .fade-swap, .pulse-ring::after {
    animation: none !important; transition: none !important;
    opacity: 1 !important; transform: none !important;
  }
}
