:root {
  --ink: #121214;
  --text: #252428;
  --muted: #6b6970;
  --paper: #f8f8f7;
  --white: #ffffff;
  --surface: #eeeeec;
  --surface-deep: #e5e5e2;
  --line: #d8d7d5;
  --line-dark: #323136;
  --red: #941d38;
  --red-dark: #74152b;
  --shell: 1120px;
  --sans: "Noto Sans TC", -apple-system, BlinkMacSystemFont, "PingFang TC", sans-serif;
  --serif: "Noto Serif TC", "Songti TC", serif;
}

* { box-sizing: border-box; }
html { color: var(--text); background: var(--paper); scroll-behavior: smooth; }
body {
  min-width: 320px; margin: 0; color: var(--text); background: var(--paper);
  font-family: var(--sans); font-size: 16px; line-height: 1.75;
  text-rendering: optimizeLegibility;
}
body, button, input, textarea { font-family: var(--sans); }
img { display: block; max-width: 100%; }
figure, fieldset, p, h1, h2, h3, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .25em; }
button, a, input, textarea, summary { outline-offset: 4px; }
:focus-visible { outline: 3px solid var(--red); }
[hidden] { display: none !important; }
.shell { width: min(calc(100% - 64px), var(--shell)); margin-inline: auto; }
.visually-hidden {
  position: absolute !important; width: 1px !important; height: 1px !important;
  padding: 0 !important; overflow: hidden !important; clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important; border: 0 !important; white-space: nowrap !important;
}
.material-symbols-rounded {
  font-family: "Material Symbols Rounded"; font-weight: normal; font-style: normal;
  font-size: 24px; line-height: 1; letter-spacing: normal; text-transform: none;
  white-space: nowrap; word-wrap: normal; direction: ltr;
  font-feature-settings: "liga"; font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 1000;
  width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(100%); white-space: nowrap;
}
.skip-link:focus {
  width: auto; height: auto; padding: 10px 16px; overflow: visible;
  clip: auto; clip-path: none; color: var(--white); background: var(--red);
}

.site-header {
  position: sticky; top: 0; z-index: 50; color: var(--white);
  background: var(--ink); border-bottom: 1px solid transparent;
  transition: border-color 180ms ease;
}
.site-header.is-compact { border-bottom-color: var(--line-dark); }
.header-row {
  display: grid; grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center; gap: clamp(28px, 4vw, 62px); min-height: 80px;
  transition: min-height 180ms ease;
}
.site-header.is-compact .header-row { min-height: 64px; }
.brand {
  display: inline-flex; align-items: center; width: fit-content; gap: 12px;
  color: var(--white); text-decoration: none;
}
.brand img {
  width: 40px; height: 40px; object-fit: contain;
  transition: width 180ms ease, height 180ms ease;
}
.site-header.is-compact .brand img { width: 32px; height: 32px; }
.brand span {
  font-family: var(--serif); font-size: 21px; font-weight: 700;
  letter-spacing: .09em; white-space: nowrap;
  transition: font-size 180ms ease;
}
.site-header.is-compact .brand span { font-size: 18px; }
.main-nav { justify-self: center; }
.nav-row { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 36px); }
.nav-row a {
  position: relative; display: inline-flex; align-items: center; min-height: 44px;
  color: #c7c5c8; font-size: 13px; font-weight: 500;
  letter-spacing: .06em; text-decoration: none;
}
.nav-row a::after {
  position: absolute; right: 0; bottom: 2px; left: 0; height: 2px;
  background: transparent; content: "";
}
.nav-row a:hover, .nav-row a[aria-current="page"] { color: var(--white); }
.nav-row a[aria-current="page"]::after { background: var(--red); }
.header-contact { display: flex; align-items: center; gap: 18px; }
.header-phone {
  color: #d3d1d4; font-size: 13px; font-weight: 600;
  letter-spacing: .05em; text-decoration: none; white-space: nowrap;
}
.header-action {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 22px; color: var(--white);
  background: var(--red); border: 1px solid var(--red); border-radius: 2px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-decoration: none;
  transition: min-height 180ms ease, background 160ms ease, border-color 160ms ease;
}
.site-header.is-compact .header-action { min-height: 40px; }
.header-action:hover { background: var(--red-dark); border-color: var(--red-dark); }
.menu-button {
  display: none; min-width: 48px; min-height: 42px; padding: 0 12px;
  color: var(--white); background: transparent; border: 1px solid #68666b;
  border-radius: 2px; font-size: 13px;
}

.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 50px; padding: 0 28px; color: var(--white);
  background: var(--red); border: 1px solid var(--red); border-radius: 2px;
  font-size: 14px; font-weight: 600; letter-spacing: .06em;
  text-decoration: none; cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.button:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }
.button:disabled { cursor: wait; opacity: .62; transform: none; }
.text-action {
  display: inline-flex; align-items: center; width: fit-content; padding-bottom: 2px;
  color: var(--ink); border-bottom: 1px solid currentColor;
  font-size: 13px; font-style: normal; font-weight: 600;
  letter-spacing: .05em; text-decoration: none;
}

.home-hero { color: var(--white); background: var(--ink); }
.hero-grid {
  display: grid; grid-template-columns: minmax(330px, .76fr) minmax(0, 1.24fr);
  align-items: center; gap: clamp(52px, 7vw, 108px);
  min-height: clamp(520px, calc(78svh - 80px), 660px); padding: 38px 0 50px;
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; }
.hero-copy h1 {
  font-family: var(--serif); font-size: clamp(52px, 5.4vw, 76px);
  font-weight: 600; line-height: 1.16; letter-spacing: .055em;
}
.hero-copy > p {
  max-width: 32rem; margin-top: 28px; color: #c9c7ca;
  font-size: clamp(15px, 1.15vw, 17px); line-height: 1.95;
}
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 36px; }
.hero-actions .text-action { color: var(--white); }
.hero-place { margin-top: 64px; color: #89878c; font-size: 11px; letter-spacing: .24em; }
.hero-image {
  position: relative; overflow: hidden; width: 100%; aspect-ratio: 4 / 3;
  max-height: 560px; background: #1b1a1d;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: .9; transition: opacity 400ms ease, transform 500ms ease;
}
.hero-image:hover img { opacity: .98; transform: scale(1.012); }

.section { padding: 94px 0; }
.services-section {
  --service-index: 0;
  position: relative; overflow: hidden; padding: 78px 0 82px;
  color: var(--white); background: var(--ink);
}
.service-ambient {
  position: absolute; inset: -48px; overflow: hidden; pointer-events: none;
}
.service-ambient::after {
  position: absolute; inset: 0; background: rgba(10, 10, 12, .64); content: "";
}
.service-ambient-image {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; filter: blur(18px) brightness(.4) saturate(.72); transform: scale(1.08);
  transition: opacity 360ms cubic-bezier(.22, 1, .36, 1), transform 480ms cubic-bezier(.22, 1, .36, 1);
}
.service-ambient-image.is-active { opacity: .78; transform: scale(1.055); }
.services-stage, .service-rail { position: relative; z-index: 1; }
.home-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 30px; margin-bottom: 44px;
}
.home-section-head h2, .contact-layout h2 {
  font-family: var(--serif); font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 600; line-height: 1.28; letter-spacing: .035em;
}
.services-section .home-section-head { margin-bottom: 46px; }
.service-rail-viewport {
  overflow-x: auto; overscroll-behavior-x: contain;
  padding-right: max(32px, calc((100vw - 1200px) / 2));
  padding-left: max(32px, calc((100vw - 1200px) / 2));
  scroll-padding-inline: max(32px, calc((100vw - 1200px) / 2));
  scroll-snap-type: inline proximity; scrollbar-width: none; cursor: grab;
}
.service-rail-viewport::-webkit-scrollbar { display: none; }
.service-rail-viewport.is-dragging { scroll-snap-type: none; cursor: grabbing; user-select: none; }
.service-rail-viewport.is-dragging .service-slide-link { cursor: grabbing; }
.service-rail-track { display: flex; width: max-content; gap: 10px; }
.service-rail-track::after {
  flex: 0 0 max(32px, calc((100vw - clamp(400px, 34vw, 480px)) / 2));
  content: "";
}
.service-slide {
  --service-reveal-y: 32px;
  contain: layout paint; flex: 0 0 clamp(400px, 34vw, 480px); height: clamp(470px, 39vw, 560px);
  scroll-snap-align: center;
}
.service-slide-link {
  position: relative; display: block; overflow: hidden; width: 100%; height: 100%;
  color: var(--white); background: #1a191c; border-radius: 8px; cursor: pointer; text-decoration: none;
}
.service-slide-link:focus-visible { outline: 3px solid var(--white); outline-offset: -6px; }
.services-section.is-service-reveal-ready .service-slide {
  opacity: 0; transform: translate3d(0, var(--service-reveal-y), 0);
  transition: opacity 520ms cubic-bezier(.22, 1, .36, 1), transform 520ms cubic-bezier(.22, 1, .36, 1);
}
.services-section.is-service-reveal-ready.is-service-reveal-in .service-slide { opacity: 1; transform: translate3d(0, 0, 0); }
.services-section.is-service-reveal-ready .service-slide:nth-child(2) { transition-delay: 55ms; }
.services-section.is-service-reveal-ready .service-slide:nth-child(3) { transition-delay: 110ms; }
.services-section.is-service-reveal-ready .service-slide:nth-child(4) { transition-delay: 165ms; }
.services-section.is-service-reveal-ready .service-slide:focus-within { opacity: 1; transform: translate3d(0, 0, 0); transition-delay: 0ms; }
.service-slide-link figure { width: 100%; height: 100%; }
.service-slide-link img {
  width: 100%; height: 100%; object-fit: cover; filter: brightness(.66) saturate(.86);
  transform: scale(1.001); transition: filter 360ms cubic-bezier(.22, 1, .36, 1), transform 420ms cubic-bezier(.22, 1, .36, 1);
}
.service-slide.is-active .service-slide-link img { filter: brightness(.82) saturate(.94); }
.service-slide-link:is(:hover, :focus-visible) img { filter: brightness(.88) saturate(.98); transform: scale(1.035); }
.service-slide--car img { object-position: 48% center; }
.service-slide--motorcycle img { object-position: 48% 72%; }
.service-slide--gold img { object-position: 54% center; }
.service-slide--luxury img { object-position: 56% center; }
.service-slide-copy {
  position: absolute; right: 26px; bottom: 26px; left: 26px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 18px;
}
.service-slide-copy h3 {
  font-family: var(--serif); font-size: 26px; font-weight: 600;
  line-height: 1.3; letter-spacing: .04em; white-space: nowrap;
}
.service-slide-arrow { flex: 0 0 auto; transition: transform 280ms cubic-bezier(.22, 1, .36, 1); }
.service-slide-link:is(:hover, :focus-visible) .service-slide-arrow { transform: translateX(5px); }
.service-rail-footer {
  display: grid; grid-template-columns: 44px minmax(220px, 1fr) 44px;
  align-items: center; gap: 24px; width: min(calc(100% - 64px), 1200px);
  margin: 28px auto 0;
}
.service-rail-control {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; padding: 0; color: var(--white);
  background: transparent; border: 0; border-radius: 50%; cursor: pointer;
  transition: color 180ms ease, background 180ms ease, opacity 180ms ease;
}
.service-rail-control:hover:not(:disabled) { color: var(--white); background: rgba(255, 255, 255, .1); }
.service-rail-control:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }
.service-rail-control:disabled { opacity: .3; cursor: default; }
.service-rail-progress { height: 1px; overflow: hidden; background: rgba(255, 255, 255, .24); }
.service-rail-progress span {
  display: block; width: 25%; height: 100%; background: var(--red);
  transform: translateX(calc(var(--service-index) * 100%));
  transition: transform 360ms cubic-bezier(.22, 1, .36, 1);
}

.home-store-section { padding: 96px 0 100px; background: var(--paper); }
.home-store-editorial-shell { width: min(calc(100% - 96px), 1320px); margin-inline: auto; }
.store-visual { overflow: hidden; aspect-ratio: 21 / 9; background: var(--surface); }
.store-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }
.store-directory {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(340px, .9fr);
  grid-template-areas: "identity visit" "services visit" "record visit";
  column-gap: clamp(72px, 7vw, 104px); min-height: 486px; padding-top: 64px;
}
.store-identity { grid-area: identity; }
.store-identity h2 {
  font-family: var(--serif); font-size: clamp(32px, 2.7vw, 38px);
  font-weight: 600; line-height: 1.25; letter-spacing: .035em;
}
.store-identity address {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 18px;
  margin-top: 26px; color: #5e5c61; font-size: 15px; font-style: normal; line-height: 1.75;
}
.store-identity address a, .store-record a {
  color: var(--ink); text-decoration-line: underline; text-decoration-color: #9a989c;
  text-underline-offset: 6px; transition: color 180ms ease, text-decoration-color 180ms ease;
}
.store-contact-links { display: flex; flex-wrap: wrap; gap: 8px 34px; margin-top: 22px; }
.store-contact-links a {
  display: inline-flex; align-items: center; min-height: 44px; gap: 10px;
  color: #454348; font-size: 14px; text-decoration: none; transition: color 180ms ease;
}
.store-contact-links .material-symbols-rounded { font-size: 19px; }
.store-identity address a:hover, .store-record a:hover,
.store-contact-links a:hover, .store-service-links a:hover { color: var(--red); text-decoration-color: var(--red); }
.store-services {
  grid-area: services; margin-top: 42px; padding: 34px 0 32px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.store-services h3, .store-hours h3 {
  font-family: var(--serif); font-size: 19px; font-weight: 600;
  line-height: 1.45; letter-spacing: .025em;
}
.store-service-links ul {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 48px; margin-top: 18px; list-style: none;
}
.store-service-links a {
  display: inline-flex; align-items: center; min-height: 44px; color: #4c4a4f;
  font-size: 14px; text-decoration-line: underline; text-decoration-color: #aaa8ab;
  text-underline-offset: 6px; transition: color 180ms ease, text-decoration-color 180ms ease;
}
.store-record { grid-area: record; align-self: start; padding-top: 26px; }
.store-record a { display: inline-flex; align-items: center; min-height: 44px; font-size: 14px; }
.store-visit { grid-area: visit; align-self: start; }
.store-primary-action {
  display: inline-flex; align-items: center; justify-content: center; width: 100%; min-height: 62px;
  padding: 0 26px; color: var(--white); background: #34383b; border-radius: 2px;
  font-size: 15px; font-weight: 600; letter-spacing: .04em; text-decoration: none;
  transition: background 190ms ease;
}
.store-primary-action:hover { background: #202326; }
.store-hours { margin-top: 46px; padding-top: 34px; border-top: 1px solid var(--line); }
.store-hours dl { margin-top: 20px; }
.store-hours dl > div {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 56px; color: #4e4c51; font-size: 14px;
}
.store-hours dd { color: var(--ink); font-weight: 500; }

.page-intro { padding: 46px 0 62px; color: var(--ink); background: var(--paper); }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 34px;
  color: var(--muted); font-size: 11px; letter-spacing: .06em;
}
.breadcrumb a { color: var(--muted); }
.page-intro-grid { max-width: 760px; }
.page-intro h1 {
  font-family: var(--serif); font-size: clamp(44px, 4.8vw, 64px);
  font-weight: 600; line-height: 1.2; letter-spacing: .035em;
}
.page-intro-copy p {
  max-width: 680px; margin-top: 20px; color: var(--muted);
  font-size: 16px; line-height: 1.9;
}

.faq-shell { width: min(calc(100% - 96px), 1320px); margin-inline: auto; }
.faq-page-intro { padding-bottom: 58px; }
.faq-intro-shell, .faq-directory-shell { width: min(calc(100% - 96px), 1320px); margin-inline: auto; }
.faq-intro-shell h1 {
  font-family: var(--serif); font-size: clamp(44px, 4.8vw, 64px);
  font-weight: 600; line-height: 1.2; letter-spacing: .035em;
}
.faq-directory-section { padding: 64px 0 88px; background: var(--surface); }
.faq-directory-layout {
  display: grid; grid-template-columns: minmax(0, 1.62fr) minmax(400px, 1fr);
  grid-template-areas: "topics ." "contact ."; gap: 24px; align-items: start;
}
.faq-directory-panel { color: var(--text); background: var(--white); border: 1px solid var(--line); }
.faq-topic-panel { grid-area: topics; }
.faq-topic-panel > h2 {
  display: flex; align-items: center; min-height: 92px; padding: 20px 36px;
  border-bottom: 1px solid var(--line); font-size: 22px; font-weight: 500; line-height: 1.4;
}
.faq-topic-panel ul {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px;
  margin: 0; background: var(--line); list-style: none;
}
.faq-topic-panel li { min-width: 0; background: var(--white); }
.faq-topic-panel a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; min-height: 132px; padding: 18px 12px; color: #414046;
  text-align: center; text-decoration: none; transition: color 180ms ease, background 180ms ease;
}
.faq-topic-panel a:hover { color: var(--ink); background: var(--paper); }
.faq-topic-panel .material-symbols-rounded { color: #65636a; font-size: 24px; }
.faq-topic-panel a > span:last-child { font-size: 14px; font-weight: 500; line-height: 1.55; }
.faq-contact-panel { grid-area: contact; min-height: 218px; padding: 32px 36px 36px; }
.faq-contact-panel h2 { font-size: 21px; font-weight: 500; line-height: 1.45; }
.faq-contact-panel p { margin-top: 13px; color: var(--muted); font-size: 14px; }
.faq-contact-panel p a { color: var(--ink); }
.faq-contact-action {
  display: inline-flex; align-items: center; justify-content: center; min-width: 156px;
  min-height: 50px; margin-top: 28px; padding: 0 24px; color: var(--ink);
  background: var(--white); border: 1px solid var(--ink); border-radius: 2px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}
.faq-contact-action:hover { color: var(--white); background: var(--ink); }
.faq-index-hero, .faq-category-hero { padding: 46px 0 72px; background: var(--paper); }
.faq-index-hero h1, .faq-category-hero h1 {
  font-family: var(--serif); font-size: clamp(44px, 4.8vw, 64px);
  font-weight: 600; line-height: 1.2; letter-spacing: .035em;
}
.faq-index-hero > .faq-shell > p, .faq-category-hero > .faq-shell > p {
  max-width: 700px; margin-top: 22px; color: var(--muted); font-size: 16px; line-height: 1.9;
}
.faq-index-section, .faq-category-section, .faq-article-section {
  padding: 68px 0 108px; background: var(--surface);
}
.faq-index-heading { margin-bottom: 28px; }
.faq-index-heading h2 { font-size: 22px; font-weight: 500; line-height: 1.45; }
.faq-topic-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line);
  list-style: none;
}
.faq-topic-grid > li { min-width: 0; background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-topic-link {
  display: grid; grid-template-columns: 34px minmax(0, 1fr) 24px; align-items: start;
  gap: 20px; min-height: 220px; padding: 34px 30px; color: var(--ink);
  text-decoration: none; transition: background 180ms ease;
}
.faq-topic-link:hover { background: #fafafa; }
.faq-topic-link > .material-symbols-rounded:first-child { color: #67656b; font-size: 26px; }
.faq-topic-copy { display: flex; flex-direction: column; min-width: 0; }
.faq-topic-copy strong { font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.4; }
.faq-topic-copy small { margin-top: 16px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.faq-topic-copy em { margin-top: auto; padding-top: 22px; color: #77757b; font-size: 12px; font-style: normal; letter-spacing: .04em; }
.faq-link-arrow, .faq-question-link > .material-symbols-rounded, .faq-other-topics .material-symbols-rounded,
.faq-related-panel .material-symbols-rounded { color: #6e6c72; font-size: 20px; transition: transform 180ms ease; }
.faq-topic-link:hover .faq-link-arrow, .faq-question-link:hover > .material-symbols-rounded,
.faq-other-topics a:hover .material-symbols-rounded, .faq-related-panel a:hover .material-symbols-rounded { transform: translateX(4px); }
.faq-contact-exit {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  margin-top: 34px; padding: 36px 40px; background: var(--white); border: 1px solid var(--line);
}
.faq-contact-exit h2 { font-family: var(--serif); font-size: 25px; font-weight: 600; line-height: 1.4; }
.faq-contact-exit p { margin-top: 8px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.faq-contact-links { display: flex; gap: 10px; flex: 0 0 auto; }
.faq-contact-links a {
  display: inline-flex; align-items: center; justify-content: center; min-width: 126px; min-height: 48px;
  padding: 0 20px; color: var(--ink); border: 1px solid var(--ink); text-decoration: none;
  font-size: 14px; font-weight: 600; transition: color 160ms ease, background 160ms ease;
}
.faq-contact-links a:first-child { color: var(--white); background: var(--ink); }
.faq-contact-links a:hover { color: var(--white); background: var(--red); border-color: var(--red); }
.faq-breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; list-style: none; }
.faq-breadcrumb li { display: flex; align-items: center; gap: 8px; }
.faq-breadcrumb li + li::before { content: "／"; color: #aaa8ad; }
.faq-breadcrumb span[aria-current="page"] { color: #77757b; }
.faq-back-link {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; margin: 0 0 34px;
  color: var(--ink); font-size: 13px; font-weight: 600; text-decoration: none;
}
.faq-back-link .material-symbols-rounded { font-size: 19px; transition: transform 180ms ease; }
.faq-back-link:hover .material-symbols-rounded { transform: translateX(-4px); }
.faq-category-layout {
  display: grid; grid-template-columns: minmax(0, 1.62fr) minmax(300px, .72fr); gap: 24px; align-items: start;
}
.faq-question-directory, .faq-other-topics, .faq-related-panel, .faq-article-main { background: var(--white); border: 1px solid var(--line); }
.faq-question-directory > h2, .faq-other-topics > h2, .faq-related-panel > h2 {
  min-height: 82px; padding: 26px 32px; border-bottom: 1px solid var(--line); font-size: 20px; font-weight: 500;
}
.faq-question-directory ul, .faq-other-topics ul, .faq-related-panel ul { margin: 0; list-style: none; }
.faq-question-directory li + li, .faq-other-topics li + li, .faq-related-panel li + li { border-top: 1px solid var(--line); }
.faq-question-link {
  display: grid; grid-template-columns: minmax(0, 1fr) 24px; align-items: center;
  gap: 28px; min-height: 132px; padding: 30px 32px; color: var(--ink); text-decoration: none;
  transition: background 180ms ease;
}
.faq-question-link:hover { background: #fafafa; }
.faq-question-link > span:first-child { display: flex; flex-direction: column; }
.faq-question-link strong { font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1.45; }
.faq-question-link small { max-width: 690px; margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.faq-other-topics a, .faq-related-panel li a {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: 62px; padding: 14px 28px 14px 32px; color: #444248;
  font-size: 14px; line-height: 1.6; text-decoration: none; transition: color 160ms ease, background 160ms ease;
}
.faq-other-topics a:hover, .faq-related-panel li a:hover { color: var(--ink); background: #fafafa; }
.faq-category-layout > .faq-contact-exit { grid-column: 1 / -1; }
.faq-article-section { padding-top: 36px; }
.faq-article-section .faq-breadcrumb { margin-bottom: 24px; }
.faq-article-section .faq-back-link { margin-bottom: 20px; }
.faq-article-layout {
  display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(300px, .66fr); gap: 24px; align-items: start;
}
.faq-article-main > header { padding: 58px 62px 46px; border-bottom: 1px solid var(--line); }
.faq-article-main h1 {
  max-width: 800px; font-family: var(--serif); font-size: clamp(38px, 4vw, 56px);
  font-weight: 600; line-height: 1.28; letter-spacing: .02em;
}
.faq-article-main > header > p { max-width: 760px; margin-top: 22px; color: var(--muted); font-size: 16px; line-height: 1.9; }
.faq-article-body { padding: 18px 62px 62px; }
.faq-article-block { padding: 40px 0; }
.faq-article-block + .faq-article-block { border-top: 1px solid var(--line); }
.faq-article-block h2 { font-family: var(--serif); font-size: 26px; font-weight: 600; line-height: 1.45; }
.faq-article-block p, .faq-article-block li { color: #4d4b51; font-size: 15px; line-height: 2; }
.faq-article-block p { margin-top: 18px; }
.faq-article-block ul { margin: 18px 0 0 1.25em; }
.faq-article-block a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }
.faq-related-panel { position: sticky; top: 92px; }
.faq-all-topics-link {
  display: inline-flex; align-items: center; min-height: 48px; margin: 22px 32px 28px;
  color: var(--ink); border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 600; text-decoration: none;
}
.service-faq-links { border-top: 1px solid var(--ink); }
.service-faq-links ul { margin: 0; list-style: none; }
.service-faq-links li { border-bottom: 1px solid var(--line); }
.service-faq-links a {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 76px; padding: 16px 4px; color: var(--ink); font-size: 15px;
  font-weight: 500; line-height: 1.6; text-decoration: none;
}
.service-faq-links .material-symbols-rounded { color: #6e6c72; font-size: 20px; transition: transform 180ms ease; }
.service-faq-links a:hover .material-symbols-rounded { transform: translateX(4px); }

.service-index { padding-top: 28px; }
.service-feature {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  align-items: center; gap: clamp(42px, 6vw, 76px); min-height: 360px;
  padding: 64px 0; border-top: 1px solid var(--line);
}
.service-feature:last-child { border-bottom: 1px solid var(--line); }
.service-feature figure { overflow: hidden; width: 100%; aspect-ratio: 4 / 3; max-height: 360px; }
.service-feature figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 220ms ease; }
.service-feature:hover figure img { transform: scale(1.012); }
.service-feature h2, .detail-columns h2, .section-title h2, .prose h2 {
  font-family: var(--serif); font-size: clamp(28px, 2.7vw, 38px);
  font-weight: 600; line-height: 1.35; letter-spacing: .025em;
}
.service-feature p { margin: 20px 0 28px; color: var(--muted); font-size: 15px; line-height: 1.85; }

.plain-notice { color: var(--ink); background: var(--surface); }
.plain-notice .shell {
  display: flex; align-items: center; justify-content: space-between;
  gap: 42px; min-height: 154px; padding-top: 34px; padding-bottom: 34px;
}
.plain-notice p {
  max-width: 760px; font-family: var(--serif); font-size: clamp(19px, 2.1vw, 26px);
  font-weight: 500; line-height: 1.65;
}

.detail-image { padding: 4px 0 18px; }
.detail-image .shell { max-width: 1000px; }
.detail-image img { width: 100%; max-height: 470px; object-fit: cover; }
.detail-content .shell { max-width: 960px; }
.detail-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 72px; }
.lined-list { margin-top: 30px; border-top: 1px solid var(--ink); list-style: none; }
.lined-list li { position: relative; padding: 18px 8px 18px 26px; border-bottom: 1px solid var(--line); }
.lined-list li::before {
  position: absolute; top: 29px; left: 2px; width: 5px; height: 5px;
  background: var(--red); content: "";
}
.detail-faq { background: var(--surface); }
.section-grid {
  display: grid; grid-template-columns: minmax(190px, .58fr) minmax(0, 1.42fr);
  gap: clamp(54px, 8vw, 94px);
}
.long-steps { border-top: 1px solid var(--ink); }
.long-steps article {
  display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 34px;
  padding: 42px 0; border-bottom: 1px solid var(--line);
}
.long-steps article > span { color: var(--red); font-family: var(--serif); font-size: 28px; line-height: 1; }
.long-steps h2 { font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1.35; }
.long-steps p { max-width: 720px; margin-top: 12px; color: var(--muted); }
.narrow-column { max-width: 840px; }

.estimate-page { padding-top: 32px; }
.estimate-layout { max-width: 760px; }
.estimate-flow { width: 100%; }
.estimate-form.is-enhanced .form-step { display: none; }
.estimate-form.is-enhanced .form-step.is-active { display: block; }
.form-progress {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 48px; border-bottom: 1px solid var(--line);
}
.form-progress span {
  display: flex; align-items: center; gap: 10px; padding: 0 0 14px;
  color: var(--muted); font-size: 13px; border-bottom: 2px solid transparent;
}
.form-progress span:last-child { padding-left: 18px; }
.form-progress span[aria-current="step"] { color: var(--ink); border-bottom-color: var(--red); }
.form-progress b {
  display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px;
  color: inherit; border: 1px solid currentColor; border-radius: 50%; font-size: 11px;
}
.form-step h2, .form-confirmation h2 {
  color: var(--ink); font-size: clamp(27px, 3vw, 34px); font-weight: 600;
  line-height: 1.4; letter-spacing: .01em;
}
.asset-choices {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px; margin-top: 30px; padding: 0; border: 0;
}
.asset-choice {
  display: flex; align-items: center; min-height: 60px;
  border-bottom: 1px solid var(--line); cursor: pointer;
}
.asset-choice:nth-of-type(-n + 2) { border-top: 1px solid var(--line); }
.asset-choice input { width: 18px; height: 18px; margin: 0 12px 0 2px; accent-color: var(--red); }
.asset-choice span { font-size: 16px; font-weight: 500; }
.asset-choice:has(input:checked) { color: var(--red); border-bottom-color: var(--red); }
.field-error { display: block; min-height: 1.55em; color: var(--red); font-size: 12px; }
.amount-field { max-width: 420px; margin-top: 30px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span:first-child { color: var(--ink); font-size: 14px; font-weight: 600; }
.field b { margin-left: 4px; color: var(--red); font-size: 10px; font-weight: 500; }
.field em { color: var(--muted); font-size: 12px; font-style: normal; }
.field input, .field textarea {
  width: 100%; color: var(--ink); background: var(--white);
  border: 1px solid #cecdcb; border-radius: 2px; font-size: 16px;
  transition: border-color 160ms ease, background 160ms ease;
}
.field input { min-height: 52px; padding: 10px 13px; }
.field textarea { min-height: 132px; padding: 13px; resize: vertical; }
.field input:focus, .field textarea:focus, .field [aria-invalid="true"] {
  background: var(--white); border-color: var(--red);
}
.input-with-unit { display: grid; grid-template-columns: auto 1fr; align-items: center; }
.input-with-unit > span {
  display: flex; align-items: center; min-height: 52px; padding-left: 13px;
  color: var(--muted); background: var(--white); border: 1px solid #cecdcb;
  border-right: 0; border-radius: 2px 0 0 2px; font-size: 13px;
}
.input-with-unit input { border-left: 0; border-radius: 0 2px 2px 0; }
.form-fields { display: grid; gap: 24px; margin-top: 28px; }
.selection-summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-top: 24px; padding: 15px 18px; background: var(--surface);
}
.selection-summary span { color: var(--ink); font-size: 14px; font-weight: 600; }
.selection-summary button, .back-action {
  padding: 4px 0; color: var(--ink); background: transparent; border: 0;
  border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 600; cursor: pointer;
}
.honeypot { display: none; }
.consent {
  display: flex; align-items: flex-start; gap: 12px; margin-top: 26px;
  color: var(--muted); font-size: 13px; line-height: 1.75;
}
.consent input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 3px; accent-color: var(--red); }
.consent a { margin: 0 3px; color: var(--ink); }
.consent-error { margin-left: 30px; }
.form-action { display: flex; align-items: center; gap: 24px; margin-top: 28px; }
.form-action-next { justify-content: flex-end; }
.form-action-submit { justify-content: space-between; }
.form-status { min-height: 1.7em; margin-top: 18px; color: var(--muted); font-size: 13px; }
.form-status.is-success { color: var(--ink); }
.form-status.is-error { color: var(--red); }
.form-confirmation { padding: 22px 0 10px; }
.form-confirmation p { max-width: 560px; margin-top: 16px; color: var(--muted); }
.form-confirmation > div { display: flex; align-items: center; gap: 24px; margin-top: 30px; }
.estimate-contact { margin-top: 66px; padding-top: 32px; border-top: 1px solid var(--line); }
.estimate-contact > p { color: var(--ink); font-weight: 600; }
.estimate-contact-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.estimate-contact-actions a {
  display: flex; flex-direction: column; justify-content: center; min-height: 72px; padding: 12px 14px;
  color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 2px;
  text-decoration: none; transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.estimate-contact-actions a:hover { color: var(--red); border-color: var(--red); transform: translateY(-1px); }
.estimate-contact-actions span { color: var(--muted); font-size: 11px; letter-spacing: .08em; }
.estimate-contact-actions strong { margin-top: 4px; font-size: 13px; font-weight: 600; }
.estimate-privacy-note { display: block; margin-top: 18px; color: var(--muted); font-size: 12px; }

.business-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: stretch; gap: 68px;
}
.business-grid figure img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.business-facts dl { border-top: 1px solid var(--ink); }
.business-facts dl > div {
  display: grid; grid-template-columns: 108px 1fr; gap: 18px;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.business-facts dt { color: var(--muted); font-size: 12px; }
.business-facts dd { color: var(--ink); font-weight: 600; }
.inline-links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 30px; }
.inline-links a { color: var(--red); font-weight: 600; }

.prose { max-width: 820px; }
.prose section + section { margin-top: 56px; }
.prose h2 { padding-bottom: 18px; border-bottom: 1px solid var(--ink); font-size: 27px; }
.prose p, .prose ul { margin-top: 18px; color: #4f4d52; }
.prose ul { padding-left: 1.4em; }
.prose li + li { margin-top: 8px; }

.contact-section { padding: 82px 0; color: var(--white); background: var(--ink); }
.contact-layout {
  display: grid; grid-template-columns: minmax(220px, .62fr) minmax(0, 1.38fr);
  align-items: start; gap: 72px;
}
.contact-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.contact-options a {
  display: flex; flex-direction: column; justify-content: center; min-height: 96px;
  padding: 18px; border: 1px solid #444247; border-radius: 2px; text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}
.contact-options a:hover { border-color: #a9465e; transform: translateY(-2px); }
.contact-options span { color: #969399; font-size: 11px; letter-spacing: .1em; }
.contact-options strong { margin-top: 7px; color: var(--white); font-size: 15px; font-weight: 500; }

.quick-actions {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  display: grid; width: 92px; background: var(--white); border: 1px solid var(--line);
  transition: opacity 180ms ease, transform 180ms ease;
}
.quick-actions a {
  display: flex; flex-direction: column; justify-content: center; min-height: 56px;
  padding: 8px 10px; color: var(--ink); border-bottom: 1px solid var(--line);
  text-decoration: none; transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}
.quick-actions a:last-child { border-bottom: 0; }
.quick-actions a:hover { color: var(--red); background: var(--paper); transform: translateX(-3px); }
.quick-actions span { color: var(--muted); font-size: 9px; letter-spacing: .08em; }
.quick-actions strong { margin-top: 1px; font-size: 11px; font-weight: 600; }

.site-footer { color: #302f32; background: var(--white); border-top: 1px solid var(--line); }
.footer-shell { width: min(calc(100% - 80px), 1200px); margin-inline: auto; }
.footer-directory {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 384px; gap: clamp(48px, 6vw, 112px); padding: 42px 0 62px;
}
.footer-column h2 {
  color: #4d4b50; font-size: 12px; font-weight: 500; line-height: 1.5; letter-spacing: .025em;
}
.footer-column p {
  max-width: 290px; margin-top: 26px; color: #454348; font-size: 14px; line-height: 1.75;
}
.footer-column p a { color: var(--ink); text-underline-offset: 4px; }
.footer-column ul { display: grid; gap: 20px; margin-top: 28px; list-style: none; }
.footer-column a { color: #37353a; font-size: 14px; text-decoration: none; }
.footer-column nav a:hover, .footer-column nav a:focus-visible {
  color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 5px;
}
.footer-contact-copy + nav ul { margin-top: 24px; }
.footer-lower { min-height: 178px; border-top: 1px solid var(--line); }
.footer-utility {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding-top: 42px; color: #4d4b50; font-size: 12px;
}
.footer-utility nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 32px; }
.footer-utility a { color: #454348; text-decoration: none; }
.footer-utility a:hover, .footer-utility a:focus-visible { color: var(--ink); text-decoration: underline; text-underline-offset: 5px; }
.footer-wordmark {
  display: block; width: fit-content; margin: 50px auto 0; color: var(--ink);
  font-family: var(--serif); font-size: 25px; font-weight: 600; line-height: 1;
  letter-spacing: .2em; text-decoration: none;
}

body.has-entry-dialog { overflow: hidden; }
.entry-dialog {
  width: min(calc(100% - 40px), 580px); max-width: none; max-height: calc(100dvh - 40px);
  margin: auto; padding: 0; overflow: visible; color: var(--white);
  background: transparent; border: 0; opacity: 0;
  transform: translate3d(0, 18px, 0) scale(.985);
  transition: opacity 260ms ease, transform 380ms cubic-bezier(.22, 1, .36, 1);
}
.entry-dialog::backdrop {
  background: rgb(8 8 10 / 76%); opacity: 0;
  transition: opacity 260ms ease;
}
.entry-dialog.is-visible { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
.entry-dialog:focus { outline: 3px solid transparent; }
.entry-dialog.is-visible::backdrop { opacity: 1; }
.entry-dialog.is-closing { opacity: 0; transform: translate3d(0, 10px, 0) scale(.99); }
.entry-dialog.is-closing::backdrop { opacity: 0; }
.entry-dialog-panel {
  position: relative; overflow: auto; max-height: calc(100dvh - 40px);
  padding: 54px 54px 48px; background: #171619;
  border: 1px solid #3b393e; border-radius: 4px;
}
.entry-dialog-close {
  position: absolute; top: 14px; right: 14px; display: inline-flex;
  align-items: center; justify-content: center; width: 44px; height: 44px;
  padding: 0; color: #c9c7cb; background: transparent; border: 0;
  border-radius: 2px; cursor: pointer; transition: color 160ms ease, background 160ms ease;
}
.entry-dialog-close:hover { color: var(--white); background: #29282c; }
.entry-dialog-content h2 {
  max-width: 9em; font-family: var(--serif); font-size: clamp(34px, 4vw, 44px);
  font-weight: 600; line-height: 1.28; letter-spacing: .04em;
}
.entry-dialog-content > p:not(.entry-dialog-phone) {
  max-width: 31rem; margin-top: 18px; color: #c7c5c9; font-size: 15px; line-height: 1.85;
}
.entry-dialog-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 34px; }
.entry-dialog-actions .button, .entry-dialog-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 20px; border-radius: 2px;
  font-size: 14px; font-weight: 600; letter-spacing: .05em; text-decoration: none;
}
.entry-dialog-secondary {
  color: var(--white); background: transparent; border: 1px solid #69676c;
  transition: background 160ms ease, border-color 160ms ease;
}
.entry-dialog-secondary:hover { background: #29282c; border-color: #8a888d; }
.entry-dialog-phone { margin-top: 22px; color: #9e9ca2; font-size: 13px; }
.entry-dialog-phone a { color: var(--white); font-weight: 600; }
.entry-dialog :focus-visible { outline: 3px solid var(--white); outline-offset: 4px; }

.not-found { min-height: 560px; padding: 110px 0; color: var(--white); background: var(--ink); }
.not-found h1 { font-family: var(--serif); font-size: clamp(44px, 6vw, 70px); font-weight: 600; }
.not-found p { margin: 22px 0 34px; color: #c9c6cb; }

@media (max-width: 1080px) {
  .header-row { gap: 24px; }
  .nav-row { gap: 18px; }
  .header-phone { display: none; }
  .service-slide { flex-basis: clamp(300px, 42vw, 420px); height: clamp(440px, 52vw, 540px); }
  .service-rail-track::after { flex-basis: max(24px, calc((100vw - clamp(300px, 42vw, 420px)) / 2)); }
  .quick-actions { right: 10px; }
  .home-store-editorial-shell { width: min(calc(100% - 80px), 944px); }
  .store-directory {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .75fr);
    column-gap: 52px; min-height: 470px; padding-top: 56px;
  }
  .faq-shell { width: min(calc(100% - 80px), 944px); }
  .faq-intro-shell, .faq-directory-shell { width: min(calc(100% - 80px), 944px); }
  .faq-directory-layout { grid-template-columns: minmax(0, 1.46fr) minmax(330px, .94fr); gap: 20px; }
  .faq-topic-panel > h2 { min-height: 88px; padding-inline: 28px; }
  .faq-topic-panel a { min-height: 124px; }
  .faq-contact-panel { min-height: 202px; padding: 30px; }
  .faq-topic-link { min-height: 210px; padding: 30px 26px; }
  .faq-category-layout { grid-template-columns: minmax(0, 1.45fr) minmax(280px, .72fr); gap: 20px; }
  .faq-article-layout { grid-template-columns: minmax(0, 1.45fr) minmax(280px, .68fr); gap: 20px; }
  .faq-article-main > header { padding: 50px 48px 40px; }
  .faq-article-body { padding: 14px 48px 52px; }
  .footer-shell { width: min(calc(100% - 64px), 920px); }
  .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px 80px; min-height: 0; padding: 52px 0 64px;
  }
}

@media (max-width: 900px) {
  .home-store-editorial-shell { width: min(calc(100% - 64px), 760px); }
  .store-visual { aspect-ratio: 2 / 1; }
  .store-directory {
    grid-template-columns: 1fr;
    grid-template-areas: "identity" "visit" "services" "record";
    min-height: 0; padding-top: 52px;
  }
  .store-visit { margin-top: 42px; }
  .store-services { margin-top: 42px; }
  .faq-directory-layout { grid-template-columns: 1fr; grid-template-areas: "topics" "contact"; }
  .faq-topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-category-layout, .faq-article-layout { grid-template-columns: 1fr; }
  .faq-related-panel { position: static; }
}

@media (max-width: 760px) {
  .shell { width: min(calc(100% - 40px), var(--shell)); }
  .site-header, .site-header.is-compact { border-bottom-color: var(--line-dark); }
  .header-row, .site-header.is-compact .header-row {
    grid-template-columns: 1fr auto; min-height: 64px; gap: 16px;
  }
  .brand { gap: 9px; }
  .brand img, .site-header.is-compact .brand img { width: 34px; height: 34px; }
  .brand span, .site-header.is-compact .brand span { font-size: 18px; }
  .header-contact { display: none; }
  .menu-button { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav {
    position: absolute; top: 100%; right: 0; left: 0; display: none;
    color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line);
  }
  .main-nav.is-open { display: block; }
  .nav-row { display: grid; gap: 0; width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; padding: 8px 0 16px; }
  .nav-row a { min-height: 48px; color: var(--text); border-bottom: 1px solid var(--line); }
  .nav-row a::after { top: 10px; right: auto; bottom: 10px; left: -20px; width: 2px; height: auto; }
  .nav-row a:hover, .nav-row a[aria-current="page"] { color: var(--ink); }

  .hero-grid {
    grid-template-columns: 1fr; gap: 36px; min-height: 0; padding: 56px 0 0;
  }
  .hero-copy h1 { font-size: clamp(46px, 14vw, 54px); }
  .hero-copy > p { margin-top: 22px; font-size: 15px; }
  .hero-actions { flex-wrap: wrap; gap: 20px; margin-top: 30px; }
  .hero-place { margin-top: 44px; }
  .hero-image { width: calc(100% + 40px); max-height: 290px; margin-left: -20px; aspect-ratio: 16 / 9; }
  .hero-image:hover img { transform: none; }

  .section { padding: 64px 0; }
  .home-store-section { padding: 0 0 64px; }
  .services-section { padding: 58px 0 64px; }
  .home-section-head { align-items: flex-start; gap: 18px; margin-bottom: 34px; }
  .services-section .home-section-head { margin-bottom: 30px; }
  .service-rail-viewport {
    padding-right: 20px; padding-left: 20px; scroll-padding-inline: 20px;
  }
  .service-rail-track { gap: 12px; }
  .service-rail-track::after { flex-basis: max(20px, calc((100vw - min(82vw, 340px)) / 2)); }
  .service-slide {
    --service-reveal-y: 22px;
    flex-basis: min(82vw, 340px); height: min(124vw, 500px);
  }
  .service-slide-copy { right: 22px; bottom: 22px; left: 22px; }
  .service-slide-copy h3 { font-size: 24px; }
  .service-rail-footer { grid-template-columns: 1fr; width: 128px; margin-top: 24px; }
  .service-rail-control { display: none; }
  .home-store-editorial-shell { width: 100%; }
  .store-visual { aspect-ratio: 16 / 10; }
  .store-directory { width: calc(100% - 40px); margin-inline: auto; padding-top: 52px; }
  .store-identity h2 { font-size: 32px; }
  .store-identity address { display: grid; gap: 10px; margin-top: 22px; }
  .store-contact-links { display: grid; gap: 0; margin-top: 18px; }
  .store-primary-action { min-height: 56px; }
  .store-hours { margin-top: 38px; padding-top: 30px; }
  .store-services { margin-top: 38px; padding: 30px 0 28px; }
  .store-service-links ul { gap: 2px 20px; }

  .page-intro { padding: 28px 0 38px; }
  .breadcrumb { margin-bottom: 20px; }
  .page-intro h1 { font-size: clamp(40px, 12vw, 52px); }
  .page-intro-copy p { margin-top: 12px; font-size: 15px; }
  .faq-page-intro { padding: 28px 0 42px; }
  .faq-intro-shell, .faq-directory-shell { width: calc(100% - 32px); }
  .faq-intro-shell h1 { font-size: clamp(40px, 12vw, 52px); }
  .faq-directory-section { padding: 24px 0 56px; }
  .faq-directory-layout { gap: 16px; }
  .faq-topic-panel > h2 { min-height: 72px; padding: 16px 20px; font-size: 21px; }
  .faq-topic-panel ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-topic-panel a { min-height: 112px; padding-inline: 10px; }
  .faq-topic-panel .material-symbols-rounded { font-size: 21px; }
  .faq-topic-panel a > span:last-child { font-size: 13px; }
  .faq-contact-panel { min-height: 0; padding: 28px 20px; }
  .faq-contact-panel h2 { font-size: 21px; }
  .faq-contact-action { width: 100%; min-height: 54px; margin-top: 24px; }
  .faq-shell { width: calc(100% - 32px); }
  .faq-index-hero, .faq-category-hero { padding: 28px 0 46px; }
  .faq-index-hero h1, .faq-category-hero h1 { font-size: clamp(40px, 12vw, 52px); }
  .faq-index-hero > .faq-shell > p, .faq-category-hero > .faq-shell > p { margin-top: 14px; font-size: 15px; }
  .faq-index-section, .faq-category-section, .faq-article-section { padding: 36px 0 72px; }
  .faq-index-heading { margin-bottom: 20px; }
  .faq-topic-grid { grid-template-columns: 1fr; }
  .faq-topic-link { grid-template-columns: 30px minmax(0, 1fr) 22px; gap: 16px; min-height: 164px; padding: 26px 22px; }
  .faq-topic-copy strong { font-size: 22px; }
  .faq-topic-copy small { margin-top: 10px; font-size: 13px; }
  .faq-topic-copy em { padding-top: 16px; }
  .faq-contact-exit { align-items: stretch; flex-direction: column; gap: 24px; margin-top: 24px; padding: 28px 22px; }
  .faq-contact-links { display: grid; grid-template-columns: 1fr 1fr; }
  .faq-contact-links a { min-width: 0; min-height: 52px; }
  .faq-back-link { margin-bottom: 24px; }
  .faq-question-directory > h2, .faq-other-topics > h2, .faq-related-panel > h2 { min-height: 72px; padding: 22px; }
  .faq-question-link { min-height: 118px; gap: 18px; padding: 24px 22px; }
  .faq-question-link strong { font-size: 20px; }
  .faq-question-link small { margin-top: 8px; font-size: 13px; }
  .faq-other-topics a, .faq-related-panel li a { min-height: 58px; padding: 12px 20px 12px 22px; }
  .faq-article-section .faq-breadcrumb { margin-bottom: 14px; }
  .faq-article-main > header { padding: 38px 24px 32px; }
  .faq-article-main h1 { font-size: clamp(34px, 10.5vw, 46px); }
  .faq-article-main > header > p { margin-top: 16px; font-size: 15px; }
  .faq-article-body { padding: 6px 24px 38px; }
  .faq-article-block { padding: 30px 0; }
  .faq-article-block h2 { font-size: 23px; }
  .faq-article-block p, .faq-article-block li { font-size: 14px; line-height: 1.9; }
  .faq-all-topics-link { margin-inline: 22px; }
  .service-index { padding-top: 0; }
  .service-feature { grid-template-columns: 1fr; gap: 28px; min-height: 0; padding: 48px 0; }
  .service-feature figure { max-height: none; aspect-ratio: 16 / 10; }
  .detail-image { padding-top: 0; }
  .detail-image .shell { width: 100%; }
  .detail-image img { max-height: 340px; }
  .detail-columns, .section-grid, .business-grid, .contact-layout { grid-template-columns: 1fr; gap: 46px; }
  .detail-columns { gap: 54px; }
  .plain-notice .shell {
    align-items: flex-start; flex-direction: column; gap: 24px;
    min-height: 0; padding-top: 44px; padding-bottom: 44px;
  }
  .long-steps article { grid-template-columns: 48px minmax(0, 1fr); gap: 18px; padding: 34px 0; }
  .long-steps article > span { font-size: 23px; }
  .long-steps h2 { font-size: 24px; }

  .form-progress { margin-bottom: 30px; }
  .estimate-page { padding-top: 30px; }
  .asset-choices { gap: 0 14px; margin-top: 24px; }
  .asset-choice { min-height: 56px; }
  .amount-field { margin-top: 24px; }
  .form-action { margin-top: 22px; }
  .form-action-submit { gap: 22px; }
  .estimate-contact { margin-top: 54px; }
  .estimate-contact-actions { grid-template-columns: 1fr; }
  .estimate-contact-actions a { min-height: 62px; }
  .form-confirmation > div { align-items: flex-start; flex-direction: column; }

  .business-grid figure img { min-height: 340px; }
  .contact-section { padding: 64px 0; }
  .contact-options { grid-template-columns: 1fr; }
  .contact-options a { min-height: 76px; }

  .quick-actions {
    position: static; display: grid; grid-template-columns: repeat(3, 1fr);
    width: 100%; color: var(--ink); background: var(--white);
    border-right: 0; border-left: 0;
  }
  .quick-actions a { min-height: 58px; border-right: 1px solid var(--line); border-bottom: 0; text-align: center; }
  .quick-actions a:last-child { border-right: 0; }
  .quick-actions a:hover { transform: none; }
  .quick-actions span { font-size: 9px; }
  .quick-actions strong { font-size: 11px; }

}

@media (min-width: 761px) {
  .quick-actions.is-footer-near { opacity: 0; pointer-events: none; transform: translateY(12px); }
}

@media (max-width: 600px) {
  .entry-dialog { width: min(calc(100% - 24px), 520px); max-height: calc(100dvh - 24px); }
  .entry-dialog-panel { max-height: calc(100dvh - 24px); padding: 50px 22px 28px; }
  .entry-dialog-close { top: 8px; right: 8px; }
  .entry-dialog-content h2 { max-width: 10em; font-size: clamp(30px, 9.2vw, 36px); }
  .entry-dialog-content > p:not(.entry-dialog-phone) { margin-top: 16px; font-size: 14px; }
  .entry-dialog-actions { grid-template-columns: 1fr; margin-top: 28px; }
  .entry-dialog-actions .button, .entry-dialog-secondary { min-height: 52px; }
  .entry-dialog-phone { margin-top: 18px; }
  .footer-shell { width: calc(100% - 40px); }
  .footer-directory { grid-template-columns: 1fr; gap: 44px; min-height: 0; padding: 52px 0 58px; }
  .footer-column p { margin-top: 20px; }
  .footer-column ul { gap: 17px; margin-top: 22px; }
  .footer-lower { min-height: 218px; }
  .footer-utility { align-items: flex-start; flex-direction: column; gap: 22px; padding-top: 34px; }
  .footer-utility nav { justify-content: flex-start; gap: 18px 26px; }
  .footer-wordmark { margin-top: 52px; font-size: 23px; }
}

@media (max-width: 380px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .nav-row { width: min(calc(100% - 32px), var(--shell)); }
  .brand span { letter-spacing: .055em; }
  .hero-image { width: calc(100% + 32px); margin-left: -16px; }
  .hero-copy h1 { font-size: 44px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .home-section-head { flex-direction: column; }
  .service-rail-viewport { padding-right: 16px; padding-left: 16px; scroll-padding-inline: 16px; }
  .service-slide { flex-basis: 82vw; }
  .asset-choices { grid-template-columns: 1fr; }
  .asset-choice:nth-of-type(2) { border-top: 0; }
  .button { padding-inline: 22px; }
  .store-directory { width: calc(100% - 32px); padding-top: 48px; }
  .store-identity h2 { font-size: 30px; }
  .store-service-links ul { grid-template-columns: 1fr; }
  .faq-topic-panel > h2 { min-height: 68px; padding-inline: 16px; font-size: 20px; }
  .faq-topic-panel a { min-height: 106px; }
  .faq-contact-panel { padding: 24px 16px; }
  .faq-contact-action { min-height: 52px; }
  .faq-shell { width: calc(100% - 28px); }
  .faq-topic-link { padding-inline: 18px; }
  .faq-contact-links { grid-template-columns: 1fr; }
  .faq-article-main > header { padding-inline: 20px; }
  .faq-article-body { padding-right: 20px; padding-left: 20px; }
  .footer-shell { width: calc(100% - 32px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
