/* ============================================================
   Artisan Home Maintenance — design system
   Palette: warm paper, deep ink, brass. Type: Bricolage Grotesque + Manrope.
   ============================================================ */
:root {
  --ink: #16140f;
  --ink-2: #221f17;
  --ink-3: #2e2a1f;
  --paper: #f5f1e8;
  --paper-2: #ece6d8;
  --paper-3: #e2dac8;
  --brass: #b9852e;
  --brass-2: #d8a44a;
  --brass-text: #8a6420; /* darker brass: AA contrast for small text on paper/white */
  --brass-soft: rgba(185, 133, 46, 0.14);
  --white: #fffdf8;
  --muted: #6f6859;
  --muted-dark: #a89f8c;
  --line: rgba(22, 20, 15, 0.12);
  --line-dark: rgba(245, 241, 232, 0.14);
  --radius: 18px;
  --radius-lg: 28px;
  --font-display: 'Bricolage Grotesque', 'Arial Black', sans-serif;
  --font-body: 'Manrope', -apple-system, system-ui, sans-serif;
  --shadow-lg: 0 30px 80px -20px rgba(22, 20, 15, 0.35);
  --shadow-md: 0 16px 44px -14px rgba(22, 20, 15, 0.22);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
  --error: #b3402e;
}

/* anchors (e.g. /contact/#quote) shouldn't land under the fixed header */
[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body::before { /* grain */
  content: '';
  position: fixed; inset: 0; z-index: 9990; pointer-events: none; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.04; margin: 0; letter-spacing: -0.025em; }
/* Bricolage Grotesque has no italics — accent words use weight + brass instead */
/* accent words: dark brass on light surfaces (AA), bright brass on dark */
em { font-style: normal; font-weight: 750; color: var(--brass-text); }
.section-dark em, .site-footer em { color: var(--brass-2); }

/* branded keyboard focus, sitewide */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
.section-dark a:focus-visible, .section-dark button:focus-visible,
.site-footer a:focus-visible, .site-footer button:focus-visible,
.hero a:focus-visible, .hero button:focus-visible { outline-color: var(--brass-2); }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--brass); color: var(--white); }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--white); padding: .8rem 1.2rem; z-index: 10000; }
.skip-link:focus { left: 0; }

/* ---------- page veil (load transition) ---------- */
.page-veil { position: fixed; inset: 0; background: var(--ink); z-index: 9995; transform-origin: top; pointer-events: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.6rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; text-decoration: none; border: 1.5px solid transparent;
  transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .35s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-solid { background: var(--brass-text); color: var(--white); box-shadow: 0 10px 28px -10px rgba(138,100,32,.55); }
.btn-solid:hover { background: var(--ink); transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(22,20,15,.45); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.section-dark .btn-outline, .on-dark .btn-outline,
.site-footer .btn-outline, .post-cta .btn-outline { border-color: var(--paper); color: var(--paper); }
.section-dark .btn-outline:hover,
.site-footer .btn-outline:hover, .post-cta .btn-outline:hover { background: var(--paper); color: var(--ink); }
.btn-ghost { color: var(--ink); background: transparent; border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-glass { background: rgba(255, 253, 248, 0.12); border-color: rgba(255,253,248,.35); color: var(--white); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(255,253,248,.22); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn-sm { padding: .6rem 1.15rem; font-size: .88rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  transition: transform .45s var(--ease), background .35s, box-shadow .35s;
}
.site-header.is-scrolled { background: rgba(245, 241, 232, 0.86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.site-header.is-hidden { transform: translateY(-110%); }
.header-inner {
  max-width: 1320px; margin: 0 auto; height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 0 clamp(1.1rem, 4vw, 2.5rem);
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.brand-roof { width: 44px; height: auto; flex: none; color: var(--brass); transition: transform .4s var(--ease); }
.brand:hover .brand-roof { transform: translateY(-2px); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-display); font-size: 1.14rem; font-weight: 750; letter-spacing: 0; color: var(--brass-text); }
.brand-text span { font-size: .68rem; text-transform: uppercase; letter-spacing: .22em; color: var(--muted); font-weight: 600; }
.page-home .site-header:not(.is-scrolled) .nav-link,
.page-darkhero .site-header:not(.is-scrolled) .nav-link,
.page-home .site-header:not(.is-scrolled) .header-phone,
.page-darkhero .site-header:not(.is-scrolled) .header-phone { color: var(--white); }
.page-home .site-header:not(.is-scrolled) .brand-text strong,
.page-darkhero .site-header:not(.is-scrolled) .brand-text strong,
.page-home .site-header:not(.is-scrolled) .brand-roof,
.page-darkhero .site-header:not(.is-scrolled) .brand-roof { color: var(--brass-2); }
.page-home .site-header:not(.is-scrolled) .brand-text span,
.page-darkhero .site-header:not(.is-scrolled) .brand-text span { color: var(--muted-dark); }

.main-nav { display: flex; gap: 1.7rem; }
.nav-link { text-decoration: none; font-size: .93rem; font-weight: 500; position: relative; padding: .3rem 0; }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--brass); transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-phone { display: flex; align-items: center; gap: .45rem; text-decoration: none; font-weight: 600; font-size: .92rem; }
.header-phone svg { width: 17px; height: 17px; color: var(--brass); }
.nav-toggle { display: none; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 8990; background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--header-h) + 2rem) clamp(1.4rem, 6vw, 3rem) 2.4rem;
  clip-path: circle(0% at calc(100% - 3rem) 2.4rem);
  transition: clip-path .65s var(--ease); pointer-events: none; visibility: hidden;
}
.mobile-menu.is-open { clip-path: circle(150% at calc(100% - 3rem) 2.4rem); pointer-events: auto; visibility: visible; }
.mobile-nav { display: flex; flex-direction: column; gap: .4rem; }
.mobile-nav a {
  font-family: var(--font-display); font-size: clamp(2rem, 8vw, 2.9rem); text-decoration: none; padding: .25rem 0;
  opacity: 0; transform: translateY(24px); transition: opacity .5s var(--ease), transform .5s var(--ease);
  transition-delay: calc(var(--i) * 60ms + 150ms);
  border-bottom: 1px solid var(--line-dark);
}
.mobile-menu.is-open .mobile-nav a { opacity: 1; transform: none; }
.mobile-nav a:active { color: var(--brass-2); }
.mobile-menu-foot { display: flex; flex-direction: column; gap: .8rem; }
.mobile-menu-foot p { font-size: .85rem; color: var(--muted-dark); text-align: center; }
.mobile-menu-foot .btn-ghost { color: var(--paper); border-color: var(--line-dark); justify-content: center; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--white); overflow: hidden; background: var(--ink); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,20,15,.55) 0%, rgba(22,20,15,.25) 40%, rgba(22,20,15,.88) 100%); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
/* Soft golden light haze — two large blurred glows drifting very slowly, like late-afternoon sun */
.hero-haze { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hero-haze::before, .hero-haze::after {
  content: ''; position: absolute; border-radius: 50%;
  mix-blend-mode: screen; will-change: transform;
}
.hero-haze::before {
  width: 62vmax; height: 62vmax; top: -28%; left: -14%;
  background: radial-gradient(circle, rgba(216,164,74,.14) 0%, rgba(216,164,74,0) 62%);
  animation: haze-a 48s ease-in-out infinite alternate;
}
.hero-haze::after {
  width: 72vmax; height: 72vmax; bottom: -34%; right: -18%;
  background: radial-gradient(circle, rgba(232,186,106,.09) 0%, rgba(232,186,106,0) 58%);
  animation: haze-b 62s ease-in-out infinite alternate;
}
@keyframes haze-a { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(7vw, 5vh, 0) scale(1.12); } }
@keyframes haze-b { from { transform: translate3d(0, 0, 0) scale(1.1); } to { transform: translate3d(-6vw, -4vh, 0) scale(1); } }
.hero-inner { position: relative; z-index: 3; width: 100%; max-width: 1320px; margin: 0 auto; padding: 9rem clamp(1.1rem, 4vw, 2.5rem) 6.5rem; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  color: var(--brass-2); margin-bottom: 1.6rem;
}
.hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brass-2); box-shadow: 0 0 0 0 rgba(216,164,74,.6); animation: pulse 2.2s infinite; }
.hero-kicker svg { width: 16px; height: 16px; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(216,164,74,.55); } 70% { box-shadow: 0 0 0 12px rgba(216,164,74,0); } 100% { box-shadow: 0 0 0 0 rgba(216,164,74,0); } }
.hero-title { font-size: clamp(3rem, 9vw, 7.2rem); font-weight: 650; color: var(--white); letter-spacing: -0.03em; }
.hero-title .line { display: block; }
.hero-title em { color: var(--brass-2); }
.hero-sub { max-width: 560px; margin-top: 1.6rem; font-size: clamp(1rem, 1.6vw, 1.18rem); color: rgba(255,253,248,.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.3rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, auto); gap: clamp(1.4rem, 4.5vw, 4rem);
  margin: 3.6rem 0 0; padding-top: 2rem; border-top: 1px solid var(--line-dark); width: fit-content;
}
.stat dt { font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 2.9rem); color: var(--brass-2); font-weight: 700; }
.stat dd { margin: .2rem 0 0; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,253,248,.62); }
.hero-scroll { position: absolute; right: clamp(1.1rem, 4vw, 2.5rem); bottom: 2.2rem; z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .6rem; color: rgba(255,253,248,.55); font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; }
.hero-scroll span { writing-mode: vertical-rl; }
.hero-scroll i { width: 1px; height: 52px; background: linear-gradient(var(--brass-2), transparent); animation: drip 2s var(--ease) infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- marquee ---------- */
.marquee { background: var(--ink); color: var(--paper); padding: 1.05rem 0; overflow: hidden; border-top: 1px solid var(--line-dark); }
.marquee-track { display: flex; align-items: center; gap: 2.2rem; width: max-content; will-change: transform; }
.marquee-track span { font-family: var(--font-display); font-weight: 550; font-size: 1.12rem; white-space: nowrap; letter-spacing: .01em; }
.marquee-track i { color: var(--brass-2); font-style: normal; }

/* ---------- sections ---------- */
.section { padding: clamp(4.5rem, 9vw, 8.5rem) clamp(1.1rem, 4vw, 2.5rem); max-width: 1320px; margin: 0 auto; }
.section-dark { max-width: none; background: var(--ink); color: var(--paper); }
.section-dark > * { max-width: 1320px; margin-left: auto; margin-right: auto; }
.section-paper { max-width: none; background: var(--paper-2); }
.section-paper > * { max-width: 1320px; margin-left: auto; margin-right: auto; }
.kicker { font-size: .78rem; letter-spacing: .24em; text-transform: uppercase; font-weight: 700; color: var(--brass-text); margin-bottom: 1.1rem; display: flex; align-items: center; gap: .5rem; }
.kicker::before { content: ''; width: 26px; height: 1.5px; background: var(--brass); display: inline-block; }
.section-dark .kicker, .on-dark .kicker { color: var(--brass-2); }
.section-head { max-width: 720px; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
/* centered variant: used on dark process/values sections where the grid below is symmetric */
.section-head.on-dark { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.on-dark .kicker { justify-content: center; }
.section-head.on-dark .section-sub { margin-left: auto; margin-right: auto; }
.section-title { font-size: clamp(2.3rem, 5.4vw, 4.2rem); }
.section-sub { margin-top: 1.2rem; color: var(--muted); font-size: 1.06rem; max-width: 560px; }
.section-dark .section-sub { color: var(--muted-dark); }
.center { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }

/* reveal base state (gsap animates in) */
[data-reveal] { opacity: 0; transform: translateY(36px); }
.no-js [data-reveal], .reduced [data-reveal] { opacity: 1; transform: none; }
/* if JS never runs, the intro veil must not leave a black screen */
.no-js .page-veil { display: none !important; }
.no-js .section-title { opacity: 1 !important; transform: none !important; }

/* ---------- home services ---------- */
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-card {
  position: relative; display: flex; flex-direction: column; text-decoration: none;
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.svc-media { aspect-ratio: 4 / 3; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.06); }
.svc-body { padding: 1.7rem 1.7rem 2rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.svc-num { font-family: var(--font-display); font-weight: 750; color: var(--brass-text); font-size: 1rem; letter-spacing: .04em; }
.svc-body h3 { font-size: 1.45rem; }
.svc-body p { color: var(--muted); font-size: .95rem; flex: 1; }
.svc-link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 650; font-size: .9rem; color: var(--brass-text); margin-top: .4rem; }
.svc-link svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.svc-card:hover .svc-link svg, .blog-card:hover .svc-link svg, .area-card:hover .svc-link svg { transform: translateX(5px); }
.svc-index { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2.2rem; }
.svc-chip {
  display: inline-flex; align-items: center; gap: .5rem; text-decoration: none;
  padding: .65rem 1.15rem; border-radius: 999px; border: 1.5px solid var(--line);
  font-size: .9rem; font-weight: 550; transition: all .3s var(--ease); background: var(--white);
}
.svc-chip svg { width: 16px; height: 16px; color: var(--brass); }
.svc-chip:hover { border-color: var(--brass); background: var(--brass-soft); transform: translateY(-2px); }

/* ---------- why ---------- */
.why-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.why-list { list-style: none; margin: 2rem 0 2.4rem; padding: 0; display: flex; flex-direction: column; gap: 1.35rem; }
.why-list li { display: flex; gap: 1rem; }
.why-ic { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--brass-soft); color: var(--brass-2); display: grid; place-items: center; }
.why-ic svg { width: 22px; height: 22px; }
.why-list strong { font-size: 1.04rem; display: block; margin-bottom: .15rem; }
.why-list p { color: var(--muted-dark); font-size: .92rem; }
.section:not(.section-dark) .why-list p { color: var(--muted); }
.section:not(.section-dark) .why-ic { color: var(--brass); }
.why-media { position: relative; }
.why-img-main { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-img-main img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.why-img-float {
  position: absolute; margin: 0; left: -14%; bottom: -10%; width: 52%;
  border-radius: var(--radius); overflow: hidden; border: 6px solid var(--ink); box-shadow: var(--shadow-lg);
}
.section:not(.section-dark) .why-img-float { border-color: var(--paper); }
.why-img-float img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.why-badge {
  position: absolute; top: 6%; right: -4%; background: var(--paper); color: var(--ink);
  border-radius: 18px; padding: 1rem 1.3rem; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: .15rem; align-items: flex-start; rotate: 3deg;
}
.why-badge strong { font-family: var(--font-display); font-size: 1.9rem; line-height: 1; }
.why-badge span { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.stars { display: inline-flex; gap: 2px; color: var(--brass); }
.stars svg { width: 15px; height: 15px; }

/* ---------- projects rail ---------- */
.projects-home { overflow: clip; }
.proj-rail { overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; margin: 0 calc(-1 * clamp(1.1rem, 4vw, 2.5rem)); padding: 0 clamp(1.1rem, 4vw, 2.5rem); cursor: grab; }
.proj-rail::-webkit-scrollbar { display: none; }
.proj-rail.is-dragging { cursor: grabbing; }
.proj-track { display: flex; gap: 1.3rem; width: max-content; padding-bottom: .5rem; }
.proj-card { width: clamp(260px, 30vw, 380px); flex: none; text-decoration: none; }
.proj-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; }
.proj-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.proj-card:hover .proj-media img { transform: scale(1.05); }
.proj-meta { padding: 1rem .3rem 0; }
.proj-cat { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-text); font-weight: 700; }
.proj-meta h3 { font-size: 1.15rem; margin-top: .25rem; }

/* ---------- process ---------- */
.process-grid { list-style: none; margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; counter-reset: step; }
.process-step { background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: 1.9rem 1.6rem; position: relative; overflow: hidden; transition: transform .4s var(--ease), border-color .4s; }
.process-step:hover { transform: translateY(-6px); border-color: rgba(216,164,74,.5); }
.ps-num { font-family: var(--font-display); font-weight: 800; font-size: 2.5rem; color: var(--brass-2); opacity: .9; line-height: 1; display: block; margin-bottom: 1rem; letter-spacing: -0.02em; }
.process-step h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.process-step p { color: var(--muted-dark); font-size: .93rem; }
.section:not(.section-dark) .process-step { background: var(--white); border-color: var(--line); }
.section:not(.section-dark) .process-step p { color: var(--muted); }

/* ---------- testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; }
.testimonial-card { margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; gap: 1.1rem; transition: transform .4s var(--ease), box-shadow .4s; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.testimonial-card blockquote { margin: 0; font-family: var(--font-display); font-size: 1.15rem; line-height: 1.45; font-weight: 500; letter-spacing: -0.01em; }
.testimonial-card figcaption { display: flex; align-items: center; gap: .7rem; font-weight: 650; font-size: .95rem; }
.t-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: var(--brass-2); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.t-src { color: var(--muted); font-weight: 450; font-size: .85rem; }

/* ---------- areas ---------- */
.area-cloud { display: flex; flex-wrap: wrap; gap: .8rem; }
.area-chip {
  display: inline-flex; align-items: center; gap: .5rem; text-decoration: none;
  font-family: var(--font-display); font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid var(--line); background: var(--white);
  transition: all .35s var(--ease);
}
.area-chip svg { width: 18px; height: 18px; color: var(--brass); }
.area-chip:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-3px) rotate(-1deg); }
.area-chip-more { background: var(--brass-soft); border-color: transparent; font-weight: 650; }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.area-card { text-decoration: none; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem 1.6rem; display: flex; flex-direction: column; gap: .6rem; transition: transform .4s var(--ease), box-shadow .4s; }
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.area-card-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--brass-soft); color: var(--brass); display: grid; place-items: center; }
.area-card-ic svg { width: 22px; height: 22px; }
.area-card h2 { font-size: 1.5rem; }
.area-card p { color: var(--muted); font-size: .92rem; flex: 1; }
.area-note { margin-top: 3rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem); display: flex; flex-direction: column; gap: .8rem; align-items: flex-start; }
.area-note h3 { font-size: 1.5rem; }
.area-note p { color: var(--muted); max-width: 720px; }
.area-note a:not(.btn) { color: var(--brass-text); font-weight: 600; }

/* ---------- blog ---------- */
.blog-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.blog-card { text-decoration: none; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-media { aspect-ratio: 16 / 10; overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.blog-card:hover .blog-media img { transform: scale(1.05); }
.blog-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.blog-cat { font-size: .73rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brass-text); font-weight: 700; }
.blog-feature .blog-cat { color: var(--brass-2); }
.blog-body h3 { font-size: 1.22rem; line-height: 1.25; flex: 1; }
.blog-body p { color: var(--muted); font-size: .92rem; }
.blog-feature { display: grid; grid-template-columns: 1.2fr 1fr; text-decoration: none; background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2.5rem; transition: transform .4s var(--ease), box-shadow .4s; }
.blog-feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-feature-media { min-height: 320px; }
.blog-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-feature-body { padding: clamp(1.8rem, 4vw, 3rem); display: flex; flex-direction: column; gap: 1rem; justify-content: center; }
.blog-feature-body h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.blog-feature-body p { color: var(--muted-dark); }

/* post */
.post-hero { padding: calc(var(--header-h) + 3.5rem) clamp(1.1rem, 4vw, 2.5rem) 0; max-width: 1000px; margin: 0 auto; }
.post-title { font-size: clamp(2rem, 5vw, 3.4rem) !important; }
.post-hero-media { margin: 2.5rem 0 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.post-hero-media img { aspect-ratio: 21 / 10; object-fit: cover; width: 100%; }
.post-body { max-width: 760px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.1rem, 4vw, 2.5rem); font-size: 1.07rem; line-height: 1.75; }
.post-body h2 { font-size: clamp(1.6rem, 3.4vw, 2.1rem); margin: 2.4rem 0 .9rem; }
.post-body h3 { font-size: 1.25rem; margin: 1.8rem 0 .6rem; font-family: var(--font-body); font-weight: 700; }
.post-body p { margin: 0 0 1.1rem; }
.post-body ul, .post-body ol { margin: 0 0 1.2rem; padding-left: 1.3rem; }
.post-body li { margin-bottom: .55rem; }
.post-body em { color: var(--muted); }
.post-cta { margin-top: 3rem; background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); padding: clamp(1.7rem, 4vw, 2.5rem); }
.post-cta h3 { font-family: var(--font-display); font-size: 1.6rem; margin: 0 0 .5rem; }
.post-cta p { color: var(--muted-dark); }
.post-cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.3rem; }

/* ---------- page hero (inner pages) ---------- */
.page-hero { position: relative; padding: calc(var(--header-h) + clamp(3.5rem, 8vw, 6.5rem)) clamp(1.1rem, 4vw, 2.5rem) clamp(3rem, 7vw, 5.5rem); max-width: 1320px; margin: 0 auto; }
/* kickers sit on paper here, not a dark photo — use the AA brass */
.page-hero:not(.has-img) .hero-kicker { color: var(--brass-text); }
.page-hero-title { font-size: clamp(2.6rem, 7vw, 5.4rem); max-width: 900px; }
.page-hero.has-img { max-width: none; color: var(--white); background: var(--ink); overflow: hidden; min-height: 72svh; display: flex; align-items: flex-end; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,20,15,.6), rgba(22,20,15,.3) 45%, rgba(22,20,15,.9)); }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero.has-img .page-hero-inner { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; width: 100%; }
.page-hero .hero-sub { color: var(--muted); }
.page-hero.has-img .hero-sub { color: rgba(255,253,248,.85); max-width: 640px; }

/* ---------- services index rows ---------- */
.svc-full-list { display: flex; flex-direction: column; }
.svc-row {
  display: grid; grid-template-columns: auto 220px 1fr auto; align-items: center; gap: clamp(1.2rem, 3vw, 2.5rem);
  padding: 1.6rem 0; border-bottom: 1px solid var(--line); text-decoration: none;
  transition: padding .35s var(--ease), background .35s;
}
.svc-row:first-child { border-top: 1px solid var(--line); }
.svc-row:hover { background: var(--white); padding-left: 1.2rem; padding-right: 1.2rem; }
.svc-row-num { font-family: var(--font-display); font-weight: 750; color: var(--brass); font-size: 1.1rem; letter-spacing: .04em; }
.svc-row-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; }
.svc-row-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-row:hover .svc-row-media img { transform: scale(1.07); }
.svc-row-body h2 { font-size: clamp(1.5rem, 3.2vw, 2.3rem); }
.svc-row-body p { color: var(--muted); margin-top: .35rem; }
.svc-row-arrow { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: all .35s var(--ease); }
.svc-row-arrow svg { width: 20px; height: 20px; }
.svc-row:hover .svc-row-arrow { background: var(--brass); border-color: var(--brass); color: var(--white); transform: rotate(-35deg); }

/* ---------- features ---------- */
.feature-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.feature-item {
  display: flex; align-items: center; gap: .8rem; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.1rem 1.25rem; font-weight: 550; font-size: .96rem;
  transition: transform .35s var(--ease), border-color .35s;
}
.feature-item:hover { transform: translateY(-4px); border-color: var(--brass); }
.feature-ic { width: 30px; height: 30px; flex: none; border-radius: 9px; background: var(--brass-soft); color: var(--brass); display: grid; place-items: center; }
.feature-ic svg { width: 16px; height: 16px; }

/* related */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.related-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; aspect-ratio: 4/3; display: block; }
.related-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.related-card:hover img { transform: scale(1.06); }
.related-card span {
  position: absolute; inset: auto 0 0; padding: 2.2rem 1.4rem 1.3rem; color: var(--white);
  background: linear-gradient(transparent, rgba(22,20,15,.85)); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.related-card strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
.related-card svg { width: 20px; height: 20px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.45rem .2rem; cursor: pointer; font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem); font-weight: 550; letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { width: 34px; height: 34px; flex: none; border-radius: 50%; border: 1.5px solid var(--line); position: relative; transition: all .35s var(--ease); }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; top: 50%; left: 50%; width: 12px; height: 1.5px; background: currentColor; translate: -50% -50%; transition: rotate .35s var(--ease); }
.faq-icon::after { rotate: 90deg; }
.faq-item[open] .faq-icon { background: var(--brass); border-color: var(--brass); color: var(--white); }
.faq-item[open] .faq-icon::after { rotate: 0deg; }
.faq-answer { overflow: hidden; }
.faq-answer p { padding: 0 3.5rem 1.5rem .2rem; color: var(--muted); max-width: 720px; }

/* ---------- projects page: immersive hero ---------- */
.proj-hero {
  position: relative; min-height: 86svh; display: flex; align-items: flex-end;
  background: radial-gradient(120% 90% at 70% 10%, var(--ink-3) 0%, var(--ink) 55%);
  color: var(--white); overflow: hidden;
}
.proj-hero .hero-haze { position: absolute; inset: 0; pointer-events: none; }
.proj-hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1320px; margin: 0 auto; padding: 9rem clamp(1.1rem, 4vw, 2.5rem) 5.5rem; }
.proj-hero-title { font-size: clamp(2.8rem, 8vw, 6.6rem); color: var(--white); letter-spacing: -0.03em; font-weight: 650; }
.proj-hero-title .line { display: block; }
.proj-hero .hero-sub { color: rgba(255,253,248,.8); max-width: 640px; }

/* ---------- case studies ---------- */
.case-list { background: var(--ink); color: var(--paper); padding: clamp(2rem, 5vw, 4rem) clamp(1.1rem, 4vw, 2.5rem) clamp(4rem, 8vw, 7rem); perspective: 1400px; }
.case {
  max-width: 1320px; margin: 0 auto; padding: clamp(2.6rem, 6vw, 5rem) 0;
  display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(1.8rem, 4.5vw, 4rem); align-items: center;
  border-bottom: 1px solid var(--line-dark); transform-style: preserve-3d;
}
.case:last-child { border-bottom: 0; }
.case-flip { grid-template-columns: 1fr 1.25fr; }
.case-flip .case-media { order: 2; }
.case-flip .case-info { order: 1; }
.case-media { position: relative; display: flex; flex-direction: column; gap: 1rem; transform-style: preserve-3d; }
.case-info { position: relative; }
.case-num {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(4.5rem, 9vw, 8rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(216,164,74,.55); display: block; margin-bottom: .4rem;
}
.case-cat { font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; color: var(--brass-2); margin-bottom: .9rem; }
.case-info h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 1rem; }
.case-story { color: var(--muted-dark); font-size: 1.02rem; line-height: 1.7; margin-bottom: 1.4rem; }
.case-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.6rem; }
.case-chip { font-size: .78rem; font-weight: 650; padding: .4rem .9rem; border-radius: 999px; border: 1px solid rgba(216,164,74,.4); color: var(--brass-2); }
.case-hint { font-size: .82rem; color: var(--muted-dark); margin-bottom: 1.2rem; }

/* 3D tilt cards */
.case-tilt, .case-extra {
  position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden;
  transform-style: preserve-3d; will-change: transform; box-shadow: 0 36px 70px -28px rgba(0,0,0,.65);
  transition: box-shadow .4s var(--ease);
}
.case-tilt img, .case-extra img { width: 100%; display: block; transform: translateZ(0); }
.case-extra { width: 58%; align-self: flex-end; margin-top: -14%; border: 5px solid var(--ink); }
.case-flip .case-extra { align-self: flex-start; }
.tilt-glare {
  position: absolute; inset: -60%; pointer-events: none; opacity: 0;
  background: radial-gradient(closest-side, rgba(255,253,248,.22), transparent 65%);
  transition: opacity .35s; transform: translate(0, 0);
}
[data-tilt]:hover .tilt-glare { opacity: 1; }
.gallery-item .tilt-glare { inset: -60%; }

/* before / after slider */
.ba {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; touch-action: pan-y;
  box-shadow: 0 36px 70px -28px rgba(0,0,0,.65); cursor: ew-resize; --pos: 50%;
  user-select: none; -webkit-user-select: none;
}
.ba img { width: 100%; display: block; pointer-events: none; }
.ba-before-wrap { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-before { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; margin-left: -1.5px;
  background: var(--brass-2); cursor: ew-resize; z-index: 3;
}
.ba-handle::before, .ba-handle::after { content: ''; position: absolute; left: 50%; width: 1px; }
.ba-grip {
  position: absolute; top: 50%; left: 50%; translate: -50% -50%;
  width: 52px; height: 52px; border-radius: 50%; background: var(--brass-2); color: var(--ink);
  display: grid; place-items: center; font-size: 1.25rem; font-weight: 700;
  box-shadow: 0 8px 26px rgba(0,0,0,.45); transition: transform .25s var(--ease);
}
.ba:hover .ba-grip { transform: scale(1.12); }
.ba-handle:focus-visible { outline: none; }
.ba-handle:focus-visible .ba-grip { outline: 3px solid var(--white); outline-offset: 2px; }
.ba-tag {
  position: absolute; top: 1rem; z-index: 2; font-size: .72rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; padding: .4rem .85rem; border-radius: 999px; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.ba-tag-before { left: 1rem; background: rgba(22,20,15,.55); color: var(--paper); }
.ba-tag-after { right: 1rem; background: rgba(216,164,74,.9); color: var(--ink); }

/* archive heading inherits dark→light transition */
.archive { padding-top: clamp(4.5rem, 9vw, 8rem); }

/* ---------- before/after showcase (home "why" section) ---------- */
.ba-fixed { aspect-ratio: 4 / 3; }
.ba-fixed .ba-after { width: 100%; height: 100%; object-fit: cover; }
.ba-showcase { display: flex; flex-direction: column; gap: .9rem; }
.ba-showcase .ba[hidden] { display: none; }
.ba-showcase-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--ink-2); border: 1px solid var(--line-dark); border-radius: 999px; padding: .45rem;
}
.bs-arrow {
  width: 46px; height: 46px; flex: none; border-radius: 50%; border: 1px solid var(--line-dark);
  background: transparent; color: var(--paper); font-size: 1.5rem; line-height: 1;
  display: grid; place-items: center; transition: all .3s var(--ease);
}
.bs-arrow:hover { background: var(--brass); border-color: var(--brass); color: var(--white); }
.bs-meta { display: flex; flex-direction: column; align-items: center; line-height: 1.25; text-align: center; }
.bs-meta strong { font-family: var(--font-display); font-weight: 650; font-size: 1.02rem; }
.bs-meta span { font-size: .74rem; letter-spacing: .14em; color: var(--muted-dark); font-weight: 600; }
.bs-hint { font-size: .82rem; color: var(--muted-dark); text-align: center; }
.bs-hint a { color: var(--brass-2); font-weight: 600; }
.section:not(.section-dark) .ba-showcase-bar { background: var(--white); border-color: var(--line); }
.section:not(.section-dark) .bs-arrow { color: var(--ink); border-color: var(--line); }
.section:not(.section-dark) .bs-meta span, .section:not(.section-dark) .bs-hint { color: var(--muted); }

/* ---------- gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.2rem; }
.gallery-filter {
  padding: .6rem 1.2rem; border-radius: 999px; border: 1.5px solid var(--line); background: transparent;
  font-size: .9rem; font-weight: 600; transition: all .3s var(--ease);
}
.gallery-filter:hover { border-color: var(--brass); }
.gallery-filter.is-on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.gallery-grid { columns: 3 300px; column-gap: 1.2rem; }
.gallery-item {
  position: relative; display: block; width: 100%; border: 0; padding: 0; background: none;
  border-radius: var(--radius); overflow: hidden; margin-bottom: 1.2rem; break-inside: avoid;
  transition: opacity .4s, transform .4s var(--ease);
}
.gallery-item.is-hidden { display: none; }
.gallery-item img { width: 100%; transition: transform .7s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-cap {
  position: absolute; inset: auto 0 0; text-align: left; padding: 2.4rem 1.2rem 1.1rem; color: var(--white);
  background: linear-gradient(transparent, rgba(22,20,15,.88));
  opacity: 0; transform: translateY(12px); transition: all .4s var(--ease); display: flex; flex-direction: column; gap: .15rem;
}
.gallery-item:hover .gallery-cap, .gallery-item:focus-visible .gallery-cap { opacity: 1; transform: none; }
.gallery-cat { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-2); font-weight: 700; }
.gallery-cap strong { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; }

.lightbox { position: fixed; inset: 0; z-index: 9500; background: rgba(22,20,15,.96); display: none; align-items: center; justify-content: center; padding: clamp(1rem, 5vw, 4rem); }
.lightbox.is-open { display: flex; }
.lightbox figure { margin: 0; max-width: min(1100px, 92vw); max-height: 86svh; display: flex; flex-direction: column; gap: 1rem; }
.lightbox img { max-height: 76svh; width: auto; max-width: 100%; margin: 0 auto; border-radius: 12px; object-fit: contain; }
.lightbox figcaption { color: var(--paper); text-align: center; font-family: var(--font-display); font-size: 1.1rem; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,253,248,.08); color: var(--paper); border: 1px solid var(--line-dark);
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.7rem; line-height: 1; display: grid; place-items: center;
  transition: background .3s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--brass); }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-prev { left: 1.2rem; top: 50%; translate: 0 -50%; }
.lb-next { right: 1.2rem; top: 50%; translate: 0 -50%; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.about-p { color: var(--muted); margin-bottom: 1.1rem; font-size: 1.04rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.5fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-aside h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 1.6rem; }
.contact-line { display: flex; gap: 1rem; align-items: center; text-decoration: none; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-ic { width: 46px; height: 46px; flex: none; border-radius: 13px; background: var(--brass-soft); color: var(--brass); display: grid; place-items: center; }
.contact-ic svg { width: 21px; height: 21px; }
.contact-line strong { display: block; font-size: 1.02rem; }
.contact-line div span { color: var(--muted); font-size: .85rem; }
a.contact-line:hover strong { color: var(--brass); }
.contact-trust { margin-top: 1.8rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; }
.contact-trust p { font-family: var(--font-display); font-size: 1.02rem; margin: .7rem 0; line-height: 1.5; }
.contact-trust span { font-size: .85rem; color: var(--muted); }

/* ---------- quote wizard ---------- */
.quote-section { position: relative; }
.quote-wrap { max-width: 880px !important; }
.quote-wizard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4.5vw, 3rem); box-shadow: var(--shadow-md); }
.qw-head .kicker { margin-bottom: .8rem; }
.qw-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1.4rem; }
.qw-progress { height: 4px; border-radius: 99px; background: var(--paper-3); overflow: hidden; }
.qw-progress span { display: block; height: 100%; width: 33.33%; background: var(--brass); border-radius: 99px; transition: width .5s var(--ease); }
.qw-steps-labels { list-style: none; display: flex; justify-content: space-between; padding: 0; margin: .6rem 0 1.6rem; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.qw-steps-labels li.is-on { color: var(--brass-text); }
.qw-step { display: none; border: 0; padding: 0; margin: 0; }
.qw-step.is-on { display: block; animation: stepIn .45s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateX(22px); } to { opacity: 1; transform: none; } }
.qw-step legend { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 1.2rem; padding: 0; }
.qw-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.qw-service input { position: absolute; opacity: 0; pointer-events: none; }
.qw-service-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: .7rem;
  border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.1rem; font-weight: 600; font-size: .95rem;
  transition: all .3s var(--ease); cursor: pointer; height: 100%;
}
.qw-ic { width: 38px; height: 38px; border-radius: 11px; background: var(--brass-soft); color: var(--brass); display: grid; place-items: center; }
.qw-ic svg { width: 19px; height: 19px; }
.qw-service:hover .qw-service-card { border-color: var(--brass); transform: translateY(-2px); }
.qw-service input:checked + .qw-service-card { border-color: var(--brass); background: var(--brass-soft); box-shadow: 0 0 0 1px var(--brass); }
.qw-service input:focus-visible + .qw-service-card { outline: 2px solid var(--brass); outline-offset: 2px; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .45rem; }
.field label span { color: var(--muted); font-weight: 450; }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border-radius: 12px; border: 1.5px solid var(--line);
  font: inherit; background: var(--paper); color: var(--ink); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px var(--brass-soft); }
.field input.is-invalid, .field textarea.is-invalid { border-color: var(--error); }
.field-err { margin: .45rem 0 0; color: var(--error); font-size: .88rem; font-weight: 600; }
.feature-link { color: inherit; text-decoration: none; }
.feature-link:hover { color: var(--brass-text); text-decoration: underline; text-underline-offset: 3px; }
.where-links { text-align: center; margin-top: 2.2rem; color: var(--muted); }
.where-links a { color: var(--brass-text); font-weight: 600; text-decoration: none; }
.where-links a:hover { text-decoration: underline; text-underline-offset: 3px; }
.post-services { background: var(--paper-2); border-left: 3px solid var(--brass); padding: 1rem 1.2rem; border-radius: 0 12px 12px 0; }
.label-opt { color: var(--muted); font-weight: 500; font-size: .85em; }
.qw-step legend:focus { outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.qw-pills { display: flex; gap: .6rem; flex-wrap: wrap; }
.qw-pills label { position: relative; }
.qw-pills input { position: absolute; opacity: 0; pointer-events: none; }
.qw-pills span { display: inline-block; padding: .6rem 1.2rem; border-radius: 999px; border: 1.5px solid var(--line); font-weight: 600; font-size: .9rem; cursor: pointer; transition: all .25s; }
.qw-pills input:checked + span { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.qw-photo-label { display: flex !important; align-items: center; gap: .5rem; }
.qw-photo-label svg { width: 18px; height: 18px; color: var(--brass); }
.qw-file { padding: .7rem !important; background: var(--paper) !important; }
.qw-photo-previews { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .7rem; }
.qw-photo-previews img { width: 70px; height: 70px; object-fit: cover; border-radius: 10px; border: 1px solid var(--line); }
.qw-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.6rem; }
.qw-hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.qw-fineprint { margin-top: 1.2rem; font-size: .83rem; color: var(--muted); display: flex; align-items: center; gap: .45rem; }
.qw-fineprint svg { width: 15px; height: 15px; color: var(--brass); flex: none; }
.qw-fineprint a { color: var(--brass-text); font-weight: 600; }
.qw-success { text-align: center; padding: 2.5rem 1rem; }
.qw-success-ic { width: 72px; height: 72px; margin: 0 auto 1.3rem; border-radius: 50%; background: var(--brass-text); color: var(--white); display: grid; place-items: center; animation: pop .5s var(--ease); }
.qw-success-ic svg { width: 34px; height: 34px; }
@keyframes pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.qw-success h3 { font-size: 1.8rem; margin-bottom: .5rem; }
.qw-success p { color: var(--muted); margin-bottom: 1.4rem; }
.qw-error { margin-top: 1rem; color: var(--error); font-weight: 550; }
.qw-error a { color: inherit; }
.btn[disabled] { opacity: .55; pointer-events: none; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); padding: clamp(4rem, 9vw, 7rem) clamp(1.1rem, 4vw, 2.5rem) 7rem; }
.footer-cta { max-width: 1320px; margin: 0 auto clamp(3.5rem, 7vw, 6rem); text-align: center; }
.footer-cta-kicker { font-size: .8rem; letter-spacing: .24em; text-transform: uppercase; color: var(--brass-2); font-weight: 700; margin-bottom: 1.2rem; }
.footer-cta-title { font-size: clamp(2.6rem, 7vw, 5.5rem); }
.footer-cta-title span { display: block; }
.footer-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; }
.footer-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-top: 3rem; border-top: 1px solid var(--line-dark); }
.brand-footer .brand-text strong { color: var(--brass-2); }
.brand-footer .brand-text span { color: var(--muted-dark); }
.brand-footer .brand-roof { color: var(--brass-2); }
.footer-about p { color: var(--muted-dark); font-size: .94rem; margin: 1.1rem 0; max-width: 320px; }
.footer-review-link { display: inline-flex; align-items: center; gap: .6rem; color: var(--paper); text-decoration: none; font-weight: 600; font-size: .9rem; }
.footer-review-link:hover { color: var(--brass-2); }
.footer-col h3 { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 1.1rem; font-family: var(--font-body); font-weight: 700; }
.footer-col:not(.footer-about) a, .footer-col:not(.footer-about) span { display: flex; align-items: center; gap: .55rem; color: var(--paper); text-decoration: none; padding: .5rem 0; font-size: .95rem; }
.footer-col:not(.footer-about) a:hover { color: var(--brass-2); }
.footer-col:not(.footer-about) svg { width: 16px; height: 16px; color: var(--brass-2); flex: none; }
.footer-legal { max-width: 1320px; margin: 3rem auto 0; padding-top: 1.6rem; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--muted-dark); font-size: .82rem; }
.footer-credit { flex-basis: 100%; }
.footer-credit a { color: var(--muted-dark); text-decoration: none; border-bottom: 1px solid var(--line-dark); transition: color .3s, border-color .3s; }
.footer-credit a:hover { color: var(--brass-2); border-color: var(--brass-2); }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 8500; display: none;
  grid-template-columns: 1fr 1.4fr; gap: 1px; background: var(--line-dark);
  transform: translateY(110%); transition: transform .45s var(--ease);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -8px 30px rgba(22,20,15,.25);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta a { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: 1.05rem .5rem; font-weight: 700; font-size: .95rem; text-decoration: none; }
.sticky-cta svg { width: 18px; height: 18px; }
.sticky-cta-call { background: var(--ink); color: var(--paper); }
.sticky-cta-quote { background: var(--brass-text); color: var(--white); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 6px; justify-content: center;
    width: 46px; height: 46px; align-items: center; background: transparent; border: 1.5px solid var(--line); border-radius: 50%;
    z-index: 9001; position: relative;
  }
  .page-home .site-header:not(.is-scrolled) .nav-toggle,
  .page-darkhero .site-header:not(.is-scrolled) .nav-toggle { border-color: rgba(255,253,248,.4); }
  .nav-toggle span { width: 18px; height: 2px; background: currentColor; transition: all .35s var(--ease); display: block; }
  .page-home .site-header:not(.is-scrolled) .nav-toggle span,
  .page-darkhero .site-header:not(.is-scrolled) .nav-toggle span { background: var(--white); }
  body.menu-open .nav-toggle { border-color: var(--line-dark); }
  body.menu-open .nav-toggle span { background: var(--paper) !important; }
  body.menu-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  body.menu-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
  body.menu-open { overflow: hidden; }
  .header-phone span { display: none; }
  .svc-cards, .blog-cards, .related-grid { grid-template-columns: 1fr 1fr; }
  .process-grid, .feature-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .about-grid { grid-template-columns: 1fr; }
  .why-media { max-width: 540px; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-feature { grid-template-columns: 1fr; }
}
@media (max-width: 1080px) and (min-width: 0px) {
  .case, .case-flip { grid-template-columns: 1fr; gap: 1.8rem; }
  .case-flip .case-media { order: 0; }
  .case-flip .case-info { order: 1; }
  .case-extra { width: 64%; margin-top: -12%; }
}
@media (max-width: 720px) {
  .header-actions .btn { display: none; }
  .proj-hero { min-height: 72svh; }
  .ba-grip { width: 44px; height: 44px; }
  .case-num { font-size: 4rem; }
  .case-extra { width: 70%; }
  .svc-cards, .blog-cards, .related-grid, .testimonial-grid, .feature-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; width: 100%; }
  .hero-scroll { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .qw-services { grid-template-columns: 1fr 1fr; }
  .svc-row { grid-template-columns: 1fr auto; grid-template-areas: 'media media' 'body arrow'; row-gap: 1rem; }
  .svc-row-num { display: none; }
  .svc-row-media { grid-area: media; width: 100%; }
  .svc-row-body { grid-area: body; }
  .svc-row-arrow { grid-area: arrow; }
  .sticky-cta { display: grid; }
  .site-footer { padding-bottom: 9rem; }
  .why-img-float { left: -4%; }
  .why-badge { right: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-legal { flex-direction: column; gap: .3rem; }
}

/* ---------- reduced motion ---------- */
/* .reduced is set by JS for both prefers-reduced-motion and the ?noanim QA flag */
.reduced [data-reveal], .reduced .section-title { opacity: 1 !important; transform: none !important; }
.reduced .hero-kicker .dot { animation: none; box-shadow: none; }
.reduced .hero-scroll i { animation: none; }
.reduced .hero-haze::before, .reduced .hero-haze::after { animation: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
