:root {
  color-scheme: light;
  --ink: #0b111c;
  --ink-2: #111827;
  --steel: #273449;
  --muted: #657289;
  --muted-2: #94a3b8;
  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --surface-3: #eef2f7;
  --line: rgba(15, 23, 42, .10);
  --line-dark: rgba(255, 255, 255, .13);
  --brand: #f97316;
  --brand-2: #ffb020;
  --brand-dark: #c2410c;
  --brand-soft: #fff3e8;
  --good: #20c997;
  --shadow-sm: 0 14px 35px rgba(15, 23, 42, .08);
  --shadow-md: 0 24px 70px rgba(15, 23, 42, .13);
  --shadow-lg: 0 36px 100px rgba(3, 8, 20, .36);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 0%, rgba(249, 115, 22, .12), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(255, 176, 32, .08), transparent 26%),
    linear-gradient(#fff, #fff);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section-pad { padding: clamp(72px, 8vw, 112px) 0; }
h1, h2, h3, p, figure { margin-top: 0; }
h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3.05rem, 7.6vw, 6.85rem);
  line-height: .88;
  letter-spacing: -.085em;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(2.05rem, 4.7vw, 4.1rem);
  line-height: .98;
  letter-spacing: -.065em;
}
h3 {
  margin-bottom: 8px;
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.skip-link {
  position: absolute;
  top: -90px;
  left: 18px;
  z-index: 200;
  background: #fff;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-weight: 900;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 17, 28, .72);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(18px) saturate(160%);
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(11, 17, 28, .96);
  box-shadow: 0 16px 50px rgba(3, 8, 20, .22);
  border-color: rgba(255,255,255,.08);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  min-width: max-content;
}
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  box-shadow: 0 16px 35px rgba(0,0,0,.22);
}
.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -.025em;
  line-height: 1.05;
}
.brand small {
  display: block;
  color: var(--muted-2);
  font-size: .8rem;
  font-weight: 800;
  margin-top: 2px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}
.site-nav a {
  color: rgba(255,255,255,.86);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 850;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.site-nav a:hover { background: rgba(255,255,255,.11); color: #fff; }
.site-nav .nav-call {
  margin-left: 8px;
  padding-inline: 17px;
  color: #17120d;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 28px rgba(249, 115, 22, .32);
}
.site-nav .nav-call:hover { transform: translateY(-1px); background: linear-gradient(135deg, #fb923c, #ffc44d); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 15px;
  background: rgba(255,255,255,.08);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--brand);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}
.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 21px;
  font-weight: 950;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #17120d;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 42px rgba(249, 115, 22, .33);
}
.btn-primary:hover { box-shadow: 0 20px 50px rgba(249, 115, 22, .42); }
.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
}
.btn-secondary:hover { background: rgba(255,255,255,.15); }
.btn-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 16px 38px rgba(15,23,42,.18);
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: clamp(88px, 8vw, 128px) 0 clamp(80px, 9vw, 126px);
  background:
    radial-gradient(circle at 18% 8%, rgba(249, 115, 22, .25), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(255, 176, 32, .10), transparent 32%),
    linear-gradient(135deg, #070b13 0%, #0b111c 42%, #182235 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% -10%;
  height: 52%;
  background: radial-gradient(ellipse at center, rgba(249,115,22,.2), transparent 60%);
  filter: blur(30px);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255,255,255,.05) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.05) 50%, rgba(255,255,255,.05) 75%, transparent 75%);
  background-size: 56px 56px, 56px 56px, 18px 18px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
.hero-lede {
  max-width: 790px;
  margin-bottom: 28px;
  color: #d7e1ee;
  font-size: clamp(1.05rem, 2vw, 1.27rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
.service-strip {
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-strip span {
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .85rem;
  font-weight: 900;
}
.hero-showcase {
  position: relative;
  display: grid;
  gap: 18px;
}
.hero-photo-card {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: 36px;
  background: #0f172a;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow-lg);
}
.hero-photo-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.hero-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,19,.92), rgba(7,11,19,.08) 62%);
}
.photo-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(255,255,255,.93);
  color: var(--ink);
  box-shadow: 0 20px 45px rgba(0,0,0,.2);
}
.photo-badge strong { display: block; letter-spacing: -.025em; }
.photo-badge span { display: block; color: var(--muted); font-weight: 800; font-size: .92rem; }
.hero-mini-card {
  position: absolute;
  right: -18px;
  top: 48px;
  max-width: 250px;
  padding: 19px;
  color: #fff;
  background: rgba(11,17,28,.9);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
  backdrop-filter: blur(14px);
}
.mini-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-2);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-mini-card strong { display: block; margin-bottom: 10px; line-height: 1.15; letter-spacing: -.02em; }
.hero-mini-card a { color: var(--brand-2); font-weight: 950; }

.trust-bar {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.trust-grid div {
  min-height: 120px;
  display: grid;
  align-content: center;
  padding: 24px 20px;
  background: #fff;
}
.trust-grid strong { display: block; font-size: 1.08rem; letter-spacing: -.025em; }
.trust-grid span { display: block; color: var(--muted); font-size: .94rem; font-weight: 750; line-height: 1.35; }

.quick-quote { background: var(--surface-2); }
.quick-quote-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr) auto;
  gap: clamp(22px, 3vw, 36px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.quick-quote-card h2 { max-width: 780px; }
.quick-quote-card p:not(.eyebrow) { color: var(--muted); margin-bottom: 0; max-width: 760px; }
.quote-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.quote-steps span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 10px 12px;
  color: var(--steel);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 900;
}
.quote-steps b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: var(--brand);
  color: #17120d;
  font-size: .74rem;
}

.section-head {
  max-width: 800px;
  margin: 0 auto 46px;
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }
.section-head p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.services { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(249, 115, 22, .34);
}
.service-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  background: var(--ink);
}
.service-body { padding: 25px; }
.service-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.service-body p { color: var(--muted); margin-bottom: 18px; }
.service-body a { color: var(--brand-dark); font-weight: 950; }

.process-section { background: var(--surface-2); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.process-card {
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.process-card span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  border-radius: 17px;
  color: #17120d;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-size: .88rem;
  font-weight: 950;
}
.process-card p { color: var(--muted); margin-bottom: 0; }

.work-preview {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 10%, rgba(249,115,22,.18), transparent 28%),
    linear-gradient(135deg, #080c14 0%, #0b111c 44%, #151f31 100%);
}
.work-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.work-preview .container { position: relative; z-index: 1; }
.work-preview .section-head p:not(.eyebrow) { color: var(--muted-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .28s ease;
}
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(11,17,28,.78);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.area-section { background: #fff; }
.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .7fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}
.area-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 16px;
}
.area-tags span {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  border: 1px solid rgba(249,115,22,.18);
  font-weight: 950;
}
.small-note { color: var(--muted) !important; font-size: .92rem !important; }
.who-card {
  padding: clamp(28px, 4vw, 40px);
  color: #fff;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 0%, rgba(249,115,22,.24), transparent 32%),
    linear-gradient(135deg, var(--ink), #1b2638);
  box-shadow: var(--shadow-md);
}
.who-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.who-card li {
  position: relative;
  padding-left: 30px;
  color: #e6edf5;
  font-weight: 780;
}
.who-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(249,115,22,.14);
}

.why-section {
  color: #fff;
  background: linear-gradient(135deg, #0b111c, #151f31);
}
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 56px);
  align-items: center;
}
.why-copy p:not(.eyebrow) { color: #cbd5e1; font-size: 1.06rem; }
.why-copy .btn { margin-top: 10px; }
.why-list { display: grid; gap: 16px; }
.why-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.07);
  box-shadow: 0 20px 55px rgba(0,0,0,.14);
}
.why-item span { color: var(--brand-2); font-size: 1.05rem; font-weight: 950; }
.why-item p { color: #cbd5e1; margin-bottom: 0; }

.faq-section { background: var(--surface-2); }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}
.faq-list { display: grid; gap: 13px; }
details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 950;
  letter-spacing: -.02em;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  color: var(--brand-dark);
  font-size: 1.25rem;
  line-height: 1;
}
details[open] summary::after { content: "–"; }
details p {
  margin: -4px 22px 22px;
  color: var(--muted);
}

.quote-section { background: #fff; }
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 56px);
  align-items: start;
}
.quote-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.quote-callout {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
}
.quote-callout strong { letter-spacing: -.02em; }
.quote-callout a {
  width: max-content;
  color: var(--brand-dark);
  font-size: 1.6rem;
  font-weight: 950;
  letter-spacing: -.05em;
}
.quote-callout span { color: var(--muted); font-weight: 780; }
.quote-form {
  display: grid;
  gap: 17px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-md);
}
fieldset { margin: 0; padding: 0; border: 0; }
legend,
.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-weight: 950;
}
legend { margin-bottom: 10px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.service-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}
.service-choice-grid label { display: block; }
.service-choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.service-choice-grid span {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--steel);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 15px;
  font-size: .92rem;
  font-weight: 950;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.service-choice-grid input:checked + span,
.service-choice-grid input:focus-visible + span {
  color: #17120d;
  background: var(--brand-soft);
  border-color: rgba(249,115,22,.6);
  box-shadow: 0 0 0 4px rgba(249,115,22,.12);
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fafc;
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.quote-form textarea { resize: vertical; min-height: 136px; }
.quote-form input:focus,
.quote-form textarea:focus {
  background: #fff;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(249,115,22,.13);
}
.quote-form .btn { width: 100%; }
.form-note {
  margin: -5px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: .9rem;
}

.contact-section {
  background: linear-gradient(135deg, var(--brand-soft), #fff);
}
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(249,115,22,.18);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}
.contact-card p:not(.eyebrow) { color: var(--muted); margin-bottom: 0; }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

.site-footer {
  padding: 38px 0 110px;
  color: #fff;
  background: #070b13;
}
.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-grid img { border-radius: 16px; margin-bottom: 12px; }
.footer-grid strong { display: block; margin-bottom: 8px; }
.footer-grid p { color: var(--muted-2); margin-bottom: 8px; }
.footer-disclaimer { max-width: 680px; font-size: .9rem; }
.footer-contact {
  display: grid;
  gap: 7px;
  text-align: right;
  color: var(--muted-2);
  font-weight: 800;
}
.footer-contact a:first-of-type { color: #fff; font-size: 1.1rem; font-weight: 950; }
.footer-contact a:last-of-type { color: var(--muted-2); text-decoration: underline; text-underline-offset: 3px; }

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 120;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(11,17,28,.92);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
}
.sticky-cta a {
  min-width: 126px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  text-align: center;
  font-weight: 950;
}
.sticky-cta a:first-child { color: #17120d; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }

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

.plain-page { background: var(--surface-2); }
.policy-main { padding: 80px 0 120px; }
.narrow { max-width: 820px; }
.policy-main h1 { color: var(--ink); font-size: clamp(2.5rem, 5vw, 4.4rem); }
.policy-main h2 { margin-top: 30px; font-size: 1.45rem; letter-spacing: -.025em; }
.policy-main p { color: var(--muted); }
.policy-main a:not(.btn) { color: var(--brand-dark); font-weight: 900; }
.static-nav { display: flex; }

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

@media (max-width: 1080px) {
  .hero-grid,
  .quick-quote-card,
  .area-grid,
  .why-grid,
  .faq-grid,
  .quote-grid { grid-template-columns: 1fr; }
  .quick-quote-card { align-items: stretch; }
  .quick-quote-card > .btn { justify-self: start; }
  .hero-mini-card { right: 18px; }
  .services-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid,
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 840px) {
  :root { --header-height: 74px; }
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { background: rgba(11,17,28,.94); }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(var(--header-height) + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    background: rgba(11,17,28,.98);
    box-shadow: var(--shadow-lg);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px; border-radius: 15px; }
  .site-nav .nav-call { margin-left: 0; text-align: center; }
  .static-nav { position: static; display: flex; padding: 0; background: transparent; border: 0; box-shadow: none; }
  .hero { padding-top: 92px; }
  .hero-photo-card { min-height: 410px; }
  .hero-photo-card img { height: 440px; }
  .quote-steps { grid-template-columns: 1fr; }
  .contact-card, .footer-grid { flex-direction: column; align-items: flex-start; }
  .contact-actions { justify-content: flex-start; }
  .footer-contact { text-align: left; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.7rem, 15vw, 4.15rem); }
  .brand img { width: 48px; height: 48px; border-radius: 15px; }
  .brand strong { font-size: .93rem; }
  .brand small { font-size: .74rem; }
  .hero-actions .btn,
  .contact-actions .btn { width: 100%; }
  .hero-mini-card { position: relative; right: auto; top: auto; max-width: none; }
  .hero-photo-card { min-height: 330px; border-radius: 26px; }
  .hero-photo-card img { height: 350px; }
  .photo-badge { left: 14px; right: 14px; bottom: 14px; border-radius: 18px; }
  .services-grid,
  .gallery-grid,
  .process-grid,
  .trust-grid,
  .service-choice-grid,
  .form-row { grid-template-columns: 1fr; }
  .why-item { grid-template-columns: 1fr; }
  .quick-quote-card, .quote-form, .contact-card { border-radius: 24px; }
  .sticky-cta {
    left: 14px;
    right: 14px;
    bottom: 14px;
    transform: none;
    border-radius: 22px;
  }
  .sticky-cta a { flex: 1; min-width: 0; padding-inline: 8px; }
}

/* Mobile fit hardening — prevents small-device horizontal overflow and improves tap layout. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-width: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.container {
  width: min(calc(100% - 40px), var(--container));
}

.site-header,
.header-inner,
.hero-grid,
.quick-quote-card,
.services-grid,
.gallery-grid,
.process-grid,
.trust-grid,
.area-grid,
.why-grid,
.faq-grid,
.quote-grid,
.footer-grid,
.contact-card,
.quote-form,
.service-card,
.gallery-item,
.hero-showcase,
.hero-copy,
.area-copy,
.why-copy,
.quote-copy {
  min-width: 0;
}

.brand {
  min-width: 0;
  flex: 1 1 auto;
  max-width: calc(100% - 62px);
  overflow: hidden;
}

.brand-text {
  min-width: 0;
  overflow: hidden;
}

.brand strong {
  max-width: min(52vw, 280px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-toggle {
  flex: 0 0 46px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
}

.hero-mini-card {
  right: 0;
  max-width: min(250px, calc(100% - 32px));
}

h1,
h2,
h3,
.hero-lede,
.service-strip span,
.quote-steps span,
.area-tags span,
.btn,
.sticky-cta a,
.quote-callout a,
.footer-contact a {
  overflow-wrap: anywhere;
}

.btn,
.service-choice-grid span,
.quote-steps span,
.sticky-cta a {
  min-width: 0;
}

.site-footer {
  padding-bottom: calc(110px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 840px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    gap: 12px;
  }

  .site-nav {
    left: 14px;
    right: 14px;
    max-width: calc(100vw - 28px);
  }

  .hero {
    padding-top: 86px;
  }
}

@media (max-width: 640px) {
  :root {
    --radius-xl: 26px;
    --radius-lg: 22px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section-pad {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(2.35rem, 12.2vw, 3.35rem);
    line-height: .95;
    letter-spacing: -.065em;
  }

  h2 {
    font-size: clamp(1.8rem, 9.5vw, 2.7rem);
    line-height: 1.03;
    letter-spacing: -.055em;
  }

  .hero {
    padding-bottom: 62px;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    text-align: center;
  }

  .service-strip {
    gap: 8px;
  }

  .service-strip span,
  .area-tags span {
    font-size: .78rem;
    padding: 7px 10px;
  }

  .hero-photo-card,
  .quick-quote-card,
  .quote-form,
  .contact-card,
  .who-card,
  .service-card,
  .process-card,
  .why-item,
  details {
    border-radius: 20px;
  }

  .quick-quote-card,
  .quote-form,
  .contact-card,
  .who-card,
  .process-card,
  .why-item,
  .service-body {
    padding: 20px;
  }

  .photo-badge {
    padding: 14px;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: calc(100vw - 24px);
  }

  .sticky-cta a {
    min-height: 48px;
    display: grid;
    place-items: center;
    padding: 10px 8px;
    font-size: .92rem;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .header-inner {
    gap: 8px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    max-width: 170px;
    font-size: .86rem;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  h1 {
    font-size: clamp(2.1rem, 11.5vw, 2.85rem);
  }

  .eyebrow {
    font-size: .68rem;
    letter-spacing: .1em;
  }

  .eyebrow::before {
    width: 22px;
  }

  .quote-callout a {
    font-size: 1.32rem;
  }
}

@media (max-width: 340px) {
  .brand strong {
    max-width: 145px;
  }

  h1 {
    font-size: 2rem;
  }

  .service-strip span {
    font-size: .74rem;
  }
}


/* Desktop-safe mobile hero simplification.
   Desktop keeps the full premium hero. Only small phones get the shorter customer-facing hero. */
.mobile-title,
.mobile-lede,
.mobile-cta-text {
  display: none;
}

@media (max-width: 640px) {
  .hero {
    padding-top: 72px;
    padding-bottom: 42px;
  }

  .hero-grid {
    display: block;
  }

  .desktop-title,
  .desktop-lede,
  .desktop-cta-text,
  .service-strip,
  .hero-showcase {
    display: none !important;
  }

  .mobile-title {
    display: block !important;
    max-width: 10.5ch;
    margin-bottom: 14px;
    font-size: clamp(2.45rem, 12.5vw, 3.25rem);
    line-height: .94;
    letter-spacing: -.065em;
  }

  .mobile-lede {
    display: block !important;
    max-width: 31ch;
    margin-bottom: 18px;
    color: #e1e9f3;
    font-size: .98rem;
    line-height: 1.48;
  }

  .mobile-cta-text {
    display: inline !important;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 0;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
    padding: 12px 11px;
    border-radius: 16px;
    font-size: .94rem;
  }
}

@media (max-width: 390px) {
  .hero {
    padding-top: 64px;
    padding-bottom: 36px;
  }

  .mobile-title {
    font-size: clamp(2.15rem, 12vw, 2.85rem);
  }

  .mobile-lede {
    max-width: 29ch;
    font-size: .95rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }
}

/* Logo integration — generated brand artwork in the header/footer. */
.brand {
  flex: 0 1 auto;
  min-width: 0;
  max-width: none;
}

.brand-logo-full {
  width: clamp(220px, 25vw, 305px) !important;
  height: auto !important;
  aspect-ratio: 1100 / 342;
  object-fit: contain;
  padding: 5px 8px;
  border-radius: 17px !important;
  background: #fff;
  box-shadow: 0 16px 35px rgba(0,0,0,.24);
}

.brand-logo-mark {
  display: none !important;
  object-fit: cover;
  background: #fff;
}

.brand .brand-text {
  display: none;
}

.footer-logo {
  width: min(100%, 330px) !important;
  height: auto !important;
  padding: 7px 9px;
  border-radius: 18px !important;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
}

@media (max-width: 1020px) and (min-width: 841px) {
  .brand-logo-full {
    width: clamp(185px, 22vw, 240px) !important;
  }

  .site-nav a {
    padding-inline: 9px;
    font-size: .86rem;
  }

  .site-nav .nav-call {
    padding-inline: 13px;
  }
}

@media (max-width: 840px) {
  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 58px);
    gap: 10px;
  }

  .brand-logo-full {
    display: none !important;
  }

  .brand-logo-mark {
    display: block !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 15px !important;
    box-shadow: 0 14px 30px rgba(0,0,0,.24);
  }

  .brand .brand-text {
    display: block;
  }
}

@media (max-width: 390px) {
  .brand-logo-mark {
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
  }
}


/* White top bar update — keeps the previous logo version and makes the header match it. */
.site-header,
.site-header.is-scrolled,
.site-header.is-solid {
  background: rgba(255, 255, 255, .97) !important;
  border-bottom: 1px solid rgba(15, 23, 42, .12) !important;
  box-shadow: 0 14px 35px rgba(3, 8, 20, .08) !important;
  backdrop-filter: blur(18px) saturate(160%);
}

.brand {
  color: #111827 !important;
}

.brand small {
  color: #64748b !important;
}

.site-nav a {
  color: #1f2937 !important;
}

.site-nav a:hover {
  background: rgba(249, 115, 22, .10) !important;
  color: #111827 !important;
}

.site-nav .nav-call {
  color: #17120d !important;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)) !important;
  box-shadow: 0 14px 28px rgba(249, 115, 22, .25) !important;
}

.menu-toggle {
  border-color: rgba(15, 23, 42, .14) !important;
  background: rgba(15, 23, 42, .05) !important;
}

.menu-toggle span {
  background: #111827 !important;
}

.brand-logo-full {
  box-shadow: none !important;
  border: 1px solid rgba(15, 23, 42, .08);
}

@media (max-width: 840px) {
  .site-nav {
    background: rgba(255,255,255,.98) !important;
    border: 1px solid rgba(15,23,42,.12) !important;
    box-shadow: 0 24px 70px rgba(3,8,20,.16) !important;
  }

  .site-nav a {
    color: #111827 !important;
  }

  .site-nav .nav-call {
    color: #17120d !important;
  }
}
