/* Shree Gajanan Caterers — Royal hospitality design system */
:root {
  --maroon: #6e1a28;
  --maroon-deep: #4a1019;
  --forest: #1e3d32;
  --forest-soft: #2a5344;
  --gold: #b8952c;
  --gold-soft: #d4b45a;
  --ink: #1a1412;
  --ink-soft: #3d342f;
  --stone: #f0ebe3;
  --stone-2: #e4ddd2;
  --paper: #faf6ef;
  --ivory: #fffaf3;
  --white: #ffffff;
  --line: rgba(28, 22, 20, 0.12);
  --line-strong: rgba(28, 22, 20, 0.22);
  --shadow: 0 18px 50px rgba(28, 22, 20, 0.12);
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-hi: "Noto Sans Devanagari", "DM Sans", sans-serif;
  --header-h: 76px;
  --cta-h: 56px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 120% 80% at 50% -10%, var(--ivory) 0%, var(--paper) 42%, var(--stone) 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--maroon); }
button, input, select, textarea { font: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--ink); margin: 0 0 0.6em; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.hindi { font-family: var(--font-hi); }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 12px;
}
.display-xl { font-size: clamp(2.5rem, 5.8vw, 4.4rem); letter-spacing: -0.02em; font-weight: 600; }
.display-lg { font-size: clamp(2.1rem, 4.2vw, 3.3rem); font-weight: 600; }
.display-md { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 600; }
.lead { font-size: 1.08rem; max-width: 42rem; }
.muted { color: var(--ink-soft); }
.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { transform: translateY(-1px); color: inherit; }
.btn-primary { background: var(--maroon); color: var(--white); }
.btn-primary:hover { background: var(--maroon-deep); color: var(--white); }
.btn-secondary { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-soft); color: var(--ink); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--ink); }
.btn-full { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Top bar + header */
.top-bar {
  background: var(--maroon);
  color: #f7efe6;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 36px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.top-bar a { color: #fff; text-decoration: none; font-weight: 600; }
.top-bar a:hover { color: var(--gold-soft); }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { width: 56px; height: 56px; object-fit: contain; }
.logo-text {
  margin-left: 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--maroon);
  line-height: 1.2;
}
.logo-text span { display: block; font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 4px 18px; flex-wrap: wrap; }
.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-links a:hover, .nav-links a.is-active { color: var(--maroon); }
.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-strong);
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--ink); display: block; }

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,22,20,0.25) 0%, rgba(28,22,20,0.55) 45%, rgba(28,22,20,0.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 72px;
  max-width: 760px;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--gold-soft);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero-lead { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 36rem; margin-bottom: 28px; }
.hero-lead .hindi { display: block; margin-top: 10px; color: rgba(255,247,235,0.8); font-size: 0.95rem; }

/* Trust band */
.trust-band {
  background: var(--ink);
  color: #f3ebe3;
  padding: 28px 0;
}
.trust-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-band p { color: rgba(243,235,227,0.78); margin: 0; font-size: 0.92rem; }
.trust-band strong { display: block; color: var(--gold-soft); font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 4px; font-weight: 600; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-link {
  position: relative;
  display: block;
  min-height: 280px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  background: var(--ink);
}
.service-link img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  opacity: 0.7;
  transition: transform 0.7s var(--ease), opacity 0.4s;
}
.service-link:hover img { transform: scale(1.05); opacity: 0.55; color: inherit; }
.service-link-body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(transparent, rgba(20,14,12,0.88));
}
.service-link h3 { color: var(--white); font-size: 1.45rem; margin-bottom: 8px; }
.service-link p { color: rgba(255,255,255,0.82); margin: 0; font-size: 0.92rem; }
.service-link span {
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* Split about */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-accent {
  position: absolute;
  width: 48%;
  right: -8%;
  bottom: -8%;
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
  aspect-ratio: 1;
  object-fit: cover;
}
.about-list { margin-top: 24px; display: grid; gap: 16px; }
.about-list li {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}
.about-list strong { display: block; color: var(--ink); margin-bottom: 4px; }
.about-list p { margin: 0; font-size: 0.95rem; }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-item {
  padding-top: 8px;
  border-top: 2px solid var(--maroon);
}
.process-item .num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.process-item h3 { font-size: 1.2rem; margin-bottom: 8px; }
.process-item p { margin: 0; font-size: 0.95rem; }

/* Menu teaser */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 28px;
}
.menu-item h4 { font-size: 1.15rem; margin-bottom: 6px; }
.menu-item p { margin: 0; font-size: 0.92rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-grid figure { margin: 0; position: relative; overflow: hidden; }
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(20,14,12,0.85));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

/* Areas */
.areas-wrap {
  background: var(--stone-2);
}
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.areas-list li {
  padding: 8px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* Testimonials */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line-strong);
  padding-top: 20px;
}
.quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 16px;
}
.quote footer { font-size: 0.88rem; color: var(--ink-soft); }
.quote strong { color: var(--ink); }

/* FAQ */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 650;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--maroon); font-size: 1.2rem; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 12px 0 4px; }

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--maroon-deep);
}
.cta-band-bg { position: absolute; inset: 0; }
.cta-band-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.cta-band-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.85); }
.cta-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold-soft);
  text-decoration: none;
  margin: 8px 0 24px;
}

/* Contact / forms */
.form-shell {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 14px; }
.form-grid.two { grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 6px; color: var(--ink-soft); }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
}
textarea { min-height: 110px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(122,31,43,0.25);
  border-color: var(--maroon);
}
.form-note { font-size: 0.85rem; margin-top: 10px; }
.form-success {
  display: none;
  padding: 20px;
  background: #eef6ef;
  border: 1px solid #b7d6bb;
  color: #1f4d28;
}
.form-shell.is-sent .form-grid,
.form-shell.is-sent .btn,
.form-shell.is-sent .form-note { display: none; }
.form-shell.is-sent .form-success { display: block; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-facts { display: grid; gap: 18px; }
.contact-facts a { text-decoration: none; }
.contact-facts strong { display: block; color: var(--ink); margin-bottom: 4px; }

/* Page hero */
.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,22,20,0.2), rgba(28,22,20,0.78));
}
.page-hero-content { position: relative; z-index: 1; padding: 100px 0 48px; }
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.9); text-decoration: none; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.88); max-width: 40rem; }

.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.3em; font-size: 1.25rem; }
.prose ul { list-style: disc; padding-left: 1.2rem; margin: 0 0 1em; }
.prose li { margin-bottom: 0.4em; color: var(--ink-soft); }
.sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px;
}
.sidebar h3 { font-size: 1.2rem; margin-bottom: 10px; }
.sidebar .btn { width: 100%; margin-top: 10px; }

/* Insights */
.article-list { display: grid; gap: 20px; }
.article-card {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.article-card h3 { margin: 0; font-size: 1.4rem; }
.article-meta { font-size: 0.82rem; color: var(--ink-soft); }
.article-body { max-width: 720px; }
.article-body h2 { margin-top: 2em; }

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(243,235,227,0.78);
  padding: 64px 0 28px;
}
.footer a { color: rgba(243,235,227,0.9); text-decoration: none; }
.footer a:hover { color: var(--gold-soft); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 40px;
}
.footer-brand img { width: 140px; height: auto; margin-bottom: 14px; filter: brightness(1.05); }
.footer h4 {
  color: var(--gold-soft);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer li { margin-bottom: 8px; font-size: 0.92rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  font-size: 0.85rem;
}

/* Mobile sticky CTA — Call | WhatsApp | Quote */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: 14px 8px;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
}
.sticky-call { background: var(--maroon); }
.sticky-wa { background: var(--forest); }
.sticky-quote { background: var(--gold); color: var(--ink) !important; }

/* USP / why grid */
.usp-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  padding: 22px 0;
  border-block: 1px solid var(--line);
  background: var(--ivory);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
}
.usp-strip span { white-space: nowrap; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-item {
  padding: 22px 18px;
  background: var(--ivory);
  border: 1px solid var(--line);
}
.why-item h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin: 0 0 8px;
  color: var(--maroon);
}
.why-item p { margin: 0; font-size: 0.9rem; }
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 28px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
}
.hero-tags span::before {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
  margin-right: 10px;
  vertical-align: middle;
}
.mid-cta {
  text-align: center;
  padding: 28px 0 0;
}
.signature-food {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.signature-food figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.signature-food img { width: 100%; height: 100%; object-fit: cover; }
.signature-food figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(20,12,10,0.85));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.gallery-filters button {
  border: 1px solid var(--line-strong);
  background: transparent;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink-soft);
}
.gallery-filters button.is-active,
.gallery-filters button:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: #fff;
}
.gallery-grid figure[hidden] { display: none !important; }
.map-embed {
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--stone-2);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.quote-stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/* Ask us helper */
.ga-assist {
  position: fixed;
  z-index: 95;
  right: 18px;
  bottom: 24px;
}
.ga-assist-fab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  background: var(--ink);
  color: #fff;
  border: 1px solid rgba(184,149,44,0.4);
  cursor: pointer;
}
.ga-assist-fab.is-hidden { display: none; }
.ga-assist-panel {
  width: min(360px, calc(100vw - 28px));
  height: min(520px, calc(100vh - 120px));
  background: var(--paper);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.ga-assist.is-open .ga-assist-panel { display: flex; }
.ga-assist-panel[hidden] { display: none !important; }
.ga-assist-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: var(--maroon);
  color: #fff;
}
.ga-assist-brand { display: flex; gap: 10px; align-items: center; }
.ga-assist-brand img { width: 36px; height: 36px; border-radius: 50%; background: #fff; }
.ga-assist-brand strong { display: block; font-size: 0.92rem; }
.ga-assist-brand small { opacity: 0.8; font-size: 0.72rem; }
.ga-assist-close {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 1.3rem;
}
.ga-assist-messages { flex: 1; overflow: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.ga-msg { max-width: 88%; padding: 10px 12px; font-size: 0.88rem; white-space: pre-wrap; }
.ga-msg-bot { align-self: flex-start; background: var(--stone-2); }
.ga-msg-user { align-self: flex-end; background: var(--maroon); color: #fff; }
.ga-assist-quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 12px 10px; }
.ga-assist-quick button {
  border: 1px solid var(--line-strong);
  background: #fff;
  padding: 6px 10px;
  font-size: 0.72rem;
  cursor: pointer;
}
.ga-assist-form { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--line); }
.ga-assist-form input { flex: 1; min-height: 42px; }
.ga-assist-form button {
  width: 44px;
  background: var(--maroon);
  color: #fff;
  border: none;
  cursor: pointer;
}
.ga-assist-actions { display: grid; grid-template-columns: 1fr 1fr; }
.ga-assist-actions a {
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ga-assist-actions a:first-child { background: var(--stone-2); color: var(--ink); }
.ga-assist-actions a:last-child { background: var(--forest); color: #fff; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* Utilities */
.bg-stone { background: var(--stone); }
.bg-paper { background: var(--paper); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

@media (max-width: 960px) {
  .trust-band-grid,
  .services-grid,
  .process-grid,
  .menu-grid,
  .quotes-grid,
  .why-grid,
  .signature-food,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-grid,
  .contact-layout,
  .content-layout { grid-template-columns: 1fr; }
  .about-accent { position: static; width: 70%; margin-top: 16px; border-width: 0; }
  .sidebar { position: static; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 22px;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links.is-open { display: flex; }
  .nav-cta { margin-left: 0; width: 100%; }
  .trust-band-grid,
  .services-grid,
  .process-grid,
  .menu-grid,
  .quotes-grid,
  .why-grid,
  .signature-food,
  .footer-grid,
  .form-grid.two { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .hero-content { padding: 96px 0 56px; }
  .sticky-cta { display: flex; }
  body { padding-bottom: var(--cta-h); }
  .ga-assist { bottom: calc(var(--cta-h) + 14px); right: 12px; }
  .logo-text { display: none; }
}

@media (max-width: 480px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
}
