/* ============================================================
   Sri Sai Caterers & Events — Design System
   Premium warm palette · Playfair Display + Poppins
   ============================================================ */

:root {
  /* Brand colors — aastik-style: amber gold + white + near-black + gray (flat, no gradients) */
  --maroon: #161616;        /* near-black — dark sections / brand text */
  --maroon-dark: #000000;   /* pure black */
  --saffron: #a9791a;       /* readable amber (text on white: eyebrows, links) */
  --saffron-light: #ffbf00; /* bright amber */
  --gold: #ffbf00;          /* brand accent — button/icon fills */
  --gold-soft: #ffd766;     /* light gold — for text on dark */
  --gold-bright: #ffe08a;   /* bright gold highlight */
  --cream: #ffffff;         /* white background */
  --cream-2: #f6f5f2;       /* light neutral alt background */
  --ink: #1c1c1c;           /* headings / dark text */
  --ink-soft: #4a4a4a;      /* body text gray */
  --muted: #808891;         /* muted gray */
  --line: #e4e4e4;          /* border gray */
  --white: #ffffff;
  --green: #2f6b46;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .05);
  --shadow: 0 14px 40px rgba(0, 0, 0, .10);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, .16);

  --radius: 16px;
  --radius-lg: 26px;
  --container: 1200px;

  --ff-serif: "Montserrat", -apple-system, "Segoe UI", sans-serif;
  --ff-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--maroon); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--saffron); }

h1, h2, h3, h4 { font-family: var(--ff-serif); color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1rem; color: var(--ink-soft); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

section { padding: 84px 0; }
.section-sm { padding: 56px 0; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-sans); font-weight: 600; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--saffron);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; }
.center { text-align: center; }
.center .eyebrow::before { display: none; }
.center .eyebrow { justify-content: center; }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 720px; }
.center .lead { margin-left: auto; margin-right: auto; }
.text-gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--ff-sans); font-weight: 600; font-size: .98rem;
  padding: 14px 28px; border-radius: 999px; cursor: pointer; border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #161616; box-shadow: none; }
.btn-primary:hover { background: #e6ac00; color: #000; }
.btn-maroon { background: var(--maroon); color: #fff; }
.btn-maroon:hover { background: #000; color: var(--gold); }
.btn-ghost { background: transparent; border-color: var(--gold); color: var(--ink); }
.btn-ghost:hover { background: var(--gold); border-color: var(--gold); color: #161616; }
.btn-white { background: #fff; color: var(--maroon); }
.btn-white:hover { background: var(--gold); color: #161616; box-shadow: var(--shadow); }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-ico { width: 1.1em; height: 1.1em; fill: currentColor; flex: none; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 12px; flex: none;
  background: #161616;
  display: grid; place-items: center;
  border: 1.5px solid var(--gold);
}
.brand-mark span {
  font-family: var(--ff-serif); font-weight: 800; font-size: 1.35rem; letter-spacing: -1px;
  color: var(--gold);
}
.brand-text { line-height: 1.1; }
.brand-text b { font-family: var(--ff-serif); font-size: 1.16rem; color: var(--maroon); display: block; white-space: nowrap; }
.brand-text span { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-weight: 500; font-size: .95rem; color: var(--ink); padding: 8px 14px; border-radius: 8px;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--maroon); background: var(--cream-2); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone { font-weight: 600; color: var(--maroon); font-size: .92rem; display: inline-flex; gap: 6px; align-items: center; white-space: nowrap; }
@media (max-width: 1080px) { .nav-phone { display: none; } }
.nav-mobile-cta { display: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--maroon); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; color: #fff; padding: 0;
  min-height: 640px; display: flex; align-items: center;
  background: linear-gradient(rgba(15,15,15,.62), rgba(15,15,15,.62)),
              url("../assets/real/r2.jpg") center/cover;
}
.hero::after { content: none; }
.hero .container { position: relative; z-index: 2; padding-top: 70px; padding-bottom: 70px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 { color: #fff; max-width: 15ch; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero p { color: rgba(255,255,255,.9); font-size: 1.18rem; max-width: 60ch; margin-bottom: 30px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 42px; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: rgba(255,255,255,.92); }
.hero-badge b { font-family: var(--ff-serif); font-size: 1.5rem; color: var(--gold-soft); }

/* page hero (interior pages) */
.page-hero {
  position: relative; color: #fff; padding: 92px 0 76px; text-align: center;
  background: linear-gradient(rgba(15,15,15,.6), rgba(15,15,15,.6)), var(--hero-img, none) center/cover;
  background-color: var(--maroon-dark);
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.9); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb { font-size: .82rem; color: var(--gold-soft); margin-bottom: 14px; letter-spacing: .04em; }
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: #fff; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar { background: var(--maroon); color: #fff; padding: 0; }
.trustbar .container { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 10px; padding-top: 34px; padding-bottom: 34px; }
.trust-item { text-align: center; padding: 4px 18px; flex: 1 1 150px; }
.trust-item b { display: block; font-family: var(--ff-serif); font-size: 1.7rem; line-height: 1.15; color: var(--gold-soft); }
.trust-item b span { font-size: inherit; color: inherit; }
.trust-item span { font-size: .86rem; color: rgba(255,255,255,.82); letter-spacing: .02em; }

/* ============================================================
   GRIDS / CARDS
   ============================================================ */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border-radius: var(--radius); padding: 30px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.card .ico {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 16px;
  background: var(--maroon); color: var(--gold);
}
.card .ico svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; margin-bottom: 0; }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; font-size: .92rem; }
.card-link::after { content: "→"; transition: transform .2s ease; }
.card:hover .card-link::after { transform: translateX(4px); }

/* Service card with image */
.svc-card { overflow: hidden; padding: 0; }
.svc-card .svc-img { height: 190px; background-size: cover; background-position: center; position: relative; }
.svc-card .svc-img::after { content: none; }
.svc-card .svc-body { padding: 26px; }

/* ============================================================
   FEATURE / SPLIT SECTIONS
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-img {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  min-height: 420px; background-size: cover; background-position: center; position: relative;
}
.split-img.framed { border: 8px solid #fff; }

.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.checklist li::before {
  content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); color: #fff; display: grid; place-items: center; font-size: .8rem; font-weight: 700; margin-top: 2px;
}

.bg-cream { background: var(--cream-2); }
.bg-soft { background: var(--cream-2); }

/* ============================================================
   OCCASION PILLS
   ============================================================ */
.pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill {
  background: #fff; border: 1px solid var(--line); color: var(--maroon);
  padding: 11px 22px; border-radius: 999px; font-weight: 500; font-size: .95rem; box-shadow: var(--shadow-sm);
  transition: all .2s ease;
}
.pill:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); transform: translateY(-2px); }

/* ============================================================
   FOOD / CUISINE TILE GRID (image tiles with permanent labels)
   ============================================================ */
.food-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.food-tile {
  position: relative; aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden;
  background-size: cover; background-position: center; box-shadow: var(--shadow-sm);
  display: block; transition: transform .3s ease, box-shadow .3s ease;
}
.food-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.food-tile::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.28); }
.food-tile b {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 16px 16px 15px; background: rgba(0,0,0,.55);
  color: #fff; font-family: var(--ff-serif); font-size: 1.08rem; font-weight: 600; text-align: center;
}
.food-tile:hover b { color: var(--gold-soft); }
@media (max-width: 960px) { .food-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .food-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { background: #fff; border-radius: var(--radius); padding: 32px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; }
.testi .stars { color: var(--saffron); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi p { font-style: italic; color: var(--ink); margin-bottom: 18px; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .av { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color:#161616; display:grid; place-items:center; font-weight:700; font-family: var(--ff-serif); }
.testi .who b { display: block; font-size: .95rem; color: var(--ink); font-family: var(--ff-sans); }
.testi .who span { font-size: .82rem; color: var(--muted); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--maroon);
  color: #fff; text-align: center; border-radius: 0;
  position: relative; overflow: hidden;
}
.cta-band::before { content: none; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 600px; margin: 0 auto 26px; }
.cta-band .btn-group { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   SERVICE AREA CHIPS
   ============================================================ */
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 8px; }
.area-chip { background: #fff; border: 1px solid var(--line); padding: 9px 18px; border-radius: 8px; font-size: .9rem; font-weight: 500; color: var(--ink); }
.area-chip:hover { border-color: var(--saffron); color: var(--maroon); }

/* ============================================================
   MENU / PRICING
   ============================================================ */
.menu-cat { border-left: 4px solid var(--saffron); }
.price-tag { font-family: var(--ff-serif); color: var(--maroon); font-weight: 700; font-size: 1.15rem; }
.cuisine-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.cuisine-tag { background: var(--cream-2); border: 1px solid var(--line); padding: 8px 16px; border-radius: 999px; font-size: .9rem; color: var(--ink); font-weight: 500; }

/* ---------- Detailed menu (real dish lists) ---------- */
.menu-tier { margin-bottom: 40px; }
.menu-tier-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.menu-tier-head h3 { font-size: 1.5rem; color: var(--maroon); margin: 0; }
.menu-tier-head .note { font-size: .86rem; color: var(--muted); font-style: italic; }
.menu-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mcat { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; box-shadow: var(--shadow-sm); border-top: 3px solid var(--gold); }
.mcat h4 { font-family: var(--ff-serif); font-size: 1.08rem; color: var(--ink); margin: 0 0 8px; }
.mcat p { font-size: .9rem; color: var(--ink-soft); line-height: 1.85; margin: 0; }
.menu-note { background: var(--cream-2); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 22px 26px; font-size: .92rem; color: var(--ink-soft); }
.menu-note b { color: var(--maroon); }
@media (max-width: 960px) { .menu-cats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .menu-cats { grid-template-columns: 1fr; } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step .num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
  background: var(--gold); color: #161616;
  display: grid; place-items: center; font-family: var(--ff-serif); font-size: 1.4rem; font-weight: 700;
}
.step h4 { margin-bottom: 6px; }
.step p { font-size: .92rem; margin: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background-size: cover; background-position: center; position: relative; box-shadow: var(--shadow-sm); }
.gallery-item span { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; color: #fff; font-size: .85rem; font-weight: 500; background: rgba(0,0,0,.62); opacity: 0; transition: opacity .3s ease; }
.gallery-item:hover span { opacity: 1; }
.gallery-item::after { content:""; position:absolute; inset:0; background: rgba(122,31,31,0); transition: background .3s ease; }
.gallery-item:hover::after { background: rgba(122,31,31,.18); }
.gallery-item.tall { aspect-ratio: 3/4; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 26px; font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .plus { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--cream-2); color: var(--maroon); display: grid; place-items: center; font-size: 1.3rem; transition: .3s; }
.faq-item.open .faq-q .plus { background: var(--maroon); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 26px 22px; margin: 0; }

/* ============================================================
   CONTACT / FORM
   ============================================================ */
.form-card { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px;
  font-family: var(--ff-sans); font-size: .96rem; color: var(--ink); background: var(--cream); transition: border .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,160,74,.18); background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .82rem; color: var(--muted); }
.form-success { background: #eaf7ef; border: 1px solid #b9e2c8; color: var(--green); padding: 16px 20px; border-radius: 12px; font-weight: 500; margin-bottom: 20px; display: none; }
.form-success.show { display: block; }

.contact-info { display: grid; gap: 22px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ico { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--maroon); color: var(--gold); display: grid; place-items: center; font-size: 1.3rem; }
.info-item .ico svg { width: 21px; height: 21px; fill: currentColor; display: block; }
.info-item b { display: block; color: var(--ink); font-family: var(--ff-serif); }
.info-item span, .info-item a { font-size: .95rem; color: var(--ink-soft); }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); height: 320px; background: var(--cream-2); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Quick facts box (AEO) */
.quickfacts { background: var(--cream-2); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.quickfacts h3 { color: var(--maroon); }
.quickfacts dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 18px; margin: 0; }
.quickfacts dt { font-weight: 600; color: var(--ink); }
.quickfacts dd { margin: 0; color: var(--ink-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer h4 { color: #fff; font-family: var(--ff-sans); font-size: 1rem; letter-spacing: .04em; margin-bottom: 18px; }
.site-footer .brand-text b { color: #fff; }
.site-footer p { color: rgba(255,255,255,.6); font-size: .92rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.68); font-size: .92rem; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-nap { font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.7); }
.footer-nap b { color: #fff; }
.footer-nap a { color: rgba(255,255,255,.78); }
.footer-nap a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.footer-social a svg { width: 19px; height: 19px; fill: currentColor; display: block; }
.footer-social a:hover { background: var(--gold); color: #161616; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 54px; padding: 22px 0; text-align: center; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.7); }

/* ============================================================
   STICKY MOBILE BUTTONS
   ============================================================ */
.mobile-bar { display: none; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split-img { min-height: 320px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  section { padding: 60px 0; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 78px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 12px 20px; gap: 2px;
    box-shadow: var(--shadow); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 14px; }
  .nav-mobile-cta { display: block; margin-top: 6px; }
  .nav-mobile-cta:first-of-type { margin-top: 12px; border-top: 1px solid var(--line); padding-top: 14px; }
  .nav-mobile-cta a { display: flex; width: 100%; padding: 13px 14px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 560px; }
  .hero-badges { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    box-shadow: 0 -6px 20px rgba(0,0,0,.12);
  }
  .mobile-bar a { padding: 15px; text-align: center; font-weight: 600; color: #fff; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: .96rem; }
  .mobile-bar .m-call { background: var(--maroon); }
  .mobile-bar .m-wa { background: var(--green); }
  body { padding-bottom: 54px; }
}
@media (max-width: 440px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .trust-item { flex-basis: 45%; }
}
