:root {
  --ink: #25282a;
  --muted: #64696a;
  --accent: #9a3042;
  --accent-light: #faf1f3;
  --line: #dedfdf;
  --paper: #fff;
  --soft: #f5f6f6;
  --green: #176443;
  --green-light: #edf4ef;
  --radius: 6px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft JhengHei", "PingFang TC", system-ui, sans-serif;
  line-height: 1.7;
  letter-spacing: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
summary,
select {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.4;
}
button:disabled {
  cursor: default;
  opacity: 0.4;
}
input,
select,
textarea {
  max-width: 100%;
}
svg.lucide {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke-width: 1.7;
}
i[data-lucide] {
  display: inline-block;
  width: 20px;
  height: 20px;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1200px, calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding-block: 88px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 36px;
}
.section-heading h2 {
  margin-top: 12px;
  font-size: 32px;
}
.section-heading > p {
  font-size: 14px;
  color: var(--muted);
}
.button {
  border: 1px solid transparent;
  min-height: 50px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  transition:
    background 0.18s,
    box-shadow 0.18s;
}
.button.primary {
  background: var(--accent);
  color: white;
}
.button.primary:hover {
  background: #7d2434;
}
.line-button {
  background: var(--green);
  color: white;
}
.line-button:hover {
  background: #114d33;
}
.secondary {
  background: white;
  border-color: var(--line);
}
.quiet {
  background: transparent;
  color: var(--muted);
  padding-inline: 0;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  padding: 0;
  font-weight: 700;
  font-size: 14px;
}
.text-link:hover {
  color: var(--accent);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  background: #fff;
  z-index: 100;
  padding: 12px;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  background: #fffffffa;
  z-index: 30;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.brand-mark {
  border: 1.5px solid var(--accent);
  color: var(--accent);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 25px;
  font-family: serif;
}
.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.4;
}
.brand small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 3px;
}
.header-inner nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
}
.header-inner nav a:hover {
  color: var(--accent);
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}
.hero {
  position: relative;
  height: min(620px, calc(100svh - 180px));
  min-height: 500px;
  background: #e7e9e8;
  isolation: isolate;
  overflow: hidden;
}
.hero-picture {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
}
.hero-inner {
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-copy {
  max-width: 470px;
  padding: 25px 0;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: #3e4545;
}
.hero .eyebrow span {
  height: 6px;
  width: 6px;
  background: var(--accent);
}
.hero h1 {
  font-size: 48px;
  margin-top: 18px;
  font-weight: 800;
}
.hero-lead {
  font-size: 27px;
  line-height: 1.55;
  margin-top: 10px;
}
.hero-price {
  display: flex;
  gap: 9px;
  align-items: baseline;
  margin-top: 28px;
  font-size: 13px;
}
.hero-price strong {
  font-family: Arial, sans-serif;
  color: var(--accent);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}
.hero-price strong small {
  font-size: 17px;
  margin-right: 5px;
}
.price-footnote {
  font-size: 12px;
  margin-top: 8px;
  color: #474e4e;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
}
.hero-actions .button {
  padding-inline: 20px;
}
.hero-actions .direct-inquiry {
  color: var(--green);
  white-space: nowrap;
}
.hero-direct-note {
  margin-top: 10px;
  color: var(--green);
  font-size: 12px;
}
.hero-assurance {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-top: 18px;
  color: #454b4b;
}
.hero-assurance svg {
  width: 16px;
  height: 16px;
}
.image-caption {
  position: absolute;
  right: 20px;
  bottom: 15px;
  font-size: 10px;
  color: #424747;
  background: #ffffffd9;
  padding: 3px 7px;
}
.service-strip {
  border-bottom: 1px solid var(--line);
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 25px;
}
.strip-inner > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}
.strip-inner > div:last-child {
  border: 0;
}
.strip-inner svg {
  color: var(--accent);
  width: 25px;
  height: 25px;
}
.strip-inner strong {
  display: block;
  font-size: 14px;
}
.strip-inner small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}
.quote-section {
  background: var(--soft);
}
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 354px;
  gap: 52px;
  align-items: start;
}
.questionnaire {
  min-width: 0;
}
.step-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}
.step-nav button {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 12px 4px;
  color: var(--muted);
  display: flex;
  gap: 9px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}
.step-nav button span {
  font:
    12px Arial,
    sans-serif;
}
.step-nav button[aria-current="step"] {
  border-bottom-color: var(--accent);
  color: var(--accent);
  font-weight: 700;
}
.step-nav button:hover {
  background: #eeeff0;
}
fieldset {
  border: 0;
  margin: 0 0 30px;
  padding: 0;
  min-width: 0;
}
legend {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  padding: 0;
}
.field-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 20px;
}
.size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.choice {
  position: relative;
  background: white;
  border: 1px solid #cfd2d2;
  border-radius: var(--radius);
  cursor: pointer;
  min-width: 0;
  transition:
    border-color 0.15s,
    background 0.15s;
}
.choice:has(input:checked) {
  background: var(--accent-light);
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}
.choice:hover {
  border-color: var(--accent);
}
.choice:has(input:focus-visible) {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.choice input {
  accent-color: var(--accent);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin: 0;
}
.size-choice {
  min-height: 101px;
  display: flex;
  padding: 16px 12px;
  gap: 10px;
  align-items: center;
}
.size-choice > span {
  display: grid;
  gap: 3px;
}
.choice strong {
  display: block;
  line-height: 1.5;
  font-size: 15px;
}
.size-choice strong {
  font-size: 22px;
  font-family: Arial, "Microsoft JhengHei", sans-serif;
  white-space: nowrap;
}
.size-choice strong small {
  display: inline;
  font-size: 13px;
  color: var(--muted);
}
.choice small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}
.other-choice {
  padding: 13px 16px;
  margin-top: 10px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.other-choice > svg {
  margin-left: auto;
  color: var(--muted);
}
.text-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 20px;
}
.text-field input,
.text-field select {
  background: #fff;
  border: 1px solid #cfd2d2;
  border-radius: 4px;
  font-size: 16px;
  padding: 11px 12px;
  width: 100%;
  min-height: 48px;
  color: var(--ink);
}
.text-field input::placeholder {
  font-size: 13px;
  font-weight: 400;
  color: #737979;
}
.stacked-options {
  display: grid;
  gap: 10px;
}
.mount-choice {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 83px;
  padding: 14px 16px;
}
.mount-choice > svg {
  color: var(--muted);
  width: 25px;
  height: 25px;
}
.mount-choice b {
  margin-left: auto;
  white-space: nowrap;
  font-size: 14px;
  color: var(--accent);
}
.wall-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wall-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 94px;
  padding: 16px;
}
.material {
  height: 32px;
  width: 32px;
  border: 1px solid #bcbfbf;
  flex-shrink: 0;
  border-radius: 50%;
}
.concrete {
  background: #bebfbe;
}
.wood {
  background: #a59d94;
}
.marble {
  background: #f3f1f0;
  border: 3px double #b6b7b6;
}
.wall-choice > svg {
  height: 32px;
  width: 32px;
  color: var(--muted);
}
.inline-note {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
}
.inline-note svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.location-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.location-fields .text-field {
  margin-top: 16px;
}
.location-fields + .field-note {
  margin-top: 12px;
}
.extra-heading {
  margin-top: 28px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.extra-heading small {
  font-weight: 400;
  color: var(--muted);
  font-size: 12px;
}
.extra-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.extra-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.extra-options input {
  accent-color: var(--accent);
  width: 17px;
  height: 17px;
}
.step-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 26px;
}
.step-controls > span {
  font-size: 12px;
  color: var(--muted);
}
.step-controls .button {
  min-width: 114px;
}
.step-controls .quiet {
  min-width: 80px;
}
.js-ready fieldset {
  margin-bottom: 0;
  min-height: 359px;
}
.quote-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 25px;
  position: sticky;
  top: 102px;
  scroll-margin-top: 100px;
  min-width: 0;
}
.summary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.summary-top .eyebrow {
  font-size: 11px;
}
.icon-button {
  border: 0;
  background: none;
  color: var(--muted);
  height: 32px;
  width: 32px;
  display: grid;
  place-items: center;
  border-radius: 4px;
}
.icon-button:hover {
  background: var(--soft);
}
.quote-summary h3 {
  font-size: 17px;
}
.total {
  font-family: Arial, "Microsoft JhengHei", sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 1.3;
  margin-top: 10px;
  color: var(--accent);
}
.total small {
  font-size: 17px;
  margin-right: 7px;
}
.total.is-pending {
  font-size: 32px;
}
.total-description {
  font-size: 11px;
  color: var(--muted);
  margin-top: 7px;
  min-height: 36px;
}
.price-lines {
  margin: 20px 0 14px;
  padding-block: 17px;
  border-block: 1px solid var(--line);
  display: grid;
  gap: 12px;
}
.price-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 13px;
}
.price-lines dt {
  color: var(--muted);
}
.price-lines dd {
  margin: 0;
  font-weight: 600;
  text-align: right;
  flex-shrink: 0;
}
.price-lines .pending-price {
  color: var(--accent);
}
.quote-location {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 18px;
}
.quote-location svg {
  height: 15px;
  width: 15px;
  margin-top: 3px;
}
.quote-summary > .button {
  width: 100%;
  padding-inline: 10px;
  font-size: 13px;
  gap: 7px;
}
.quote-summary > .button svg {
  width: 18px;
  height: 18px;
}
.summary-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}
.message-details {
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 12px;
  font-size: 12px;
  color: var(--muted);
}
.message-details summary {
  cursor: pointer;
  padding-block: 4px;
}
.message-details textarea {
  width: 100%;
  margin-top: 12px;
  font-size: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  resize: vertical;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}
.message-details .button {
  width: 100%;
  min-height: 42px;
  margin-top: 8px;
  font-size: 12px;
}
.copy-status {
  min-height: 20px;
  margin-top: 6px;
}
.price-reference {
  margin-top: 35px;
  border-block: 1px solid var(--line);
  font-size: 13px;
}
.price-reference > summary {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding-block: 18px;
  font-weight: 600;
  list-style: none;
}
.price-reference > summary span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-reference > p {
  font-size: 12px;
  color: var(--muted);
  margin: 16px 0;
}
.table-scroll {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 13px;
}
caption {
  text-align: left;
  padding: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
}
th,
td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
thead th {
  background: #edefef;
  font-weight: 600;
}
tbody th {
  font-weight: 500;
}
.notice {
  padding: 16px;
  border-left: 3px solid var(--accent);
  margin-bottom: 20px;
  font-size: 14px;
}
.mount-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.mount-comparison article {
  position: relative;
  padding: 10px 60px 10px 0;
}
.mount-comparison article + article {
  padding: 10px 0 10px 60px;
  border-left: 1px solid var(--line);
}
.mount-icon {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}
.mount-icon svg {
  width: 48px;
  height: 48px;
  color: var(--muted);
  stroke-width: 1.1;
}
.mount-comparison h3 {
  font-size: 23px;
  margin: 10px 0 16px;
}
.mount-comparison article > p:not(.eyebrow):not(.mount-range) {
  font-size: 14px;
  color: var(--muted);
  max-width: 440px;
}
.mount-range {
  font-size: 13px;
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.mount-range strong {
  font-size: 24px;
  font-family: Arial, sans-serif;
}
.mount-range small {
  font-size: 11px;
  color: var(--muted);
}
.mount-comparison .text-link {
  color: var(--accent);
  margin-top: 22px;
}
.preparation {
  background: var(--green-light);
}
.preparation-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.preparation h2,
.faq-section h2 {
  font-size: 32px;
  margin-top: 14px;
}
.preparation-grid > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  margin-top: 20px;
}
.preparation .text-link {
  color: var(--green);
  margin-top: 28px;
}
.preparation .eyebrow {
  color: var(--green);
}
.photo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.photo-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #cdd9d1;
  padding: 21px 0;
}
.photo-list li:first-child {
  padding-top: 0;
}
.photo-list li:last-child {
  border: 0;
  padding-bottom: 0;
}
.photo-list li > span {
  font:
    12px Arial,
    sans-serif;
  color: var(--green);
}
.photo-list li > svg {
  color: var(--green);
  height: 24px;
  width: 24px;
}
.photo-list h3 {
  font-size: 16px;
}
.photo-list p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
}
.faq-grid > div > .text-link {
  margin-top: 25px;
  color: var(--muted);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
details[open] > summary > svg:last-child {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 14px;
  color: var(--muted);
  padding: 0 25px 22px 0;
  line-height: 1.9;
}
.contact-section {
  background: #292c2d;
  color: #fff;
  padding-block: 65px;
}
.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.contact-section .eyebrow {
  color: #dab9c0;
}
.contact-section h2 {
  font-size: 30px;
  margin-top: 14px;
}
.contact-section p:not(.eyebrow) {
  font-size: 13px;
  color: #c3c9c9;
  margin-top: 18px;
}
.contact-actions {
  width: 300px;
  text-align: center;
  flex-shrink: 0;
}
.contact-actions .button {
  width: 100%;
  background: #eff5f1;
  color: #164c35;
}
.contact-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 19px;
  margin-top: 21px;
}
.contact-actions p {
  font-size: 12px !important;
}
footer {
  background: #232526;
  color: #bec4c5;
  font-size: 11px;
  padding-block: 22px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
footer a {
  display: flex;
  align-items: center;
  gap: 6px;
}
footer svg {
  width: 12px !important;
  height: 12px !important;
}
.mobile-dock {
  display: none;
}
@media (min-width: 1600px) {
  .hero-copy {
    max-width: 480px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .hero-picture img {
    object-position: center 55%;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .header-inner nav {
    gap: 20px;
  }
  .quote-grid {
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) 320px;
  }
  .quote-summary {
    padding: 21px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero-copy {
    max-width: 420px;
  }
  .hero-actions {
    gap: 15px;
  }
  .hero-actions .text-link {
    font-size: 13px;
  }
  .size-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .size-choice {
    min-height: 84px;
  }
  .mount-choice {
    gap: 10px;
    padding: 13px 12px;
  }
  .mount-choice > svg {
    display: none;
  }
  .wall-choice {
    gap: 9px;
    padding: 13px 10px;
  }
  .material,
  .wall-choice > svg {
    width: 26px;
    height: 26px;
  }
  .preparation-grid,
  .faq-grid {
    gap: 45px;
  }
  .section-heading h2 {
    font-size: 28px;
  }
  .mount-comparison article {
    padding-right: 35px;
  }
  .mount-comparison article + article {
    padding-left: 35px;
  }
}
@media (max-width: 820px) {
  .header-inner nav {
    display: none;
  }
  .hero-copy {
    max-width: 350px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-lead {
    font-size: 24px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .quote-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .quote-summary {
    position: static;
  }
  .size-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .size-choice {
    min-height: 100px;
  }
  .mount-choice > svg {
    display: block;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 12px;
  }
  .section-heading > p br {
    display: none;
  }
  .js-ready fieldset {
    min-height: 325px;
  }
  .section {
    padding-block: 64px;
  }
  .preparation-grid {
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
  }
  .faq-grid {
    gap: 30px;
  }
  .mount-comparison h3 {
    font-size: 20px;
  }
  .contact-actions {
    width: 260px;
  }
}
@media (max-width: 680px) {
  html {
    scroll-padding-top: 84px;
  }
  .wrap {
    width: calc(100% - 36px);
  }
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }
  .header-inner {
    height: 66px;
    gap: 15px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }
  .brand strong {
    font-size: 15px;
  }
  .brand small {
    font-size: 9px;
  }
  .header-contact {
    font-size: 12px;
    gap: 5px;
  }
  .header-contact svg {
    height: 17px;
    width: 17px;
  }
  .hero {
    height: 650px;
    min-height: 0;
    max-height: none;
    background: #e8eae9;
  }
  .hero-picture {
    top: auto;
    height: 275px;
    bottom: 0;
  }
  .hero-picture img {
    object-fit: cover;
    object-position: center 52%;
  }
  .hero-inner {
    display: block;
    position: relative;
    height: auto;
  }
  .hero-copy {
    max-width: none;
    padding-top: 27px;
  }
  .hero .eyebrow {
    font-size: 11px;
  }
  .hero h1 {
    font-size: 34px;
    margin-top: 12px;
  }
  .hero-lead {
    font-size: 18px;
    margin-top: 5px;
  }
  .hero-lead br {
    display: none;
  }
  .hero-price {
    margin-top: 20px;
  }
  .hero-price strong {
    font-size: 43px;
  }
  .price-footnote {
    font-size: 11px;
    margin-top: 7px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 19px;
  }
  .hero-actions .button {
    font-size: 13px;
    padding-inline: 14px;
    min-height: 48px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    gap: 5px;
  }
  .hero-actions .text-link svg {
    width: 15px;
    height: 15px;
  }
  .hero-assurance {
    margin-top: 12px;
    font-size: 11px;
  }
  .image-caption {
    bottom: 9px;
    right: 10px;
    font-size: 9px;
  }
  .strip-inner {
    padding-block: 19px;
    gap: 0;
  }
  .strip-inner > div {
    gap: 6px;
    flex-direction: column;
    text-align: center;
  }
  .strip-inner svg {
    width: 21px;
    height: 21px;
  }
  .strip-inner strong {
    font-size: 12px;
  }
  .strip-inner small {
    font-size: 10px;
  }
  .section {
    padding-block: 50px;
  }
  .section-heading {
    margin-bottom: 25px;
  }
  .section-heading h2 {
    font-size: 26px;
    margin-top: 10px;
  }
  .section-heading > p {
    font-size: 13px;
  }
  .step-nav {
    margin-bottom: 24px;
  }
  .step-nav button {
    font-size: 13px;
    gap: 6px;
    padding-block: 12px;
  }
  .step-nav button span {
    font-size: 11px;
  }
  legend {
    font-size: 20px;
  }
  .field-note {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .size-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .size-choice {
    min-height: 86px;
    padding: 12px;
    gap: 9px;
  }
  .choice small {
    font-size: 11px;
  }
  .size-choice strong {
    font-size: 22px;
  }
  .other-choice strong {
    font-size: 14px;
  }
  .js-ready fieldset {
    min-height: 355px;
  }
  .quote-summary {
    padding: 23px;
  }
  .total {
    font-size: 44px;
  }
  .total-description {
    min-height: 0;
  }
  .quote-summary > .button {
    font-size: 14px;
    min-height: 52px;
  }
  .summary-note {
    font-size: 12px;
  }
  .price-lines > div {
    font-size: 14px;
  }
  .step-controls {
    margin-top: 22px;
    padding-top: 18px;
  }
  .step-controls .button {
    min-width: 110px;
  }
  .step-controls .quiet {
    min-width: 75px;
    font-size: 13px;
  }
  .mount-choice {
    padding: 14px 12px;
    gap: 10px;
    min-height: 83px;
  }
  .mount-choice > svg {
    width: 20px;
    height: 20px;
  }
  .mount-choice b {
    font-size: 12px;
  }
  .mount-choice strong {
    font-size: 14px;
  }
  .mount-choice small {
    font-size: 10px;
  }
  .wall-grid {
    gap: 10px;
  }
  .wall-choice {
    min-height: 96px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .wall-choice > span:last-child {
    flex: 1;
    min-width: 67px;
  }
  .wall-choice strong {
    font-size: 14px;
  }
  .location-fields {
    gap: 10px;
  }
  .extra-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .extra-options {
    gap: 16px 20px;
  }
  .extra-options label {
    font-size: 13px;
  }
  .price-reference {
    margin-top: 25px;
  }
  th,
  td {
    padding: 11px 9px;
    font-size: 12px;
  }
  .mount-comparison {
    grid-template-columns: 1fr;
  }
  .mount-comparison article {
    padding: 0 0 30px;
  }
  .mount-comparison article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 30px 0 0;
  }
  .mount-icon {
    margin-bottom: 16px;
  }
  .mount-icon svg {
    width: 38px;
    height: 38px;
  }
  .mount-comparison h3 {
    font-size: 22px;
  }
  .mount-range {
    margin-top: 19px;
    gap: 10px;
  }
  .preparation-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .preparation h2,
  .faq-section h2 {
    font-size: 28px;
  }
  .preparation-grid > div > p:not(.eyebrow) {
    font-size: 13px;
    margin-top: 15px;
  }
  .photo-list li {
    gap: 14px;
    padding-block: 18px;
  }
  .photo-list p {
    font-size: 12px;
  }
  .faq-list summary {
    font-size: 14px;
    padding-block: 20px;
  }
  .contact-section {
    padding-block: 44px;
  }
  .contact-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .contact-section h2 {
    font-size: 28px;
  }
  .contact-actions {
    width: 100%;
  }
  .contact-actions p {
    margin-top: 12px !important;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .mobile-dock {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: #fffffffa;
    border-top: 1px solid var(--line);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 12px;
    align-items: center;
    box-shadow: 0 -3px 20px #25252508;
  }
  .dock-phone {
    width: 36px;
    height: 46px;
    display: grid;
    place-items: center;
    border-right: 1px solid var(--line);
    padding-right: 10px;
    flex-shrink: 0;
  }
  .dock-estimate {
    flex: 1;
    min-width: 0;
  }
  .dock-estimate small {
    display: block;
    font-size: 10px;
    color: var(--muted);
  }
  .dock-estimate strong {
    font:
      700 16px Arial,
      sans-serif;
    display: flex;
    gap: 6px;
    align-items: center;
    color: var(--accent);
    white-space: nowrap;
  }
  .dock-estimate svg {
    height: 14px;
    width: 14px;
  }
  .mobile-dock .button {
    font-size: 13px;
    padding: 12px 14px;
    min-height: 46px;
    gap: 7px;
  }
  .mobile-dock .button svg {
    width: 17px;
    height: 17px;
  }
}
@media (max-width: 375px) {
  .hero h1 {
    font-size: 30px;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-actions .button {
    padding-inline: 11px;
    font-size: 12px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero {
    height: 630px;
  }
  .hero-picture {
    height: 275px;
  }
  .hero-price strong {
    font-size: 39px;
  }
  .section-heading h2 {
    font-size: 23px;
  }
  .mount-choice > svg {
    display: none;
  }
  .mount-choice {
    gap: 9px;
  }
  .size-choice {
    padding: 10px;
    gap: 7px;
  }
  .size-choice strong {
    font-size: 21px;
  }
  .size-choice small {
    font-size: 10px;
  }
  .extra-options {
    gap: 15px;
  }
  .mobile-dock {
    gap: 8px;
    padding-inline: 10px;
  }
  .mobile-dock .button {
    font-size: 12px;
    padding-inline: 12px;
  }
  .quote-summary {
    padding: 20px;
  }
  .wall-choice {
    gap: 7px;
  }
  .material,
  .wall-choice > svg {
    width: 23px;
    height: 23px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
.hero-picture img {
  object-position: center 25%;
}
@media (max-width: 680px) {
  .hero-picture img {
    object-position: center 40%;
  }
}
@media (max-width: 680px) and (max-height: 740px) {
  .hero {
    height: calc(100svh - 160px);
    min-height: 390px;
  }
  .hero-copy {
    padding-top: 18px;
  }
  .hero h1 {
    font-size: 30px;
    margin-top: 8px;
  }
  .hero-lead {
    font-size: 16px;
    margin-top: 3px;
  }
  .hero-price {
    margin-top: 14px;
  }
  .hero-price strong {
    font-size: 38px;
  }
  .price-footnote {
    font-size: 10px;
  }
  .hero-actions {
    margin-top: 15px;
  }
  .hero-actions .button {
    min-height: 44px;
    padding-block: 10px;
  }
  .hero-assurance {
    display: none;
  }
  .hero-picture {
    height: calc(100% - 300px);
  }
  .hero-picture img {
    object-position: center 20%;
  }
  .image-caption {
    font-size: 8px;
    bottom: 5px;
  }
}
/* The quote and supporting information occupy one bounded layer at a time. */
body.dialog-open {
  overflow: hidden;
}
.information-menu {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding-block: 28px;
}
.information-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
}
.information-menu a:last-child {
  border-right: 0;
}
.information-menu a > svg:first-child {
  color: var(--accent);
}
.information-menu a > svg:last-child {
  margin-left: auto;
  width: 16px;
}
.information-menu a:hover {
  background: var(--soft);
}
.scenario-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.scenario-tabs button {
  min-height: 46px;
  padding: 8px 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
}
.scenario-tabs button[aria-selected="true"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.scenario-tabs button:hover {
  background: var(--soft);
}
.scenario-panel figure {
  margin: 0 auto;
  max-width: 560px;
}
.scenario-panel img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: var(--soft);
}
.scenario-panel figcaption {
  margin-top: 7px;
  text-align: right;
  font-size: 11px;
  color: var(--muted);
}
.scenario-description {
  max-width: 560px;
  margin: 16px auto 0;
}
.scenario-description h3 {
  font-size: 18px;
}
.scenario-description p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}
.scenario-panel + .scenario-panel:not([role="tabpanel"]) {
  margin-top: 32px;
}
.scenario-contact {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.scenario-contact p {
  font-size: 13px;
  color: var(--green);
}
.scenario-contact .button {
  background: var(--green);
  color: #fff;
}
.flow-dialog,
.info-dialog {
  padding: 0;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 80px #0003;
  max-width: calc(100% - 32px);
  max-height: calc(100dvh - 32px);
}
.flow-dialog {
  width: 700px;
  height: 680px;
  background: var(--soft);
}
.info-dialog {
  width: 860px;
  background: #fff;
}
.flow-dialog[open],
.info-dialog[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}
.flow-dialog::backdrop,
.info-dialog::backdrop {
  background: #20252480;
}
.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 18px 10px 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.dialog-header h2 {
  font-size: 16px;
  margin: 0;
}
.dialog-header .icon-button {
  width: 40px;
  height: 40px;
}
.dialog-body {
  min-height: 0;
  display: grid;
}
.flow-dialog .quote-section {
  padding: 0;
  min-height: 0;
  display: grid;
}
.flow-dialog .quote-section > .wrap {
  width: 100%;
  margin: 0;
  min-height: 0;
  display: grid;
}
.flow-dialog .section-heading {
  display: none;
}
.flow-dialog .quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0;
  margin: 0;
  min-height: 0;
  align-items: stretch;
}
.flow-dialog .questionnaire {
  display: contents;
}
.flow-dialog .step-nav {
  grid-row: 1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding-inline: 24px;
  background: #fff;
}
.flow-dialog .step-nav button {
  min-height: 48px;
  padding-block: 10px;
  gap: 6px;
}
.flow-dialog .step-nav button:disabled {
  opacity: 1;
  color: #888d8d;
}
.flow-dialog .step-nav button:disabled:hover {
  background: transparent;
}
.flow-dialog #quote-form {
  grid-row: 2;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
.flow-dialog fieldset {
  flex: 1;
  min-height: 0;
  margin: 0;
  padding: 22px 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.flow-dialog legend {
  float: left;
  width: 100%;
  font-size: 21px;
  margin-bottom: 8px;
}
.flow-dialog legend + * {
  clear: both;
}
.flow-dialog .field-note {
  font-size: 12px;
  margin-bottom: 18px;
}
.flow-dialog .size-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.flow-dialog .size-choice {
  min-height: 86px;
  padding: 12px;
}
.flow-dialog .other-choice {
  min-height: 64px;
  margin-top: 10px;
}
.flow-dialog .mount-choice {
  min-height: 75px;
  padding: 12px 16px;
}
.flow-dialog .mount-choice > svg {
  display: block;
}
.flow-dialog .wall-choice {
  min-height: 94px;
}
.flow-dialog .location-fields .text-field {
  margin-top: 8px;
}
.flow-dialog .text-field {
  margin-top: 14px;
}
.flow-dialog .extra-heading {
  margin-top: 18px;
}
.flow-dialog .step-controls {
  flex: 0 0 auto;
  margin: 0;
  padding: 14px 24px;
  background: #fff;
}
.flow-dialog .step-controls .button {
  min-height: 46px;
}
.step-error {
  padding: 8px 24px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
}
.flow-dialog .quote-summary {
  grid-row: 2;
  border: 0;
  border-radius: 0;
  position: static;
  padding: 22px 28px;
  overflow-y: auto;
  overscroll-behavior: contain;
  min-height: 0;
}
.flow-dialog .summary-top {
  margin-bottom: 5px;
}
.flow-dialog .summary-top .eyebrow {
  font-size: 11px;
}
.flow-dialog .total {
  font-size: 38px;
  margin-top: 6px;
}
.flow-dialog .total.is-pending {
  font-size: 28px;
}
.flow-dialog .total-description {
  min-height: 0;
}
.flow-dialog .price-lines {
  margin-top: 16px;
  padding-block: 12px;
  gap: 8px;
}
.flow-dialog .summary-note {
  text-align: left;
  font-size: 11px;
}
.flow-dialog .summary-note br {
  display: none;
}
.flow-dialog .message-details {
  margin-top: 14px;
  padding-top: 8px;
}
.result-actions {
  display: grid;
  gap: 8px;
  padding-top: 16px;
}
.result-actions .button {
  width: 100%;
  min-height: 47px;
}
.result-actions .text-link {
  justify-self: center;
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
}
.result-actions .copy-status {
  min-height: 0;
  margin: 0;
  font-size: 12px;
}
.manual-copy-confirm {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.manual-copy-confirm input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}
.info-dialog-body {
  padding: 28px;
  overflow-y: auto;
  max-height: calc(100dvh - 110px);
  overscroll-behavior: contain;
}
.info-dialog-body .section,
.info-dialog-body .contact-section {
  padding: 0;
  background: transparent;
  color: var(--ink);
}
.info-dialog-body .wrap {
  width: 100%;
}
.info-dialog-body .section-heading {
  margin-bottom: 24px;
}
.info-dialog-body h2 {
  font-size: 24px;
}
.info-dialog-body .price-reference {
  margin: 0;
  border: 0;
}
.info-dialog-body .price-reference > summary {
  display: none;
}
.info-dialog-body .faq-grid,
.info-dialog-body .preparation-grid {
  display: block;
}
.info-dialog-body .faq-list,
.info-dialog-body .photo-list {
  margin-top: 24px;
}
.info-dialog-body .faq-list details[open] {
  background: var(--soft);
}
.info-dialog-body .contact-section p:not(.eyebrow) {
  color: var(--muted);
}
@media (max-width: 680px) {
  .information-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-block: 15px;
  }
  .information-menu a {
    font-size: 12px;
    padding: 14px 10px;
    gap: 7px;
  }
  .information-menu a:nth-child(even) {
    border-right: 0;
  }
  .information-menu a:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }
  .hero-direct-note {
    font-size: 11px;
  }
  .scenario-tabs button {
    font-size: 12px;
  }
  .scenario-description h3 {
    font-size: 16px;
  }
  .scenario-contact .button {
    width: 100%;
  }
  .flow-dialog {
    height: 720px;
    max-width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
  }
  .info-dialog {
    max-width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
  }
  .dialog-header {
    padding: 8px 10px 8px 16px;
  }
  .dialog-header h2 {
    font-size: 15px;
  }
  .flow-dialog .step-nav {
    padding-inline: 12px;
  }
  .flow-dialog .step-nav button {
    flex-direction: column;
    gap: 0;
    min-height: 52px;
    padding: 5px 2px;
    font-size: 11px;
  }
  .flow-dialog .step-nav button span {
    font-size: 10px;
  }
  .flow-dialog fieldset {
    padding: 18px 16px;
  }
  .flow-dialog legend {
    font-size: 19px;
  }
  .flow-dialog .size-grid {
    gap: 8px;
  }
  .flow-dialog .size-choice {
    min-height: 86px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 9px;
  }
  .flow-dialog .size-choice strong {
    font-size: 20px;
  }
  .flow-dialog .size-choice small {
    font-size: 10px;
  }
  .flow-dialog .size-choice input {
    width: 15px;
    height: 15px;
  }
  .flow-dialog .other-choice {
    min-height: 60px;
    padding: 10px 12px;
  }
  .flow-dialog .other-choice strong {
    font-size: 13px;
  }
  .flow-dialog .mount-choice {
    padding: 10px 12px;
    gap: 10px;
    min-height: 73px;
  }
  .flow-dialog .mount-choice > svg {
    display: none;
  }
  .flow-dialog .wall-choice {
    min-height: 94px;
  }
  .flow-dialog .location-fields {
    gap: 10px;
  }
  .flow-dialog .extra-heading {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 14px;
  }
  .flow-dialog .extra-options {
    gap: 10px 16px;
    margin-top: 12px;
  }
  .flow-dialog .inline-note {
    margin-top: 14px;
    font-size: 11px;
  }
  .flow-dialog .step-controls {
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  }
  .flow-dialog .step-controls .button {
    min-width: 0;
  }
  .flow-dialog .step-controls .primary {
    padding-inline: 16px;
    font-size: 13px;
  }
  .step-error {
    padding: 7px 16px;
    font-size: 12px;
  }
  .flow-dialog .quote-summary {
    padding: 16px 20px;
  }
  .flow-dialog .total {
    font-size: 35px;
  }
  .flow-dialog .price-lines > div {
    font-size: 13px;
  }
  .flow-dialog .quote-location {
    margin-bottom: 12px;
  }
  .info-dialog-body {
    padding: 22px 18px;
    max-height: calc(100dvh - 90px);
  }
  .info-dialog-body .mount-comparison h3 {
    font-size: 20px;
  }
}
@media (max-width: 375px) {
  .flow-dialog .size-choice {
    padding: 8px 6px;
  }
  .flow-dialog .size-choice strong {
    font-size: 18px;
  }
  .flow-dialog .size-choice small {
    font-size: 9px;
  }
  .flow-dialog .field-note {
    font-size: 11px;
    margin-bottom: 14px;
  }
  .flow-dialog .wall-choice {
    padding: 10px 8px;
  }
  .flow-dialog .wall-choice .material,
  .flow-dialog .wall-choice > svg {
    display: none;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.unit-context {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--accent-light);
  font-size: 12px;
}
.unit-context > span:first-child {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.unit-context > span:last-child {
  margin-left: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--muted);
}
.quantity-stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin: 34px 0 14px;
}
.quantity-stepper .icon-button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: white;
  color: var(--accent);
}
.quantity-stepper > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.quantity-stepper input {
  width: 104px;
  min-width: 0;
  appearance: textfield;
  -moz-appearance: textfield;
  text-align: center;
  padding: 8px 0;
  font:
    700 52px Arial,
    sans-serif;
  line-height: 1.2;
  border: 0;
  border-bottom: 2px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}
.quantity-stepper input::-webkit-inner-spin-button,
.quantity-stepper input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-stepper > div > span {
  font-size: 16px;
}
.quantity-offer {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  min-height: 30px;
}
.quantity-discounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 400px;
  margin: 28px auto 20px;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  text-align: center;
}
.quantity-discounts > div + div {
  border-left: 1px solid var(--line);
}
.quantity-discounts dt {
  color: var(--muted);
  font-size: 12px;
}
.quantity-discounts dd {
  margin: 2px 0 0;
  font-size: 22px;
  font-weight: 700;
}
.discount-scope {
  max-width: 390px;
  text-align: center;
  margin-inline: auto;
}
.order-quantity {
  font-size: 12px;
  color: var(--muted);
  margin-top: 5px;
}
.order-items {
  margin-top: 16px;
}
.order-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.order-item:first-child {
  border-top: 1px solid var(--line);
}
.order-item-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}
.order-item-heading h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  flex: 1;
  line-height: 1.6;
}
.order-item-heading > strong {
  font:
    700 16px Arial,
    "Microsoft JhengHei",
    sans-serif;
  flex-shrink: 0;
}
.order-item-heading .icon-button {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.order-item-heading .icon-button svg {
  width: 17px;
  height: 17px;
}
.item-costs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 4px 0 0;
}
.item-costs dt {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}
.item-costs dd {
  font-size: 13px;
  margin: 2px 0 0;
}
.flow-dialog .order-totals {
  border-top: 0;
  margin: 0 0 12px;
  padding-top: 18px;
}
.order-grand-total > span {
  font-size: 13px;
  font-weight: 600;
}
.flow-dialog .order-grand-total .total {
  font-size: 33px;
  overflow-wrap: anywhere;
}
.flow-dialog .order-grand-total .total.is-pending {
  font-size: 26px;
}
.line-paste-note {
  font-size: 12px;
  color: var(--green);
  text-align: center;
}
.info-estimate-link {
  margin-top: 24px;
}
.info-dialog-body #prices > h2 {
  margin-bottom: 20px;
}
.info-dialog-body #prices .table-scroll + .table-scroll {
  margin-top: 25px;
}
.info-dialog-body #prices > p {
  margin-top: 15px;
}
@media (max-width: 680px) {
  .unit-context {
    padding: 8px 16px;
    font-size: 11px;
    gap: 8px;
  }
  .quantity-stepper {
    margin-top: 24px;
    gap: 16px;
  }
  .quantity-stepper input {
    width: 88px;
    font-size: 44px;
  }
  .quantity-discounts {
    margin-top: 20px;
    padding-block: 14px;
  }
  .quantity-discounts dd {
    font-size: 20px;
  }
  .quantity-offer {
    font-size: 15px;
  }
  .item-costs {
    gap: 8px;
  }
  .order-item-heading {
    gap: 7px;
  }
  .order-item-heading h4 {
    font-size: 12px;
  }
  .order-item-heading > strong {
    font-size: 14px;
  }
  .flow-dialog .quote-summary {
    padding-inline: 16px;
  }
  .flow-dialog .order-grand-total .total {
    font-size: 30px;
  }
}
@media (max-height: 620px) {
  .flow-dialog fieldset {
    padding-block: 14px;
  }
  .quantity-stepper {
    margin-top: 16px;
  }
  .quantity-discounts {
    margin-top: 14px;
    padding-block: 10px;
  }
  .flow-dialog .size-choice {
    min-height: 76px;
  }
}
.flow-dialog .quote-summary {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 0;
  overflow: hidden;
}
.result-scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px 28px;
}
.flow-dialog .result-actions {
  padding: 14px 28px;
  border-top: 1px solid var(--line);
  background: white;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
}
.limited-offer {
  border-left: 3px solid var(--accent);
  padding: 0 0 0 12px;
  margin-bottom: 12px;
}
.limited-offer-heading,
.offer-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 10px;
}
.limited-offer-heading > strong {
  font-size: 13px;
}
.offer-clock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 73px;
  color: var(--accent);
  font-size: 17px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.offer-clock svg {
  width: 17px;
  height: 17px;
}
.offer-price {
  margin: 3px 0;
  color: var(--accent);
  font-size: 14px;
}
.offer-price > strong {
  font-size: 22px;
  line-height: 1.4;
}
.offer-terms {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
}
.limited-offer.is-expired {
  border-color: var(--line);
}
.limited-offer.is-expired .offer-price {
  color: var(--muted);
}
.offer-dialog {
  padding: 0;
  width: 430px;
  max-width: calc(100% - 32px);
  max-height: calc(100dvh - 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  box-shadow: 0 20px 80px #0003;
  overflow-y: auto;
}
.offer-dialog::backdrop {
  background: #20252490;
}
.offer-dialog .dialog-header {
  padding-left: 20px;
}
.offer-dialog .dialog-header h2 {
  font-size: 15px;
}
.offer-modal-body {
  padding: 20px;
}
.offer-modal-caption {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.offer-modal-savings {
  margin: 4px 0 18px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent);
}
.offer-modal-total,
.offer-modal-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding-block: 12px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.offer-modal-total > div {
  display: flex;
  gap: 8px;
  align-items: baseline;
  flex-wrap: wrap;
}
.offer-modal-total del {
  color: var(--muted);
}
.offer-modal-total strong {
  font-size: 25px;
  overflow-wrap: anywhere;
}
.offer-modal-timer > span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.offer-modal-timer svg {
  width: 17px;
  height: 17px;
}
.offer-modal-timer strong {
  font-size: 25px;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
}
.offer-modal-terms {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  margin: 4px 0 16px;
}
.offer-modal-body .button {
  width: 100%;
}
.offer-modal-body > .text-link {
  margin: 16px auto 0;
  display: flex;
  justify-content: center;
}
@media (max-height: 620px) {
  .offer-modal-body {
    padding-block: 12px;
  }
  .offer-modal-savings {
    font-size: 30px;
    margin-bottom: 10px;
  }
  .offer-modal-total,
  .offer-modal-timer {
    padding-block: 6px;
  }
  .offer-modal-body > .text-link {
    margin-top: 10px;
  }
}
@media (min-width: 600px) and (max-height: 480px) {
  .offer-dialog {
    width: 620px;
  }
  .offer-modal-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px 20px;
  }
  .offer-modal-caption {
    grid-area: 1 / 1;
  }
  .offer-modal-savings {
    grid-area: 2 / 1;
    margin: 0;
  }
  .offer-modal-total {
    grid-area: 1 / 2 / 3 / 3;
    border: 0;
    padding: 0;
  }
  .offer-modal-timer {
    grid-area: 3 / 1;
    border: 0;
    padding: 0;
  }
  .offer-modal-terms {
    grid-area: 3 / 2;
    margin: 0;
  }
  .offer-modal-body > .button {
    grid-area: 4 / 1 / 5 / 3;
  }
  .offer-modal-body > .text-link {
    grid-area: 5 / 1 / 6 / 3;
    margin: 0;
  }
}
@media (max-width: 680px) {
  .result-scroll {
    padding: 16px;
  }
  .flow-dialog .result-actions {
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  }
}
@media print {
  .site-header,
  .hero,
  .service-strip,
  .questionnaire,
  .mount-section,
  .preparation,
  .faq-section,
  .contact-section,
  footer,
  .mobile-dock,
  .price-reference,
  .message-details,
  .quote-summary > .button {
    display: none !important;
  }
  .quote-grid {
    display: block;
  }
  .quote-section {
    padding: 20px;
    background: #fff;
  }
  .quote-summary {
    position: static;
  }
  .wrap {
    width: 100%;
  }
  body {
    padding: 0;
  }
}
