:root {
  --ink: #111416;
  --muted: #596168;
  --paper: #f7f4ed;
  --panel: #ffffff;
  --line: rgba(17, 20, 22, 0.14);
  --field: #eef1f0;
  --green: #136c4b;
  --gold: #ff3c00;
  --red: #8f2d1c;
  --blue: #1e5b8c;
  --shadow: 0 20px 60px rgba(15, 24, 31, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(247, 244, 237, 0.94);
  box-shadow: 0 10px 30px rgba(17, 20, 22, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.22));
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 0.76rem;
  letter-spacing: 0;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-open .site-nav a:hover {
  background: rgba(17, 20, 22, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

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

.hero-media {
  background:
    url("https://images.unsplash.com/photo-1607860108855-64acf2078ed9?auto=format&fit=crop&w=2200&q=85")
    center / cover no-repeat;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 13, 16, 0.88), rgba(8, 13, 16, 0.52) 44%, rgba(8, 13, 16, 0.18)),
    linear-gradient(0deg, rgba(8, 13, 16, 0.8), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 54px;
}

.eyebrow,
.section-kicker,
.package-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.3rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-copy {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
}

.hero-actions,
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.button:hover {
  transform: translateY(-1px);
}

.hero-stats {
  max-width: 780px;
  margin-top: 40px;
}

.hero-stats span {
  min-width: 156px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
}

.intro-band,
.section,
.feature-band,
.quote-section,
.site-footer {
  padding-inline: clamp(18px, 4vw, 56px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  padding-top: clamp(54px, 8vw, 96px);
  padding-bottom: clamp(44px, 7vw, 84px);
  background: var(--green);
  color: #fff;
}

.intro-band p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.section {
  max-width: 1500px;
  margin: 0 auto;
  padding-top: clamp(64px, 8vw, 108px);
  padding-bottom: clamp(56px, 8vw, 100px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.88fr);
  gap: clamp(18px, 4vw, 56px);
  margin-bottom: clamp(28px, 4vw, 52px);
}

.section-heading .section-kicker {
  color: var(--red);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.package-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(17, 20, 22, 0.06);
  overflow: hidden;
}

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

.service-card div {
  padding: 20px;
}

.service-card p,
.package-card p,
.process-list p,
.quote-section p,
.feature-copy p {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(58px, 7vw, 96px);
  background: #162527;
  color: #fff;
}

.feature-image {
  min-height: min(58vw, 620px);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.12)),
    url("https://images.unsplash.com/photo-1600320254374-ce2d293c324e?auto=format&fit=crop&w=1300&q=82")
    center / cover no-repeat;
  box-shadow: var(--shadow);
}

.feature-copy {
  max-width: 640px;
}

.feature-copy .section-kicker {
  color: var(--gold);
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px #162527;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.package-card {
  padding: 26px;
}

.package-card.is-featured {
  border-color: rgba(242, 181, 68, 0.75);
  box-shadow: 0 18px 50px rgba(19, 108, 75, 0.18);
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.package-card li::marker {
  color: var(--green);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(18px, 4vw, 56px);
}

.split-section .section-heading {
  display: block;
  margin: 0;
}

.process-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.process-list span {
  color: var(--red);
  font-size: 1.6rem;
  font-weight: 950;
}

.process-list p {
  margin: 8px 0 0;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding-top: clamp(64px, 8vw, 108px);
  padding-bottom: clamp(64px, 8vw, 108px);
  background:
    linear-gradient(110deg, rgba(17, 20, 22, 0.9), rgba(17, 20, 22, 0.72)),
    url("https://images.unsplash.com/photo-1605559424843-9e4c228bf1c2?auto=format&fit=crop&w=1800&q=82")
    center / cover no-repeat;
  color: #fff;
}

.quote-section .section-kicker {
  color: var(--gold);
}

.quote-section p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.76);
}

.quote-form {
  display: grid;
  gap: 16px;
  border-radius: var(--radius);
  padding: clamp(18px, 4vw, 30px);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #32383d;
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 20, 22, 0.18);
  border-radius: 6px;
  padding: 12px 13px;
  background: var(--field);
  color: var(--ink);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form .button {
  width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  padding-bottom: 28px;
  background: #0f1416;
  color: #fff;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer > a:last-child {
  color: var(--gold);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .service-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card img {
    aspect-ratio: 1.55;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    background: rgba(247, 244, 237, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 6px;
  }

  .hero {
    min-height: 88vh;
    align-items: center;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 13, 16, 0.92), rgba(8, 13, 16, 0.58)),
      linear-gradient(0deg, rgba(8, 13, 16, 0.82), transparent 50%);
  }

  .hero-content {
    width: min(100% - 32px, 860px);
    padding-top: 118px;
    padding-bottom: 30px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stats span {
    flex: 1 1 140px;
  }

  .intro-band,
  .section-heading,
  .feature-band,
  .split-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: 320px;
  }

  .process-list li {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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