:root {
  --bg: #080a09;
  --bg-2: #0d100f;
  --panel: #111513;
  --panel-2: #151a17;
  --text: #f4f6f2;
  --muted: #9ca39d;
  --line: rgba(255,255,255,.1);
  --line-strong: rgba(255,255,255,.16);
  --accent: #b2d92f;
  --accent-2: #8eb514;
  --accent-ink: #0a0c08;
  --radius: 18px;
  --shadow: 0 30px 80px rgba(0,0,0,.34);
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(178,217,47,.055), transparent 26rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

::selection { background: var(--accent); color: var(--accent-ink); }

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  z-index: 200;
  pointer-events: none;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(178,217,47,.6);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 82px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(7,9,8,.74);
  backdrop-filter: blur(20px) saturate(130%);
  transition: background .25s ease, height .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(7,9,8,.94);
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
}
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 9px; flex-shrink: 0; }
.brand img { width: 54px; height: 56px; object-fit: contain; }
.brand-text { display: grid; line-height: 1; gap: 4px; letter-spacing: .09em; }
.brand-text strong { font-size: 12px; }
.brand-text small { color: var(--muted); font-size: 10px; letter-spacing: .16em; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 27px; }
.desktop-nav a { position: relative; font-size: 13px; color: #d7dbd6; transition: color .2s ease; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -9px;
  height: 1px;
  background: var(--accent);
  transition: right .25s ease;
}
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.phone-link { display: inline-flex; gap: 8px; align-items: center; font-size: 13px; font-weight: 650; }
.phone-link svg { width: 17px; fill: none; stroke: var(--accent); stroke-width: 1.8; }

.btn {
  border: 1px solid var(--line-strong);
  background: transparent;
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 750;
  font-size: 13px;
  letter-spacing: .02em;
  cursor: pointer;
  border-radius: 3px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover { transform: translateY(-2px); }
.btn-accent { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); box-shadow: inset 0 0 0 1px rgba(255,255,255,.16); }
.btn-accent:hover { background: #c2e83a; border-color: #c2e83a; box-shadow: 0 14px 32px rgba(178,217,47,.15); }
.btn-ghost:hover { border-color: rgba(178,217,47,.55); color: var(--accent); }
.btn-lg { min-height: 54px; padding-inline: 24px; }

.menu-toggle { display: none; width: 44px; height: 44px; margin-left: auto; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 23px; height: 1.5px; background: #fff; margin: 6px auto; transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu { background: rgba(8,10,9,.98); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mobile-menu-inner { display: grid; gap: 18px; padding-block: 24px 30px; }
.mobile-menu-inner a { font-size: 19px; font-weight: 650; }
.mobile-menu-inner .btn { margin-top: 4px; }

.hero {
  min-height: 800px;
  position: relative;
  overflow: clip;
  display: flex;
  align-items: stretch;
  padding-top: 82px;
  border-bottom: 1px solid var(--line);
}
.hero-media { position: absolute; inset: 82px 0 0 0; overflow: hidden; }
.hero-media img {
  position: absolute;
  inset: -5% -3% -5% auto;
  width: 68%; height: 110%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.78) contrast(1.07) brightness(.68);
  transform: scale(1.02);
  will-change: transform;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,9,8,1) 0%, rgba(7,9,8,.98) 24%, rgba(7,9,8,.78) 44%, rgba(7,9,8,.2) 72%, rgba(7,9,8,.12) 100%),
    linear-gradient(0deg, rgba(7,9,8,.82) 0%, transparent 32%, rgba(7,9,8,.24) 100%);
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 60px;
  align-items: end;
  padding-block: 125px 98px;
}
.hero-copy { align-self: center; max-width: 780px; }
.eyebrow, .section-kicker {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
}
.eyebrow { display: flex; align-items: center; gap: 11px; margin-bottom: 24px; }
.eyebrow span { width: 24px; height: 1px; background: var(--accent); }
.hero h1 {
  margin: 0;
  font-size: clamp(52px, 6.2vw, 92px);
  line-height: .96;
  letter-spacing: -.055em;
  max-width: 860px;
  font-weight: 850;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lead {
  max-width: 650px;
  margin: 29px 0 0;
  color: #c7cbc6;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 22px;
  max-width: 730px;
}
.hero-proof div { padding-right: 22px; margin-right: 22px; border-right: 1px solid var(--line); }
.hero-proof div:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero-proof strong { display: block; font-size: 13px; }
.hero-proof span { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }
.hero-card {
  align-self: end;
  justify-self: end;
  width: min(390px, 100%);
  background: rgba(14,18,16,.78);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  padding: 27px;
  box-shadow: var(--shadow);
}
.hero-card-label { display: block; color: var(--accent); text-transform: uppercase; letter-spacing: .18em; font-size: 10px; margin-bottom: 16px; }
.hero-card strong { font-size: 23px; }
.hero-card small { display: block; color: var(--muted); margin-top: 3px; }
.hero-card > a { display: inline-block; margin-top: 14px; color: var(--accent); font-weight: 800; font-size: 19px; }
.hero-card-line { height: 1px; background: var(--line); margin: 22px 0; }
.hero-card p { margin: 0; color: #b7bdb8; font-size: 14px; line-height: 1.65; }
.text-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0;
  margin-top: 22px;
  border: 0; background: none;
  color: var(--text);
  font-weight: 760;
  cursor: pointer;
}
.text-link span { color: var(--accent); transition: transform .2s ease; }
.text-link:hover span { transform: translate(2px,-2px); }
.scroll-cue {
  position: absolute;
  z-index: 3;
  left: max(20px, calc((100vw - var(--container))/2));
  bottom: 24px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  display: flex; align-items: center; gap: 10px;
}
.scroll-cue span { width: 28px; height: 1px; background: var(--accent); }

.trust-strip { background: #0b0e0c; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-grid article { display: flex; gap: 14px; padding: 26px 24px 26px 0; margin-right: 24px; border-right: 1px solid var(--line); }
.trust-grid article:last-child { border-right: 0; margin-right: 0; }
.icon-box { width: 38px; height: 38px; border: 1px solid rgba(178,217,47,.24); display: grid; place-items: center; flex: 0 0 auto; }
.icon-box svg { width: 19px; fill: none; stroke: var(--accent); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.trust-grid strong { display: block; font-size: 13px; }
.trust-grid small { display: block; color: var(--muted); margin-top: 3px; line-height: 1.45; }

.section { padding: 115px 0; position: relative; }
.section-head { display: grid; grid-template-columns: 1.3fr .7fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.section-head h2, .process-copy h2, .about-copy h2, .faq-grid h2, .contact-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(38px, 4.6vw, 68px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.section-head > p, .process-copy > p, .about-copy > p, .contact-copy > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 620px;
}

.services { background: #0b0e0c; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.service-card {
  min-height: 370px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, #121613, #0c0f0d);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform-style: preserve-3d;
  transition: border-color .25s ease, background .25s ease, transform .2s ease;
}
.service-card:hover { border-color: rgba(178,217,47,.38); }
.service-card-photo { padding: 0; }
.service-card-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.08) brightness(.6); transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .3s ease; }
.service-card-photo:hover > img { transform: scale(1.035); filter: saturate(.85) contrast(1.08) brightness(.64); }
.service-photo-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,9,8,.08), rgba(7,9,8,.94) 83%); }
.service-card-content { position: relative; z-index: 2; padding: 28px; }
.service-no { position: absolute; top: 20px; right: 22px; z-index: 3; font-size: 11px; letter-spacing: .18em; color: var(--accent); }
.service-icon { width: 48px; height: 48px; border: 1px solid rgba(178,217,47,.25); display: grid; place-items: center; margin-bottom: auto; }
.service-icon svg { width: 24px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 18px 0 8px; font-size: 24px; letter-spacing: -.025em; }
.service-card p { margin: 0; color: #aeb5af; font-size: 14px; line-height: 1.65; max-width: 360px; }
.service-card .text-link { margin-top: 22px; font-size: 13px; }
.more-services { margin-top: 16px; border: 1px solid var(--line); padding: 28px; display: grid; grid-template-columns: .55fr 1.45fr; gap: 34px; align-items: center; background: #0f1310; }
.more-services h3 { margin: 8px 0 0; font-size: 27px; letter-spacing: -.025em; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags button { background: #0a0d0b; border: 1px solid var(--line); color: #c4cac4; padding: 10px 13px; font-size: 12px; cursor: pointer; transition: border-color .2s ease, color .2s ease, transform .2s ease; }
.service-tags button:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

.process { background: #0f1310; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.process-copy { position: sticky; top: 120px; }
.process-copy > p { margin-top: 25px; }
.process-copy .btn { margin-top: 28px; }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 90px 1fr; gap: 25px; padding: 31px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--accent); font-size: 13px; letter-spacing: .15em; font-weight: 800; }
.process-list h3 { margin: 0; font-size: 22px; }
.process-list p { margin: 8px 0 0; color: var(--muted); line-height: 1.7; max-width: 600px; }

.gallery-section { background: #090b0a; }
.gallery-head { align-items: start; }
.gallery-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, 360px); gap: 12px; }
.gallery-item { position: relative; overflow: hidden; margin: 0; border: 1px solid var(--line); }
.gallery-wide { grid-row: 1 / span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) contrast(1.05) brightness(.7); transition: transform .75s cubic-bezier(.2,.7,.2,1), filter .35s ease; }
.gallery-item:hover img { transform: scale(1.035); filter: saturate(.82) contrast(1.04) brightness(.75); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,9,8,.85), transparent 55%); }
.gallery-item figcaption { position: absolute; z-index: 2; inset: auto 24px 24px 24px; }
.gallery-item figcaption span { display: block; color: var(--accent); text-transform: uppercase; letter-spacing: .15em; font-size: 10px; }
.gallery-item figcaption strong { display: block; margin-top: 6px; font-size: 20px; }

.about { background: linear-gradient(180deg, #0b0e0c, #0d100f); }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.about-brand { min-height: 500px; border: 1px solid var(--line); display: grid; place-items: center; position: relative; overflow: hidden; background: radial-gradient(circle at 50% 42%, rgba(178,217,47,.06), transparent 26rem), #0a0c0b; }
.about-brand::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 36px 36px; mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent); }
.about-brand img { width: 72%; position: relative; z-index: 1; filter: drop-shadow(0 20px 45px rgba(0,0,0,.4)); }
.about-copy > p { margin-top: 25px; }
.facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 35px 0; }
.facts div { padding: 20px; border: 1px solid var(--line); background: #0a0d0b; }
.facts span { display: block; color: var(--accent); font-size: 22px; font-weight: 850; letter-spacing: -.02em; }
.facts small { display: block; color: var(--muted); margin-top: 5px; }

.faq-section { background: #0a0d0b; border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; cursor: pointer; padding: 25px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-weight: 750; font-size: 18px; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--accent); font-size: 25px; font-weight: 300; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion p { margin: -4px 0 25px; color: var(--muted); line-height: 1.75; max-width: 760px; }

.contact-section { padding: 115px 0; background: linear-gradient(135deg, #111610, #090b0a 62%); border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.contact-section::after { content: "EKG"; position: absolute; right: -1.5vw; bottom: -8vw; font-weight: 950; font-size: 26vw; line-height: .7; letter-spacing: -.08em; color: rgba(178,217,47,.022); pointer-events: none; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; position: relative; z-index: 2; }
.contact-copy h2 em { font-style: normal; color: var(--accent); }
.contact-copy > p { margin-top: 24px; }
.contact-copy .btn { margin-top: 30px; }
.contact-card { border: 1px solid var(--line-strong); background: rgba(9,12,10,.72); backdrop-filter: blur(10px); box-shadow: var(--shadow); }
.contact-person { display: flex; gap: 15px; align-items: center; padding: 24px; border-bottom: 1px solid var(--line); }
.contact-person > span { width: 47px; height: 47px; display: grid; place-items: center; background: var(--accent); color: var(--accent-ink); font-weight: 900; }
.contact-person strong { display: block; font-size: 18px; }
.contact-person small { color: var(--muted); }
.contact-card > a, .company-address { display: block; padding: 19px 24px; border-bottom: 1px solid var(--line); transition: background .2s ease; }
.contact-card > a:hover { background: rgba(178,217,47,.045); }
.contact-card small { display: block; color: var(--muted); text-transform: uppercase; letter-spacing: .13em; font-size: 9px; margin-bottom: 5px; }
.contact-card strong { font-size: 15px; }
.company-address { border-bottom: 0; }

.site-footer { background: #060807; border-top: 1px solid rgba(255,255,255,.07); }
.footer-top { min-height: 120px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 53px; height: 54px; object-fit: contain; }
.footer-brand strong { display: block; font-size: 13px; letter-spacing: .08em; }
.footer-brand small { display: block; color: var(--muted); margin-top: 4px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-links a { color: #b6bbb6; font-size: 13px; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { padding: 20px 0 28px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 30px; color: #707670; font-size: 11px; }
.footer-bottom p { margin: 0; }

.floating-quote {
  position: fixed;
  z-index: 80;
  right: 24px; bottom: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 52px;
  padding: 0 18px 0 16px;
  background: var(--accent);
  color: var(--accent-ink);
  border: 0;
  box-shadow: 0 14px 35px rgba(0,0,0,.34);
  font-weight: 850;
  cursor: pointer;
}
.floating-quote svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.floating-pulse { position: absolute; inset: 0; border: 1px solid var(--accent); animation: pulse 2.5s infinite; pointer-events: none; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 0; } 35% { opacity: .45; } 70% { transform: scale(1.12); opacity: 0; } }
.mobile-call { display: none; }

.quote-modal {
  width: min(820px, calc(100vw - 24px));
  max-height: min(900px, calc(100vh - 24px));
  padding: 0;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: #0c100d;
  box-shadow: 0 40px 120px rgba(0,0,0,.7);
}
.quote-modal::backdrop { background: rgba(0,0,0,.72); backdrop-filter: blur(8px); }
.modal-shell { padding: 32px; max-height: calc(100vh - 24px); overflow-y: auto; }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; margin-bottom: 26px; }
.modal-head h2 { font-size: clamp(32px,4vw,48px); line-height: 1; margin: 9px 0 0; letter-spacing: -.04em; }
.modal-close { width: 42px; height: 42px; flex: 0 0 auto; border: 1px solid var(--line); background: transparent; color: #fff; font-size: 25px; font-weight: 300; cursor: pointer; }
.quote-form { display: grid; gap: 17px; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.quote-form label { display: grid; gap: 8px; }
.quote-form label > span { color: #cbd0cb; font-size: 12px; font-weight: 700; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: #080b09;
  color: #fff;
  padding: 14px 15px;
  border-radius: 0;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.quote-form textarea { resize: vertical; min-height: 118px; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: rgba(178,217,47,.65); box-shadow: 0 0 0 3px rgba(178,217,47,.07); }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2px; }
.form-status { min-height: 20px; color: var(--accent); font-size: 12px; }
.modal-direct { margin-top: 18px; border-top: 1px solid var(--line); padding-top: 18px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; font-size: 12px; }
.modal-direct span { color: var(--muted); }
.modal-direct a { color: #dce1dc; font-weight: 750; }
.modal-direct a:hover { color: var(--accent); }

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s cubic-bezier(.2,.7,.2,1), transform .72s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .nav-actions { margin-left: auto; }
  .menu-toggle { display: block; margin-left: 0; }
  .hero-grid { grid-template-columns: 1fr; align-items: end; }
  .hero-card { justify-self: start; }
  .hero-media img { width: 78%; opacity: .78; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid article:nth-child(2) { border-right: 0; }
  .trust-grid article { border-bottom: 1px solid var(--line); }
  .trust-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .process-grid, .about-grid, .faq-grid, .contact-grid { gap: 55px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header, .site-header.scrolled { height: 68px; }
  .brand-text { display: none; }
  .brand img { width: 46px; height: 48px; }
  .nav-actions .btn, .phone-link span { display: none; }
  .phone-link { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); }
  .hero { padding-top: 68px; min-height: auto; }
  .hero-media { inset: 68px 0 0; }
  .hero-media img { width: 100%; height: 68%; inset: 0; opacity: .67; object-position: center top; }
  .hero-shade { background: linear-gradient(0deg, #070908 33%, rgba(7,9,8,.92) 48%, rgba(7,9,8,.35) 100%); }
  .hero-grid { padding-block: 310px 72px; gap: 34px; }
  .hero-copy { align-self: end; }
  .hero h1 { font-size: clamp(44px,13vw,66px); }
  .hero-lead { font-size: 16px; }
  .hero-proof { grid-template-columns: 1fr; gap: 0; }
  .hero-proof div { padding: 11px 0; margin: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-proof div:last-child { border-bottom: 0; }
  .hero-card { width: 100%; }
  .scroll-cue { display: none; }
  .section { padding: 82px 0; }
  .section-head, .process-grid, .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .section-head { align-items: start; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 340px; }
  .more-services { grid-template-columns: 1fr; }
  .process-copy { position: static; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 480px 280px 280px; }
  .gallery-wide { grid-row: auto; }
  .about-brand { min-height: 380px; }
  .facts { grid-template-columns: 1fr; }
  .footer-top { align-items: flex-start; flex-direction: column; padding-block: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .floating-quote { right: 14px; bottom: 14px; }
  .floating-quote span:last-child { display: none; }
  .floating-quote { width: 52px; padding: 0; justify-content: center; }
  .mobile-call { display: grid; place-items: center; position: fixed; z-index: 80; left: 14px; bottom: 14px; width: 52px; height: 52px; background: #121713; border: 1px solid var(--line-strong); box-shadow: 0 14px 35px rgba(0,0,0,.34); }
  .mobile-call svg { width: 21px; fill: none; stroke: var(--accent); stroke-width: 1.8; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article, .trust-grid article:nth-child(2) { margin-right: 0; padding-right: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid article:last-child { border-bottom: 0; }
  .hero-cta .btn { width: 100%; }
  .section-head h2, .process-copy h2, .about-copy h2, .faq-grid h2, .contact-copy h2 { font-size: 42px; }
  .gallery-grid { grid-template-rows: 380px 250px 250px; }
  .modal-shell { padding: 22px; }
  .form-actions .btn { width: 100%; }
}

@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; transform: none; }
}
