﻿:root {
  --bg: #101211;
  --bg-soft: #171a19;
  --panel: rgba(255, 255, 255, 0.06);
  --ink: #eff1eb;
  --muted: #b6beb4;
  --accent: #a3ff7a;
  --accent-deep: #6ec64a;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 2vw, 2rem);
  background: linear-gradient(to bottom, rgba(16, 18, 17, 0.92), rgba(16, 18, 17, 0.55), transparent);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-kicker {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(163, 255, 122, 0.45);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 700;
}

.brand-name {
  display: inline-block;
  font-weight: 700;
}

.brand-mark p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  color: rgba(239, 241, 235, 0.88);
  font-size: 0.95rem;
}

.nav-cta {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.32rem auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 18, 17, 0.88) 0%, rgba(16, 18, 17, 0.56) 45%, rgba(16, 18, 17, 0.35) 100%),
    linear-gradient(to top, rgba(16, 18, 17, 0.86) 0%, rgba(16, 18, 17, 0.12) 60%);
}

.hero-copy,
.hero-proof,
.section,
.site-footer {
  position: relative;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.hero-copy {
  z-index: 1;
  padding: 8rem 0 8rem;
  max-width: 41rem;
}

.eyebrow,
.mini-label {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 7vw, 5.9rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

h3 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
}

.hero-text,
.section p,
.feature-list,
.guarantee-list,
.process-steps p,
.contact-form label,
.contact-points a,
.faq-list p {
  color: var(--muted);
}

.hero-text {
  max-width: 35rem;
  margin: 1.4rem 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #0f170d;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.button-full {
  width: 100%;
}

.hero-proof {
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-bottom: 2.4rem;
}

.hero-proof div,
.services-grid article,
.process-steps div,
.offer-aside,
.contact-form,
.faq-list article {
  background: var(--panel);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-proof div {
  padding: 1.15rem;
}

.hero-proof strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
  color: var(--ink);
}

.section {
  padding: 6rem 0;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.4rem;
}

.light-heading .eyebrow,
.light-heading h2 {
  color: #f6f7f2;
}

.offer-section,
.process-section,
.contact-section {
  background:
    radial-gradient(circle at top right, rgba(163, 255, 122, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.offer-layout,
.makeover-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.feature-list,
.guarantee-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.guarantee-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.feature-list li::before,
.guarantee-list li::before {
  content: "+";
  display: inline-block;
  margin-right: 0.7rem;
  color: var(--accent);
  font-weight: 700;
}

.offer-aside,
.contact-form {
  padding: 1.5rem;
}

.services-grid,
.process-steps,
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.services-grid article,
.process-steps div,
.faq-list article {
  padding: 1.5rem;
}

.service-index,
.process-steps span {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.makeover-section,
.contact-section {
  background: #0c0f0e;
}

.makeover-image img {
  min-height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.inverse li::before {
  content: ">";
}

.guarantee-section {
  padding-top: 2rem;
}

.guarantee-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}

.contact-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-points a {
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 7rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0 2.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(16, 18, 17, 0.96);
    border: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-proof,
  .offer-layout,
  .makeover-layout,
  .contact-layout,
  .services-grid,
  .process-steps,
  .faq-list,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 8rem 0 3rem;
  }

  h1,
  h2 {
    max-width: none;
  }

  .guarantee-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 1rem;
  }

  .brand-mark p {
    display: none;
  }

  .hero-copy,
  .hero-proof,
  .section,
  .site-footer {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .hero-proof {
    padding-bottom: 1.2rem;
  }

  .section {
    padding: 4.4rem 0;
  }

  .offer-aside,
  .contact-form,
  .services-grid article,
  .process-steps div,
  .faq-list article {
    padding: 1.2rem;
  }
}
