@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #171717;
  --muted: #656565;
  --paper: #f5f3ef;
  --white: #ffffff;
  --red: #e30620;
  --gold: #f4ad18;
  --line: rgba(23, 23, 23, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Manrope", sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.site-header {
  height: 96px;
  padding: 0 clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 36px;
  background: #151515;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.14);
  position: relative;
  z-index: 10;
}

.brand { width: 155px; height: 64px; display: flex; align-items: center; justify-content: center; }
.brand img { width: 100%; height: 100%; object-fit: contain; transform: scale(1.18); }
nav { display: flex; justify-content: flex-end; gap: clamp(20px, 3vw, 44px); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
nav a, .footer-links a { transition: color .2s ease; }
nav a:hover, .footer-links a:hover { color: var(--red); }

.button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  color: var(--white);
  background: linear-gradient(105deg, var(--red) 0 58%, #eb6a18 79%, var(--gold) 100%);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}
.button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.button-small { min-height: 48px; padding: 0 22px; }

.hero {
  min-height: calc(100vh - 96px);
  position: relative;
  display: flex;
  align-items: center;
  padding: 96px clamp(24px, 7vw, 112px);
  color: var(--white);
  background: url("assets/ectx-hero.png") center/cover no-repeat;
  isolation: isolate;
}
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8,8,8,.82) 0%, rgba(8,8,8,.55) 42%, rgba(8,8,8,.12) 72%), linear-gradient(0deg, rgba(0,0,0,.32), transparent 40%); }
.hero-content { max-width: 900px; }
.eyebrow { margin: 0 0 18px; color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 34px; height: 2px; margin: 0 12px 3px 0; background: currentColor; }
.eyebrow.light { color: var(--gold); }
h1, h2, h3 { font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; margin: 0; line-height: .92; }
h1 { max-width: 830px; font-size: clamp(68px, 8vw, 128px); letter-spacing: -.035em; }
h2 { font-size: clamp(50px, 6.2vw, 92px); letter-spacing: -.025em; }
.hero-copy { max-width: 630px; margin: 28px 0 34px; font-size: clamp(18px, 1.5vw, 23px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.text-link { display: inline-flex; gap: 12px; align-items: center; margin-top: 30px; font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; border-bottom: 1px solid currentColor; padding-bottom: 7px; }
.text-link span { font-size: 18px; }
.light-link { margin-top: 0; color: white; border-color: rgba(255,255,255,.55); }
.hero-badge { position: absolute; right: clamp(24px, 5vw, 80px); bottom: 36px; display: flex; flex-direction: column; align-items: flex-end; text-transform: uppercase; }
.hero-badge strong { color: var(--gold); font: 800 28px/1 "Barlow Condensed", sans-serif; letter-spacing: .06em; }
.hero-badge span { margin-top: 6px; font-size: 10px; letter-spacing: .18em; }

.section { padding: clamp(86px, 10vw, 150px) clamp(24px, 7vw, 112px); }
.intro { display: grid; grid-template-columns: 1.05fr .8fr; gap: clamp(48px, 10vw, 150px); align-items: start; }
.intro h2 { max-width: 720px; }
.intro-copy { padding-top: 42px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.intro-copy .lead { color: var(--ink); font-size: clamp(20px, 2vw, 28px); line-height: 1.45; font-weight: 600; }

.section-dark { background: #151515; color: var(--white); padding: clamp(86px, 10vw, 150px) clamp(24px, 7vw, 112px); }
.section-heading { max-width: 930px; margin-bottom: 64px; }
.section-heading.split { max-width: none; display: grid; grid-template-columns: 1.3fr .55fr; gap: 80px; align-items: end; }
.section-heading.split p:last-child { color: #aaa; line-height: 1.8; }
.service-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.18); }
.service-card { min-height: 430px; padding: 34px 26px 32px; border: 0; border-right: 1px solid rgba(255,255,255,.18); border-radius: 0; background: transparent; color: inherit; text-align: left; position: relative; cursor: pointer; transition: background .25s ease, transform .25s ease; }
.service-card:last-child { border-right: 0; }
.service-card:hover, .service-card:focus-visible { background: linear-gradient(145deg, rgba(227,6,32,.9), rgba(244,173,24,.68)); outline: none; transform: translateY(-4px); }
.service-number { color: #888; font-size: 12px; letter-spacing: .18em; }
.service-mark { position: absolute; right: 30px; top: 25px; font-size: 30px; color: var(--gold); }
.service-card h3 { margin-top: 160px; max-width: 260px; font-size: clamp(29px, 2.5vw, 42px); }
.service-card p { max-width: 340px; color: #aaa; line-height: 1.7; font-size: 14px; }
.card-cta { display: inline-block; margin-top: 18px; padding-bottom: 4px; border-bottom: 1px solid currentColor; color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-card:hover p, .service-card:hover .service-number, .service-card:hover .service-mark, .service-card:hover .card-cta,
.service-card:focus-visible p, .service-card:focus-visible .service-number, .service-card:focus-visible .service-mark, .service-card:focus-visible .card-cta { color: white; }

.process .section-heading { max-width: 980px; }
.step-list { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 30px; align-items: center; padding: 34px 0; border-bottom: 1px solid var(--line); }
.step > span { color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.step h3 { font-size: clamp(28px, 3.2vw, 46px); }
.step p { color: var(--muted); line-height: 1.7; max-width: 480px; }

.work { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 760px; background: #211f1d; color: white; }
.work-image { background: linear-gradient(0deg, rgba(0,0,0,.12), transparent), url("assets/ectx-hero.png") center/cover no-repeat; }
.work-content { padding: clamp(70px, 9vw, 130px) clamp(36px, 6vw, 90px); display: flex; flex-direction: column; justify-content: center; }
.work-content h2 { font-size: clamp(56px, 6vw, 88px); }
.work-content > p:not(.eyebrow) { color: #bbb; line-height: 1.8; font-size: 17px; }
.project-stats { margin-top: 42px; border-top: 1px solid rgba(255,255,255,.18); }
.project-stats div { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.project-stats strong { color: var(--gold); text-transform: uppercase; }
.project-stats span { color: #bbb; font-size: 13px; }

.reviews { display: grid; grid-template-columns: 1fr minmax(350px, .65fr); gap: clamp(48px, 10vw, 140px); align-items: center; }
.reviews-copy h2 { max-width: 820px; }
.reviews-copy > p:last-child { max-width: 620px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.google-review-card { padding: clamp(32px, 5vw, 58px); background: white; border-top: 5px solid var(--gold); box-shadow: 0 22px 70px rgba(23,23,23,.12); }
.google-name { display: flex; align-items: center; gap: 12px; color: #4b4b4b; font-size: 14px; font-weight: 700; }
.google-g { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: white; background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 45%, #fbbc05 0 70%, #ea4335 0); font-size: 21px; font-weight: 800; }
.review-count { display: block; margin-top: 30px; font: 800 clamp(76px, 9vw, 118px)/.8 "Barlow Condensed", sans-serif; }
.review-label { display: block; margin-top: 14px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.review-stars { margin-top: 20px; color: var(--gold); font-size: 25px; letter-spacing: .12em; }
.review-actions { display: flex; flex-direction: column; align-items: flex-start; margin-top: 28px; }
.review-actions .text-link { margin-top: 22px; }
.review-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: clamp(10px, 3vw, 34px); }
.review-card { display: flex; flex-direction: column; min-height: 270px; padding: 28px; background: #fff; border: 1px solid var(--line); box-shadow: 0 10px 34px rgba(23,23,23,.06); }
.review-card-head { display: grid; grid-template-columns: 44px 1fr 24px; gap: 12px; align-items: center; }
.review-avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: white; background: linear-gradient(140deg, var(--red), #982dc5); font-weight: 800; }
.review-card-head h3 { font-family: "Manrope", sans-serif; font-size: 14px; line-height: 1.25; text-transform: none; letter-spacing: 0; }
.review-card-head div > span { display: block; margin-top: 4px; color: #888; font-size: 11px; }
.review-google { color: #4285f4; font-size: 18px; font-weight: 800; }
.card-stars { margin: 20px 0 14px; color: var(--gold); font-size: 17px; letter-spacing: .08em; }
.review-card > p { margin: 0; color: #4d4d4d; font-size: 14px; line-height: 1.75; }
.review-card.rating-only > p { color: #888; font-style: italic; }
.all-reviews-link { grid-column: 1 / -1; display: flex; justify-content: center; margin-top: 18px; }

.contact { display: grid; grid-template-columns: .85fr 1fr; gap: clamp(50px, 10vw, 140px); }
.contact-copy > p:not(.eyebrow) { color: #aaa; line-height: 1.8; max-width: 600px; }
.service-area { margin-top: 48px; display: flex; flex-direction: column; gap: 8px; }
.service-area span { color: #888; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.service-area strong { color: var(--gold); }
.direct-contact { margin-top: 36px; display: grid; gap: 18px; }
.direct-contact div { display: grid; gap: 6px; }
.direct-contact span { color: #777; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.direct-contact a { width: fit-content; color: white; font-weight: 700; transition: color .2s ease; }
.direct-contact a:hover { color: var(--gold); }
.contact-form { display: grid; gap: 22px; }
.selected-service { display: flex; justify-content: space-between; gap: 20px; padding: 17px 20px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.07); }
.selected-service span { color: #999; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.selected-service strong { color: var(--gold); text-align: right; font-size: 13px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: grid; gap: 9px; color: #bbb; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
input, select, textarea { width: 100%; border: 0; border-bottom: 1px solid #555; background: transparent; color: white; border-radius: 0; padding: 13px 0; outline: none; }
select option { color: #111; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; }
.contact-form .button { justify-self: start; margin-top: 8px; }
.form-note { color: #777; font-size: 11px; }
.form-status { min-height: 22px; margin: 0; font-size: 13px; font-weight: 700; line-height: 1.6; }
.form-status.success { color: #65d68a; }
.form-status.error { color: #ff7b7b; }
.contact-form .button:disabled { cursor: default; opacity: .75; transform: none; }

footer { background: #151515; color: white; padding: 42px clamp(24px, 5vw, 80px) 26px; display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 30px; border-top: 1px solid rgba(255,255,255,.14); }
.footer-brand { width: 130px; height: 58px; display: flex; align-items: center; justify-content: center; }
.footer-brand img { width: 100%; height: 100%; object-fit: contain; transform: scale(1.12); }
footer > p { font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: .1em; }
.footer-links { display: flex; justify-self: center; gap: 28px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.footer-contact { grid-column: 2 / -1; display: flex; justify-content: flex-end; gap: 24px; color: #aaa; font-size: 12px; font-weight: 600; }
.footer-contact a:hover { color: var(--gold); }
.copyright { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; color: #777; font-weight: 500; }

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; height: 82px; }
  nav { display: none; }
  .hero { min-height: 780px; }
  .intro, .section-heading.split, .reviews, .contact { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intro-copy { padding-top: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .service-card h3 { margin-top: 90px; }
  .work { grid-template-columns: 1fr; }
  .work-image { min-height: 560px; }
}

@media (max-width: 640px) {
  .site-header { height: 72px; padding: 0 20px; }
  .brand { width: 120px; height: 54px; }
  .site-header .button { padding: 0 14px; min-height: 42px; font-size: 10px; }
  .hero { min-height: calc(100svh - 72px); padding: 70px 22px 110px; background-position: 58% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(8,8,8,.8), rgba(8,8,8,.38)); }
  h1 { font-size: clamp(58px, 18vw, 78px); }
  .hero-badge { left: 22px; right: auto; align-items: flex-start; }
  .section, .section-dark { padding: 82px 22px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading.split { gap: 24px; }
  .step { grid-template-columns: 42px 1fr; gap: 14px; }
  .step p { grid-column: 2; margin-top: 0; }
  .work-image { min-height: 390px; }
  .field-row { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 0; }
  footer { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .footer-contact { grid-column: 1; justify-content: flex-start; flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

.hidden-field { position: absolute; left: -9999px; }
.thanks-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: #151515; color: white; }
.thanks-card { width: min(720px, 100%); text-align: center; }
.thanks-card img { width: 180px; margin: 0 auto 44px; }
.thanks-card h1 { font-size: clamp(70px, 14vw, 130px); }
.thanks-card > p:not(.eyebrow) { color: #aaa; margin: 24px auto 34px; font-size: 18px; }
