:root {
  color-scheme: dark;
  --black: #050505;
  --off-black: #0a0a0a;
  --charcoal: #171717;
  --line: #2b2b2b;
  --soft-line: #202020;
  --white: #f5f3ef;
  --muted: #aaa7a1;
  --faint: #75736f;
  --danger: #e8a8a0;
  --content-wide: 90rem;
  --content: 72rem;
  --reading: 48rem;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 6.25rem;
  --gutter: clamp(1rem, 4vw, 3rem);
  --section-space: clamp(5.5rem, 10vw, 10rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--black); scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--black); color: var(--white); font-family: var(--sans); font-size: 1rem; line-height: 1.7; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
picture { display: block; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; text-underline-offset: .22em; text-decoration-thickness: 1px; }
a:hover { color: #fff; }
:where(a, button, input, select, textarea, summary):focus-visible { outline: 2px solid var(--white); outline-offset: 4px; }
::selection { background: var(--white); color: var(--black); }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; }
h1 { font-size: clamp(3.6rem, 8vw, 8rem); line-height: .93; }
h2 { font-size: clamp(2.6rem, 5.5vw, 5rem); line-height: .98; }
h3 { font-size: 1.08rem; line-height: 1.35; }
.shell { width: min(calc(100% - (var(--gutter) * 2)), var(--content-wide)); margin-inline: auto; }
.section { padding-block: var(--section-space); }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; z-index: 1000; top: 1rem; left: 1rem; transform: translateY(-180%); padding: .7rem 1rem; background: var(--white); color: var(--black); font-weight: 700; text-decoration: none; }
.skip-link:focus { transform: translateY(0); }
.eyebrow, .updated, .section-number, .contents-title { margin: 0; color: var(--faint); font-size: .72rem; font-weight: 680; letter-spacing: .18em; line-height: 1.4; text-transform: uppercase; }
.serif-intro { color: #d6d3cd; font-family: var(--serif); font-size: clamp(1.25rem, 2.25vw, 1.9rem); line-height: 1.45; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.button { min-height: 3.25rem; display: inline-flex; align-items: center; justify-content: center; padding: .75rem 1.2rem; border: 1px solid var(--white); border-radius: 1px; background: var(--white); color: var(--black); font-size: .78rem; font-weight: 700; letter-spacing: .1em; line-height: 1.2; text-decoration: none; text-transform: uppercase; transition: background-color .2s ease, color .2s ease; cursor: pointer; }
.button:hover { background: transparent; color: var(--white); }
.button-secondary { background: transparent; color: var(--white); }
.button-secondary:hover { background: var(--white); color: var(--black); }
.button-small { min-height: 2.75rem; padding-inline: 1rem; font-size: .7rem; }
.text-link { min-height: 2.75rem; display: inline-flex; align-items: center; gap: .65rem; color: var(--white); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(.25rem); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; border-bottom: 1px solid transparent; background: rgba(5,5,5,.68); transition: background-color .2s ease, border-color .2s ease; }
.site-header.is-scrolled, .site-header:focus-within { border-color: var(--soft-line); background: rgba(5,5,5,.97); }
.header-inner { width: min(calc(100% - (var(--gutter) * 2)), var(--content-wide)); min-height: var(--header-height); margin-inline: auto; display: grid; grid-template-columns: 6rem 1fr auto; align-items: center; gap: clamp(1rem, 3vw, 2rem); }
.brand { width: 4.75rem; }
.brand img { width: 100%; }
.desktop-nav { justify-self: center; }
.desktop-nav > ul { margin: 0; padding: 0; display: flex; align-items: center; gap: clamp(1.1rem, 2.6vw, 2.8rem); list-style: none; }
.desktop-nav a { color: #d8d5cf; font-size: .72rem; font-weight: 650; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--white); }
.nav-services { position: relative; display: flex; align-items: center; }
.dropdown-toggle { min-width: 2.75rem; min-height: 2.75rem; margin-right: -1rem; border: 0; background: transparent; cursor: pointer; }
.service-menu { position: absolute; top: calc(100% + 1.9rem); left: 50%; width: 34rem; transform: translate(-50%, -.4rem); padding: 2rem; border: 1px solid var(--line); background: var(--off-black); opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease, visibility .18s; }
.service-menu.is-open { transform: translate(-50%, 0); opacity: 1; visibility: visible; }
.service-menu p { margin: 0 0 1.2rem; color: var(--muted); font-family: var(--serif); font-size: 1.35rem; }
.service-menu ul { margin: 0 0 1rem; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.5rem; list-style: none; }
.service-menu li { border-top: 1px solid var(--soft-line); }
.service-menu li a { min-height: 3rem; display: flex; align-items: center; letter-spacing: .04em; text-transform: none; }
.service-menu .menu-all { min-height: 2.75rem; display: inline-flex; align-items: center; gap: .6rem; }
.menu-button { display: none; min-width: 3.25rem; min-height: 3.25rem; border: 0; background: transparent; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.menu-button i, .menu-button i::before { width: 1.5rem; height: 1px; display: block; background: var(--white); transition: transform .2s ease; }
.menu-button i { margin-left: .65rem; }
.menu-button i::before { content: ""; transform: translateY(-.42rem); }
.menu-button[aria-expanded="true"] i { transform: rotate(45deg); }
.menu-button[aria-expanded="true"] i::before { transform: rotate(-90deg); }
.mobile-menu { height: calc(100dvh - var(--header-height)); overflow-y: auto; padding: 2rem var(--gutter) 3rem; border-top: 1px solid var(--soft-line); background: var(--black); }
.mobile-menu nav { width: min(100%, 46rem); margin-inline: auto; }
.mobile-menu ul { margin: 0; padding: 0; list-style: none; }
.mobile-menu a { text-decoration: none; }
.mobile-menu nav > ul > li { border-bottom: 1px solid var(--line); }
.mobile-menu nav > ul > li > a { min-height: 3.8rem; display: flex; align-items: center; font-family: var(--serif); font-size: 1.65rem; }
.mobile-menu-label { margin: 2.2rem 0 1rem; color: var(--faint); font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.mobile-service-links { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.5rem; }
.mobile-service-links a { min-height: 2.75rem; display: flex; align-items: center; color: var(--muted); font-size: .86rem; }
.mobile-menu-actions { margin-top: 2rem; display: flex; gap: .75rem; }

.home-hero { position: relative; min-height: max(46rem, 100svh); display: grid; align-items: end; overflow: hidden; background: var(--off-black); }
.home-hero-media, .hero-picture, .hero-picture img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-picture img { object-fit: cover; }
[data-photo-slot="home-hero"] img, [data-photo-slot="contact-hero"] img { object-position: center 62%; }
[data-photo-slot="services-overview"] img, [data-photo-slot="gallery-hero"] img { object-position: center 68%; }
[data-photo-slot="ceramic-coating"] img, [data-photo-slot="pre-sale-detail-detail"] img { object-position: center 62%; }
[data-photo-slot="before"] img, [data-photo-slot="after"] img { object-position: center top; }
.home-hero::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.36); pointer-events: none; }
.home-hero-copy { position: relative; z-index: 1; padding-block: calc(var(--header-height) + 6rem) clamp(3.5rem, 7vw, 6rem); }
.home-hero-copy h1 { max-width: 11.2ch; margin: .9rem 0 1.3rem; font-size: clamp(4rem, 8.6vw, 8.5rem); }
.home-hero-copy > p:not(.eyebrow):not(.trust-line) { max-width: 43rem; margin: 0 0 2rem; color: #e0ddd7; font-family: var(--serif); font-size: clamp(1.18rem, 2vw, 1.65rem); line-height: 1.45; }
.trust-line { margin: 2.4rem 0 0; color: #c0bdb7; font-size: .75rem; font-weight: 620; letter-spacing: .08em; text-transform: uppercase; }
.proof-strip { border-block: 1px solid var(--soft-line); background: var(--off-black); }
.proof-strip .shell { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-strip span { min-height: 6rem; display: flex; align-items: center; padding: 1rem 1.5rem; border-right: 1px solid var(--soft-line); color: var(--muted); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.proof-strip span:first-child { border-left: 1px solid var(--soft-line); }
.section-heading { max-width: 55rem; }
.section-heading h2 { margin: .8rem 0 1.4rem; }
.section-heading > p:last-child:not(.eyebrow) { max-width: 46rem; margin: 0; color: var(--muted); }
.intro-section { display: flex; justify-content: space-between; align-items: end; gap: 4rem; }
.service-editorial { padding-bottom: var(--section-space); }
.service-feature { display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(18rem, .72fr); align-items: center; gap: clamp(2rem, 7vw, 8rem); padding-block: clamp(4rem, 8vw, 8rem); border-top: 1px solid var(--line); }
.service-feature.reverse { grid-template-columns: minmax(18rem, .72fr) minmax(0, 1.28fr); }
.service-feature.reverse .service-image { order: 2; }
.service-image { aspect-ratio: 4 / 3; overflow: hidden; background: var(--off-black); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.service-feature:hover .service-image img { transform: scale(1.018); }
.service-feature h2 { margin: .8rem 0 1.3rem; font-size: clamp(2.8rem, 5vw, 4.8rem); }
.service-feature p:not(.eyebrow) { color: var(--muted); }
.service-feature dl { margin: 2rem 0; }
.service-feature dl div { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; padding: .85rem 0; border-top: 1px solid var(--soft-line); }
.service-feature dl div:last-child { border-bottom: 1px solid var(--soft-line); }
dt { color: var(--faint); font-size: .7rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
dd { margin: 0; color: #d8d5cf; }
.comparison-section, .why-section, .editorial-band, .comparison-table-section { border-block: 1px solid var(--soft-line); background: var(--off-black); }
.before-after { max-width: 70rem; margin: 3rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.before-after figure { position: relative; margin: 0; }
.before-after figure > span { position: absolute; z-index: 1; top: 1rem; left: 1rem; padding: .5rem .7rem; background: rgba(5,5,5,.84); color: var(--white); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.before-after picture { display: block; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--line); background: var(--black); }
.before-after img { width: 100%; height: 100%; object-fit: cover; }
.before-after figcaption { padding: .8rem .1rem 0; color: var(--faint); font-size: .75rem; }
.process > .section-heading { margin-bottom: 3rem; }
.process ol { margin: 0; padding: 0; list-style: none; }
.process li { display: grid; grid-template-columns: minmax(4rem, .35fr) minmax(0, 1.65fr); gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.process li:last-child { border-bottom: 1px solid var(--line); }
.process li > span { color: var(--faint); font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4rem); line-height: 1; }
.process h3 { margin: 0 0 .5rem; font-size: 1.15rem; }
.process p { max-width: 44rem; margin: 0; color: var(--muted); }
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 9rem); }
.line-list { margin: 2rem 0 0; padding: 0; list-style: none; }
.line-list li { position: relative; padding: 1rem 0 1rem 1.35rem; border-top: 1px solid var(--soft-line); color: #cac7c1; }
.line-list li:last-child { border-bottom: 1px solid var(--soft-line); }
.line-list li::before { content: ""; position: absolute; top: 1.7rem; left: .1rem; width: .28rem; height: .28rem; border-radius: 50%; background: var(--muted); }
.price-list { margin-top: 3rem; }
.price-list a { min-height: 5.5rem; display: grid; grid-template-columns: 1fr auto 2rem; align-items: center; gap: 1.5rem; border-top: 1px solid var(--line); text-decoration: none; }
.price-list a:last-child { border-bottom: 1px solid var(--line); }
.price-list span { font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2.25rem); }
.price-list strong { color: var(--muted); font-size: .9rem; font-weight: 600; }
.price-list i { font-style: normal; transition: transform .2s ease; }
.price-list a:hover i { transform: translateX(.25rem); }
.review-grid { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.review-grid figure { margin: 0; padding: 2rem; border: 1px solid var(--line); }
.review-grid blockquote { margin: 0; color: #d8d5cf; font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.5; }
.review-grid figcaption { margin-top: 1.5rem; color: var(--faint); font-size: .72rem; }
.gallery-preview { background: var(--off-black); }
.masonry-preview { margin: 3rem 0 2rem; display: grid; grid-template-columns: 1.35fr .8fr; grid-template-rows: 1fr 1fr; gap: 1rem; }
.masonry-preview picture { overflow: hidden; }
.masonry-preview img { width: 100%; height: 100%; object-fit: cover; }
.gallery-a { grid-row: 1 / 3; }
.area-preview { display: grid; grid-template-columns: 1fr minmax(18rem, .7fr); align-items: center; gap: clamp(3rem, 9vw, 10rem); }
.area-disc { aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; }
.area-disc::before, .area-disc::after { content: ""; position: absolute; }
.area-disc span { max-width: 15rem; font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.8rem); line-height: 1.05; }
.area-disc small { max-width: 13rem; margin-top: .7rem; color: var(--faint); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.about-preview { display: grid; grid-template-columns: minmax(18rem, .75fr) 1.25fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.about-image { max-height: 45rem; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.faq-section .section-heading { margin-bottom: 3rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 4.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1rem 0; font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.55rem); cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; flex: 0 0 auto; color: var(--faint); font-family: var(--sans); font-size: 1.2rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: var(--reading); margin: 0 0 1.5rem; color: var(--muted); }
.final-cta { padding-block: clamp(5rem, 11vw, 10rem); border-top: 1px solid var(--line); background: var(--white); color: var(--black); }
.final-cta h2 { max-width: 12ch; margin: .8rem 0 1.5rem; font-size: clamp(3.2rem, 7vw, 7rem); }
.final-cta p:not(.eyebrow) { max-width: 43rem; }
.final-cta .eyebrow { color: #66635e; }
.final-cta .button { border-color: var(--black); background: var(--black); color: var(--white); }
.final-cta .button:hover { background: transparent; color: var(--black); }
.final-cta .button-secondary { background: transparent; color: var(--black); }
.final-cta .button-secondary:hover { background: var(--black); color: var(--white); }

.breadcrumbs { padding-top: calc(var(--header-height) + 1.5rem); }
.breadcrumbs ol { margin: 0; padding: 0; display: flex; gap: .6rem; list-style: none; color: var(--faint); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumbs li + li::before { content: "/"; margin-right: .6rem; }
.breadcrumbs a { text-decoration: none; }
.page-hero { padding: clamp(3.5rem, 8vw, 8rem) var(--gutter) 0; }
.page-hero-copy { width: min(100%, var(--content-wide)); margin-bottom: clamp(3rem, 7vw, 6rem); }
.page-hero h1 { max-width: 13ch; margin: .8rem 0 1.4rem; }
.page-hero .serif-intro { max-width: 48rem; margin: 0; }
.page-hero-image { width: min(100%, 120rem); aspect-ratio: 16 / 7; margin-inline: auto; overflow: hidden; border-block: 1px solid var(--soft-line); background: var(--off-black); }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.service-overview { display: grid; grid-template-columns: 1.2fr .8fr; align-items: start; gap: clamp(3rem, 8vw, 8rem); }
.service-facts { margin: 0; }
.service-facts div, .contact-aside dl div { display: grid; grid-template-columns: 9rem 1fr; gap: 1.5rem; padding: 1.1rem 0; border-top: 1px solid var(--line); }
.service-facts div:last-child, .contact-aside dl div:last-child { border-bottom: 1px solid var(--line); }
.editorial-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(20rem, .8fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.editorial-image { aspect-ratio: 4 / 3; overflow: hidden; background: var(--black); }
.editorial-image img { width: 100%; height: 100%; object-fit: cover; }
.editorial-grid h2 { margin: .8rem 0 1.4rem; }
.editorial-grid p:not(.eyebrow) { color: var(--muted); }
.link-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.link-grid a { min-height: 12rem; display: grid; grid-template-columns: 1fr auto; align-content: end; gap: .4rem 1rem; padding: 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; }
.link-grid span { grid-column: 1 / 3; color: var(--faint); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.link-grid strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.link-grid i { font-style: normal; }
.services-index { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(3rem, 8vw, 8rem); }
.services-index article { padding: 3rem 0; border-top: 1px solid var(--line); }
.services-index article h2 { margin: .8rem 0 1rem; font-size: clamp(2.4rem, 4vw, 4rem); }
.services-index article > p:not(.eyebrow) { color: var(--muted); }
.services-index dl div { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; padding: .75rem 0; border-top: 1px solid var(--soft-line); }
.comparison-table { width: 100%; margin-top: 3rem; border-collapse: collapse; border-top: 1px solid var(--line); table-layout: fixed; }
.comparison-table th, .comparison-table td { padding: 1rem; border-right: 1px solid var(--soft-line); border-bottom: 1px solid var(--line); color: #c9c6c0; text-align: left; vertical-align: top; }
.comparison-table tr > *:last-child { border-right: 0; }
.comparison-table thead th { color: var(--faint); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.comparison-table tbody th { width: 22%; font-family: var(--serif); font-size: 1.12rem; font-weight: 400; }

.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 3rem; }
.filter-bar button { min-height: 2.75rem; padding: .55rem .85rem; border: 1px solid var(--line); background: transparent; color: var(--muted); font-size: .72rem; cursor: pointer; }
.filter-bar button:hover, .filter-bar button.is-active { border-color: var(--white); background: var(--white); color: var(--black); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.gallery-grid figure { grid-column: span 6; margin: 0; }
.gallery-grid figure:nth-child(3n) { grid-column: span 4; }
.gallery-grid figure.tall { grid-column: span 5; }
.gallery-grid figure.is-hidden { display: none; }
.gallery-image { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--off-black); }
.gallery-grid figure.tall .gallery-image { aspect-ratio: 4 / 5; }
.gallery-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-grid figure:hover img { transform: scale(1.018); }
.gallery-grid figcaption { padding: .8rem 0 2rem; color: var(--faint); font-size: .75rem; }
.gallery-grid figcaption span { display: block; color: var(--muted); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.notice { padding: 1rem; border: 1px solid var(--line); color: var(--muted); }
.about-story { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(3rem, 9vw, 10rem); }
.about-story p { color: var(--muted); }
.about-story blockquote { margin: 0; padding-left: 2rem; border-left: 1px solid var(--line); color: #d8d5cf; font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.7rem); line-height: 1.35; }
.area-layout { display: grid; grid-template-columns: minmax(20rem, .75fr) 1.25fr; align-items: center; gap: clamp(3rem, 10vw, 10rem); }
.area-disc.large { width: min(100%, 38rem); }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(19rem, .65fr); align-items: start; gap: clamp(3rem, 8vw, 8rem); }
.quote-form fieldset { min-width: 0; margin: 0 0 3.5rem; padding: 0; border: 0; }
.quote-form legend { width: 100%; margin-bottom: 1.7rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); }
.quote-form legend span, .optional, .nested legend span { color: var(--faint); font-family: var(--sans); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.quote-form label, .compact-form label { display: grid; gap: .45rem; color: #d8d5cf; font-size: .82rem; font-weight: 620; }
.quote-form input, .quote-form select, .quote-form textarea, .compact-form input, .compact-form textarea { width: 100%; min-height: 3.2rem; padding: .72rem .8rem; border: 1px solid var(--line); border-radius: 0; background: var(--off-black); color: var(--white); font-size: 1rem; }
.quote-form textarea, .compact-form textarea { resize: vertical; }
.quote-form input::placeholder { color: var(--faint); opacity: 1; }
.quote-form [aria-invalid="true"] { border-color: var(--danger); }
.field-error { min-height: 1.3em; color: var(--danger); font-size: .72rem; font-weight: 500; }
.nested { margin: 2rem 0 !important; }
.nested legend { border: 0; font-family: var(--sans); font-size: .82rem; font-weight: 620; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.5rem; }
.check { min-height: 2.75rem; display: flex !important; grid-template-columns: auto 1fr; align-items: start; gap: .7rem !important; }
.check input { width: 1.2rem; min-height: 1.2rem; margin-top: .23rem; accent-color: var(--white); }
.consent { margin-bottom: 1.5rem; }
.field-guidance, .submit-note, .file-feedback { color: var(--muted); font-size: .82rem; }
.form-errors { margin-bottom: 2rem; padding: 1rem 1.2rem; border: 1px solid var(--danger); color: var(--danger); }
.form-errors p { margin: 0; font-weight: 700; }
.form-errors ul { margin: .5rem 0 0; }
.honeypot { position: absolute !important; left: -9999px !important; }
.contact-aside { position: sticky; top: calc(var(--header-height) + 2rem); padding: 2rem; border: 1px solid var(--line); background: var(--off-black); }
.contact-aside h2 { margin: .8rem 0 2rem; font-size: 2.8rem; }
.contact-aside dl div { grid-template-columns: 6rem 1fr; }
.contact-aside p:last-child { color: var(--faint); font-size: .8rem; }
.compact-form { display: grid; gap: 1rem; }

.message-page { min-height: 78svh; padding-block: calc(var(--header-height) + clamp(5rem, 10vw, 10rem)) clamp(5rem, 10vw, 10rem); display: flex; flex-direction: column; justify-content: center; }
.message-page h1 { max-width: 12ch; margin: .8rem 0 1.5rem; }
.message-page > p { max-width: 48rem; }
.message-page .actions { margin-top: 2rem; }
.legal-hero { padding-block: calc(var(--header-height) + clamp(4rem, 9vw, 8rem)) clamp(4rem, 8vw, 7rem); border-bottom: 1px solid var(--soft-line); }
.legal-hero h1 { max-width: 12ch; margin: .8rem 0 1.4rem; }
.legal-hero .serif-intro { max-width: 42rem; }
.updated { margin-top: 2rem; }
.policy { padding-block: clamp(4.5rem, 9vw, 8rem); }
.contents { max-width: var(--reading); margin: 0 0 clamp(6rem, 12vw, 10rem); padding-bottom: 3.5rem; border-bottom: 1px solid var(--line); }
.contents ol { margin: 1.6rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem 3rem; counter-reset: item; list-style: none; }
.contents li { counter-increment: item; }
.contents a { display: inline-block; color: #c7c4be; font-size: .93rem; text-decoration: none; }
.contents a::before { content: counter(item, decimal-leading-zero) "  "; color: var(--faint); font-variant-numeric: tabular-nums; }
.policy-section { position: relative; max-width: var(--reading); margin: 0 0 clamp(6rem, 12vw, 10rem); scroll-margin-top: calc(var(--header-height) + 1rem); }
.policy-section::before { content: ""; display: block; width: 100%; height: 1px; margin-bottom: 2rem; background: var(--line); }
.section-number { margin-bottom: 1rem; }
.policy-section h2 { margin: 0 0 2rem; font-size: clamp(2.25rem, 5vw, 4rem); }
.policy-section p { margin: 0 0 1.35rem; color: #c9c6c0; }
.policy-section ul { margin: 1.6rem 0 1.7rem; padding: 0; list-style: none; }
.policy-section li { position: relative; padding: .8rem 0 .8rem 1.5rem; border-top: 1px solid var(--soft-line); color: #c9c6c0; }
.policy-section li:last-child { border-bottom: 1px solid var(--soft-line); }
.policy-section li::before { content: ""; position: absolute; top: 1.55rem; left: .1rem; width: .28rem; height: .28rem; border-radius: 50%; background: var(--muted); }
.identity-list, .legal-bases { margin: 2.7rem 0 0; }
.identity-list div, .legal-bases div { display: grid; grid-template-columns: minmax(8.5rem, .7fr) minmax(0, 1.8fr); gap: 2rem; padding: 1.05rem 0; border-top: 1px solid var(--soft-line); }
.identity-list div:last-child, .legal-bases div:last-child { border-bottom: 1px solid var(--soft-line); }
address { margin: 2rem 0; color: #d8d5cf; font-style: normal; }

.site-footer { border-top: 1px solid var(--line); background: var(--off-black); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: clamp(2rem, 6vw, 6rem); padding-block: clamp(4rem, 7vw, 7rem); }
.footer-intro img { width: 5.25rem; }
.footer-name { margin: 1.2rem 0 .4rem; color: var(--white) !important; font-family: var(--serif); font-size: 1.55rem !important; }
.footer-intro p { max-width: 20rem; color: var(--faint); font-size: .82rem; }
.footer-heading { margin: 0 0 1rem; color: var(--faint); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 0 0 .6rem; color: var(--muted); font-size: .82rem; }
.site-footer a { text-decoration: none; }
.footer-lower { min-height: 5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-top: 1px solid var(--soft-line); color: var(--faint); font-size: .75rem; }
.footer-lower p { margin: 0; }
.footer-lower div { display: flex; flex-wrap: wrap; gap: 1.5rem; }

@media (max-width: 980px) {
  :root { --header-height: 5.5rem; }
  .header-inner { grid-template-columns: 5rem 1fr auto; }
  .desktop-nav, .header-quote { display: none; }
  .menu-button { display: flex; justify-self: end; align-items: center; }
  .proof-strip .shell { grid-template-columns: 1fr 1fr; }
  .proof-strip span:nth-child(2) { border-right: 0; }
  .proof-strip span:nth-child(3) { border-left: 1px solid var(--soft-line); border-top: 1px solid var(--soft-line); }
  .proof-strip span:nth-child(4) { border-top: 1px solid var(--soft-line); }
  .service-feature, .service-feature.reverse { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --gutter: 1rem; --section-space: clamp(4.5rem, 18vw, 7rem); }
  .home-hero { min-height: 46rem; }
  .home-hero-copy h1 { font-size: clamp(3.6rem, 17vw, 5.8rem); }
  .home-hero-copy { padding-bottom: 2.5rem; }
  .trust-line { max-width: 22rem; }
  .proof-strip .shell { width: 100%; }
  .proof-strip span { min-height: 4.5rem; padding: .8rem 1rem; font-size: .65rem; }
  .intro-section, .service-feature, .service-feature.reverse, .split-section, .area-preview, .about-preview, .service-overview, .editorial-grid, .services-index, .about-story, .area-layout, .review-grid { grid-template-columns: 1fr; }
  .intro-section { display: grid; align-items: start; }
  .service-feature.reverse .service-image { order: 0; }
  .service-feature { gap: 2rem; }
  .before-after { grid-template-columns: 1fr; }
  .page-hero-image { aspect-ratio: 4 / 5; }
  .masonry-preview { grid-template-columns: 1fr 1fr; }
  .area-disc { width: min(100%, 26rem); justify-self: center; }
  .about-image { max-height: 38rem; }
  .link-grid { grid-template-columns: 1fr; }
  .link-grid a { min-height: 9rem; }
  .comparison-table, .comparison-table tbody, .comparison-table tr, .comparison-table th, .comparison-table td { display: block; width: 100%; }
  .comparison-table thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .comparison-table tr { padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .comparison-table th, .comparison-table td { border: 0; }
  .comparison-table tbody th { padding: .45rem 0; margin-bottom: .35rem; font-size: 1.45rem; }
  .comparison-table td { display: grid; grid-template-columns: 8rem 1fr; gap: 1rem; padding: .45rem 0; }
  .comparison-table td::before { content: attr(data-label); color: var(--faint); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .gallery-grid { display: block; }
  .gallery-grid figure { margin-bottom: 1rem; }
  .form-grid, .check-grid { grid-template-columns: 1fr; }
  .contact-aside { padding: 1.5rem; }
  .contents ol { grid-template-columns: 1fr; }
  .identity-list div, .legal-bases div { grid-template-columns: 1fr; gap: .35rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-intro { grid-column: 1 / 3; }
  .footer-lower { padding-block: 1.5rem; align-items: flex-start; flex-direction: column; }
}

@media (max-width: 430px) {
  .mobile-service-links { grid-template-columns: 1fr; }
  .mobile-menu-actions { flex-direction: column; }
  .mobile-menu-actions .button { width: 100%; }
  .actions { align-items: stretch; flex-direction: column; }
  .actions .button { width: 100%; }
  .actions .text-link { justify-content: center; }
  .home-hero-copy .actions { align-items: flex-start; }
  .home-hero-copy .actions .button { width: auto; }
  .home-hero-copy .actions .text-link { justify-content: flex-start; }
  .proof-strip span { font-size: .6rem; }
  .process li { grid-template-columns: 3.3rem 1fr; gap: 1rem; }
  .price-list a { grid-template-columns: 1fr 1.5rem; gap: .8rem; padding-block: 1rem; }
  .price-list strong { grid-column: 1; grid-row: 2; }
  .price-list i { grid-column: 2; grid-row: 1 / 3; }
  .masonry-preview { display: block; }
  .masonry-preview picture { margin-bottom: 1rem; }
  .service-facts div, .contact-aside dl div { grid-template-columns: 1fr; gap: .35rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-intro { grid-column: auto; }
}

@media print {
  .site-header, .site-footer, .breadcrumbs, .final-cta, .button { display: none !important; }
  :root { color-scheme: light; }
  body { background: #fff; color: #111; font-size: 10pt; }
  .legal-hero, .policy { width: 100%; padding: 1cm 0; }
  .legal-hero { border-color: #bbb; }
  .legal-hero h1 { font-size: 36pt; }
  .legal-hero .serif-intro, .policy-section p, .policy-section li, dd, address { color: #222; }
  .contents { page-break-after: always; }
  .policy-section { max-width: none; margin-bottom: 1cm; page-break-inside: avoid; }
  .policy-section h2 { font-size: 22pt; }
  a { color: #111; text-decoration: underline; }
}

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

/* Homepage featured transformation: keep the before and after cards side by side on tablet and desktop. */
.before-after {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.before-after figure {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black);
}
.before-after picture {
  border: 0;
}
.before-after figcaption {
  min-height: 3.25rem;
  padding: .9rem 1rem 1rem;
}
@media (max-width: 520px) {
  .before-after {
    grid-template-columns: 1fr;
  }
}

/* Homepage interior reset comparison — final verified layout. */
#transformation .seat-comparison-grid-final {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  width: min(100%, 56.25rem);
  margin: 2.5rem auto 0;
  align-items: stretch;
}

#transformation .seat-comparison-card-final {
  display: grid;
  grid-template-rows: auto 16.25rem auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--black);
}

#transformation .seat-comparison-label-final {
  padding: .8rem .9rem;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

#transformation .seat-comparison-picture-final {
  display: block;
  width: 100%;
  height: 16.25rem;
  overflow: hidden;
  background: var(--black);
}

#transformation .seat-comparison-picture-final img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#transformation .seat-comparison-card-final:first-child img { object-position: center 48%; }
#transformation .seat-comparison-card-final:last-child img { object-position: center 42%; }

#transformation .seat-comparison-card-final figcaption {
  margin: 0;
  padding: .85rem .9rem 1rem;
  color: var(--faint);
  font-size: .75rem;
  line-height: 1.5;
}

@media (max-width: 600px) {
  #transformation .seat-comparison-grid-final {
    grid-template-columns: 1fr;
    width: min(100%, 30rem);
  }

  #transformation .seat-comparison-card-final {
    grid-template-rows: auto 13rem auto;
  }

  #transformation .seat-comparison-picture-final {
    height: 13rem;
  }
}
