@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600 700;
  font-display: optional;
  src: url("/fonts/cormorant-garamond-latin-ext-v21.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600 700;
  font-display: optional;
  src: url("/fonts/cormorant-garamond-latin-v21.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url("/fonts/work-sans-latin-ext-v24.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url("/fonts/work-sans-latin-v24.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --lc-ink: #101b2b;
  --lc-ink-soft: #2d3b50;
  --lc-paper: #f7f3ea;
  --lc-paper-deep: #eee6d9;
  --lc-white: #ffffff;
  --lc-blue: #4769ff;
  --lc-blue-dark: #2e49c5;
  --lc-copper: #b67b4d;
  --lc-copper-soft: #d8b38f;
  --lc-green: #1f7850;
  --lc-line: #d9d1c5;
  --lc-muted: #657083;
  --lc-shadow: 0 22px 60px rgba(20, 30, 45, 0.12);
  --lc-container: min(1160px, calc(100vw - 40px));
  --lc-display: "Cormorant Garamond", Georgia, serif;
  --lc-body: "Work Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--lc-ink);
  background: var(--lc-paper);
  font-family: var(--lc-body);
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 5000;
  padding: 9px 13px;
  border-radius: 8px;
  color: #fff;
  background: var(--lc-ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(16, 27, 43, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(28, 38, 53, 0.05);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: var(--lc-container);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-link img {
  width: 168px;
  height: auto;
  display: block;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  color: var(--lc-ink-soft);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--lc-copper);
  transition: right 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after {
  right: 0;
}

.language-nav {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--lc-line);
  border-radius: 999px;
  background: var(--lc-paper);
}

.language-nav a {
  min-width: 34px;
  padding: 6px 8px;
  border-radius: 999px;
  text-align: center;
  font-size: 0.76rem;
}

.language-nav a[aria-current="page"] {
  color: #fff;
  background: var(--lc-ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--lc-line);
  border-radius: 50%;
  color: var(--lc-ink);
  background: #fff;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.home-main {
  min-height: 60vh;
}

.home-hero {
  width: var(--lc-container);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  border: 1px solid rgba(182, 123, 77, 0.26);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 0%, rgba(71, 105, 255, 0.08), transparent 31%),
    linear-gradient(135deg, #fcfaf5 0%, #f2e9dc 100%);
  box-shadow: var(--lc-shadow);
  overflow: hidden;
}

.hero-copy {
  padding: clamp(32px, 5vw, 68px);
  align-self: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: #80502e;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--lc-copper);
}

.hero-copy h1 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--lc-display);
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.93;
}

.hero-copy h1 em {
  color: var(--lc-blue-dark);
  font-style: normal;
}

.hero-lead {
  max-width: 52ch;
  margin: 22px 0 0;
  color: var(--lc-ink-soft);
  font-size: 1rem;
}

.branch-picker {
  margin: 26px 0 0;
  padding: 0;
  border: 0;
}

.branch-picker legend {
  margin-bottom: 9px;
  color: var(--lc-muted);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.branch-choice {
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid var(--lc-line);
  border-radius: 14px;
  color: var(--lc-ink);
  background: rgba(255, 255, 255, 0.8);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.branch-choice:hover {
  border-color: var(--lc-copper);
  transform: translateY(-1px);
}

.branch-choice[aria-pressed="true"] {
  border-color: var(--lc-blue);
  background: #fff;
  box-shadow: 0 0 0 2px rgba(71, 105, 255, 0.12);
}

.branch-choice strong,
.branch-choice span {
  display: block;
}

.branch-choice strong {
  font-family: var(--lc-display);
  font-size: 1.25rem;
  line-height: 1;
}

.branch-choice span {
  margin-top: 4px;
  color: var(--lc-muted);
  font-size: 0.72rem;
  line-height: 1.3;
}

.hero-offer {
  margin-top: 14px;
  padding: 11px 13px;
  border-left: 3px solid var(--lc-copper);
  color: var(--lc-ink-soft);
  background: rgba(255, 255, 255, 0.54);
}

.hero-offer strong,
.hero-offer span {
  display: block;
}

.hero-offer strong {
  font-size: 0.88rem;
}

.hero-offer span {
  margin-top: 2px;
  color: var(--lc-muted);
  font-size: 0.74rem;
}

.hero-primary {
  width: fit-content;
  min-height: 50px;
  margin-top: 14px;
}

.selected-branch-note {
  min-height: 1.3em;
  margin: 9px 0 0;
  color: var(--lc-muted);
  font-size: 0.75rem;
}

.hero-media {
  min-height: 680px;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #ded9d1;
}

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

.hero-media figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 230px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 12px;
  color: #fff;
  background: rgba(16, 27, 43, 0.8);
  box-shadow: 0 12px 28px rgba(8, 15, 25, 0.2);
  font-size: 0.78rem;
  backdrop-filter: blur(8px);
}

.trust-rail {
  width: var(--lc-container);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--lc-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
}

.quick-receipt-section {
  width: var(--lc-container);
  margin: 16px auto 0;
}

.quick-receipt-section .receipt-lookup {
  margin-top: 0;
}

.trust-point {
  min-width: 0;
  padding: 16px 20px;
}

.trust-point + .trust-point {
  border-left: 1px solid var(--lc-line);
}

.trust-point strong,
.trust-point span {
  display: block;
}

.trust-point strong {
  font-family: var(--lc-display);
  font-size: 1.28rem;
}

.trust-point span {
  margin-top: 2px;
  color: var(--lc-muted);
  font-size: 0.78rem;
}

.home-section {
  width: var(--lc-container);
  margin: clamp(64px, 8vw, 106px) auto 0;
}

.section-kicker {
  margin: 0 0 8px;
  color: #865734;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 18ch;
  margin: 0;
  font-family: var(--lc-display);
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  font-weight: 600;
  overflow-wrap: break-word;
  hyphens: auto;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.section-intro {
  max-width: 62ch;
  margin: 16px 0 0;
  color: var(--lc-muted);
}

.editorial-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.proof-mosaic {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-height: 620px;
}

.proof-mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #ddd7cd;
}

.proof-mosaic figure:first-child {
  grid-row: 1 / -1;
}

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

.proof-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: proof;
}

.proof-list li {
  position: relative;
  padding: 18px 0 18px 52px;
  border-bottom: 1px solid var(--lc-line);
  counter-increment: proof;
}

.proof-list li::before {
  content: "0" counter(proof);
  position: absolute;
  top: 20px;
  left: 0;
  color: var(--lc-copper);
  font-family: var(--lc-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  font-size: 0.95rem;
}

.proof-list span {
  margin-top: 4px;
  color: var(--lc-muted);
  font-size: 0.84rem;
}

.ai-assist {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(71, 105, 255, 0.2);
  border-radius: 18px;
  color: #f5f7ff;
  background: var(--lc-ink);
}

.ai-assist p {
  margin: 7px 0 14px;
  color: #c7d0e1;
  font-size: 0.86rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--lc-blue);
  box-shadow: 0 10px 24px rgba(71, 105, 255, 0.23);
}

.button-primary:hover {
  background: var(--lc-blue-dark);
}

.button-dark {
  color: #fff;
  background: var(--lc-ink);
}

.button-light {
  color: var(--lc-ink);
  border-color: var(--lc-line);
  background: #fff;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.services-head,
.locations-head,
.tools-head,
.contact-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}

.services-head .section-intro,
.locations-head .section-intro,
.tools-head .section-intro,
.contact-head .section-intro {
  max-width: 48ch;
  margin: 0;
}

.services-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  min-height: 230px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--lc-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.service-card-number {
  color: var(--lc-copper);
  font-family: var(--lc-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.service-card h3 {
  margin: 30px 0 0;
  font-family: var(--lc-display);
  font-size: 1.75rem;
  line-height: 1;
}

.service-card p {
  margin: 10px 0 18px;
  color: var(--lc-muted);
  font-size: 0.86rem;
}

.service-card a,
.service-card button {
  margin-top: auto;
}

.service-card-link {
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--lc-ink);
  background: none;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.service-card-stain {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 179, 143, 0.3), transparent 34%),
    var(--lc-ink);
}

.service-card-stain .service-card-number,
.service-card-stain p {
  color: #c9d2e2;
}

.service-card-stain .service-card-link {
  color: #fff;
}

.locations-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(0, 1.1fr);
  border: 1px solid var(--lc-line);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}

.location-card-media {
  min-height: 380px;
  margin: 0;
  background: #ddd7cd;
}

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

.location-card-copy {
  padding: 24px;
}

.location-card-copy h3 {
  margin: 0;
  font-family: var(--lc-display);
  font-size: 2rem;
  line-height: 1;
}

.location-address,
.location-hours {
  margin: 10px 0 0;
  color: var(--lc-muted);
  font-size: 0.84rem;
}

.location-meta {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--lc-line);
  display: grid;
  gap: 7px;
}

.location-meta a {
  width: fit-content;
  color: var(--lc-ink-soft);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration-color: rgba(16, 27, 43, 0.24);
  text-underline-offset: 3px;
}

.location-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-actions .button {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 0.78rem;
}

.google-profile-note {
  margin-top: 18px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--lc-line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.58);
}

.google-profile-note p {
  margin: 0;
  color: var(--lc-muted);
  font-size: 0.82rem;
}

.google-profile-note a {
  flex: 0 0 auto;
  font-weight: 750;
}

.tools-panel {
  margin-top: 30px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  border-radius: 22px;
  color: #fff;
  background: var(--lc-ink);
}

.tool-link {
  min-height: 145px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.tool-link:hover {
  background: rgba(255, 255, 255, 0.09);
}

.tool-link span {
  color: var(--lc-copper-soft);
  font-family: var(--lc-display);
  font-size: 1.2rem;
}

.tool-link strong {
  margin-top: auto;
  font-size: 0.9rem;
}

.receipt-lookup {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--lc-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.receipt-lookup-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.receipt-lookup-copy h3 {
  margin: 0;
  font-family: var(--lc-display);
  font-size: 1.55rem;
  line-height: 1.05;
}

.receipt-lookup-copy p {
  max-width: 58ch;
  margin: 0;
  color: var(--lc-muted);
  font-size: 0.8rem;
}

.receipt-lookup-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 9px;
  align-items: end;
}

.receipt-lookup label {
  display: grid;
  gap: 5px;
  color: var(--lc-muted);
  font-size: 0.69rem;
  font-weight: 750;
}

.receipt-lookup input {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid #d1c9bd;
  border-radius: 11px;
  color: var(--lc-ink);
  background: #fff;
}

.receipt-lookup-status {
  min-height: 20px;
  margin-top: 10px;
  color: var(--lc-muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.receipt-lookup-status.is-error {
  color: #9b2f2f;
}

.receipt-lookup-status.is-success {
  color: #1f7850;
}

.receipt-lookup-result {
  margin-top: 8px;
  padding: 14px;
  border: 1px solid #e2ddd5;
  border-radius: 13px;
  background: #fff;
}

.receipt-lookup-result-head,
.receipt-lookup-actions {
  display: flex;
  gap: 12px;
}

.receipt-lookup-result-head {
  align-items: center;
  justify-content: space-between;
}

.receipt-lookup-result-head strong {
  color: var(--lc-ink);
  font-size: 0.92rem;
}

.receipt-lookup-result-head span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #1f7850;
  background: #e8f4ed;
  font-size: 0.66rem;
  font-weight: 800;
}

.receipt-lookup-result-message {
  margin: 8px 0 0;
  color: var(--lc-muted);
  font-size: 0.78rem;
}

.receipt-lookup-result-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.receipt-lookup-result-grid p {
  margin: 0;
  padding: 9px;
  border-radius: 10px;
  background: var(--lc-paper);
}

.receipt-lookup-result-grid span,
.receipt-lookup-result-grid strong {
  display: block;
}

.receipt-lookup-result-grid span {
  color: var(--lc-muted);
  font-size: 0.62rem;
}

.receipt-lookup-result-grid strong {
  margin-top: 3px;
  color: var(--lc-ink);
  font-size: 0.76rem;
}

.receipt-lookup-actions {
  margin-top: 10px;
  flex-wrap: wrap;
}

.receipt-lookup-note {
  margin: 8px 0 0;
  color: var(--lc-muted);
  font-size: 0.72rem;
}

.contact-section {
  margin-bottom: clamp(70px, 10vw, 120px);
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

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

.contact-copy .section-heading {
  max-width: 11ch;
}

.contact-direct {
  margin-top: 24px;
  display: grid;
  gap: 7px;
}

.contact-direct a {
  width: fit-content;
  color: var(--lc-ink-soft);
  font-weight: 700;
  text-underline-offset: 3px;
}

.contact-form {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--lc-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(24, 35, 51, 0.08);
}

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

.form-field {
  min-width: 0;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label,
.form-legend {
  display: block;
  margin: 0 0 7px;
  color: var(--lc-ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--lc-line);
  border-radius: 10px;
  color: var(--lc-ink);
  background: #fcfbf8;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--lc-blue);
  outline: 3px solid rgba(71, 105, 255, 0.13);
}

.contact-form [aria-invalid="true"] {
  border-color: #b4232f;
}

.field-error {
  min-height: 1.2em;
  margin: 5px 0 0;
  color: #a31f2c;
  font-size: 0.72rem;
}

.privacy-check {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--lc-muted);
  font-size: 0.76rem;
}

.privacy-check input {
  width: 17px;
  min-height: 17px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.contact-form-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--lc-muted);
  font-size: 0.8rem;
  font-weight: 650;
}

.contact-form-status.is-success {
  color: var(--lc-green);
}

.contact-form-status.is-error {
  color: #a31f2c;
}

.site-footer {
  color: #dfe6f2;
  background: var(--lc-ink);
}

.footer-shell {
  width: var(--lc-container);
  margin: 0 auto;
  padding: 42px 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 42px;
}

.footer-brand img {
  width: 154px;
  height: auto;
  display: block;
  border-radius: 8px;
}

.footer-brand p {
  max-width: 34ch;
  margin: 14px 0 0;
  color: #9eabc0;
  font-size: 0.82rem;
}

.footer-col h2 {
  margin: 0 0 12px;
  color: var(--lc-copper-soft);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
  list-style: none;
}

.footer-links a,
.footer-links li {
  color: #aab6c8;
  font-size: 0.8rem;
  text-decoration-color: rgba(170, 182, 200, 0.32);
  text-underline-offset: 3px;
}

.footer-bottom {
  width: var(--lc-container);
  margin: 0 auto;
  padding: 18px 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #74839a;
  font-size: 0.74rem;
}

.footer-bottom a {
  color: #9eabc0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(71, 105, 255, 0.34);
  outline-offset: 3px;
}

body.home-editorial .leo-store-indicator {
  display: none !important;
}

@media (max-width: 1040px) {
  .primary-nav {
    gap: 14px;
  }

  .primary-nav > a {
    font-size: 0.8rem;
  }

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

  .hero-media {
    min-height: 620px;
  }

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

  .location-card-media {
    min-height: 270px;
  }
}

@media (max-width: 860px) {
  :root {
    --lc-container: min(100% - 28px, 720px);
  }

  .site-header {
    backdrop-filter: none;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand-link img {
    width: 132px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-nav {
    position: fixed;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 28px 24px 40px;
    display: none;
    align-content: start;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    background: var(--lc-paper);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav > a {
    padding: 15px 0;
    border-bottom: 1px solid var(--lc-line);
    font-family: var(--lc-display);
    font-size: 1.75rem;
  }

  .primary-nav > a::after {
    display: none;
  }

  .language-nav {
    width: fit-content;
    margin-top: 24px;
  }

  .home-hero {
    margin-top: 14px;
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .hero-copy {
    padding: 28px 22px 26px;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 0.88rem;
    line-height: 1.46;
  }

  .branch-picker {
    margin-top: 18px;
  }

  .branch-choice {
    padding: 10px 11px;
  }

  .branch-choice strong {
    font-size: 1.05rem;
  }

  .branch-choice span {
    font-size: 0.66rem;
  }

  .hero-offer {
    margin-top: 10px;
    padding: 9px 11px;
  }

  .hero-primary {
    width: 100%;
    margin-top: 10px;
  }

  .hero-media {
    min-height: 430px;
  }

  .trust-rail {
    grid-template-columns: 1fr;
  }

  .quick-receipt-section {
    margin-top: 12px;
  }

  .trust-point + .trust-point {
    border-top: 1px solid var(--lc-line);
    border-left: 0;
  }

  .editorial-proof,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .proof-mosaic {
    min-height: 520px;
  }

  .services-head,
  .locations-head,
  .tools-head,
  .contact-head {
    display: block;
  }

  .services-head .section-intro,
  .locations-head .section-intro,
  .tools-head .section-intro,
  .contact-head .section-intro {
    margin-top: 14px;
  }

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

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.2fr);
  }

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

  .receipt-lookup-copy {
    display: block;
  }

  .receipt-lookup-copy p {
    margin-top: 8px;
  }

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

  .contact-copy {
    position: static;
  }

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

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

@media (max-width: 620px) {
  :root {
    --lc-container: min(100% - 20px, 540px);
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-media figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .trust-point {
    padding: 13px 15px;
  }

  .home-section {
    margin-top: 64px;
  }

  .section-heading {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }

  .proof-mosaic {
    min-height: 430px;
    grid-template-columns: 1fr 0.82fr;
  }

  .services-grid,
  .tools-panel {
    grid-template-columns: 1fr;
  }

  .receipt-lookup {
    padding: 15px;
  }

  .receipt-lookup-grid,
  .receipt-lookup-result-grid {
    grid-template-columns: 1fr;
  }

  .receipt-lookup-grid .button {
    width: 100%;
  }

  .service-card {
    min-height: 190px;
  }

  .service-card h3 {
    margin-top: 18px;
  }

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

  .location-card-media {
    min-height: 250px;
  }

  .google-profile-note {
    display: block;
  }

  .google-profile-note a {
    display: inline-block;
    margin-top: 10px;
  }

  .form-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .contact-form {
    padding: 19px 15px;
  }

  .contact-form-actions .button {
    width: 100%;
  }
}

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

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