:root {
  --green-950: #073b2d;
  --green-900: #0a4635;
  --green-800: #0f5944;
  --green-100: #e5efe9;
  --gold-600: #bf8a24;
  --gold-500: #d2a044;
  --cream-50: #fffdf8;
  --cream-100: #fbf7ee;
  --cream-200: #f3eadc;
  --ink: #17382f;
  --muted: #6d756f;
  --line: #e4d7c5;
  --shadow: 0 20px 50px rgba(7, 59, 45, 0.12);
  --font-display: Georgia, "Times New Roman", ui-serif, serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
  font-family: var(--font-body);
}

/* Branded estimate booking pages */
.booking-page-body {
  background: #fbf8f0;
}

.booking-main {
  min-height: 70vh;
  background: #fbf8f0;
}

.booking-intro {
  padding: clamp(2.25rem, 4vw, 3rem) clamp(1rem, 4vw, 3.25rem) clamp(2rem, 3vw, 2.5rem);
  background: #fbf8f0 url("assets/generated/hero-clean-kitchen.png") calc(100% + 4rem) center / auto 100% no-repeat;
  border-bottom: 1px solid rgba(191, 138, 36, 0.22);
}

.booking-intro-inner,
.booking-scheduler-shell {
  width: min(100%, 76rem);
  margin-inline: auto;
}

.booking-intro .eyebrow {
  margin-bottom: 0.7rem;
  font-size: 0.78rem;
}

.booking-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 19rem);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.booking-intro-copy {
  display: grid;
  gap: 0.95rem;
}

.booking-intro h1 {
  max-width: 14ch;
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 0.98;
}

.booking-intro-copy > p {
  max-width: 43rem;
  margin: 0;
  color: #53665f;
  font-size: 1.02rem;
  line-height: 1.62;
}

.booking-area-summary {
  display: grid;
  gap: 0.5rem;
  width: 100%;
  padding: 1.1rem 1.2rem 1rem 1.35rem;
  background: rgba(251, 248, 240, 0.86);
  border: 1px solid rgba(191, 138, 36, 0.3);
  border-left: 2px solid rgba(191, 138, 36, 0.72);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(7, 59, 45, 0.08);
  transform: none;
}

.booking-area-summary > span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.booking-area-summary strong {
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.15;
}

.booking-area-summary button {
  min-height: 2.75rem;
  width: max-content;
  padding: 0.55rem 0;
  color: var(--green-800);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(191, 138, 36, 0.66);
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.booking-area-summary button:hover,
.booking-area-summary button:focus-visible {
  color: var(--green-950);
  border-color: var(--gold-600);
}

.booking-area-summary button:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 4px;
}

.booking-notice {
  max-width: 52rem;
  margin: 0.2rem 0 0;
  padding: 0.75rem 0.9rem;
  color: var(--green-950);
  background: rgba(243, 234, 220, 0.72);
  border: 1px solid rgba(191, 138, 36, 0.32);
  border-left: 3px solid var(--gold-600);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

.booking-scheduler-section {
  padding: clamp(1.25rem, 2vw, 1.75rem) clamp(0.75rem, 3vw, 2.25rem) clamp(3.5rem, 7vw, 6rem);
  background:
    linear-gradient(180deg, rgba(229, 239, 233, 0.76), rgba(251, 247, 238, 0.94));
}

.booking-scheduler-shell {
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid rgba(191, 138, 36, 0.42);
  border-radius: 16px;
  box-shadow:
    0 28px 64px rgba(7, 59, 45, 0.14),
    0 8px 22px rgba(7, 59, 45, 0.08);
}

.booking-scheduler-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem clamp(1.15rem, 3vw, 2.25rem);
  background: linear-gradient(135deg, #073b2d, #0f5944);
  border-bottom: 1px solid rgba(210, 160, 68, 0.65);
}

.booking-scheduler-kicker {
  margin: 0 0 0.42rem;
  color: #e5c274;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.booking-scheduler-header h2 {
  color: #fffdf8;
  font-size: 2rem;
  line-height: 1.05;
}

.booking-cal-status {
  max-width: 21rem;
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.45;
  text-align: right;
}

.booking-cal-status[data-state="error"] {
  color: #f2cf86;
}

.booking-cal-inline {
  width: 100%;
  min-height: 32rem;
  padding: clamp(1rem, 3vw, 2rem);
  overflow: hidden;
  background: #fffdf8;
}

.square-booking-flow {
  display: grid;
  grid-template-columns: minmax(16rem, 0.75fr) minmax(20rem, 1.25fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.booking-date-panel,
.booking-details-form,
.booking-direct-card,
.booking-success-card {
  padding: clamp(1.1rem, 2.5vw, 1.75rem);
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.booking-date-panel > label,
.booking-details-form > label {
  display: grid;
  gap: 0.42rem;
  color: var(--green-950);
  font-size: 0.82rem;
  font-weight: 800;
}

.booking-date-panel input,
.booking-details-form input,
.booking-details-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.72rem 0.8rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cbb994;
  border-radius: 7px;
  font: inherit;
}

.booking-details-form textarea {
  min-height: 6rem;
  resize: vertical;
}

.booking-date-panel input:focus-visible,
.booking-details-form input:focus-visible,
.booking-details-form textarea:focus-visible,
.booking-time-button:focus-visible,
.booking-primary-action:focus-visible,
.booking-secondary-action:focus-visible {
  outline: 3px solid rgba(210, 160, 68, 0.46);
  outline-offset: 2px;
  border-color: var(--green-800);
}

.booking-time-fieldset {
  margin: 1.35rem 0 0;
  padding: 0;
  border: 0;
}

.booking-time-fieldset legend {
  margin-bottom: 0.7rem;
  color: var(--green-950);
  font-size: 0.82rem;
  font-weight: 800;
}

.booking-time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.booking-time-button {
  min-height: 2.75rem;
  padding: 0.55rem;
  color: var(--green-800);
  background: #fff;
  border: 1px solid #cbb994;
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 800;
}

.booking-time-button:hover,
.booking-time-button.is-selected {
  color: #fff;
  background: var(--green-800);
  border-color: var(--green-800);
}

.booking-details-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.booking-details-form[hidden] {
  display: none;
}

.booking-details-form > label:nth-of-type(4),
.booking-details-form > label:nth-of-type(5),
.booking-confirm-row,
.booking-details-form > button,
.booking-form-message {
  grid-column: 1 / -1;
}

.booking-details-form .booking-confirm-row {
  display: flex;
  align-items: start;
  gap: 0.65rem;
  font-weight: 700;
  line-height: 1.45;
}

.booking-details-form .booking-confirm-row input {
  flex: 0 0 auto;
  width: 1.2rem;
  min-height: 1.2rem;
  margin-top: 0.15rem;
  padding: 0;
}

.booking-primary-action,
.booking-secondary-action {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.booking-primary-action {
  color: #fff;
  background: var(--green-800);
  border: 1px solid var(--green-800);
}

.booking-primary-action:hover {
  background: var(--green-950);
}

.booking-primary-action:disabled {
  cursor: wait;
  opacity: 0.64;
}

.booking-secondary-action {
  color: var(--green-800);
  background: transparent;
  border: 1px solid var(--green-800);
}

.booking-form-message {
  min-height: 1.4rem;
  margin: 0;
  color: #8b321f;
  font-size: 0.82rem;
  font-weight: 750;
}

.booking-direct-card,
.booking-success-card {
  width: min(100%, 42rem);
  margin: 2rem auto;
  text-align: center;
}

.booking-direct-card h3,
.booking-success-card h3 {
  margin-bottom: 0.75rem;
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.booking-direct-card p,
.booking-success-card p {
  color: #53665f;
  line-height: 1.6;
}

.booking-direct-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.2rem;
}

.booking-fallback {
  margin: 0;
  padding: 1rem 1.25rem 1.15rem;
  color: var(--muted);
  background: #fbf7ee;
  border-top: 1px solid rgba(228, 215, 197, 0.8);
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
}

.booking-fallback a {
  color: var(--green-800);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(191, 138, 36, 0.72);
  text-underline-offset: 0.2rem;
}

.booking-fallback a:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .booking-intro h1 {
    font-size: 3.25rem;
  }

  .booking-area-summary {
    width: min(100%, 30rem);
    transform: none;
  }

  .booking-scheduler-header {
    align-items: start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .booking-cal-status {
    max-width: 34rem;
    text-align: left;
  }
}

/* Compressed desktop and split-screen windows need a real reflow, not an overlay. */
@media (max-width: 1120px) {
  .booking-intro {
    background-position: 72% center;
  }

  .booking-intro-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .booking-intro-copy {
    width: min(100%, 42rem);
    padding: 1rem;
    background: rgba(251, 248, 240, 0.9);
    border-radius: 8px;
  }

  .booking-area-summary {
    width: min(100%, 30rem);
    transform: none;
  }
}

@media (max-width: 760px) {
  .booking-intro {
    padding: 1.8rem 1rem 1.65rem;
    background: #fbf8f0 url("assets/generated/hero-clean-kitchen.png") 67% center / auto 100% no-repeat;
  }

  .booking-intro-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .booking-intro h1 {
    max-width: 12ch;
    font-size: 2.85rem;
    line-height: 1;
  }

  .booking-intro-copy > p {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .booking-intro-copy > p:not(.booking-notice) {
    margin-inline: -0.45rem;
    padding: 0.5rem 0.45rem;
    background: rgba(251, 248, 240, 0.84);
    border-radius: 5px;
  }

  .booking-area-summary {
    width: min(100%, 30rem);
    padding: 0.85rem 1rem 0.75rem;
  }

  .booking-notice {
    margin-top: 0.1rem;
    padding: 0.68rem 0.8rem;
    font-size: 0.84rem;
  }

  .booking-scheduler-section {
    padding-top: 0.75rem;
    padding-inline: 0.55rem;
  }

  .booking-scheduler-shell {
    border-radius: 12px;
  }

  .booking-scheduler-header {
    padding: 1.2rem 1rem;
  }

  .booking-scheduler-header h2 {
    font-size: 1.65rem;
  }

  .booking-cal-inline {
    min-height: 34rem;
    padding: 0.8rem;
  }

  .square-booking-flow,
  .booking-details-form {
    grid-template-columns: 1fr;
  }

  .booking-details-form > label,
  .booking-details-form > button,
  .booking-form-message {
    grid-column: 1;
  }

  .booking-time-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .booking-intro h1 {
    font-size: 2.5rem;
  }

  .booking-area-summary strong {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .booking-area-summary button,
  .booking-fallback a {
    scroll-behavior: auto;
    transition: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.8), rgba(251, 247, 238, 0.95)),
    radial-gradient(circle at 0 30%, rgba(191, 138, 36, 0.08), transparent 24rem);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.reveal-on-scroll,
.js-reveal :is(
  .brand,
  .site-nav a,
  .header-quote-button,
  .mobile-menu-toggle,
  .mobile-menu-nav a,
  .mobile-menu-note,
  .hero-copy > *,
  .button-icon,
  .hero-proof-item,
  .hero-proof-icon,
  .about-image,
  .about-content > *,
  .about-point,
  .about-icon,
  .services-heading > *,
  .service-item,
  .service-icon,
  .gallery-heading > *,
  .gallery-grid img,
  .process-heading > *,
  .process-step,
  .process-icon,
  .service-areas-copy > *,
  .area-info-card,
  .quote-intro > *,
  .quote-contact-card,
  .quote-contact-icon,
  .request-flow-panel > *,
  .request-flow-step,
  .quote-submit,
  .quote-secondary,
  .request-flow-note,
  .footer-brand > *,
  .footer-nav a,
  .footer-serving > *,
  .footer-social-item,
  .footer-social-item img,
  .footer-bottom > *
) {
  opacity: 0;
  transform: translateY(1.35rem);
  transition:
    opacity 780ms ease,
    transform 780ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible,
.js-reveal :is(
  .brand,
  .site-nav a,
  .header-quote-button,
  .mobile-menu-toggle,
  .mobile-menu-nav a,
  .mobile-menu-note,
  .hero-copy > *,
  .button-icon,
  .hero-proof-item,
  .hero-proof-icon,
  .about-image,
  .about-content > *,
  .about-point,
  .about-icon,
  .services-heading > *,
  .service-item,
  .service-icon,
  .gallery-heading > *,
  .gallery-grid img,
  .process-heading > *,
  .process-step,
  .process-icon,
  .service-areas-copy > *,
  .area-info-card,
  .quote-intro > *,
  .quote-contact-card,
  .quote-contact-icon,
  .request-flow-panel > *,
  .request-flow-step,
  .quote-submit,
  .quote-secondary,
  .request-flow-note,
  .footer-brand > *,
  .footer-nav a,
  .footer-serving > *,
  .footer-social-item,
  .footer-social-item img,
  .footer-bottom > *
).is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(15rem, 22.5rem) minmax(31rem, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 3.25rem);
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(228, 215, 197, 0.7);
  backdrop-filter: blur(16px);
}

.brand img {
  width: min(100%, 22.5rem);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem clamp(0.65rem, 1.1vw, 1.05rem);
  justify-content: center;
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a,
.footer-nav a {
  position: relative;
  padding: 0.55rem 0;
}

.site-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.18rem;
  height: 1px;
  background: var(--gold-600);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.footer-nav a:hover::after {
  transform: scaleX(1);
}

.header-contacts {
  display: inline-flex;
  align-items: center;
  width: max-content;
  justify-self: end;
  gap: 0.72rem;
}

.header-quote-button {
  min-height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.62rem 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  border: 1px solid var(--gold-600);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(7, 59, 45, 0.13);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.header-quote-icon {
  width: 0.92rem;
  height: 0.92rem;
  flex: 0 0 auto;
}

.header-contact-pills {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.contact-pill {
  min-width: 11.35rem;
  min-height: 4.25rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  align-content: center;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  line-height: 1.1;
  border: 1px solid var(--gold-600);
  box-shadow: 0 10px 22px rgba(7, 59, 45, 0.11);
}

.pill-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
}

.pill-copy {
  display: grid;
  gap: 0.15rem;
}

.pill-copy span {
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
  text-transform: uppercase;
}

.pill-copy strong {
  font-size: 1.08rem;
  line-height: 1.05;
  white-space: nowrap;
}

.contact-pill-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
}

.header-quote-button:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 3px;
}

.location-control {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding-left: 0.78rem;
  color: var(--green-950);
  background: rgba(251, 247, 238, 0.82);
  border: 1px solid rgba(191, 138, 36, 0.48);
  border-radius: 999px;
  box-shadow: 0 5px 14px rgba(7, 59, 45, 0.06);
  font-size: 0.67rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.location-control span {
  color: var(--green-950);
}

.location-control:focus-within {
  background: var(--cream-100);
  border-color: var(--gold-600);
  box-shadow: 0 7px 18px rgba(7, 59, 45, 0.09);
}

.location-change-button {
  min-height: 2.75rem;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.62rem;
  padding: 0.5rem 0.76rem 0.5rem 0.68rem;
  color: var(--green-950);
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(191, 138, 36, 0.4);
  border-radius: 0 999px 999px 0;
  box-shadow: none;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.location-change-button:hover,
.location-change-button:focus-visible {
  color: var(--green-800);
  background: rgba(210, 160, 68, 0.1);
}

.location-change-button:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: -3px;
}

.location-modal[hidden] {
  display: none;
}

.location-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.location-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 32, 25, 0.48);
  -webkit-backdrop-filter: blur(12px) saturate(0.85);
  backdrop-filter: blur(12px) saturate(0.85);
  animation: location-backdrop-in 200ms ease-out both;
}

.location-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 34rem);
  max-height: min(90dvh, 40rem);
  overflow-y: auto;
  display: grid;
  justify-items: center;
  gap: 0;
  padding: 1.8rem 2.35rem 2.15rem;
  color: var(--ink);
  background:
    linear-gradient(155deg, #fffdf8 0%, #fbf8f0 58%, #f7f0e5 100%);
  border: 1px solid rgba(191, 138, 36, 0.5);
  border-radius: 22px;
  box-shadow:
    0 34px 80px rgba(3, 28, 21, 0.28),
    0 12px 28px rgba(3, 28, 21, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  text-align: center;
  animation: location-dialog-in 220ms ease-out both;
}

.location-dialog::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 2.5rem;
  right: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 160, 68, 0.38), transparent);
  pointer-events: none;
}

.location-dialog-logo {
  width: min(100%, 12.5rem);
  height: auto;
  margin-bottom: 1.25rem;
}

.location-dialog h2 {
  max-width: 18ch;
  margin-bottom: 0.82rem;
  color: var(--green-950);
  font-size: 2.875rem;
  line-height: 1.01;
}

.location-dialog p {
  max-width: 24rem;
  margin: 0 0 1.45rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.55;
}

.location-choice-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.78rem;
}

.location-choice {
  min-height: 5rem;
  appearance: none;
  display: grid;
  place-items: center;
  padding: 0.9rem 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  border: 1px solid rgba(191, 138, 36, 0.72);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(7, 59, 45, 0.14);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.82rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.location-choice:nth-child(2) {
  color: var(--green-950);
  background: linear-gradient(145deg, #fffdf8, #f5ecde);
  box-shadow: 0 10px 22px rgba(7, 59, 45, 0.1);
}

.location-choice:hover,
.location-choice:focus-visible {
  border-color: var(--gold-500);
  box-shadow: 0 17px 32px rgba(7, 59, 45, 0.2);
  transform: translateY(-2px);
}

.location-choice:focus-visible {
  outline: 3px solid rgba(210, 160, 68, 0.72);
  outline-offset: 4px;
}

body.location-modal-open {
  overflow: hidden;
}

@keyframes location-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes location-dialog-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .location-modal-backdrop,
  .location-dialog,
  .location-change-button,
  .location-choice {
    animation: none;
    transition: none;
  }

  .location-choice:hover,
  .location-choice:focus-visible {
    transform: none;
  }
}

@media (min-width: 1121px) {
  .site-header .header-contacts .header-quote-button {
    min-width: 17.5rem;
    min-height: 3.25rem;
    padding: 0.88rem 1.4rem;
    gap: 0.72rem;
    font-size: 0.88rem;
  }

  .site-header .header-contacts .header-quote-icon {
    width: 1.05rem;
    height: 1.05rem;
  }
}

.section-band {
  padding-inline: clamp(1rem, 4vw, 3.25rem);
}

.hero {
  display: flex;
  align-items: center;
  min-height: clamp(42rem, 78vh, 56rem);
  padding-top: clamp(3rem, 7vw, 7rem);
  padding-bottom: clamp(3rem, 7vw, 7rem);
  background-image: url("assets/generated/hero-co-owner-florist-brand-v3.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(43rem, 48vw);
  min-width: 0;
  padding-block: clamp(2rem, 5vw, 5rem);
}

.eyebrow {
  margin: 0 0 1.35rem;
  color: var(--gold-600);
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  font-size: 6.85rem;
  line-height: 0.98;
}

.hero h1 {
  color: var(--green-950);
  font-family: "Bodoni 72", "Bodoni MT", Didot, "Times New Roman", var(--font-display);
  font-weight: 400;
  -webkit-text-fill-color: var(--green-950);
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
}

.hero .eyebrow {
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 0.85px var(--gold-600);
  paint-order: stroke fill;
  text-shadow:
    1px 0 0 var(--gold-600),
    -1px 0 0 var(--gold-600),
    0 1px 0 var(--gold-600),
    0 -1px 0 var(--gold-600);
}

h1::after {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  margin-top: 1.6rem;
  background: var(--gold-600);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 3.5rem;
  padding: 0.95rem 1.55rem;
  margin-top: 2rem;
  border-radius: 7px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  border: 1px solid transparent;
}

.button-icon {
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 0.75rem;
  flex: 0 0 auto;
}

.button-primary {
  color: #fff;
  background: var(--green-950);
  box-shadow: 0 14px 28px rgba(7, 59, 45, 0.16);
}

.hero-proof {
  padding-block: 0;
  background: rgba(255, 253, 248, 0.96);
  border-top: 1px solid rgba(228, 215, 197, 0.75);
  border-bottom: 1px solid rgba(228, 215, 197, 0.85);
  box-shadow: 0 12px 28px rgba(7, 59, 45, 0.06);
}

.hero-proof-grid {
  max-width: 86rem;
  min-height: 8.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  margin: 0 auto;
}

.hero-proof-item {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.7rem;
  min-height: 8.5rem;
  padding: 1.25rem clamp(0.9rem, 2vw, 1.6rem);
  text-align: center;
  color: var(--green-950);
}

.hero-proof-item + .hero-proof-item {
  border-left: 1px solid rgba(210, 160, 68, 0.32);
}

.hero-proof-icon {
  width: 2.8rem;
  height: 2.8rem;
  color: var(--green-800);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-proof-item strong {
  max-width: 12rem;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.16;
  text-wrap: balance;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-bottom: 1.85rem;
  text-align: center;
}

.section-heading span {
  display: block;
  width: clamp(2rem, 8vw, 5rem);
  height: 2px;
  background: var(--gold-600);
}

.section-heading h2 {
  max-width: 15ch;
  font-size: 3.35rem;
  line-height: 0.98;
}

.section-heading.compact {
  margin-top: 0.5rem;
}

.about-us,
.services,
.gallery {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 3.2rem);
  max-width: 88rem;
  margin: 0 auto;
}

.about-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 40px rgba(7, 59, 45, 0.1);
}

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

.about-content {
  max-width: 46rem;
}

.about-kicker {
  margin: 0 0 0.45rem;
  color: var(--gold-600);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.about-content h2 {
  max-width: 17ch;
  font-size: 3.05rem;
  line-height: 1;
}

.about-content > p {
  max-width: 44rem;
  margin-top: 1rem;
  color: var(--ink-muted);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.62;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem) clamp(1.2rem, 3vw, 2.25rem);
  margin-top: clamp(1.35rem, 3vw, 2rem);
}

.about-point {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.85rem;
}

.about-icon {
  display: grid;
  place-items: center;
  width: 3.45rem;
  aspect-ratio: 1;
  color: #fff;
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(7, 59, 45, 0.12);
}

.about-icon svg {
  width: 1.62rem;
  height: 1.62rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.about-point h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
}

.about-point p {
  margin-top: 0.35rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 72rem;
  margin: 0 auto;
}

.location-card {
  min-height: 13rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.8rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.location-card h3 {
  font-size: 3.1rem;
  line-height: 0.95;
}

.location-card-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
}

.location-card-primary h3,
.location-card-primary .location-phone {
  color: #fff;
}

.location-card-light {
  grid-template-columns: 1fr auto;
  background: rgba(255, 253, 248, 0.92);
}

.state-mark,
.mini-state {
  display: grid;
  place-items: center;
  width: 5.7rem;
  aspect-ratio: 1;
  color: var(--green-950);
  background: linear-gradient(135deg, var(--gold-500), #e5bd64);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.location-label,
.service-only {
  margin: 0.72rem 0 0;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.05;
}

.location-label {
  color: inherit;
  text-transform: uppercase;
}

.location-phone {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.95rem;
  font-weight: 900;
  line-height: 1;
}

.service-only {
  color: var(--gold-600);
  text-transform: uppercase;
}

.services-heading {
  display: grid;
  gap: 0.35rem;
  margin-bottom: clamp(1.4rem, 3vw, 2.1rem);
  text-align: center;
}

.services-heading p {
  margin: 0;
  color: var(--gold-600);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.services-heading h2 {
  max-width: 32ch;
  margin: 0 auto;
  font-size: 3.1rem;
  line-height: 1;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 88rem;
  margin: 0 auto;
}

.service-item {
  min-height: 7.3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(0.8rem, 1.5vw, 1.15rem);
  padding: clamp(1rem, 2vw, 1.25rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 14px 30px rgba(7, 59, 45, 0.08);
}

.service-icon {
  display: block;
  width: 3.45rem;
  height: 3.45rem;
  object-fit: contain;
  flex: none;
}

.service-item h3 {
  font-family: var(--font-body);
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.15;
}

.service-item p {
  max-width: 21rem;
  margin-top: 0.42rem;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.4;
}

.how-it-works {
  margin-top: clamp(2rem, 5vw, 4.5rem);
  padding-top: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3.4rem);
  background: rgba(255, 253, 248, 0.82);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-heading {
  display: grid;
  grid-template-columns: 4rem auto 4rem;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.35rem);
  text-align: center;
}

.process-heading span {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.process-heading i {
  color: var(--gold-500);
  font-size: 1.28rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 4px 12px rgba(210, 160, 68, 0.22);
}

.process-heading h2 {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 3rem;
  line-height: 1;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.1rem, 3vw, 2rem);
  max-width: 76rem;
  margin: 0 auto;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 3.05rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(7, 59, 45, 0.16), transparent);
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 0.8rem;
}

.how-it-works .process-icon {
  display: block;
  inline-size: 6.15rem !important;
  block-size: 6.15rem !important;
  max-inline-size: 6.15rem !important;
  max-block-size: 6.15rem !important;
  object-fit: contain;
  flex: 0 0 auto;
}

.process-copy {
  width: min(100%, 16rem);
}

.process-label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.55rem;
}

.process-label span {
  display: grid;
  place-items: center;
  width: 1.95rem;
  aspect-ratio: 1;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(193, 140, 47, 0.22);
}

.process-label h3 {
  font-family: var(--font-body);
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.15;
}

.process-copy p {
  margin: 1rem 0 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.55;
}

.gallery-heading h2 {
  max-width: none;
  font-size: 1.85rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.gallery {
  scroll-margin-top: clamp(5.5rem, 8vw, 8.25rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-grid img {
  width: 100%;
  height: clamp(11rem, 21vw, 17rem);
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid var(--line);
}

.service-areas-showcase {
  padding: 0;
}

.service-areas-art {
  position: relative;
  width: 100%;
  min-height: clamp(18rem, 29vw, 24rem);
  max-width: none;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf8 url("assets/generated/service-areas-map-background.png") center / cover no-repeat;
}

.service-areas-copy {
  position: absolute;
  left: clamp(1.6rem, 4vw, 3.6rem);
  top: 50%;
  display: grid;
  gap: 0.75rem;
  width: min(25rem, 31vw);
  transform: translateY(-50%);
}

.service-areas-copy p {
  margin: 0;
  color: var(--gold-600);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.service-areas-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 3vw, 3rem);
  line-height: 1.05;
}

.service-areas-copy strong,
.service-areas-copy span {
  display: block;
  max-width: 24rem;
  color: var(--ink);
  font-size: clamp(0.94rem, 1.2vw, 1.12rem);
  font-weight: 800;
  line-height: 1.45;
}

.service-areas-copy span {
  color: var(--ink-muted);
  font-weight: 700;
}

.area-info-card {
  position: absolute;
  top: 62%;
  width: clamp(10.5rem, 13vw, 13rem);
  min-height: 8.8rem;
  display: grid;
  align-content: start;
  gap: 0.65rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.93);
  box-shadow: 0 16px 32px rgba(7, 59, 45, 0.1);
  transform: none;
}

.area-info-florida {
  left: 26%;
}

.area-info-maryland {
  left: 55%;
}

.area-info-card h3 {
  font-family: var(--font-body);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.area-info-card h3::after {
  content: "";
  display: block;
  width: 4.8rem;
  height: 2px;
  margin-top: 0.7rem;
  background: var(--gold-600);
}

.area-info-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 1500px) {
  .area-info-florida {
    left: 29%;
  }

  .area-info-maryland {
    left: 58%;
  }
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding-block: clamp(2rem, 4vw, 3.25rem);
}

.quote-panel,
.request-flow-panel {
  min-height: clamp(21rem, 28vw, 26rem);
}

.quote-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  padding: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  background: #0a3b2f url("assets/generated/quote-panel-plants.png") left center / cover no-repeat;
  border: 1px solid rgba(228, 215, 197, 0.42);
  border-radius: 8px 0 0 8px;
  box-shadow: var(--shadow);
}

.quote-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(4, 35, 27, 0.2), rgba(7, 59, 45, 0.05) 48%, rgba(4, 35, 27, 0.12));
}

.quote-panel::after {
  content: none;
}

.quote-intro,
.quote-contact-grid {
  position: relative;
  z-index: 1;
}

.quote-intro {
  max-width: 31rem;
  margin: 0 auto;
}

.quote-intro h2 {
  margin-bottom: 0.65rem;
  color: #fff;
  font-size: clamp(2.1rem, 3.1vw, 3.25rem);
  line-height: 1.06;
  text-shadow: 0 2px 0 rgba(7, 59, 45, 0.42);
}

.quote-intro p {
  max-width: 24rem;
  margin: 0;
  color: rgba(255, 253, 248, 0.94);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  font-weight: 800;
  line-height: 1.45;
}

.quote-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.quote-contact-card {
  min-width: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.24rem;
  padding: 0.9rem 0.75rem;
  color: var(--ink);
  text-align: center;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(228, 215, 197, 0.92);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(7, 59, 45, 0.16);
}

.quote-contact-card[href] {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quote-contact-card[href]:hover,
.quote-contact-card[href]:focus-visible {
  transform: translateY(-0.08rem);
  border-color: rgba(210, 160, 68, 0.86);
  box-shadow: 0 18px 32px rgba(7, 59, 45, 0.2);
}

.quote-contact-card strong {
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.quote-contact-value {
  max-width: 100%;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.quote-contact-value {
  font-size: 0.72rem;
}

.quote-contact-icon {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
}

.request-flow-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: center;
  gap: 0.78rem;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(251, 247, 238, 0.88));
  border: 1px solid rgba(228, 215, 197, 0.64);
  border-left: 0;
  border-radius: 0 8px 8px 0;
  box-shadow: var(--shadow);
}

.request-flow-panel::before {
  content: "\2726";
  position: absolute;
  right: 1.1rem;
  top: 1.2rem;
  z-index: 0;
  color: rgba(191, 138, 36, 0.42);
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 1;
}

.request-flow-panel::after {
  content: none;
}

.request-flow-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.request-flow-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 0.88rem 0.95rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(228, 215, 197, 0.82);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(7, 59, 45, 0.06);
}

.request-flow-step > span {
  display: grid;
  place-items: center;
  width: 2rem;
  aspect-ratio: 1;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(193, 140, 47, 0.22);
}

.request-flow-step h3 {
  margin: 0 0 0.18rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.18;
}

.request-flow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
  line-height: 1.42;
}

.request-flow-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
}

.quote-submit:focus-visible,
.quote-secondary:focus-visible,
.quote-contact-card:focus-visible {
  outline: 3px solid rgba(210, 160, 68, 0.62);
  outline-offset: 3px;
}

.quote-submit {
  position: relative;
  z-index: 1;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  min-height: 3.5rem;
  padding: 0.95rem 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  border: 1px solid rgba(210, 160, 68, 0.78);
  border-radius: 8px;
  box-shadow: 0 14px 26px rgba(7, 59, 45, 0.2);
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quote-submit:hover,
.quote-submit:focus-visible {
  transform: translateY(-0.08rem);
  border-color: rgba(210, 160, 68, 0.96);
  box-shadow: 0 18px 32px rgba(7, 59, 45, 0.24);
}

.quote-submit span {
  color: var(--gold-500);
  font-size: 1.05rem;
  line-height: 1;
  text-shadow: 0 4px 12px rgba(210, 160, 68, 0.3);
}

.quote-secondary {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.82rem 1rem;
  color: var(--green-950);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(210, 160, 68, 0.76);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(7, 59, 45, 0.08);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quote-secondary:hover,
.quote-secondary:focus-visible {
  transform: translateY(-0.08rem);
  border-color: rgba(210, 160, 68, 0.96);
  box-shadow: 0 16px 28px rgba(7, 59, 45, 0.14);
}

.request-flow-note {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
  line-height: 1.35;
  color: rgba(23, 56, 47, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(2.6rem, 5vw, 4.5rem) clamp(1rem, 4vw, 3.25rem) clamp(1.4rem, 3vw, 2rem);
  color: #fff;
  background: var(--green-950) url("assets/generated/footer-botanical-background.png") center / cover no-repeat;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(4, 35, 27, 0.18), rgba(7, 59, 45, 0.04) 48%, rgba(4, 35, 27, 0.18));
}

.footer-main,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(17rem, 1.05fr) minmax(22rem, 0.95fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.footer-brand img {
  width: min(100%, 21rem);
  filter: brightness(0) invert(1) sepia(14%) saturate(384%) hue-rotate(353deg) brightness(105%);
}

.mobile-menu-toggle,
.mobile-menu-drawer {
  display: none;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 1.45rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  transition: transform 160ms ease, top 160ms ease;
}

.menu-toggle-lines::before {
  top: -0.45rem;
}

.menu-toggle-lines::after {
  top: 0.45rem;
}

.footer-brand p {
  max-width: 15rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 253, 248, 0.92);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  line-height: 1.5;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(8rem, 1fr));
  column-gap: clamp(1.5rem, 4vw, 4rem);
  row-gap: 0.85rem;
  align-content: start;
  justify-content: start;
  padding-top: 0.4rem;
  color: rgba(255, 253, 248, 0.94);
  font-size: clamp(0.95rem, 1.35vw, 1.2rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: none;
}

.footer-serving {
  display: grid;
  justify-items: start;
  gap: 1.35rem;
  padding-top: 0.25rem;
}

.footer-serving h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 1.65vw, 1.55rem);
  font-weight: 800;
  line-height: 1.15;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social-item {
  display: block;
  width: clamp(3rem, 4vw, 3.8rem);
  height: clamp(3rem, 4vw, 3.8rem);
  border-radius: 999px;
  transition: transform 180ms ease, filter 180ms ease;
}

.footer-social-item:hover,
.footer-social-item:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 10px rgba(210, 160, 68, 0.38));
}

.footer-social-item:focus-visible {
  outline: 3px solid rgba(210, 160, 68, 0.72);
  outline-offset: 4px;
}

.footer-social-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom {
  margin-top: clamp(2.25rem, 5vw, 4rem);
  padding-top: 1.1rem;
  text-align: center;
  border-top: 2px solid rgba(210, 160, 68, 0.78);
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 253, 248, 0.92);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  font-weight: 700;
  line-height: 1.35;
}

.footer-copyright span {
  display: inline-block;
  margin-right: 0.45rem;
  color: var(--gold-500);
  font-family: var(--font-display);
  font-size: 1.25em;
  line-height: 0;
}

.footer-note {
  margin: 0.4rem 0 0;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-credit {
  margin: 0.85rem 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 500;
}

.footer-credit a {
  position: relative;
  display: inline-block;
  color: var(--gold-500);
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.footer-credit a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 0 rgba(210, 160, 68, 0);
  transition: transform 180ms ease, bottom 180ms ease, box-shadow 180ms ease;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--gold-500);
  transform: translateY(-0.12rem);
  text-shadow: 0 0 14px rgba(210, 160, 68, 0.52);
}

.footer-credit a:hover::after,
.footer-credit a:focus-visible::after {
  bottom: -0.2rem;
  transform: scaleX(1);
  box-shadow: 0 0 12px rgba(210, 160, 68, 0.7);
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .brand {
    justify-self: center;
  }

  .site-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-contacts {
    justify-self: stretch;
    justify-content: center;
    justify-items: center;
    width: 100%;
  }

  .header-quote-button {
    width: min(100%, 23.35rem);
  }

  .header-contact-pills {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    min-height: clamp(40rem, 76vh, 50rem);
    background-position: 43% center;
  }

  .hero-copy {
    width: min(38rem, 58vw);
  }

  h1 {
    font-size: 5.4rem;
  }

  .section-heading h2 {
    font-size: 2.85rem;
  }

  .services-heading h2 {
    font-size: 2.65rem;
  }

  .about-content h2 {
    font-size: 2.65rem;
  }

  .about-content > p {
    font-size: 0.96rem;
  }

  .location-card h3 {
    font-size: 2.7rem;
  }

  .service-areas-copy h2 {
    font-size: 2.45rem;
  }

  .area-info-florida {
    left: 31%;
  }

  .area-info-maryland {
    left: 63%;
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-panel,
  .request-flow-panel {
    min-height: auto;
  }

  .quote-panel {
    border-radius: 8px 8px 0 0;
  }

  .request-flow-panel {
    border-top: 0;
    border-left: 1px solid rgba(228, 215, 197, 0.64);
    border-radius: 0 0 8px 8px;
  }

  .quote-intro {
    margin: 0;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1120px) {
  .service-areas-art {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: clamp(1.25rem, 4vw, 2rem);
    background:
      linear-gradient(90deg, rgba(255, 253, 248, 0.72), rgba(255, 253, 248, 0.38)),
      url("assets/generated/service-areas-map-background.png") center / cover no-repeat;
  }

  .service-areas-copy,
  .area-info-card {
    position: relative;
    left: auto;
    top: auto;
    width: min(100%, 28rem);
    transform: none;
  }

  .service-areas-copy {
    grid-column: 1 / -1;
    gap: 0.65rem;
    width: min(100%, 48rem);
  }

  .area-info-florida {
    grid-column: 1;
    justify-self: start;
  }

  .area-info-maryland {
    grid-column: 2;
    justify-self: end;
  }

  .service-areas-copy h2 {
    max-width: 14ch;
    font-size: 2.35rem;
  }

  .area-info-card {
    min-height: auto;
  }

  .area-info-card h3 {
    font-size: 1.05rem;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
    padding-block: 0.75rem;
  }

  .brand {
    justify-self: start;
  }

  .site-header.menu-open .brand {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
    width: min(70vw, 13.75rem);
    text-align: center;
  }

  .brand img {
    width: min(100%, 13.75rem);
  }

  .site-nav,
  .header-contacts {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    grid-column: 2;
    grid-row: 1;
    z-index: 2;
    width: 3rem;
    height: 3rem;
    color: var(--green-950);
    background: rgba(255, 253, 248, 0.88);
    border: 1px solid rgba(191, 138, 36, 0.75);
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(7, 59, 45, 0.09);
    cursor: pointer;
  }

  .site-header.menu-open .menu-toggle-lines {
    background: transparent;
  }

  .site-header.menu-open .menu-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
  }

  .site-header.menu-open .menu-toggle-lines::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .mobile-menu-drawer:not([hidden]) {
    grid-column: 1 / -1;
    display: grid;
    justify-self: center;
    justify-items: center;
    gap: 1.05rem;
    width: min(100%, 32rem);
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
    padding: 0.25rem 0 0.15rem;
    text-align: center;
    overscroll-behavior: contain;
  }

  .mobile-menu-group {
    display: grid;
    gap: 0.5rem;
  }

  .mobile-menu-note {
    margin: 0;
    font-size: 0.66rem;
    font-weight: 850;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-menu-note {
    color: var(--muted);
    text-align: center;
  }

  .mobile-menu-nav {
    display: grid;
    justify-items: center;
    gap: 0.58rem;
    width: 100%;
    color: var(--green-950);
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .mobile-menu-nav a {
    padding: 0.16rem 0.15rem;
    text-align: center;
  }

  .mobile-menu-contacts {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.55rem;
    width: 100%;
  }

  .location-control-mobile {
    width: auto;
    text-align: center;
  }

  .mobile-menu-contacts .location-change-button {
    min-height: 2.75rem;
    width: auto;
  }

  .mobile-menu-contacts .header-quote-button {
    width: min(100%, 26rem);
    min-height: 3rem;
    padding: 0.62rem 0.75rem;
    font-size: 0.72rem;
  }

  .mobile-menu-contacts .contact-pill {
    min-width: 0;
    min-height: 3.15rem;
    width: 100%;
    gap: 0.55rem;
    padding: 0.58rem 0.75rem;
    box-shadow: 0 8px 18px rgba(7, 59, 45, 0.08);
  }

  .mobile-menu-contacts .pill-icon {
    width: 1.05rem;
    height: 1.05rem;
  }

  .mobile-menu-contacts .pill-copy span {
    font-size: 0.64rem;
  }

  .mobile-menu-contacts .pill-copy strong {
    font-size: 0.98rem;
  }

  .mobile-menu-toggle:focus-visible,
  .mobile-menu-nav a:focus-visible,
  .mobile-menu-contacts .location-change-button:focus-visible,
  .mobile-menu-contacts .header-quote-button:focus-visible,
  .mobile-menu-contacts .contact-pill:focus-visible {
    outline: 2px solid var(--gold-600);
    outline-offset: 3px;
  }

}

@media (max-width: 760px) {

  h1 {
    max-width: 12ch;
    font-size: 4.25rem;
  }

  .hero {
    min-height: 43rem;
    background-image: url("assets/generated/hero-co-owner-florist-brand-v3.png");
    background-position: 64% top;
  }

  .hero-copy {
    width: min(24rem, 90vw);
    padding-block: clamp(3rem, 12vw, 5rem);
  }

  .service-areas-art {
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.58), rgba(255, 253, 248, 0.34) 42%, rgba(255, 253, 248, 0.78)),
      url("assets/generated/service-areas-map-background-mobile.png") center top / cover no-repeat;
  }

  .service-areas-copy,
  .area-info-florida,
  .area-info-maryland {
    grid-column: 1;
    justify-self: stretch;
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-content {
    max-width: none;
  }

  .about-content h2 {
    max-width: 18ch;
    font-size: 2.35rem;
  }

  .about-image img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .location-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 24rem;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: 6.7rem;
  }

  .hero-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof-item {
    min-height: 8rem;
  }

  .hero-proof-item + .hero-proof-item {
    border-left: 0;
  }

  .hero-proof-item:nth-child(2n) {
    border-left: 1px solid rgba(210, 160, 68, 0.32);
  }

  .hero-proof-item:nth-child(n + 3) {
    border-top: 1px solid rgba(210, 160, 68, 0.32);
  }

  .location-card,
  .location-card-light {
    grid-template-columns: 1fr;
  }

  .location-card-light .state-mark {
    order: -1;
  }

  .process-grid {
    grid-template-columns: 1fr;
    max-width: 23rem;
    gap: 1.45rem;
  }

  .process-grid::before {
    display: none;
  }

  .process-step {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: start;
    gap: 0.7rem;
    text-align: center;
  }

  .how-it-works .process-icon {
    inline-size: 5.3rem !important;
    block-size: 5.3rem !important;
    max-inline-size: 5.3rem !important;
    max-block-size: 5.3rem !important;
  }

  .process-copy {
    display: grid;
    justify-items: center;
    width: min(100%, 18rem);
  }

  .process-label {
    justify-content: center;
    width: 100%;
  }

  .process-label h3 {
    max-width: 12rem;
    text-align: left;
  }

  .process-copy p {
    max-width: 17rem;
    margin-inline: auto;
    text-align: center;
  }

  .gallery-grid img {
    height: 12rem;
  }

  .section-heading h2 {
    font-size: 2.25rem;
  }

  .location-card h3 {
    font-size: 2.4rem;
  }

  .location-phone {
    font-size: 1.55rem;
  }

  .quote-section {
    padding-block: 1.5rem;
  }

  .quote-panel,
  .request-flow-panel {
    padding: 1.35rem;
  }

  .quote-contact-grid {
    grid-template-columns: 1fr;
  }

  .quote-contact-card {
    grid-template-columns: 3rem minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    column-gap: 0.75rem;
    row-gap: 0.08rem;
    min-height: 5.6rem;
    padding: 0.78rem 0.9rem;
    text-align: left;
  }

  .quote-contact-icon {
    grid-row: 1 / span 3;
    width: 2.65rem;
    height: 2.65rem;
  }

  .quote-intro h2 {
    font-size: 2.3rem;
  }

  .location-modal {
    padding: 0.75rem;
  }

  .location-dialog {
    max-height: calc(100dvh - 1.5rem);
    padding: 1.5rem 1.35rem 1.6rem;
    border-radius: 20px;
  }

  .location-dialog::before {
    left: 1.75rem;
    right: 1.75rem;
  }

  .location-dialog-logo {
    width: min(100%, 11.25rem);
    margin-bottom: 1.05rem;
  }

  .location-dialog h2 {
    max-width: 16ch;
    margin-bottom: 0.72rem;
    font-size: 2.15rem;
    line-height: 1.03;
  }

  .location-dialog p {
    max-width: 21rem;
    margin-bottom: 1.2rem;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .location-choice-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .location-choice {
    min-height: 4.25rem;
    border-radius: 12px;
    font-size: 1.65rem;
  }

}

@media (max-width: 420px) {
  .section-band,
  .site-header,
  .site-footer {
    padding-inline: 0.85rem;
  }

  .section-band.service-areas-showcase {
    padding-inline: 0;
  }

  .location-dialog {
    padding-inline: 1.1rem;
  }

  .location-dialog h2 {
    font-size: 2.05rem;
  }

  .contact-pill strong,
  .location-phone {
    font-size: 1rem;
  }

  .section-heading {
    gap: 0.65rem;
  }

  .section-heading h2 {
    font-size: 1.8rem;
  }

  .process-heading {
    grid-template-columns: 3rem auto 3rem;
    gap: 0.45rem;
  }

  .process-heading h2 {
    font-size: 2.15rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    max-width: 21rem;
    gap: 1.25rem;
  }

  .how-it-works .process-icon {
    inline-size: 4.8rem !important;
    block-size: 4.8rem !important;
    max-inline-size: 4.8rem !important;
    max-block-size: 4.8rem !important;
  }

  .process-label h3 {
    font-size: 0.95rem;
  }

  .process-copy p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
  }

  .services-heading h2 {
    font-size: 2rem;
  }

  .services-heading p {
    font-size: 0.74rem;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content > p {
    font-size: 0.94rem;
  }

  .about-icon {
    width: 3rem;
  }

  .about-point {
    gap: 0.72rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero .eyebrow {
    font-size: 0.78rem;
  }

  .service-item {
    gap: 0.75rem;
    padding: 0.95rem;
  }

  .service-icon {
    width: 3rem;
    height: 3rem;
  }

  .service-item h3 {
    font-size: 0.94rem;
  }

  .service-item p {
    font-size: 0.76rem;
  }

  .service-areas-showcase {
    padding-block: 1.5rem;
  }

  .service-areas-copy h2 {
    font-size: 2rem;
  }

  .service-areas-copy strong,
  .service-areas-copy span,
  .area-info-card p {
    font-size: 0.9rem;
  }

  .quote-panel,
  .request-flow-panel {
    padding: 1rem;
  }

  .quote-intro h2 {
    font-size: 1.95rem;
  }

  .quote-intro p {
    font-size: 0.95rem;
  }

  .request-flow-step {
    padding: 0.78rem 0.82rem;
  }

  .request-flow-step p,
  .request-flow-note {
    font-size: 0.76rem;
  }

  .request-flow-panel::before {
    display: none;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof-item,
  .hero-proof-item:nth-child(2n),
  .hero-proof-item:nth-child(n + 3) {
    min-height: 7.25rem;
    border-left: 0;
    border-top: 1px solid rgba(210, 160, 68, 0.32);
  }

  .hero-proof-item:first-child {
    border-top: 0;
  }
}
