:root {
  --red: #b52222;
  --red-dark: #8f1717;
  --ink: #252525;
  --muted: #66615f;
  --line: #d7d2cf;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#delivery-request {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 7px max(24px, calc((100vw - 1160px) / 2));
  border-bottom: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  height: 58px;
  align-items: center;
}

.brand img {
  width: 142px;
  height: auto;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1;
  padding: 0 28px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--red-dark);
  box-shadow: 0 10px 24px rgba(181, 34, 34, 0.22);
  transform: translateY(-1px);
}

.button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(181, 34, 34, 0.35);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding-inline: 24px;
  font-size: 0.74rem;
}

.button-wide {
  min-width: 320px;
}

.hero {
  width: min(1160px, 100%);
  aspect-ratio: 1.84 / 1;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
}

.hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.primary-action {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: center;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  padding: 24px;
}

.section-shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.faq-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
  justify-items: stretch;
  padding-block: clamp(72px, 8vw, 116px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 42px;
  color: var(--red);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.accordion-list {
  border-top: 1px solid #7e7b79;
}

.accordion {
  border-bottom: 1px solid #7e7b79;
}

.accordion summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  list-style: none;
  padding: 17px 2px;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion-icon {
  position: relative;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.accordion-icon::before,
.accordion-icon::after {
  position: absolute;
  top: 7px;
  left: 2px;
  width: 11px;
  height: 1px;
  background: var(--red);
  content: "";
  transition: transform 180ms ease;
}

.accordion-icon::after {
  transform: rotate(90deg);
}

.accordion[open] .accordion-icon::after {
  transform: rotate(0);
}

.accordion-answer {
  display: grid;
  gap: 11px;
  max-width: 660px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  padding: 0 30px 24px 2px;
}

.accordion-answer p {
  margin-bottom: 0;
}

.faq-emphasis {
  color: var(--red);
  font-weight: 700;
}

.inline-action {
  color: var(--red);
  font-weight: 800;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.inline-action:hover,
.inline-action:focus-visible {
  color: var(--red-dark);
}

.map-card {
  position: sticky;
  top: 104px;
  width: 100%;
  margin: 0;
}

.map-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  box-shadow: 0 22px 54px rgba(50, 45, 42, 0.16);
}

.map-card figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
}

.request-section {
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  background: var(--white);
}

.request-shell {
  padding-block: clamp(64px, 7vw, 96px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  column-gap: 64px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.iframe-wrap {
  height: 540px;
  overflow: hidden;
  border: 1px solid #e1ddda;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(45, 40, 37, 0.08);
}

.iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}

.embed-placeholder {
  display: flex;
  min-height: 280px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid #e1ddda;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(45, 40, 37, 0.08);
  padding: clamp(34px, 6vw, 72px);
}

.embed-placeholder p {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.embed-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
  padding-block: clamp(72px, 9vw, 122px);
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.contact-copy > a,
footer > a:not(.button) {
  overflow-wrap: anywhere;
  color: var(--ink);
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #4d4947;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #a8a3a0;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 400;
  padding: 13px 14px;
  text-transform: none;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 34px;
  align-items: center;
  width: min(1160px, calc(100% - 48px));
  min-height: 170px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

footer > img {
  width: 130px;
  height: auto;
}

footer > a:last-child {
  justify-self: end;
}

@media (max-width: 880px) {
  .faq-map,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .map-card,
  .contact-copy {
    position: static;
  }

  .map-card {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .embed-placeholder {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-block: 46px;
    text-align: center;
  }

  footer > a:last-child {
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: 68px;
    padding-inline: 18px;
  }

  .brand {
    height: 50px;
  }

  .brand img {
    width: 116px;
  }

  .button-small {
    min-height: 38px;
    padding-inline: 18px;
    font-size: 0.68rem;
  }

  .hero {
    aspect-ratio: 1.22 / 1;
  }

  .hero img {
    object-position: 50% center;
  }

  .primary-action {
    min-height: 98px;
  }

  .button-wide {
    width: 100%;
    min-width: 0;
  }

  .section-shell {
    width: min(100% - 32px, 1160px);
  }

  .faq-map {
    gap: 56px;
    padding-block: 64px;
  }

  h1 {
    margin-bottom: 32px;
  }

  .accordion summary {
    min-height: 60px;
    font-size: 0.94rem;
  }

  .iframe-wrap {
    height: 640px;
    border-radius: 14px;
  }

  .embed-placeholder {
    min-height: 0;
    padding: 30px 24px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  footer {
    width: min(100% - 32px, 1160px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Localized SEO page additions */
.local-intro {
  padding-top: clamp(64px, 7vw, 96px);
  text-align: center;
}

.local-intro h1 {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 18px;
}

.local-tagline {
  margin-bottom: 18px;
  color: var(--red);
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  font-weight: 800;
}

.local-summary {
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.local-intro + .faq-map {
  padding-top: clamp(54px, 6vw, 84px);
}

.service-area-nav {
  border-top: 3px solid var(--red);
  background: var(--white);
}

.service-area-shell {
  padding-block: clamp(58px, 7vw, 84px);
  text-align: center;
}

.service-area-shell h2 {
  margin-bottom: 28px;
}

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

.service-area-links--all {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-area-links a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  padding: 12px 18px;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.service-area-links a:hover,
.service-area-links a:focus-visible {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 10px 24px rgba(181, 34, 34, 0.1);
  transform: translateY(-1px);
}

@media (max-width: 880px) {
  .service-area-links,
  .service-area-links--all {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .local-intro {
    padding-top: 54px;
  }

  .service-area-links,
  .service-area-links--all {
    grid-template-columns: 1fr;
  }
}
