/*
Theme Name: Louvered Living
Theme URI: https://freestandingaluminumautomaticlouveredpergola.com/
Author: Hale Digital Marketing
Author URI: https://freestandingaluminumautomaticlouveredpergola.com/about/
Description: A fast, conversion-focused affiliate theme for freestanding aluminum automatic louvered pergolas. Ships the full site — money pages, guides, calculators, schema, sitemap and menus — and builds itself on activation.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: louvered-living
Tags: affiliate, one-column, custom-menu, custom-logo, featured-images, translation-ready
*/

/* ==========================================================================
   1. Tokens
   ========================================================================== */
:root {
  --ink: #0b0f18;
  --ink-2: #121a2a;
  --ink-3: #1a2338;
  --ink-4: #070a11;
  --text-heading: #f4f0e6;
  --text-body: #b9c2d2;
  --slate: #8993a8;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --grid-line: rgba(184, 134, 63, 0.1);
  --gold: #b8863f;
  --gold-light: #d7ac6d;
  --gold-dim: rgba(184, 134, 63, 0.16);
  --green: #5fbf8b;
  --red: #e0796b;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --chamfer: 22px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.6);
  --shadow-sm: 0 10px 26px -14px rgba(0, 0, 0, 0.55);
  --drop-shadow-sm: 0 10px 18px rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --header-h: 68px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ==========================================================================
   2. Base
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text-body);
  background-color: var(--ink);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg, video { max-width: 100%; }
img { display: block; height: auto; }
picture { display: block; }
a { color: var(--gold-light); }
a:hover { color: var(--white); }

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.5em; font-weight: 700; letter-spacing: -0.015em; color: var(--text-heading); }
h1 { font-size: clamp(2rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.18rem; }
h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--slate); }
p { margin: 0 0 1.1em; }
ol, ul { padding-left: 1.25em; }
li { margin-bottom: 0.45em; }
strong { color: var(--text-heading); }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }
table { border-collapse: collapse; }
figure { margin: 2rem 0; }
figcaption { font-size: 0.85rem; color: var(--slate); margin-top: 0.6rem; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; width: 100%; }
.wrap.narrow { max-width: 780px; }

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%); white-space: nowrap;
}
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--ink); padding: 12px 18px; z-index: 999; font-weight: 700; }
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.text-link { color: var(--gold-light); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gold-dim); }
.text-link:hover { border-bottom-color: var(--gold-light); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  margin: 0 0 0.7em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--gold); display: inline-block; flex-shrink: 0; }

.geo-grid {
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 44px 44px;
}

.section { padding: 88px 0; }
.section--alt { background: var(--ink-2); }
.section--tool { padding: 72px 0 88px; }
.section-flush { padding: 0; }
.section-lead { max-width: 640px; }
.section-cta { margin-top: 40px; }

/* Dividers */
.divider { width: 100%; line-height: 0; }
.divider svg { width: 100%; height: 44px; display: block; }
.divider path { fill: none; stroke: var(--gold); stroke-width: 1.4; opacity: 0.55; }
.divider circle { fill: var(--gold-light); }
.divider--ink2 { background: var(--ink-2); }
.divider--ink { background: var(--ink); }
.divider--ink4 { background: var(--ink-4); }

/* ==========================================================================
   3. Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
  font-family: inherit;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #241605; box-shadow: var(--shadow-sm); font-weight: 700; }
.btn-primary:hover { filter: brightness(1.08); color: #241605; }
.btn-ghost { background: transparent; border-color: rgba(255, 255, 255, 0.35); color: var(--white); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--gold-light); color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; clip-path: polygon(7px 0, 100% 0, 100% calc(100% - 7px), calc(100% - 7px) 100%, 0 100%, 0 7px); }
.btn-nav-cta { display: none; }

.cta-block { margin: 2.4rem 0; text-align: center; }
.cta-note { font-size: 0.84rem; color: var(--slate); margin: 0.9rem 0 0; }

/* ==========================================================================
   4. Header / nav
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7, 10, 17, 0);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
.site-header--solid {
  background: rgba(7, 10, 17, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.05rem; color: var(--white); text-decoration: none; flex-shrink: 0; }
.brand:hover { color: var(--white); }
.brand-mark { width: 24px; height: 24px; fill: var(--gold); flex-shrink: 0; }
.brand-text { letter-spacing: -0.02em; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.main-nav li { margin: 0; }
.main-nav a { color: rgba(255, 255, 255, 0.82); text-decoration: none; font-size: 0.92rem; font-weight: 500; transition: color 0.15s ease; }
.main-nav a:hover, .main-nav .current-menu-item > a { color: var(--gold-light); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-scrim { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: 99; }

/* ==========================================================================
   5. Breadcrumbs
   ========================================================================== */
.breadcrumbs { background: var(--ink-4); border-bottom: 1px solid var(--line); font-size: 0.82rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 12px 0; }
.breadcrumbs li { margin: 0; color: var(--slate); }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; opacity: 0.5; }
.breadcrumbs a { color: var(--slate); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs [aria-current] { color: var(--text-heading); }

/* ==========================================================================
   6. Hero
   ========================================================================== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-fit: cover; filter: saturate(0.9) brightness(0.84); }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,10,17,0.62) 0%, rgba(7,10,17,0.38) 35%, rgba(7,10,17,0.97) 100%); }
.hero-content { position: relative; z-index: 1; padding-top: 150px; padding-bottom: 84px; }
.hero-content h1 { max-width: 24ch; }
.hero-sub { font-size: 1.12rem; color: rgba(255, 255, 255, 0.9); max-width: 60ch; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin: 30px 0 40px; }
.trust-row { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 26px; }
.trust-row li { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; font-weight: 600; color: rgba(255, 255, 255, 0.9); margin: 0; }
.trust-row svg { width: 20px; height: 20px; fill: none; stroke: var(--gold-light); stroke-width: 1.8; flex-shrink: 0; }

/* Page banner (interior full-width guides) */
.page-banner { position: relative; min-height: 46vh; display: flex; align-items: flex-end; overflow: hidden; padding-top: var(--header-h); }
.page-banner-media { position: absolute; inset: 0; }
.page-banner-media picture, .page-banner-media img { width: 100%; height: 100%; }
.page-banner-media img { object-fit: cover; filter: saturate(0.85) brightness(0.7); }
.page-banner-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,10,17,0.7) 0%, rgba(7,10,17,0.55) 40%, rgba(11,15,24,0.98) 100%); }
.page-banner-content { position: relative; z-index: 1; padding-top: 70px; padding-bottom: 46px; }
.page-banner-content h1 { max-width: 20ch; }

/* ==========================================================================
   7. Document body (prose)
   ========================================================================== */
.doc-head { padding: calc(var(--header-h) + 56px) 0 0; }
.doc-head h1 { max-width: 22ch; }
.doc-lead { font-size: 1.08rem; }

.byline { font-size: 0.82rem; color: var(--slate); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 0; }
.byline-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

.doc-body { padding: 44px 0 80px; font-size: 1.03rem; }
.doc-body--wide { max-width: var(--max); margin: 0 auto; padding: 44px 24px 80px; }
.doc-body > h2 { margin-top: 2.4em; padding-top: 0.2em; scroll-margin-top: calc(var(--header-h) + 20px); }
.doc-body > h3 { margin-top: 1.9em; }
.doc-body > ul, .doc-body > ol { margin-bottom: 1.4em; }
.doc-body > ul li::marker { color: var(--gold); }
.doc-body blockquote {
  margin: 2rem 0; padding: 1.2rem 1.6rem;
  border-left: 3px solid var(--gold);
  background: var(--ink-3);
  font-size: 1.02rem;
}
.doc-body blockquote p:last-child { margin-bottom: 0; }

/* Prose tables */
.doc-body table, .table-scroll table {
  width: 100%; background: var(--ink-3); min-width: 620px; text-align: left; font-size: 0.92rem;
}
.doc-body .table-scroll, .table-scroll { overflow-x: auto; margin: 2rem 0; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--ink-4); color: var(--white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.07em; }
tbody th { font-weight: 600; color: var(--text-heading); background: rgba(255, 255, 255, 0.03); }
td.highlight, th.highlight { background: var(--gold-dim); color: var(--text-heading); }
thead th.highlight { background: var(--gold); color: #241605; }
.table-note { font-size: 0.8rem; color: var(--slate); margin-top: 14px; }

/* Quick answer + callouts */
.quick-answer {
  border: 1px solid var(--gold-dim);
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, rgba(184,134,63,0.1), rgba(26,35,56,0.6));
  padding: 22px 26px;
  margin: 0 0 2.4rem;
}
.quick-answer-label { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; font-weight: 700; color: var(--gold-light); margin-bottom: 0.6em; }
.quick-answer-body p:last-child { margin-bottom: 0; }
.quick-answer-body { font-size: 1.06rem; color: var(--text-heading); }

.callout { display: flex; flex-direction: column; gap: 4px; padding: 18px 22px; margin: 2rem 0; border: 1px solid var(--line); background: var(--ink-3); border-left-width: 4px; border-left-style: solid; }
.callout > div > p:last-child { margin-bottom: 0; }
.callout--note { border-left-color: var(--slate); }
.callout--tip { border-left-color: var(--green); }
.callout--warn { border-left-color: var(--red); }
.callout-title { font-weight: 700; color: var(--text-heading); margin-bottom: 0.35em; }

/* Table of contents */
.toc { border: 1px solid var(--line); background: var(--ink-3); padding: 20px 24px; margin: 0 0 2.6rem; }
.toc-title { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; font-weight: 700; color: var(--gold-light); margin-bottom: 0.7em; }
.toc ol { margin: 0; padding-left: 1.2em; columns: 2; column-gap: 32px; }
.toc li { font-size: 0.9rem; margin-bottom: 0.4em; break-inside: avoid; }
.toc a { color: var(--text-body); text-decoration: none; }
.toc a:hover { color: var(--gold-light); }

.disclosure { font-size: 0.82rem; color: rgba(255, 255, 255, 0.55); max-width: 660px; margin: 2rem auto 0; line-height: 1.65; }
.disclosure strong { color: rgba(255, 255, 255, 0.85); }
.disclosure-inline { font-size: 0.84rem; color: var(--slate); border-top: 1px solid var(--line); padding-top: 1.2rem; margin-top: 2.6rem; }

.post-hero { padding-top: 32px; }
.post-hero img { width: 100%; }

/* ==========================================================================
   8. Home sections
   ========================================================================== */
.engineering { position: relative; background: var(--ink-2); color: var(--white); overflow: hidden; padding: 96px 0; }
.engineering-canvas-wrap { position: absolute; inset: 0; opacity: 0.9; }
#engineering-canvas { width: 100%; height: 100%; display: block; }
.engineering-content { position: relative; z-index: 1; text-align: center; }
.engineering h2 { max-width: 760px; margin-left: auto; margin-right: auto; }
.engineering-lead { max-width: 680px; margin: 0 auto 2.4em; color: rgba(255, 255, 255, 0.72); font-size: 1.04rem; }
.stat-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.stat {
  display: flex; align-items: baseline; flex-direction: column;
  padding: 24px 28px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%, 0 18px);
}
.stat:nth-child(even) { clip-path: polygon(0 0, 100% 0, 100% 100%, 18px 100%, 0 calc(100% - 18px)); }
.stat-num { font-size: 2.6rem; font-weight: 800; color: var(--gold-light); font-variant-numeric: tabular-nums; line-height: 1; }
.stat-suffix { font-size: 1.3rem; font-weight: 800; color: var(--gold-light); margin-left: 2px; }
.stat-label { font-size: 0.83rem; color: rgba(255, 255, 255, 0.62); margin-top: 10px; line-height: 1.45; }

.why { padding: 96px 0; position: relative; overflow: hidden; background: var(--ink); }
.why-canvas-wrap { position: absolute; top: -10%; right: -8%; width: 620px; height: 620px; max-width: 60vw; max-height: 60vw; opacity: 0.3; pointer-events: none; z-index: 0; }
.why #why-canvas { width: 100%; height: 100%; display: block; }
.why .wrap { position: relative; z-index: 1; }
.why p { font-size: 1.05rem; }

.features { padding: 88px 0 100px; background: var(--ink); }
.features h2 { max-width: 780px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.feature-card {
  position: relative;
  background: var(--ink-3);
  border: 1px solid var(--line);
  padding: 28px 26px 24px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
  clip-path: polygon(var(--chamfer) 0, 100% 0, 100% calc(100% - var(--chamfer)), calc(100% - var(--chamfer)) 100%, 0 100%, 0 var(--chamfer));
}
.feature-card:nth-child(even) { clip-path: polygon(0 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% 100%, var(--chamfer) 100%, 0 calc(100% - var(--chamfer))); }
.feature-card:hover { transform: translateY(-4px); filter: drop-shadow(var(--drop-shadow-sm)); border-color: var(--line-strong); }
.feature-card-dots { position: absolute; inset: 0; z-index: 0; opacity: 0.8; }
.feature-card > svg, .feature-card > h3, .feature-card > p { position: relative; z-index: 1; }
.feature-card svg { width: 32px; height: 32px; stroke: var(--gold-light); fill: none; stroke-width: 1.6; margin-bottom: 14px; filter: drop-shadow(0 0 6px rgba(184,134,63,0.5)); }
.feature-card p { margin: 0; font-size: 0.94rem; }

/* Louver demo */
.demo { background-color: var(--ink-2); padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.demo-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.demo-lead { max-width: 640px; margin: 0 auto 2.2em; }
.demo-panel { max-width: 820px; margin: 0 auto; position: relative; padding: 14px; }
.demo-panel::before, .demo-panel::after { content: ""; position: absolute; width: 26px; height: 26px; border: 2px solid var(--gold); pointer-events: none; }
.demo-panel::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.demo-panel::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.demo-image-stack { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; background: var(--ink); }
.demo-image-stack picture { position: absolute; inset: 0; }
.demo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.5s ease; }
.demo-image-stack picture:first-of-type .demo-img { opacity: 1; }
.demo-image-stack.show-closed picture:first-of-type .demo-img { opacity: 0; }
.demo-image-stack.show-closed picture:nth-of-type(2) .demo-img { opacity: 1; }
.demo-state { display: none; }
.demo-badge { position: absolute; left: 16px; bottom: 16px; background: rgba(7,10,17,0.85); border: 1px solid var(--gold-dim); color: var(--white); padding: 8px 16px; font-size: 0.83rem; font-weight: 700; z-index: 2; }
.demo-controls { display: flex; justify-content: center; gap: 12px; margin: 22px 0 14px; }
.demo-btn, .size-btn, .calc-size, .windsel-btn {
  padding: 10px 22px;
  border: 2px solid var(--line);
  background: var(--ink-3);
  color: var(--text-body);
  font-weight: 600;
  font-family: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.15s ease;
  clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%, 0 12px);
}
.demo-btn.is-active, .demo-btn:hover, .windsel-btn:hover { border-color: var(--gold); color: var(--gold-light); }
.demo-caption { font-size: 0.86rem; color: var(--slate); max-width: 560px; margin: 10px auto 0; }

/* Picks preview */
.picks-preview { padding: 96px 0; background: var(--ink); }
.preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.preview-card { background: var(--ink-3); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s ease, border-color 0.2s ease; }
.preview-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.preview-media img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.preview-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.preview-body h3 { margin-bottom: 0.5em; }
.preview-body p { font-size: 0.92rem; }
.preview-price { color: var(--gold-light); font-weight: 700; font-size: 1.05rem; margin-top: auto; }

/* Cost teaser */
.cost-teaser { padding: 0 0 96px; background: var(--ink); }
.cost-teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; background: var(--ink-3); border: 1px solid var(--line); padding: 48px; }
.cost-teaser-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* Guides strip */
.guides-strip { padding: 96px 0; background: var(--ink-2); }
.guides-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.guides-grid--archive { margin-top: 0; }
.guide-card { display: flex; flex-direction: column; background: var(--ink-3); border: 1px solid var(--line); text-decoration: none; overflow: hidden; transition: transform 0.2s ease, border-color 0.2s ease; }
.guide-card:hover { transform: translateY(-4px); border-color: var(--gold-dim); }
.guide-card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.guide-card-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.guide-card-title { font-weight: 700; color: var(--text-heading); font-size: 1.05rem; line-height: 1.3; }
.guide-card-desc { font-size: 0.9rem; color: var(--text-body); }
.guide-card-go { font-size: 0.85rem; color: var(--gold-light); font-weight: 600; margin-top: 4px; }
.archive-wrap { padding: 44px 24px 80px; }

/* Related */
.related { padding: 84px 0; background: var(--ink-2); border-top: 1px solid var(--line); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.related-card { display: flex; flex-direction: column; gap: 8px; padding: 24px; background: var(--ink-3); border: 1px solid var(--line); text-decoration: none; transition: border-color 0.2s ease, transform 0.2s ease; }
.related-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.related-card-title { font-weight: 700; color: var(--text-heading); font-size: 1.02rem; line-height: 1.3; }
.related-card-desc { font-size: 0.88rem; color: var(--text-body); }
.related-card-go { color: var(--gold-light); font-weight: 700; }

/* Final CTA */
.final-cta { position: relative; background: var(--ink-2); color: var(--white); padding: 104px 0; text-align: center; overflow: hidden; }
.final-cta-canvas-wrap { position: absolute; inset: 0; opacity: 0.55; pointer-events: none; z-index: 0; }
.final-cta #final-cta-canvas { width: 100%; height: 100%; display: block; }
.final-cta .wrap { position: relative; z-index: 1; }
.final-cta h2 { color: var(--white); }
.final-cta p { color: rgba(255, 255, 255, 0.75); }
.final-cta .btn-lg { margin: 12px 0 32px; }

/* ==========================================================================
   9. Match finder
   ========================================================================== */
.finder { border: 1px solid var(--line); background: linear-gradient(160deg, var(--ink-3), var(--ink-2)); padding: 44px; position: relative; overflow: hidden; }
.finder::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent); }
.finder-head { max-width: 640px; }
.finder-lead { color: var(--text-body); }
.finder-progress { height: 4px; background: rgba(255,255,255,0.08); margin: 28px 0 10px; }
.finder-progress-bar { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transition: width 0.35s ease; }
.finder-step-count { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--slate); margin-bottom: 26px; }

.finder-step { display: none; border: 0; padding: 0; margin: 0; min-width: 0; }
.finder-step.is-active { display: block; animation: ll-fade 0.3s ease; }
@keyframes ll-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.finder-q { font-size: clamp(1.3rem, 2.4vw, 1.75rem); font-weight: 700; color: var(--text-heading); padding: 0; line-height: 1.2; }
.finder-help { font-size: 0.9rem; color: var(--slate); margin: 0.5em 0 1.6em; }
.finder-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.finder-opt {
  display: flex; align-items: center; gap: 14px;
  text-align: left; padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  color: var(--text-heading);
  font-size: 0.98rem; font-family: inherit; font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.finder-opt:hover { border-color: var(--gold); background: rgba(184,134,63,0.12); transform: translateY(-2px); }
.finder-opt-key { width: 28px; height: 28px; flex-shrink: 0; display: grid; place-items: center; border: 1px solid var(--gold-dim); color: var(--gold-light); font-size: 0.78rem; font-weight: 700; }
.finder-back { margin-top: 20px; background: none; border: 0; color: var(--slate); font-family: inherit; font-size: 0.88rem; cursor: pointer; padding: 4px 0; }
.finder-back:hover { color: var(--gold-light); }

.finder-result { animation: ll-fade 0.4s ease; }
.finder-result-card { display: grid; grid-template-columns: 300px 1fr; gap: 32px; align-items: start; margin-top: 20px; }
.finder-result-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border: 1px solid var(--line); }
.finder-result-body h3 { font-size: 1.5rem; margin-bottom: 0.4em; }
.finder-result-specs { list-style: none; padding: 0; margin: 20px 0 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.finder-result-specs li { display: flex; flex-direction: column; gap: 2px; margin: 0; padding: 12px 0 0; border-top: 1px solid var(--line); }
.finder-result-specs span { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate); }
.finder-result-specs strong { color: var(--text-heading); font-size: 0.98rem; }
.finder-result-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.finder-result-note { font-size: 0.84rem; color: var(--slate); margin: 18px 0 0; }

.pick-tier {
  display: inline-block;
  align-self: flex-start;
  background: var(--gold); color: #241605;
  font-size: 0.7rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 12px; margin-bottom: 12px;
}

/* ==========================================================================
   10. Picks
   ========================================================================== */
.picks { display: grid; gap: 28px; margin: 2.5rem 0 3rem; }
.pick { display: grid; grid-template-columns: 340px 1fr; gap: 0; background: var(--ink-3); border: 1px solid var(--line); overflow: hidden; scroll-margin-top: calc(var(--header-h) + 20px); }
.pick-media { position: relative; }
.pick-media picture, .pick-media img { height: 100%; }
.pick-img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.pick-rank { position: absolute; top: 0; left: 0; background: var(--ink-4); color: var(--gold-light); font-weight: 800; font-size: 1.1rem; padding: 10px 16px; border-right: 1px solid var(--gold-dim); border-bottom: 1px solid var(--gold-dim); }
.pick-body { padding: 30px 32px 32px; }
.pick-body h3 { font-size: 1.45rem; margin-bottom: 0.3em; }
.pick-tagline { color: var(--slate); font-size: 0.96rem; }

.pick-score { display: grid; grid-template-columns: 110px 1fr; gap: 24px; align-items: center; margin: 22px 0; padding: 18px; background: rgba(0,0,0,0.25); border: 1px solid var(--line); }
.pick-score-total { text-align: center; }
.pick-score-num { display: block; font-size: 2.4rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.pick-score-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--slate); }
.pick-score-bars { display: grid; gap: 7px; }
.pick-bar { display: grid; grid-template-columns: 86px 1fr 34px; gap: 10px; align-items: center; font-size: 0.78rem; }
.pick-bar-label { color: var(--slate); }
.pick-bar-track { height: 6px; background: rgba(255,255,255,0.08); }
.pick-bar-fill { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.pick-bar-val { color: var(--text-heading); font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; }

.pick-specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 20px; margin: 0 0 20px; }
.pick-specs > div { border-top: 1px solid var(--line); padding-top: 10px; }
.pick-specs dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate); margin-bottom: 3px; }
.pick-specs dd { margin: 0; font-size: 0.92rem; color: var(--text-heading); font-weight: 600; }
.pick-bestfor { font-size: 0.95rem; }
.pick-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 20px 0 26px; }
.pick-proscons ul { margin: 0; padding-left: 1.15em; font-size: 0.9rem; }
.pick-pros li::marker { color: var(--green); }
.pick-cons li::marker { color: var(--red); }
.pick-proscons h4 { margin-bottom: 0.7em; }

/* Compare tool */
.compare-tool { margin: 2.5rem 0; }
.compare-controls { display: flex; gap: 18px; flex-wrap: wrap; align-items: flex-end; padding: 20px 22px; background: var(--ink-3); border: 1px solid var(--line); border-bottom: 0; }
.compare-field { display: flex; flex-direction: column; gap: 6px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate); }
.compare-field select {
  background: var(--ink-4); color: var(--text-heading);
  border: 1px solid var(--line); padding: 9px 12px;
  font-family: inherit; font-size: 0.9rem; text-transform: none; letter-spacing: 0;
  min-width: 170px;
}
.compare-count { margin: 0 0 4px auto; font-size: 0.82rem; color: var(--gold-light); text-transform: none; letter-spacing: 0; }
.compare-table tbody th a { color: var(--text-heading); text-decoration: none; font-weight: 700; display: block; }
.compare-table tbody th a:hover { color: var(--gold-light); }
.compare-tier { display: block; font-size: 0.72rem; color: var(--gold-light); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-top: 3px; }
.compare-score { display: inline-block; background: var(--gold-dim); color: var(--gold-light); font-weight: 800; padding: 4px 10px; font-variant-numeric: tabular-nums; }
.compare-empty { padding: 24px; background: var(--ink-3); border: 1px solid var(--line); border-top: 0; margin: 0; color: var(--slate); }

/* ==========================================================================
   11. Calculator
   ========================================================================== */
.calc { margin: 2.5rem 0; }
.calc-head { max-width: 640px; margin-bottom: 32px; }
.calc-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 28px; align-items: start; }
.calc-block { border: 1px solid var(--line); background: var(--ink-3); padding: 24px; margin: 0 0 20px; }
.calc-block legend { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-light); font-weight: 700; padding: 0 8px; }
.calc-sizes { display: flex; flex-wrap: wrap; gap: 10px; }
.calc-size.is-active, .calc-size:hover, .size-btn.is-active, .size-btn:hover, .windsel-btn.is-active { border-color: var(--gold); background: var(--gold); color: #241605; }
.calc-addons { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.calc-addons li { margin: 0; }
.calc-addons label { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 11px 12px; cursor: pointer; transition: background 0.15s ease; }
.calc-addons label:hover { background: rgba(255,255,255,0.04); }
.calc-addon { width: 18px; height: 18px; accent-color: var(--gold); cursor: pointer; }
.calc-addon-label { font-size: 0.93rem; }
.calc-addon-price { font-size: 0.82rem; color: var(--slate); font-variant-numeric: tabular-nums; white-space: nowrap; }

.calc-output { position: sticky; top: calc(var(--header-h) + 20px); border: 1px solid var(--gold-dim); background: linear-gradient(165deg, rgba(184,134,63,0.12), var(--ink-3)); padding: 30px; }
.calc-output-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--gold-light); font-weight: 700; margin-bottom: 0.5em; }
.calc-total { font-size: clamp(1.6rem, 3.2vw, 2.2rem); font-weight: 800; color: var(--text-heading); margin: 0 0 0.2em; font-variant-numeric: tabular-nums; line-height: 1.15; }
.calc-dash { color: var(--slate); font-weight: 400; }
.calc-persqft { font-size: 0.86rem; color: var(--slate); }
.calc-breakdown { list-style: none; padding: 0; margin: 22px 0; }
.calc-breakdown li { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 0.9rem; margin: 0; }
.calc-breakdown strong { font-variant-numeric: tabular-nums; }
.calc-cta .btn { width: 100%; }
.calc-note { font-size: 0.78rem; color: var(--slate); margin: 16px 0 0; }

/* Checklist */
.checklist-tool { margin: 2.5rem 0; }
.checklist-head { margin-bottom: 26px; }
.checklist-progress { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.checklist-progress-track { flex: 1; height: 6px; background: rgba(255,255,255,0.08); }
.checklist-progress-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--green)); transition: width 0.3s ease; }
.checklist-status { margin: 0; font-size: 0.82rem; color: var(--gold-light); font-weight: 700; white-space: nowrap; }
.checklist-items { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; counter-reset: ll-check; }
.checklist-items > li { margin: 0; }
.checklist-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; padding: 18px 22px; background: var(--ink-3); border: 1px solid var(--line); cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease; }
.checklist-item:hover { border-color: var(--line-strong); }
.checklist-box { position: absolute; width: 1px; height: 1px; opacity: 0; margin: 0; pointer-events: none; }
.checklist-box-ui { width: 24px; height: 24px; border: 2px solid var(--line-strong); display: grid; place-items: center; flex-shrink: 0; transition: all 0.15s ease; }
.checklist-box-ui::after { content: "✓"; color: #241605; font-weight: 800; font-size: 0.9rem; opacity: 0; transition: opacity 0.15s ease; }
.checklist-box:checked + .checklist-box-ui { background: var(--green); border-color: var(--green); }
.checklist-box:checked + .checklist-box-ui::after { opacity: 1; }
.checklist-box:focus-visible + .checklist-box-ui { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.checklist-copy { display: flex; flex-direction: column; gap: 5px; }
.checklist-copy strong { font-size: 1rem; }
.checklist-copy span { font-size: 0.9rem; color: var(--text-body); }
.checklist-done { margin-top: 22px; padding: 24px; border: 1px solid var(--green); background: rgba(95,191,139,0.1); text-align: center; }
.checklist-done p { margin-bottom: 1rem; }

/* Wind selector */
.windsel { margin: 2.5rem 0; }
.windsel-opts { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 26px; }
.windsel-result { border: 1px solid var(--gold-dim); background: rgba(184,134,63,0.08); padding: 26px 30px; }
.windsel-min-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--gold-light); font-weight: 700; margin-bottom: 0.4em; }
.windsel-min { font-size: 2rem; font-weight: 800; color: var(--text-heading); margin: 0 0 0.4em; }
.windsel-note { margin: 0; font-size: 0.95rem; }

/* Estimator (legacy home block) */
.estimator { padding: 96px 0; text-align: center; background: var(--ink); }
.size-picker { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 32px 0 36px; }
.estimate-display { margin-bottom: 30px; }
.estimate-range { display: block; font-size: 2.4rem; font-weight: 800; color: var(--text-heading); }
.estimate-label { font-size: 0.84rem; color: var(--slate); }

/* ==========================================================================
   12. FAQ / accordion
   ========================================================================== */
.faq { margin: 3rem 0; }
.accordion { margin-top: 32px; border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item h3 { margin: 0; font-size: 1rem; }
.accordion-trigger {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 20px 4px; font-size: 1.02rem; font-weight: 600;
  color: var(--text-heading); cursor: pointer; font-family: inherit;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.accordion-trigger:hover { color: var(--gold-light); }
.accordion-trigger::after { content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--gold); flex-shrink: 0; transition: transform 0.2s ease; }
.accordion-trigger[aria-expanded="true"]::after { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-panel p { padding: 0 4px 20px; margin: 0; font-size: 0.95rem; }

/* ==========================================================================
   13. Footer, sticky CTA, misc
   ========================================================================== */
.site-footer { background: var(--ink-4); color: rgba(255,255,255,0.65); padding: 60px 0 32px; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-brand .brand { color: var(--white); margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.89rem; }
.footer-email a { color: var(--gold-light); text-decoration: none; font-size: 0.88rem; }
.footer-nav-title { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--gold-light); font-weight: 700; margin-bottom: 1em; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-nav li { margin: 0; }
.footer-nav a { color: rgba(255,255,255,0.68); text-decoration: none; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-legal-list { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 16px; }
.footer-legal-list li { margin: 0; }
.footer-legal-list a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.82rem; }
.footer-legal-list a:hover { color: var(--gold-light); }
.footer-legal p { font-size: 0.77rem; color: rgba(255,255,255,0.4); margin: 0 0 10px; line-height: 1.6; }
.photo-credits { opacity: 0.8; }

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; align-items: center; gap: 14px;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(7,10,17,0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold-dim);
}
.sticky-cta.is-visible { display: flex; }
.sticky-cta-copy { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.sticky-cta-copy strong { font-size: 0.9rem; color: var(--text-heading); }
.sticky-cta-copy span { font-size: 0.78rem; color: var(--slate); }
.sticky-cta .btn { margin-left: auto; flex-shrink: 0; }
.sticky-cta-close { background: none; border: 0; color: var(--slate); font-size: 1.3rem; line-height: 1; cursor: pointer; padding: 4px 6px; flex-shrink: 0; }

#back-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 44px; height: 44px;
  background: var(--gold); color: #241605; border: 0;
  font-size: 1.2rem; cursor: pointer; box-shadow: var(--shadow-sm);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  clip-path: polygon(8px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
}
#back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.search-form { display: flex; gap: 10px; margin: 1.6rem 0; }
.search-form input {
  flex: 1; background: var(--ink-3); border: 1px solid var(--line);
  color: var(--text-heading); padding: 12px 16px; font-family: inherit; font-size: 0.95rem;
}
.error-404 { padding-top: calc(var(--header-h) + 40px); }

.pagination { margin-top: 48px; }
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.page-numbers { padding: 9px 15px; border: 1px solid var(--line); color: var(--text-body); text-decoration: none; font-size: 0.9rem; }
.page-numbers.current, .page-numbers:hover { border-color: var(--gold); color: var(--gold-light); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   14. Responsive
   ========================================================================== */
@media (min-width: 981px) {
  .btn-nav-cta { display: inline-flex; }
}

@media (max-width: 1080px) {
  .pick { grid-template-columns: 260px 1fr; }
  .pick-specs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed; top: 0; right: -100%;
    width: 72%; max-width: 300px; height: 100dvh;
    background: var(--ink-3); padding: 96px 32px;
    transition: right 0.3s ease; z-index: 101;
    overflow-y: auto;
  }
  .main-nav ul { flex-direction: column; gap: 20px; }
  .main-nav.is-open { right: 0; box-shadow: -10px 0 40px rgba(0,0,0,0.5); }
  .nav-toggle { display: flex; z-index: 102; }
  .feature-grid, .preview-grid, .guides-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .cost-teaser-inner { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-output { position: static; }
  .finder-result-card { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .hero { min-height: 88vh; }
  .hero-scrim { background: linear-gradient(180deg, rgba(7,10,17,0.78) 0%, rgba(7,10,17,0.58) 30%, rgba(7,10,17,0.98) 100%); }
  .hero-content { padding-top: 130px; padding-bottom: 64px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .trust-row { gap: 14px 22px; }
  .feature-grid, .preview-grid, .guides-grid, .related-grid { grid-template-columns: 1fr; }
  .finder { padding: 28px 22px; }
  .finder-opts { grid-template-columns: 1fr; }
  .finder-result-specs { grid-template-columns: 1fr; }
  .pick { grid-template-columns: 1fr; }
  .pick-img { min-height: 220px; aspect-ratio: 16 / 10; }
  .pick-body { padding: 24px 22px 26px; }
  .pick-score { grid-template-columns: 1fr; gap: 16px; }
  .pick-proscons { grid-template-columns: 1fr; gap: 18px; }
  .pick-specs { grid-template-columns: 1fr 1fr; }
  .toc ol { columns: 1; }
  .compare-controls { flex-direction: column; align-items: stretch; }
  .compare-field select { width: 100%; }
  .compare-count { margin: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .section, .why, .features, .engineering, .picks-preview, .guides-strip, .final-cta, .related { padding: 64px 0; }
  .doc-body--wide { padding-left: 20px; padding-right: 20px; }
  /* The sticky CTA already owns the bottom-right on phones. */
  #back-to-top { display: none; }
  .sticky-cta .btn { padding: 11px 18px; font-size: 0.88rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .sticky-cta, #back-to-top, .finder, .breadcrumbs { display: none !important; }
  body { background: #fff; color: #000; }
}
