/* Humpherys Design Company — modern theme */
:root {
  --bg: #0f1216;
  --bg-2: #171b21;
  --panel: #1d232b;
  --line: rgba(255,255,255,.08);
  --text: #eef1f4;
  --text-2: #a7b0ba;
  --paper: #f6f5f1;
  --paper-2: #ffffff;
  --ink: #14181d;
  --ink-2: #4f5a66;
  --copper: #d6935a;
  --copper-2: #b9773f;
  --radius: 18px;
  --max: 1200px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font-body); color: var(--text); background: var(--bg);
  line-height: 1.6; font-size: 17px; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -.02em; line-height: 1.1; margin: 0 0 .5em; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.kicker {
  display: inline-flex; align-items: center; gap: .6rem; font-size: .8rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--copper); margin-bottom: 1.2rem;
}
.kicker::before { content: ""; width: 28px; height: 2px; background: var(--copper); }
.lede { font-size: 1.2rem; color: var(--text-2); max-width: 36rem; }
.light .lede { color: var(--ink-2); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .6rem; padding: .95rem 1.6rem; border-radius: 999px;
  font-weight: 700; font-size: .98rem; text-decoration: none; border: 1.5px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor: pointer; font-family: var(--font-body);
}
.btn:hover { transform: translateY(-2px); }
.btn-copper { background: var(--copper); color: var(--ink); box-shadow: 0 10px 30px rgba(214,147,90,.25); }
.btn-copper:hover { background: #e2a26c; }
.btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #2a323c; }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 1rem; }
.site-header.scrolled { background: rgba(15,18,22,.82); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.site-header.scrolled .wrap { height: 70px; }
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; color: #fff; }
.brand-mark { width: 42px; height: 42px; flex: 0 0 42px; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; line-height: 1.1; letter-spacing: -.01em; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--copper); margin-top: .2rem; }

.nav { display: flex; align-items: center; gap: .2rem; }
.nav a { position: relative; padding: .6rem .95rem; color: rgba(255,255,255,.85); text-decoration: none; font-weight: 600; font-size: .95rem; border-radius: 999px; transition: color .2s, background .2s; }
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: .95rem; right: .95rem; bottom: .35rem; height: 2px; background: var(--copper);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav a:not(.btn):hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a:not(.btn):hover { color: #fff; }
.nav .btn { margin-left: .8rem; padding: .65rem 1.25rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06); cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: #fff; margin: 4px auto; transition: transform .25s, opacity .2s; }

/* Hero */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: kenburns 18s ease-out forwards; }
@keyframes kenburns { to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(15,18,22,.78) 0%, rgba(15,18,22,.55) 55%, rgba(15,18,22,.35) 100%),
    linear-gradient(180deg, rgba(15,18,22,.55) 0%, rgba(15,18,22,.25) 35%, rgba(15,18,22,.7) 75%, var(--bg) 100%);
}
.hero .wrap { padding-top: 9rem; padding-bottom: 4rem; display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: end; width: 100%; }
.hero h1 { color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,.55), 0 8px 40px rgba(0,0,0,.5); }
.hero h1 em { font-style: normal; color: var(--copper); }
.hero .kicker { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.7); }
.hero .kicker::before { background: var(--copper); }
.hero .lede { color: #fff; font-size: 1.25rem; text-shadow: 0 1px 4px rgba(0,0,0,.7), 0 4px 24px rgba(0,0,0,.5); }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-note { display: flex; align-items: center; gap: .6rem; margin-top: 1.5rem; font-size: .9rem; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.7); }
.hero-note .dot { width: 8px; height: 8px; border-radius: 50%; background: #5fd38d; box-shadow: 0 0 0 4px rgba(95,211,141,.2); }

/* Estimator widget */
.estimate {
  background: rgba(23,27,33,.72); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 1.75rem; box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.estimate h3 { display: flex; justify-content: space-between; align-items: center; font-size: 1.05rem; margin-bottom: 1.25rem; }
.estimate h3 span { font-family: var(--font-body); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); }
.field { margin-bottom: 1.15rem; }
.field label { display: flex; justify-content: space-between; font-size: .85rem; font-weight: 600; color: var(--text-2); margin-bottom: .5rem; }
.field label output { color: #fff; font-weight: 700; }
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: linear-gradient(90deg, var(--copper) var(--pct, 40%), rgba(255,255,255,.15) var(--pct, 40%)); outline: none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 4px solid var(--copper); cursor: pointer; box-shadow: 0 4px 14px rgba(0,0,0,.4); }
input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 4px solid var(--copper); cursor: pointer; }
.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: .4rem; background: rgba(255,255,255,.06); padding: .3rem; border-radius: 12px; }
.seg button { border: 0; background: transparent; color: var(--text-2); font-weight: 700; font-size: .85rem; padding: .6rem .4rem; border-radius: 9px; cursor: pointer; transition: background .2s, color .2s; font-family: var(--font-body); }
.seg button.on { background: var(--copper); color: var(--ink); }
.estimate-out { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 1.1rem 0 .4rem; border-top: 1px solid var(--line); margin-top: .5rem; }
.estimate-out .label { font-size: .8rem; color: var(--text-2); font-weight: 600; }
.estimate-out .num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.estimate-out .num small { font-size: .95rem; color: var(--text-2); font-weight: 500; }
.estimate .btn { width: 100%; justify-content: center; margin-top: .8rem; }
.estimate .fine { font-size: .74rem; color: var(--text-2); margin: .8rem 0 0; text-align: center; }

/* Marquee strip */
.strip { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding: 1.1rem 0; }
.strip-track { display: flex; gap: 3.5rem; white-space: nowrap; width: max-content; animation: marquee 38s linear infinite; }
.strip-track span { font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--text-2); display: inline-flex; align-items: center; gap: 3.5rem; }
.strip-track span::after { content: "◆"; color: var(--copper); font-size: .6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sections */
section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.light { background: var(--paper); color: var(--ink); }
.light h2, .light h3 { color: var(--ink); }
.section-head { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; margin-bottom: 3rem; }
.section-head .lede { margin: 0; }
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; } }

/* Services */
.services { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }
.svc { position: relative; grid-column: span 3; min-height: 380px; border-radius: var(--radius); overflow: hidden; text-decoration: none; color: #fff; display: flex; align-items: flex-end; isolation: isolate; }
.svc:nth-child(1), .svc:nth-child(4) { grid-column: span 6; }
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.svc::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.85)); transition: opacity .3s; }
.svc:hover img { transform: scale(1.06); }
.svc-body { padding: 1.75rem; width: 100%; }
.svc-body .num { font-size: .75rem; font-weight: 700; letter-spacing: .16em; color: var(--copper); }
.svc-body h3 { color: #fff; font-size: 1.5rem; margin: .4rem 0 .3rem; }
.svc-body p { color: rgba(255,255,255,.78); margin: 0; font-size: .95rem; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s ease, opacity .3s ease, margin .3s; }
.svc:hover .svc-body p { max-height: 6rem; opacity: 1; margin-top: .4rem; }
.svc .go { position: absolute; top: 1.25rem; right: 1.25rem; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); display: grid; place-items: center; transition: background .2s, transform .3s; }
.svc:hover .go { background: var(--copper); border-color: var(--copper); color: var(--ink); transform: rotate(-45deg); }

/* Compare toggle */
.compare-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: center; }
.toggle { display: inline-grid; grid-template-columns: 1fr 1fr; background: #e9e7e0; border-radius: 999px; padding: .3rem; position: relative; margin-bottom: 1.5rem; }
.toggle button { position: relative; z-index: 1; border: 0; background: none; padding: .7rem 1.4rem; font-weight: 700; border-radius: 999px; cursor: pointer; color: var(--ink-2); font-family: var(--font-body); font-size: .95rem; transition: color .25s; }
.toggle button.on { color: #fff; }
.toggle .pill { position: absolute; top: .3rem; bottom: .3rem; left: .3rem; width: calc(50% - .3rem); background: var(--ink); border-radius: 999px; transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.toggle.custom .pill { transform: translateX(100%); background: var(--copper); }
.compare-panels { position: relative; }
.compare-panel { display: none; }
.compare-panel.on { display: block; animation: rise .45s ease both; }
.compare-panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.compare-panel li { display: flex; gap: .9rem; align-items: flex-start; background: #fff; border-radius: 14px; padding: 1rem 1.1rem; box-shadow: 0 6px 20px rgba(20,24,29,.05); color: var(--ink-2); }
.compare-panel li b { color: var(--ink); display: block; font-weight: 700; }
.compare-panel .ico { flex: 0 0 34px; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-weight: 800; }
.stock .ico { background: #fbe9e4; color: #c24a2c; }
.custom .ico { background: #e8f4ec; color: #1f7a45; }
.compare-img { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3.2; }
.compare-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: opacity .6s ease, transform .8s ease; }
.compare-img img.hide { opacity: 0; transform: scale(1.04); }
.compare-img .cap { position: absolute; left: 1.25rem; bottom: 1.25rem; background: rgba(20,24,29,.85); backdrop-filter: blur(8px); color: #fff; padding: .6rem 1rem; border-radius: 999px; font-size: .85rem; font-weight: 600; }
@keyframes rise { from { opacity: 0; transform: translateY(14px);} to { opacity: 1; transform: none; } }

/* Process */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; counter-reset: s; }
.proc { position: relative; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem 1.6rem; transition: transform .3s, border-color .3s; overflow: hidden; }
.proc:hover { transform: translateY(-6px); border-color: rgba(214,147,90,.5); }
.proc::before { counter-increment: s; content: "0" counter(s); font-family: var(--font-display); font-weight: 700; font-size: 3.6rem; line-height: 1; color: rgba(255,255,255,.06); position: absolute; right: 1rem; top: .8rem; }
.proc .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--copper); margin-bottom: 1.4rem; box-shadow: 0 0 0 6px rgba(214,147,90,.15); }
.proc p { color: var(--text-2); font-size: .95rem; margin: 0; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.stat { border-left: 2px solid var(--copper); padding: .4rem 0 .4rem 1.5rem; }
.stat .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; letter-spacing: -.03em; color: var(--ink); }
.stat .n sup { font-size: .45em; color: var(--copper); vertical-align: top; top: .35em; position: relative; }
.stat p { color: var(--ink-2); margin: .6rem 0 0; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin-bottom: 4rem; }
.about-split .img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; position: relative; }
.about-split .img img { width: 100%; height: 100%; object-fit: cover; }
.about-split .img::after { content: ""; position: absolute; inset: auto -12% -12% auto; width: 60%; height: 60%; border: 2px solid var(--copper); border-radius: var(--radius); z-index: -1; }
.quote { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; line-height: 1.4; color: var(--ink); border-left: 3px solid var(--copper); padding-left: 1.25rem; margin: 1.5rem 0; }

/* CTA */
.cta { position: relative; overflow: hidden; isolation: isolate; text-align: center; padding: clamp(5rem, 10vw, 8rem) 0; }
.cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(15,18,22,.78); }
.cta h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta .lede { color: rgba(255,255,255,.8); margin: 0 auto 2rem; }
.cta .actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer { background: #0a0c0f; color: var(--text-2); padding: 4rem 0 2rem; font-size: .95rem; }
.site-footer .cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.site-footer h4 { color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 1rem; font-family: var(--font-body); font-weight: 700; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: var(--text-2); text-decoration: none; transition: color .2s; }
.site-footer a:hover { color: var(--copper); }
.site-footer .brand-name { color: #fff; }
.site-footer .legal { border-top: 1px solid var(--line); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .82rem; color: #6d7782; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; } .reveal[data-delay="2"] { transition-delay: .2s; } .reveal[data-delay="3"] { transition-delay: .3s; }

/* Mobile sticky CTA */
.mobile-cta { display: none; }

/* Responsive */
@media (max-width: 1000px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .svc, .svc:nth-child(1), .svc:nth-child(4) { grid-column: span 6; min-height: 300px; }
  .process { grid-template-columns: 1fr 1fr; }
  .compare-wrap, .about-split { grid-template-columns: 1fr; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-toggle { display: block; }
  .nav { display: none; position: fixed; inset: 0; background: rgba(15,18,22,.97); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; align-items: center; gap: .5rem; z-index: 90; }
  .nav.open { display: flex; }
  .nav a { font-size: 1.5rem; font-family: var(--font-display); }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin: 1rem 0 0; }
  .site-header .nav-toggle { position: relative; z-index: 95; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero .wrap { padding-top: 7.5rem; }
  .svc, .svc:nth-child(1), .svc:nth-child(4) { grid-column: span 12; min-height: 260px; }
  .svc-body p { max-height: none; opacity: 1; margin-top: .4rem; }
  .process, .stats, .site-footer .cols { grid-template-columns: 1fr; }
  .mobile-cta { display: flex; position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 80; gap: .6rem; transform: translateY(140%); transition: transform .35s ease; }
  .mobile-cta.show { transform: none; }
  .mobile-cta .btn { flex: 1; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,.4); }
  body { padding-bottom: 5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg img, .strip-track { animation: none; }
}

/* Estimator mini fields */
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-bottom: .4rem; }
.mini label { display: block; font-size: .74rem; font-weight: 700; color: var(--text-2); margin-bottom: .35rem; letter-spacing: .01em; }
.unit { display: flex; align-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 0 .7rem 0 0; transition: border-color .2s, background .2s; }
.unit:focus-within { border-color: var(--copper); background: rgba(255,255,255,.09); }
.unit input { width: 100%; min-width: 0; background: transparent; border: 0; color: #fff; font: 700 1rem var(--font-body); padding: .6rem .7rem; outline: none; -moz-appearance: textfield; }
.unit input::-webkit-outer-spin-button, .unit input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.unit span { font-size: .72rem; color: var(--text-2); font-weight: 600; white-space: nowrap; }
@media (max-width: 380px) { .mini-grid { grid-template-columns: 1fr; } }

/* ===================== Inner pages ===================== */
.page-hero { position: relative; isolation: isolate; overflow: hidden; padding: 11rem 0 5rem; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(15,18,22,.92) 0%, rgba(15,18,22,.7) 60%, rgba(15,18,22,.45) 100%), linear-gradient(180deg, rgba(15,18,22,.4), rgba(15,18,22,.6) 70%, var(--bg)); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: #fff; max-width: 16ch; text-shadow: 0 2px 6px rgba(0,0,0,.5); }
.page-hero .lede { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.6); }
.page-hero .kicker { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.6); }
.crumbs { display: flex; gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }
.crumbs a { color: rgba(255,255,255,.7); text-decoration: none; } .crumbs a:hover { color: #fff; }
.crumbs span::before { content: "/"; margin-right: .5rem; opacity: .5; }

/* Service rows */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; padding: clamp(2.5rem, 5vw, 4.5rem) 0; border-top: 1px solid var(--line); }
.svc-row:first-child { border-top: 0; }
.svc-row:nth-child(even) .svc-media { order: 2; }
.svc-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.svc-row:hover .svc-media img { transform: scale(1.04); }
.svc-media .badge { position: absolute; top: 1rem; left: 1rem; background: rgba(15,18,22,.85); backdrop-filter: blur(8px); color: var(--copper); font-family: var(--font-display); font-weight: 700; padding: .45rem .8rem; border-radius: 999px; font-size: .8rem; letter-spacing: .1em; }
.svc-copy h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.svc-copy p { color: var(--text-2); }
.checks { list-style: none; padding: 0; margin: 1.25rem 0 1.5rem; display: grid; gap: .6rem; }
.checks li { display: flex; gap: .7rem; align-items: flex-start; color: var(--text); }
.checks li::before { content: "✓"; color: var(--copper); font-weight: 800; flex: 0 0 auto; }
.light .checks li { color: var(--ink); }
.light .svc-copy p { color: var(--ink-2); }

/* Sheet list (what's in a plan set) */
.sheets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.sheet { background: #fff; border-radius: 14px; padding: 1.25rem 1.25rem 1.1rem; border: 1px solid rgba(20,24,29,.06); box-shadow: 0 6px 20px rgba(20,24,29,.04); transition: transform .25s, box-shadow .25s; }
.sheet:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(20,24,29,.08); }
.sheet .n { font-family: var(--font-display); font-weight: 700; color: var(--copper); font-size: .8rem; letter-spacing: .1em; }
.sheet h3 { font-size: 1.05rem; margin: .3rem 0 .3rem; color: var(--ink); }
.sheet p { font-size: .9rem; color: var(--ink-2); margin: 0; }

/* Estimator page */
.est-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: start; }
.est-form { display: grid; gap: 1.1rem; }
.est-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.est-card h3 { display: flex; align-items: center; gap: .7rem; font-size: 1.05rem; margin-bottom: 1.1rem; }
.est-card h3 .step { width: 28px; height: 28px; border-radius: 50%; background: var(--copper); color: var(--ink); font-size: .8rem; font-weight: 800; display: grid; place-items: center; font-family: var(--font-body); }
.est-card .hint { font-size: .85rem; color: var(--text-2); margin: -.5rem 0 1rem; }
.est-card .field:last-child { margin-bottom: 0; }
.seg.seg-2 { grid-template-columns: 1fr 1fr; }
.detail-desc { font-size: .85rem; color: var(--text-2); margin: .7rem 0 0; min-height: 2.6em; }
.est-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.check-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 1rem; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 12px; cursor: pointer; transition: border-color .2s, background .2s; }
.check-row:hover { border-color: rgba(214,147,90,.5); }
.check-row.on { border-color: var(--copper); background: rgba(214,147,90,.08); }
.check-row b { display: block; font-size: .95rem; } .check-row small { color: var(--text-2); font-size: .8rem; }
.check-row input { width: 20px; height: 20px; accent-color: var(--copper); flex: 0 0 auto; }
.est-result { position: sticky; top: 100px; background: linear-gradient(160deg, #1f262f, #151a20); border: 1px solid rgba(214,147,90,.35); border-radius: var(--radius); padding: 1.75rem; box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.est-result .big { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 3.4vw, 2.6rem); letter-spacing: -.02em; color: #fff; line-height: 1.1; }
.est-result .big small { font-size: .9rem; color: var(--text-2); font-weight: 500; font-family: var(--font-body); }
.est-result .label { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); margin-bottom: .5rem; }
.breakdown { list-style: none; padding: 0; margin: 1.4rem 0; border-top: 1px solid var(--line); }
.breakdown li { display: flex; justify-content: space-between; gap: 1rem; padding: .65rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; color: var(--text-2); }
.breakdown li span:last-child { color: #fff; font-weight: 700; white-space: nowrap; }
.breakdown li.muted-row { opacity: .5; }
.est-result .btn { width: 100%; justify-content: center; }
.est-result .fine { font-size: .76rem; color: var(--text-2); margin: .9rem 0 0; }
.est-notes { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.note { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 1.25rem; }
.note h3 { font-size: 1rem; } .note p { color: var(--text-2); font-size: .9rem; margin: 0; }

/* Forms */
.form-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: start; }
.form { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); display: grid; gap: 1.1rem; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label { display: block; font-size: .82rem; font-weight: 700; color: var(--text-2); margin-bottom: .4rem; }
.form label b { color: var(--copper); }
.form input[type=text], .form input[type=email], .form input[type=tel], .form select, .form textarea {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 12px; color: #fff;
  font: 600 1rem var(--font-body); padding: .85rem 1rem; outline: none; transition: border-color .2s, background .2s;
}
.form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a7b0ba' stroke-width='3'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form select option { background: #1d232b; color: #fff; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--copper); background: rgba(255,255,255,.08); }
.form textarea { min-height: 140px; resize: vertical; }
.form .est-chip { display: flex; justify-content: space-between; align-items: center; gap: 1rem; background: rgba(214,147,90,.1); border: 1px solid rgba(214,147,90,.4); border-radius: 12px; padding: .8rem 1rem; font-size: .9rem; }
.form .est-chip b { color: var(--copper); }
.form .est-chip button { background: none; border: 0; color: var(--text-2); cursor: pointer; font-size: .8rem; text-decoration: underline; }
.form .hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form .status { font-size: .9rem; padding: .9rem 1rem; border-radius: 12px; display: none; }
.form .status.ok { display: block; background: rgba(95,211,141,.12); border: 1px solid rgba(95,211,141,.4); color: #bff0d1; }
.form .status.err { display: block; background: rgba(226,92,92,.12); border: 1px solid rgba(226,92,92,.4); color: #ffc9c9; }
.form .btn[disabled] { opacity: .6; cursor: wait; transform: none; }
.side-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; margin-bottom: 1.25rem; }
.side-card h3 { font-size: 1rem; margin-bottom: .9rem; }
.side-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.side-card li { display: flex; gap: .8rem; color: var(--text-2); font-size: .95rem; }
.side-card li a { color: #fff; text-decoration: none; } .side-card li a:hover { color: var(--copper); }
.side-card .ic { width: 34px; height: 34px; border-radius: 10px; background: rgba(214,147,90,.12); color: var(--copper); display: grid; place-items: center; flex: 0 0 auto; font-weight: 800; }
.side-card ol { padding-left: 1.2rem; margin: 0; color: var(--text-2); display: grid; gap: .5rem; font-size: .95rem; }
.side-card ol b { color: #fff; }

/* About */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.value { background: #fff; border-radius: var(--radius); padding: 1.75rem; border: 1px solid rgba(20,24,29,.06); }
.value .ic { width: 46px; height: 46px; border-radius: 12px; background: #f3e6d9; color: var(--copper-2); display: grid; place-items: center; font-size: 1.3rem; margin-bottom: 1rem; font-weight: 800; }
.value h3 { color: var(--ink); font-size: 1.1rem; } .value p { color: var(--ink-2); font-size: .95rem; margin: 0; }
.faq { display: grid; gap: .7rem; max-width: 52rem; }
.faq details { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 0 1.25rem; transition: border-color .2s; }
.faq details[open] { border-color: rgba(214,147,90,.5); }
.faq summary { cursor: pointer; list-style: none; padding: 1.1rem 0; font-weight: 700; display: flex; justify-content: space-between; gap: 1rem; font-family: var(--font-display); font-size: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--copper); font-size: 1.4rem; line-height: 1; transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--text-2); margin: 0 0 1.1rem; }

/* Legal prose */
.prose { max-width: 48rem; }
.prose h2 { font-size: 1.35rem; margin-top: 2.2rem; }
.prose p, .prose li { color: var(--text-2); }
.prose ul { padding-left: 1.2rem; }
.prose .updated { font-size: .85rem; color: var(--text-2); margin-bottom: 2rem; }

@media (max-width: 1000px) {
  .est-layout, .form-layout { grid-template-columns: 1fr; }
  .est-result { position: static; }
  .sheets, .values, .est-notes { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .page-hero { padding: 8rem 0 3.5rem; }
  .svc-row { grid-template-columns: 1fr; }
  .svc-row:nth-child(even) .svc-media { order: 0; }
  .sheets, .values, .est-notes, .est-grid2, .form .row2 { grid-template-columns: 1fr; }
}
