
:root {
  --red: #b51f28;
  --red-dark: #86171d;
  --ink: #181413;
  --muted: #695d52;
  --paper: #fffaf0;
  --cream: #fff1d6;
  --soft: #f7e8ca;
  --line: #dfc18d;
  --line-soft: rgba(151, 113, 63, .22);
  --white: #fff;
  --max: 1140px;
  --shadow: 0 24px 62px rgba(54, 32, 16, .13);
  --shadow-soft: 0 10px 28px rgba(54, 32, 16, .08);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  padding-bottom: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 0%, rgba(181, 31, 40, .10), transparent 31%),
    linear-gradient(180deg, var(--paper), #fff8ea 58%, #fff);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(23, 20, 19, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 20, 19, .025) 1px, transparent 1px);
  background-size: 44px 44px;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}
.container { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }
.narrow { width: min(860px, 100%); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Header and menu */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 250, 240, .94);
  border-bottom: 1px solid rgba(223, 193, 141, .65);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(54, 32, 16, .045);
}
.header-inner {
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}
.brand { grid-column: 2; display: inline-flex; justify-content: center; }
.brand img { width: auto; height: 76px; max-width: 270px; object-fit: contain; }
.header-call {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 900;
}
.header-call svg { width: 20px; height: 20px; }
.menu-toggle {
  justify-self: end;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .22s var(--ease), border-color .22s var(--ease);
}
.menu-toggle:hover { transform: translateY(-2px); border-color: var(--red); }
.menu-lines { position: relative; width: 23px; height: 17px; }
.menu-lines::before, .menu-lines::after, .menu-lines span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: .25s var(--ease);
}
.menu-lines::before { top: 0; }
.menu-lines span { top: 7.5px; }
.menu-lines::after { bottom: 0; }
.menu-toggle[aria-expanded="true"] .menu-lines::before { top: 7.5px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-lines span { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-lines::after { bottom: 7.5px; transform: rotate(-45deg); }
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(23, 20, 19, .46);
  opacity: 0;
  visibility: hidden;
  transition: .28s var(--ease);
}
.menu-overlay.open { opacity: 1; visibility: visible; }
.menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(455px, 92vw);
  height: 100%;
  padding: 112px 26px 30px;
  overflow: auto;
  background: var(--paper);
  box-shadow: -24px 0 60px rgba(23, 20, 19, .20);
  transform: translateX(100%);
  transition: transform .32s var(--ease);
}
.menu-overlay.open .menu-panel { transform: translateX(0); }
.menu-title {
  margin: 0 0 12px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu-nav { display: grid; gap: 5px; }
.menu-nav a {
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.03em;
}
.menu-nav a:hover, .menu-nav a[aria-current="page"] { color: var(--red-dark); background: var(--white); border-color: var(--line); }
.menu-cta { display: grid; gap: 9px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }

/* Typography and common UI */
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; letter-spacing: -.048em; line-height: 1.02; }
h1 { font-size: clamp(45px, 5.7vw, 76px); }
h2 { font-size: clamp(38px, 4.7vw, 61px); }
h3 { font-size: 29px; }
h1 span, h2 span { color: var(--red); }
p { margin-top: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--red-dark);
  box-shadow: 0 7px 18px rgba(54, 32, 16, .05);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--red); }
.lead {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 680;
  line-height: 1.52;
}
.lead strong { color: var(--ink); }
.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 16px;
  font-weight: 950;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 15px 30px rgba(54, 32, 16, .12); }
.btn-primary { color: var(--white); border-color: transparent; background: linear-gradient(180deg, var(--red), var(--red-dark)); }
.btn-light { color: var(--ink); background: var(--white); }
.btn-dark { color: var(--white); border-color: var(--ink); background: var(--ink); }
.btn svg { width: 19px; height: 19px; flex: 0 0 auto; }
.action-arrow {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .17);
  line-height: 1;
  transition: transform .22s var(--ease);
}
.btn-light .action-arrow { color: var(--red-dark); background: rgba(181, 31, 40, .09); }
.btn:hover .action-arrow { transform: translateX(3px); }
.actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 23px; }
.center-actions { justify-content: center; }

/* Hero */
.hero { padding: 42px 0 34px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(350px, .95fr); align-items: center; gap: 42px; }
.hero-copy { min-width: 0; }
.hero-copy h1 { margin-top: 17px; max-width: 780px; }
.hero-media {
  padding: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}
.hero-media img { width: 100%; height: 480px; border-radius: 22px; object-fit: cover; }
.hero-media img.portrait { object-position: center 18%; }
.hero-text-only { padding-bottom: 14px; text-align: center; }
.hero-text-only .hero-copy { width: min(850px, 100%); margin: 0 auto; }
.hero-text-only h1 { margin-inline: auto; }
.hero-text-only .lead { max-width: 720px; margin-inline: auto; }
.hero-text-only .actions { justify-content: center; }
.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}
.micro-proof span { display: inline-flex; align-items: center; gap: 6px; }
.micro-proof span::before { content: "✓"; color: var(--red-dark); font-weight: 950; }

/* Sections */
.section { padding: 56px 0; }
.section.alt { border-block: 1px solid rgba(223, 193, 141, .46); background: rgba(247, 232, 202, .46); }
.section-head { width: min(820px, 100%); margin: 0 auto 27px; text-align: center; }
.section-head p { margin: 14px auto 0; color: var(--muted); font-size: 19px; font-weight: 670; line-height: 1.52; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head.left p { margin-left: 0; }

/* Detailed action cards, inspired by the stronger micro-detail of the original */
.choice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.choice-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.choice-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.choice-card::after { content: ""; position: absolute; right: -44px; bottom: -62px; width: 145px; height: 145px; border-radius: 50%; background: rgba(181, 31, 40, .055); }
.choice-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.choice-num { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--red); font-size: 13px; font-weight: 950; }
.choice-tag { color: var(--red-dark); font-size: 11px; font-weight: 950; letter-spacing: .11em; text-transform: uppercase; }
.choice-card h3 { margin-top: 18px; }
.choice-card p { margin: 11px 0 20px; color: var(--muted); font-size: 16px; font-weight: 650; line-height: 1.52; }
.choice-link { position: relative; z-index: 2; margin-top: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--red-dark); font-weight: 950; }
.choice-link span { width: 27px; height: 27px; display: grid; place-items: center; border: 1px solid rgba(181, 31, 40, .22); border-radius: 999px; background: rgba(181, 31, 40, .07); transition: transform .22s var(--ease); }
.choice-link:hover span { transform: translateX(3px); }

/* Product and service layouts */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.product-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow-soft); }
.product-card.primary { border-color: rgba(181, 31, 40, .45); box-shadow: 0 18px 42px rgba(181, 31, 40, .10); }
.product-card img { width: 100%; height: 370px; object-fit: cover; }
.product-body { padding: 22px; }
.product-label { color: var(--red-dark); font-size: 11px; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.product-card h3 { margin-top: 8px; font-size: 34px; }
.product-card p { margin: 11px 0 0; color: var(--muted); font-size: 16px; font-weight: 650; line-height: 1.55; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 38px; }
.split-media { padding: 8px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow); }
.split-media img { width: 100%; height: 420px; border-radius: 22px; object-fit: cover; }
.split-copy p { margin: 15px 0 0; color: var(--muted); font-size: 18px; font-weight: 650; line-height: 1.58; }
.checklist { list-style: none; display: grid; gap: 10px; margin: 20px 0 0; padding: 0; }
.checklist li { position: relative; padding-left: 31px; font-size: 16px; font-weight: 780; line-height: 1.48; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--red); font-size: 12px; }

.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.step-card { padding: 20px; border: 1px solid var(--line); border-radius: 21px; background: var(--white); box-shadow: var(--shadow-soft); }
.step-num { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: var(--red); font-size: 13px; font-weight: 950; }
.step-card h3 { margin-top: 13px; font-size: 25px; }
.step-card p { margin: 8px 0 0; color: var(--muted); font-size: 15px; font-weight: 650; line-height: 1.5; }

.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.problem-card { padding: 21px; border: 1px solid var(--line); border-radius: 21px; background: var(--white); box-shadow: var(--shadow-soft); }
.problem-card .problem-kicker { color: var(--red-dark); font-size: 11px; font-weight: 950; letter-spacing: .11em; text-transform: uppercase; }
.problem-card h3 { margin-top: 8px; font-size: 28px; }
.problem-card p { margin: 9px 0 0; color: var(--muted); font-size: 16px; font-weight: 650; line-height: 1.52; }

.quality-band {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 27px;
  padding: 34px;
  border-radius: 29px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #312923);
  box-shadow: var(--shadow);
}
.quality-band h2 { font-size: clamp(37px, 4.4vw, 57px); }
.quality-band p { margin: 13px 0 0; color: rgba(255, 255, 255, .75); font-size: 17px; font-weight: 650; line-height: 1.55; }
.quality-list { display: grid; gap: 10px; }
.quality-list div { padding: 13px 15px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 16px; background: rgba(255, 255, 255, .055); font-weight: 850; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}
.proof-item { padding: 18px 16px; text-align: center; background: var(--white); }
.proof-item strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 23px; letter-spacing: -.035em; }
.proof-item span { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; font-weight: 700; }

.callout { margin-top: 24px; padding: 24px; border: 1px solid rgba(181, 31, 40, .26); border-radius: 22px; background: linear-gradient(135deg, rgba(181, 31, 40, .07), rgba(247, 232, 202, .64)); }
.callout h3 { font-size: 29px; }
.callout p { margin: 9px 0 0; color: var(--muted); font-size: 16px; font-weight: 650; line-height: 1.55; }

.area-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }
.area-cloud span { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--red-dark); background: var(--white); font-size: 14px; font-weight: 880; }

/* Prose, FAQ and contacts */
.prose { width: min(860px, 100%); margin: 0 auto; }
.prose h1 { margin-bottom: 20px; }
.prose h2 { margin: 35px 0 12px; font-size: 37px; }
.prose h3 { margin: 25px 0 10px; }
.prose p, .prose li { color: var(--muted); font-size: 17px; font-weight: 620; line-height: 1.7; }
.prose strong { color: var(--ink); }
.prose ul { padding-left: 23px; }
.breadcrumb { padding-top: 14px; color: var(--muted); font-size: 13px; font-weight: 720; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 7px; color: #b89f75; }
.faq-list { width: min(900px, 100%); margin: 0 auto; display: grid; gap: 10px; }
details { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-soft); }
summary { position: relative; padding: 17px 52px 17px 18px; cursor: pointer; list-style: none; font-weight: 880; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 17px; top: 50%; width: 27px; height: 27px; display: grid; place-items: center; transform: translateY(-50%); border-radius: 50%; color: var(--red-dark); background: var(--soft); font-size: 19px; }
details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 18px 18px; color: var(--muted); font-size: 16px; font-weight: 620; line-height: 1.6; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.contact-card { padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-soft); }
.contact-card h2 { font-size: 40px; }
.contact-card > p { margin: 11px 0 0; color: var(--muted); font-weight: 620; line-height: 1.55; }
.contact-list { display: grid; gap: 9px; margin-top: 18px; }
.contact-item { position: relative; display: grid; grid-template-columns: 43px 1fr 28px; align-items: center; gap: 11px; min-height: 62px; padding: 9px 11px; border: 1px solid var(--line-soft); border-radius: 16px; background: #fffdf7; font-weight: 850; }
.contact-item::after { content: "↗"; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: var(--red-dark); background: var(--soft); }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--white); background: var(--red); font-size: 12px; font-weight: 950; }
.contact-item.wa .contact-icon { background: #1aa74f; }
.contact-item.phone .contact-icon { background: #30363d; }
.contact-item.email .contact-icon { background: #89542e; }
.hours { margin-top: 17px; }
.hour-row { display: grid; grid-template-columns: 1fr 1.25fr; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: 15px; }
.hour-row:last-child { border-bottom: 0; }
.hour-row span:first-child { font-weight: 850; }
.hour-row span:last-child { color: var(--muted); text-align: right; font-weight: 680; }
.social-box { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-soft); }
.social-box h3 { font-size: 29px; }
.social-box p { margin: 7px 0 0; color: var(--muted); font-weight: 620; line-height: 1.5; }

/* Footer and mobile actions */
.site-footer { padding: 44px 0 calc(28px + var(--safe-bottom)); color: rgba(255,255,255,.92); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.05fr .95fr .95fr; gap: 28px; }
.footer-brand img { width: 205px; height: auto; padding: 5px 8px; border: 1px solid rgba(223, 193, 141, .45); border-radius: 12px; background: #fff7e8; }
.footer-brand p { max-width: 390px; margin: 13px 0 0; color: rgba(255,255,255,.67); font-size: 14px; font-weight: 600; line-height: 1.55; }
.footer-col { display: grid; align-content: start; gap: 7px; }
.footer-col h3 { margin-bottom: 4px; color: var(--white); font-family: system-ui, sans-serif; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a, .footer-col span { color: rgba(255,255,255,.73); font-size: 13px; line-height: 1.45; }
.footer-col a:hover { color: var(--white); }
.footer-legal { display: flex; justify-content: space-between; gap: 15px; margin-top: 25px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.5; }
.sticky-actions { display: none; }

@media (max-width: 940px) {
  .hero-grid, .split, .quality-band { grid-template-columns: 1fr; }
  .hero-grid { gap: 28px; }
  .hero-copy { text-align: center; }
  .hero-copy h1 { margin-inline: auto; }
  .hero-copy .lead { max-width: 750px; margin-inline: auto; }
  .hero-copy .actions, .hero-copy .micro-proof { justify-content: center; }
  .hero-media { width: min(620px, 100%); margin-inline: auto; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .step-grid, .proof-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  body { padding-bottom: calc(76px + var(--safe-bottom)); }
  .container { width: calc(100% - 28px); }
  .header-inner { height: 76px; }
  .brand img { height: 60px; max-width: 205px; }
  .header-call { width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 15px; background: var(--white); box-shadow: var(--shadow-soft); }
  .header-call span { display: none; }
  .menu-toggle { width: 45px; height: 45px; border-radius: 15px; }
  .menu-panel { padding: 91px 17px 22px; }
  .menu-nav a { padding: 10px 12px; font-size: 20px; }
  h1 { font-size: clamp(39px, 12vw, 52px); line-height: 1.01; }
  h2 { font-size: clamp(35px, 10vw, 46px); }
  h3 { font-size: 27px; }
  .hero { padding: 27px 0 24px; }
  .hero-grid { gap: 22px; }
  .hero-copy h1 { margin-top: 14px; }
  .eyebrow { max-width: 100%; justify-content: center; padding: 8px 11px; font-size: 10px; line-height: 1.35; }
  .lead { margin-top: 13px; font-size: 17px; line-height: 1.48; }
  .actions { margin-top: 18px; justify-content: center; }
  .actions .btn { width: 100%; }
  .hero-media { padding: 6px; border-radius: 24px; }
  .hero-media img { height: 370px; border-radius: 18px; }
  .micro-proof { justify-content: center; font-size: 12px; }
  .section { padding: 43px 0; }
  .section-head { margin-bottom: 22px; }
  .section-head p { margin-top: 11px; font-size: 17px; }
  .choice-grid, .product-grid, .problem-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .choice-card { min-height: auto; padding: 19px; }
  .choice-card h3 { font-size: 27px; }
  .product-card img { height: 315px; }
  .product-card h3 { font-size: 31px; }
  .step-grid, .proof-strip { grid-template-columns: 1fr 1fr; }
  .step-card { padding: 17px; }
  .step-card h3 { font-size: 22px; }
  .quality-band { padding: 25px 20px; border-radius: 24px; text-align: center; }
  .quality-list { text-align: left; }
  .split-copy { text-align: center; }
  .split-copy p { font-size: 17px; }
  .split-copy .checklist { text-align: left; }
  .split-media img { height: 345px; }
  .proof-item { padding: 15px 10px; }
  .proof-item strong { font-size: 20px; }
  .social-box { align-items: stretch; flex-direction: column; text-align: center; }
  .social-box .btn { width: 100%; }
  .contact-card { padding: 19px; }
  .contact-card h2 { font-size: 35px; text-align: center; }
  .contact-card > p { text-align: center; }
  .contact-item { grid-template-columns: 40px minmax(0, 1fr) 27px; font-size: 14px; overflow-wrap: anywhere; }
  .hour-row { font-size: 14px; }
  .prose h2 { font-size: 33px; }
  .prose p, .prose li { font-size: 16px; }
  .breadcrumb { padding-top: 10px; font-size: 12px; }
  .footer-grid { gap: 22px; }
  .footer-brand { grid-column: auto; text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .footer-brand p { margin-inline: auto; }
  .footer-col { text-align: center; }
  .footer-legal { flex-direction: column; text-align: center; }
  .sticky-actions {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: calc(7px + var(--safe-bottom));
    z-index: 65;
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 7px;
    padding: 6px;
    border: 1px solid rgba(223, 193, 141, .9);
    border-radius: 22px;
    background: rgba(255, 250, 240, .94);
    backdrop-filter: blur(15px);
    box-shadow: 0 13px 34px rgba(23, 20, 19, .20);
    transition: opacity .2s ease, transform .2s ease;
  }
  body.menu-open .sticky-actions { opacity: 0; pointer-events: none; transform: translateY(12px); }
  .sticky-actions .btn { min-height: 48px; padding: 0 10px; box-shadow: none; font-size: 13px; }
  .sticky-actions .btn svg { width: 17px; height: 17px; }
}

@media (max-width: 410px) {
  .step-grid, .proof-strip { grid-template-columns: 1fr; }
  .brand img { max-width: 185px; }
  .sticky-actions { grid-template-columns: .72fr 1.28fr; }
  .sticky-actions .btn { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
