:root {
  --bg: #060b12;
  --bg-soft: #0a111a;
  --panel: #0b1017;
  --panel-soft: #0d141d;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(33, 114, 255, 0.38);
  --text: #f7f9fd;
  --text-soft: #c5cfdb;
  --text-muted: #8d9bb0;
  --blue: #135dff;
  --blue-bright: #2976ff;
  --max: 1240px;
  --radius: 18px;
  --radius-lg: 24px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: linear-gradient(180deg, #04070d 0%, #060b12 100%);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  background: white;
  color: black;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4, 8, 13, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 240px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.84);
  position: relative;
}

.nav-links a.is-active,
.nav-links a:hover {
  color: white;
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue-bright);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover { transform: translateY(-1px); }
.button-primary {
  color: white;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  box-shadow: 0 14px 36px rgba(19, 93, 255, 0.28);
}
.button-ghost {
  color: white;
  background: transparent;
}
.button-large {
  min-height: 54px;
  padding-inline: 26px;
}
.nav-cta { margin-left: 18px; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: white;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 0;
  background: #050a11;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 40%;
  background-image:
    linear-gradient(90deg, rgba(5,10,17,1) 0%, rgba(5,10,17,0.96) 10%, rgba(5,10,17,0.72) 24%, rgba(5,10,17,0.26) 41%, rgba(5,10,17,0.04) 58%),
    linear-gradient(180deg, rgba(8,14,24,0.10) 0%, rgba(5,10,17,0.56) 100%),
    url("assets/hero-house.jpg");
  background-size: cover;
  background-position: 72% center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(41, 118, 255, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,10,17,0) 0%, rgba(5,10,17,0.62) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 620px) 1fr;
  align-items: center;
  gap: 0;
  min-height: 560px;
}

.hero-copy {
  padding: 56px 0 68px;
  max-width: 570px;
}

.hero h1,
.section h2,
.cta-band h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6.35rem);
  line-height: 0.92;
  margin-bottom: 20px;
}

.hero-lede {
  margin: 0 0 28px;
  max-width: 510px;
  color: var(--text-soft);
  font-size: clamp(1.02rem, 1.7vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.play-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,0.78);
  font-size: 14px;
  margin-right: 10px;
}

.hero-video {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-visual {
  display: none;
}

.hero-visual img {
  display: none;
}

.feature-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090e14;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  display: flex;
  gap: 18px;
  padding: 24px 22px;
  min-height: 126px;
  align-items: flex-start;
  border-right: 1px solid var(--line);
}

.feature-card:last-child { border-right: 0; }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 23px;
  color: var(--blue-bright);
  border: 1px solid rgba(41, 118, 255, 0.28);
  background: rgba(15, 29, 48, 0.65);
  flex: 0 0 auto;
}
.feature-card h2 {
  margin: 0 0 8px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.65rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.feature-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.section {
  padding: 66px 0 72px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue-bright);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-heading.centered,
.centered-text {
  text-align: center;
}

.section h2,
.cta-band h2 {
  font-size: clamp(2.05rem, 4.4vw, 3.55rem);
  line-height: 0.98;
}

.services-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card,
.review-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)), var(--panel);
  border-radius: 10px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.33 / 1;
  object-fit: cover;
}

.service-body {
  padding: 18px 18px 20px;
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--blue-bright);
  border: 1px solid rgba(41, 118, 255, 0.28);
  background: rgba(12, 22, 36, 0.8);
  margin-top: -42px;
  margin-bottom: 14px;
  position: relative;
}

.service-body h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.service-body p,
.review-card p,
.footer-grid p,
.footer-grid li {
  color: var(--text-soft);
  line-height: 1.58;
}

.service-body a,
.section-link {
  color: var(--blue-bright);
  display: inline-block;
  margin-top: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.work-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.work-grid img {
  width: 100%;
  aspect-ratio: 1.68 / 1;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
}

.reviews-section {
  border-top: 1px solid var(--line);
}

.reviews-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  padding: 22px 20px 18px;
}

.quote-mark {
  color: var(--blue-bright);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.stars {
  margin: 16px 0 8px;
  color: var(--blue-bright);
  letter-spacing: 0.18em;
  font-size: 0.92rem;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span { color: var(--text-muted); }

.cta-band {
  background: linear-gradient(90deg, #0c1522 0%, #102240 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cta-band-inner {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.light { color: #b4cfff; }

.site-footer {
  background: #05090e;
  padding: 36px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.9fr;
  gap: 28px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 14px;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  color: white;
}

.footer-grid h3 {
  margin: 8px 0 14px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

@media (max-width: 1100px) {
  .nav-shell { min-height: 74px; }
  .nav-toggle { display: inline-block; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    background: rgba(6, 11, 18, 0.98);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a.is-active::after { display: none; }
  .nav-cta { margin-left: 0; }
  .hero-grid,
  .feature-grid,
  .services-grid,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid { gap: 26px; }
  .hero { padding-top: 28px; }
  .hero::before { inset: 0 0 0 32%; }
  .hero-copy { max-width: 100%; padding-bottom: 26px; }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .brand img { width: 188px; }
  .hero {
    padding-top: 18px;
  }
  .hero::before {
    inset: 0;
    background-image:
      linear-gradient(180deg, rgba(5,10,17,0.34) 0%, rgba(5,10,17,0.58) 38%, rgba(5,10,17,0.9) 100%),
      linear-gradient(90deg, rgba(5,10,17,0.92) 0%, rgba(5,10,17,0.64) 30%, rgba(5,10,17,0.18) 60%, rgba(5,10,17,0.08) 100%),
      url("assets/hero-house.jpg");
    background-position: 70% center;
  }
  .hero::after { opacity: 0.22; }
  .hero-grid,
  .feature-grid,
  .services-grid,
  .reviews-grid,
  .footer-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { min-height: 0; }
  .hero-copy { padding-top: 22px; padding-bottom: 34px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .hero-actions,
  .cta-band-inner,
  .section-row,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .button,
  .button-large { width: 100%; }
  .hero-video { width: 100%; justify-content: flex-start; }
  .feature-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .feature-card:last-child { border-bottom: 0; }
  .section { padding: 52px 0 58px; }
}
