/* =========================================================
   Country Brothers Catering — rustic farmhouse / Americana
   Palette pulled from the hand-painted logo sign.
   ========================================================= */

:root {
  /* Color zones */
  --cream:      #f3ead6;
  --cream-2:    #ece0c6;
  --cream-3:    #e3d4b3;
  --wood:       #34251a;   /* dark weathered wood */
  --wood-2:     #4a3422;
  --wood-3:     #5d4329;
  --olive:      #585a2c;
  --olive-dark: #43451f;
  --gold:       #c39a45;
  --gold-bright:#d9b24a;
  --rust:       #9c4a24;
  --ink:        #2b2014;
  --ink-soft:   #5a4a37;
  --line:       rgba(52, 37, 26, 0.16);
  --line-light: rgba(243, 234, 214, 0.18);

  --maxw: 1180px;
  --radius: 14px;
  --shadow-sm: 0 4px 14px rgba(52, 37, 26, 0.10);
  --shadow:    0 16px 40px rgba(52, 37, 26, 0.18);
  --shadow-lg: 0 28px 70px rgba(52, 37, 26, 0.30);

  --font-head: "Zilla Slab", Georgia, serif;
  --font-body: "Mulish", system-ui, sans-serif;
  --font-script: "Kaushan Script", cursive;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

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

/* ---------- paper grain overlay ---------- */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 1.02rem; letter-spacing: 0.01em;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rust); color: #fff5e6;
  box-shadow: 0 8px 20px rgba(156, 74, 36, 0.35);
}
.btn-primary:hover { background: #b4582d; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(156, 74, 36, 0.45); }
.btn-ghost {
  background: transparent; color: var(--wood); border-color: var(--wood);
}
.btn-ghost:hover { background: var(--wood); color: var(--cream); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 14px 0;
  background: rgba(243, 234, 214, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.site-header.scrolled {
  padding: 8px 0;
}
.header-inner { display: flex; align-items: center; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { width: 56px; height: 56px; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,.25)); transition: width .3s ease; }
.scrolled .brand-mark { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; font-family: var(--font-head); }
.brand-text strong { font-size: 1.18rem; color: var(--wood); letter-spacing: .01em; }
.brand-text em { font-family: var(--font-script); font-style: normal; color: var(--rust); font-size: 1.05rem; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-weight: 600; font-size: .95rem; color: var(--wood-2); position: relative; transition: color .2s ease; }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--gold); transition: width .25s ease;
}
.nav a:not(.nav-cta):hover { color: var(--ink); }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--olive); color: var(--cream) !important; padding: 9px 18px; border-radius: 999px;
  box-shadow: 0 6px 14px rgba(67, 69, 31, .3);
}
.nav-cta:hover { background: var(--olive-dark); transform: translateY(-1px); }

.header-phone {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600;
  color: var(--wood); font-size: 1.02rem;
}
.header-phone svg { color: var(--rust); }
.header-phone:hover { color: var(--rust); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--wood); border-radius: 2px; transition: .25s ease; }

/* =========================================================
   July 3rd promo banner
   ========================================================= */
.promo-bar {
  position: relative; z-index: 2;
  padding: 110px 0 18px;
  background: linear-gradient(110deg, #1e2a52 0%, #1e2a52 42%, #b22234 100%);
  color: #fff;
}
.promo-inner {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  transition: opacity .15s ease;
}
.promo-inner:hover { opacity: .94; }
.promo-text { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; text-align: center; color: #fff; }
.promo-text strong { color: #ffd24a; }
.promo-stars { color: #ffd24a; margin-right: 6px; }
.promo-cta {
  flex: 0 0 auto; color: #ffd24a; font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  white-space: nowrap; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px;
  transition: color .15s ease;
}
.promo-inner:hover .promo-cta { color: #fff; }
.promo-bar + .hero { padding-top: 48px; }
@media (max-width: 760px) { .promo-bar { padding-top: 92px; } .promo-text { font-size: .92rem; } .promo-inner { gap: 12px; } }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 85% 0%, rgba(195, 154, 69, .20), transparent 55%),
    radial-gradient(100% 80% at 0% 100%, rgba(88, 90, 44, .14), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(52,37,26,.04) 0 2px, transparent 2px 26px);
  opacity: .5;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.eyebrow {
  font-family: var(--font-head); font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  font-size: .8rem; color: var(--olive-dark); margin-bottom: 18px;
}
.eyebrow .star { color: var(--gold); }
.hero-title {
  font-family: var(--font-head); font-weight: 700; line-height: 0.98;
  font-size: clamp(2.8rem, 6vw, 4.6rem); color: var(--ink); letter-spacing: -0.01em;
}
.hero-title .script {
  display: block; font-family: var(--font-script); font-weight: 400; color: var(--rust);
  font-size: clamp(2.6rem, 5.2vw, 4.1rem); line-height: 1; margin-bottom: 4px;
}
.hero-sub { font-size: 1.14rem; color: var(--ink-soft); max-width: 32em; margin: 22px 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.hero-trust { font-size: .95rem; color: var(--ink-soft); }
.hero-trust strong { color: var(--rust); }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border: 10px solid #fff; border-radius: 6px;
  box-shadow: var(--shadow-lg); transform: rotate(2deg);
  background: #fff;
}
.hero-frame img { border-radius: 2px; }
.hero-frame::before {
  content: ""; position: absolute; inset: -10px; border: 1px solid rgba(52,37,26,.2); border-radius: 8px; pointer-events: none;
}
.hero-badge {
  position: absolute; bottom: -26px; left: -26px; z-index: 3;
  width: 104px; height: 104px; border-radius: 50%;
  background: var(--olive); color: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-head); box-shadow: var(--shadow); border: 3px solid var(--gold);
  transform: rotate(-8deg);
}
.hero-badge-since { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; }
.hero-badge-year { font-size: 1.9rem; font-weight: 700; line-height: 1; }

/* =========================================================
   Trust bar
   ========================================================= */
.trustbar { background: var(--wood); color: var(--cream); position: relative; z-index: 2; }
.trustbar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 28px 24px; gap: 18px; text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 2px; position: relative; }
.trust-item:not(:last-child)::after {
  content: ""; position: absolute; right: -9px; top: 12%; height: 76%; width: 1px; background: var(--line-light);
}
.trust-num { font-family: var(--font-head); font-weight: 700; font-size: 2.3rem; line-height: 1; color: var(--gold-bright); }
.trust-suffix { display: none; }
.trust-item .trust-num + .trust-suffix { display: inline; }
.trust-label { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }

/* =========================================================
   Section scaffolding
   ========================================================= */
.section { position: relative; z-index: 2; padding: 92px 0; }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-label {
  font-family: var(--font-head); font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  font-size: .78rem; color: var(--gold); margin-bottom: 12px;
}
.section-label.light { color: var(--gold-bright); }
.section-title {
  font-family: var(--font-head); font-weight: 700; line-height: 1.04;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--ink); letter-spacing: -0.01em;
}
.section-title.light { color: var(--cream); }
.section-title .script { font-family: var(--font-script); font-weight: 400; color: var(--rust); }
.section-title.light .script { color: var(--gold-bright); }
.section-intro { font-size: 1.1rem; color: var(--ink-soft); margin-top: 16px; }
.section-intro.light { color: rgba(243,234,214,.82); }

/* ---------- generic cards ---------- */
.cards { display: grid; gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* =========================================================
   Services
   ========================================================= */
.services { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.svc { padding: 32px 28px; }
.svc-icon {
  width: 58px; height: 58px; display: grid; place-items: center; font-size: 1.7rem;
  background: var(--cream-3); border-radius: 14px; margin-bottom: 18px; box-shadow: inset 0 0 0 1px var(--line);
}
.svc h3 { font-family: var(--font-head); font-size: 1.42rem; color: var(--wood); margin-bottom: 8px; }
.svc p { color: var(--ink-soft); }

/* =========================================================
   Menu
   ========================================================= */
.menu { background: var(--cream); }
.menu-board {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.menu-group { padding: 38px 40px; }
.menu-group + .menu-group { border-left: 1px solid var(--line); }
.menu-group h3 {
  font-family: var(--font-head); font-size: 1.1rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 22px; display: flex; align-items: center; gap: 12px;
}
.menu-group h3::after { content: ""; flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 14px); opacity: .6; }
.menu-list li {
  position: relative;
  display: flex; align-items: baseline; gap: 10px; padding: 9px 0 9px 1.9em;
  font-size: 1.08rem; color: var(--ink); border-bottom: 1px dashed var(--line);
}
.menu-list li:last-child { border-bottom: 0; }
.menu-list .dot { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-4px); }
.menu-list .star-item {
  position: absolute; left: 0; top: 9px; color: var(--gold);
}
.menu-note {
  text-align: center; margin-top: 26px; font-family: var(--font-head); font-size: 1.3rem; color: var(--wood);
}
.menu-note .script { font-family: var(--font-script); color: var(--rust); font-size: 1.5rem; }

/* =========================================================
   About (dark zone)
   ========================================================= */
.about { background: var(--wood); color: var(--cream); }
.about-inner { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-frame {
  border: 10px solid #fff; border-radius: 6px; box-shadow: var(--shadow-lg); transform: rotate(-2deg); overflow: hidden; background:#fff;
}
.about-tag {
  position: absolute; right: -14px; bottom: 22px; background: var(--gold); color: var(--ink);
  font-family: var(--font-head); font-weight: 600; padding: 10px 18px; border-radius: 8px;
  box-shadow: var(--shadow); transform: rotate(3deg); font-size: .92rem;
}
.about-copy p { color: rgba(243,234,214,.82); margin-top: 18px; font-size: 1.08rem; }
.about-copy .section-title { margin-top: 6px; }
.brothers { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 30px; }
.brothers li {
  background: rgba(243,234,214,.07); border: 1px solid var(--line-light); border-radius: 12px;
  padding: 14px 20px; display: flex; flex-direction: column;
}
.brothers strong { font-family: var(--font-head); font-size: 1.18rem; color: var(--gold-bright); }
.brothers span { font-size: .86rem; opacity: .8; }

/* =========================================================
   Events
   ========================================================= */
.events { background: linear-gradient(180deg, var(--cream), var(--cream-2)); }
.tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; }
.tab {
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--wood-2);
  background: transparent; border: 2px solid var(--line); padding: 10px 24px; border-radius: 999px; transition: .2s ease;
}
.tab.is-active { background: var(--wood); color: var(--cream); border-color: var(--wood); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.events-grid.is-hidden { display: none; }
.event { display: flex; overflow: hidden; }
.event-date {
  flex: 0 0 84px; background: var(--rust); color: #fff5e6; display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 18px 8px;
}
.event-date.past { background: var(--olive); }
.event-date .m { font-family: var(--font-head); font-weight: 600; letter-spacing: .1em; font-size: .85rem; }
.event-date .d { font-family: var(--font-head); font-weight: 700; font-size: 2.1rem; line-height: 1; }
.event-body { padding: 20px 22px; }
.event-kind {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; margin-bottom: 10px;
}
.event-kind.upcoming { background: rgba(156,74,36,.12); color: var(--rust); }
.event-kind.booking { background: rgba(195,154,69,.22); color: #8a6a1f; }
.event-kind.past { background: rgba(88,90,44,.16); color: var(--olive-dark); }
.event-body h3 { font-family: var(--font-head); font-size: 1.28rem; color: var(--wood); margin-bottom: 6px; }
.event-body p { color: var(--ink-soft); font-size: .98rem; }
.event-meta { margin-top: 8px; font-size: .85rem !important; font-weight: 600; color: var(--olive-dark) !important; }

/* =========================================================
   Gallery (dark/olive zone)
   ========================================================= */
.gallery { background: var(--olive-dark); color: var(--cream); }
/* Masonry — keeps each photo's natural orientation, no cropping */
.gallery-grid { column-count: 3; column-gap: 18px; }
.g-tile {
  break-inside: avoid; margin: 0 0 18px; border-radius: 14px; overflow: hidden;
  background: #241b12; box-shadow: 0 14px 30px rgba(0,0,0,.32);
  border: 1px solid rgba(243,234,214,.10);
}
.g-tile img {
  width: 100%; height: auto; display: block; transition: transform .6s ease;
}
.g-tile:hover img { transform: scale(1.05); }
.gallery-note { text-align: center; margin-top: 22px; font-size: .95rem; color: rgba(243,234,214,.7); }

/* =========================================================
   Certs
   ========================================================= */
.certs { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.certs-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.certs-copy p { color: var(--ink-soft); font-size: 1.08rem; margin: 18px 0 28px; }
.certs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cert-badge {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px;
  text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s ease;
}
.cert-badge:hover { transform: translateY(-4px); }
.cert-seal {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 14px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.7rem;
  background: var(--olive); color: var(--cream); border: 3px solid var(--gold); box-shadow: var(--shadow-sm);
}
.cert-badge strong { display: block; font-family: var(--font-head); font-size: 1.12rem; color: var(--wood); margin-bottom: 6px; }
.cert-sub { font-size: .88rem; color: var(--ink-soft); }
.cert-sub em { color: var(--rust); font-style: normal; font-weight: 600; }

/* =========================================================
   Testimonials (dark zone)
   ========================================================= */
.testimonials { background: var(--wood); color: var(--cream); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: rgba(243,234,214,.06); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 30px 28px;
}
.stars { color: var(--gold-bright); letter-spacing: .12em; margin-bottom: 14px; }
.quote blockquote { font-size: 1.08rem; line-height: 1.55; color: var(--cream); }
.quote figcaption { margin-top: 16px; font-family: var(--font-head); font-weight: 600; color: var(--gold-bright); }
.quote figcaption span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .85rem; color: rgba(243,234,214,.7); }

/* =========================================================
   Quote / Contact
   ========================================================= */
.quote { background: var(--olive-dark); color: var(--cream); }
.quote-inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.quote-copy > p { color: rgba(243,234,214,.82); font-size: 1.1rem; margin: 18px 0 26px; }
.quote-contact { display: flex; flex-direction: column; gap: 14px; }
.quote-contact li { display: flex; align-items: center; gap: 14px; font-size: 1.08rem; }
.qc-ico {
  width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; flex: 0 0 auto;
  background: rgba(243,234,214,.08); border: 1px solid var(--line-light);
}
.quote-contact a:hover { color: var(--gold-bright); }

.quote-form { background: var(--cream); border-radius: 18px; padding: 34px; box-shadow: var(--shadow-lg); }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--wood); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: #fff; border: 1.5px solid var(--line); border-radius: 10px; padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rust); box-shadow: 0 0 0 3px rgba(156,74,36,.14);
}
.field textarea { resize: vertical; }
.form-fineprint { text-align: center; font-size: .82rem; color: var(--ink-soft); margin-top: 12px; }
.form-success {
  text-align: center; margin-top: 14px; font-weight: 700; color: var(--olive-dark);
  background: rgba(88,90,44,.12); border-radius: 10px; padding: 12px;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: #271b12; color: var(--cream); position: relative; z-index: 2; padding-top: 56px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; }
.footer-brand img { width: 120px; margin-bottom: 12px; filter: drop-shadow(0 3px 8px rgba(0,0,0,.4)); }
.footer-tag { font-family: var(--font-script); color: var(--gold-bright); font-size: 1.15rem; }
.footer-col h4 { font-family: var(--font-head); font-size: .92rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-col p { color: rgba(243,234,214,.78); line-height: 1.8; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--line-light); padding: 20px 24px; font-size: .85rem; color: rgba(243,234,214,.6);
}
.footer-built { font-family: var(--font-script); color: var(--gold); }

/* =========================================================
   Mobile sticky bar
   ========================================================= */
.mobile-bar { display: none; }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-inner, .about-inner, .certs-inner, .quote-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero-media { order: -1; max-width: 460px; }
  .about-media { max-width: 460px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid, .quotes { grid-template-columns: 1fr; }
  .menu-board { grid-template-columns: 1fr; }
  .menu-group + .menu-group { border-left: 0; border-top: 1px solid var(--line); }
  .gallery-grid { column-count: 2; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); padding: 88px 24px 28px; box-shadow: var(--shadow);
    transform: translateY(-100%); transition: transform .3s ease; height: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 16px; border-bottom: 0 !important; }
  .nav-toggle { display: flex; z-index: 60; }
  .header-phone span { display: none; }
  .header-phone { margin-left: auto; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .trustbar-inner { grid-template-columns: 1fr 1fr; gap: 26px; }
  .trust-item:nth-child(2)::after { display: none; }
  .section { padding: 64px 0; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-badge { width: 84px; height: 84px; left: -10px; }

  .mobile-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 55;
    background: var(--wood); padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
    box-shadow: 0 -8px 24px rgba(0,0,0,.25);
  }
  .mobile-bar a {
    flex: 1; text-align: center; font-family: var(--font-head); font-weight: 600; padding: 13px;
    border-radius: 10px; font-size: 1rem;
  }
  .mb-call { background: rgba(243,234,214,.12); color: var(--cream); }
  .mb-quote { background: var(--rust); color: #fff5e6; }
  body { padding-bottom: 68px; }
}

@media (max-width: 460px) {
  .services-grid, .footer-inner { grid-template-columns: 1fr; }
  .gallery-grid { column-count: 1; }
  .brand-text { display: none; }
}
