:root {
  --red: #b51f24;
  --red-dark: #89181d;
  --ink: #171717;
  --muted: #6b6b62;
  --paper: #f7f1e7;
  --soft: #efe6d8;
  --chocolate: #4b2e24;
  --green: #18382f;
  --line: rgba(23, 23, 23, 0.12);
  --radius: 8px;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 450;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.top-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 38px;
  padding: 8px 18px;
  background: var(--chocolate);
  color: white;
  font-size: 14px;
}

.top-notice button {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: transparent;
  color: white;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(247, 241, 231, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-weight: 800;
}

.brand strong, .brand small { display: block; }
.brand strong { font-weight: 760; }
.brand small { color: var(--muted); font-size: 12px; }

.site-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 14px;
  font-weight: 640;
}

.site-nav a { padding: 10px 0; }
.site-nav a:hover { color: var(--red); }

.nav-toggle { display: none; border: 0; background: var(--ink); color: white; border-radius: var(--radius); width: 42px; height: 42px; font-size: 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 720;
  cursor: pointer;
}

.btn.primary { background: var(--red); color: white; }
.btn.primary:hover { background: var(--red-dark); }
.btn.light { background: white; color: var(--ink); border-color: var(--line); }
.btn.full { width: 100%; }
.text-link { color: var(--red); font-weight: 760; }

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.home-hero {
  min-height: calc(100vh - 114px);
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(54px, 7vw, 96px) clamp(18px, 4vw, 58px) clamp(54px, 7vw, 96px);
  overflow: hidden;
}

.hero-copy h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 760;
}

.hero-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }

.call-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: min(270px, 100%);
  padding: 14px 16px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(75, 46, 36, 0.12);
}

.call-btn.butcher { border-color: rgba(181,31,36,0.25); }
.call-btn.office { border-color: rgba(75,46,36,0.22); }

.call-copy small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 680;
}

.call-copy strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 760;
}

.icon-pair {
  display: flex;
  gap: 7px;
}

.icon-pair svg,
.route-pill svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.icon-pair svg {
  color: var(--red);
}

.route-pill {
  position: fixed;
  z-index: 35;
  left: 18px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 13px;
  border-radius: 8px;
  background: var(--red);
  color: white;
  box-shadow: 0 14px 34px rgba(75, 46, 36, 0.24);
  font-weight: 760;
}

.hero-collage {
  position: relative;
  min-height: min(72vh, 680px);
}

.collage-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #ddd;
  transition: transform 0.2s ease-out;
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-1 { width: 52%; height: 56%; left: 4%; top: 5%; transform: translateX(calc(var(--hero-scroll, 0) * -18px)) rotate(-2deg); }
.card-2 { width: 44%; height: 44%; right: 4%; top: 18%; transform: translateX(calc(var(--hero-scroll, 0) * 14px)) rotate(2deg); }
.card-3 { width: 46%; height: 42%; left: 16%; bottom: 0; transform: translateY(calc(var(--hero-scroll, 0) * -14px)); }
.card-4 { width: 33%; height: 34%; right: 12%; bottom: 8%; transform: translateY(calc(var(--hero-scroll, 0) * 20px)) rotate(-1deg); }

.announcement-strip {
  margin: 0 clamp(18px, 4vw, 58px) 20px;
  display: grid;
  gap: 10px;
}

.announcement-strip article {
  border-left: 4px solid var(--red);
  background: white;
  padding: 16px 18px;
  border-radius: var(--radius);
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.home-section,
.content-band,
.form-section,
.legal-content,
.home-contact {
  padding: clamp(76px, 9vw, 132px) clamp(18px, 4vw, 58px);
}

.home-section {
  min-height: 72vh;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section-head h2,
.content-band h2,
.form-card h2,
.home-contact h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.08;
  font-weight: 720;
}

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 32px);
}

.brochure {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 16px 42px rgba(23, 23, 23, 0.12);
}

.brochure img { width: 100%; height: 100%; object-fit: cover; }

.world-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.world-grid article {
  background: white;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.world-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  background: var(--soft);
  color: var(--red);
  font-weight: 900;
  border-radius: 50%;
}

.world-grid h3 { margin: 0 0 8px; }
.world-grid h3 { font-weight: 720; }
.world-grid p { margin: 0; color: var(--muted); }

.dark-proof {
  background: var(--chocolate);
  color: white;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 32px;
}

.dark-proof .eyebrow { color: #ffcacd; }
.dark-proof h2 { margin: 0; font-size: clamp(34px, 5vw, 66px); line-height: 1.04; font-weight: 720; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.proof-grid strong {
  display: grid;
  align-content: center;
  min-height: 130px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  font-size: 32px;
  font-weight: 720;
}

.proof-grid small { display: block; margin-top: 6px; font-size: 13px; color: rgba(255,255,255,0.72); }

.geo p {
  max-width: 940px;
  font-size: 20px;
  color: var(--muted);
}

.section-lead {
  max-width: 760px;
  margin-top: -12px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
}

.offer-page .brochure-grid {
  max-width: 1180px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.gallery-grid figure {
  margin: 0;
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(75, 46, 36, 0.13);
}

.gallery-grid figure:first-child {
  grid-row: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.stars {
  color: var(--red);
  letter-spacing: 2px;
}

.review-grid p {
  color: var(--muted);
}

.review-grid strong,
.review-grid small {
  display: block;
}

.review-grid strong { font-weight: 720; }
.review-grid small { color: var(--muted); }

.home-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: white;
}

.page-hero.compact {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 4vw, 58px);
  background: var(--soft);
}

.page-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  font-weight: 740;
}

.page-hero p { max-width: 760px; color: var(--muted); font-size: 20px; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
}

.content-grid p { color: var(--muted); font-size: 18px; }

.media-frame {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame img { width: 100%; height: 100%; object-fit: cover; }

.form-section { background: var(--soft); }
.form-card { max-width: 900px; margin: 0 auto; background: white; border-radius: var(--radius); padding: clamp(22px, 4vw, 42px); }
.public-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.public-form label { display: grid; gap: 7px; font-weight: 800; }
.public-form label { font-weight: 680; }
.public-form input, .public-form textarea, .public-form select { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); padding: 13px 14px; font: inherit; }
.public-form textarea { min-height: 130px; grid-column: 1 / -1; }
.radio-stack { display: grid; gap: 8px; padding: 10px 0; }
.radio-stack label { display: flex; align-items: center; gap: 8px; font-weight: 520; }
.radio-stack input, .privacy-check input { width: auto; }
.privacy-check { display: flex; align-items: flex-start; gap: 8px; font-weight: 520; }

.legal-content { max-width: 920px; margin: 0 auto; }
.legal-content article { padding: 22px 0; border-bottom: 1px solid var(--line); }
.rich-text a { color: var(--red); text-decoration: underline; }

.toast {
  position: fixed;
  z-index: 80;
  right: 18px;
  top: 92px;
  max-width: 360px;
  padding: 14px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: white;
}
.toast.success { border-left: 5px solid #2e7d32; }
.toast.error { border-left: 5px solid var(--red); }

.campaign-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,0.58);
}
.popup-panel {
  position: relative;
  width: min(900px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: white;
  border-radius: var(--radius);
  padding: 20px;
}
.campaign-popup[hidden] { display: none !important; }
.popup-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  font-size: 22px;
}
.popup-images { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 16px 0; }
.popup-images img { aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); }

.site-footer {
  background: var(--ink);
  color: white;
  padding: 44px clamp(18px, 4vw, 58px);
}
.footer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,0.72); }
.footer-links { display: grid; gap: 7px; }

@media (max-width: 900px) {
  .nav-toggle { display: grid; place-items: center; }
  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .home-hero { grid-template-columns: 1fr; padding-top: 36px; }
  .hero-collage { min-height: 420px; }
  .content-grid, .dark-proof, .home-contact { grid-template-columns: 1fr; }
  .world-grid, .footer-grid, .gallery-grid, .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .site-header { min-height: 68px; }
  .brand small { display: none; }
  .home-hero { min-height: auto; }
  .hero-copy h1 { font-size: 44px; }
  .hero-collage { min-height: 340px; }
  .brochure-grid, .world-grid, .proof-grid, .public-form, .popup-images, .footer-grid, .gallery-grid, .review-grid { grid-template-columns: 1fr; }
  .gallery-grid figure:first-child { grid-row: auto; }
  .section-head { display: grid; align-items: start; }
  .announcement-strip article { display: grid; }
  .home-contact { display: grid; }
}
