:root {
  --ink: #1d2426;
  --muted: #5f6d68;
  --paper: #f6f3ed;
  --white: #fffaf4;
  --teal: #1f6f68;
  --teal-dark: #123f3c;
  --berry: #8f3158;
  --coral: #d66b4f;
  --line: rgba(29, 36, 38, 0.14);
  --shadow: 0 24px 70px rgba(22, 35, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 18px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  min-height: 58px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(20, 34, 35, 0.58);
  color: #fffaf4;
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 15px;
  font-weight: 760;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: rgba(255, 250, 244, 0.78);
  font-size: 14px;
}

.nav-links a:hover,
.secondary-link:hover {
  color: #ffffff;
}

.header-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--coral);
  color: #fffaf4;
  font-weight: 760;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-button {
  margin-left: 24px;
  min-width: 112px;
}

.header-button:hover,
.primary-button:hover {
  background: #bd563e;
  box-shadow: 0 14px 34px rgba(182, 79, 53, 0.28);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(760px, 82vh);
  padding: 138px max(24px, calc((100vw - 1120px) / 2)) 78px;
  overflow: hidden;
  color: #fffaf4;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 26, 27, 0.88) 0%, rgba(17, 38, 39, 0.72) 35%, rgba(17, 38, 39, 0.26) 70%),
    linear-gradient(180deg, rgba(12, 26, 27, 0.18) 0%, rgba(12, 26, 27, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3b097;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 250, 244, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

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

.secondary-link {
  color: rgba(255, 250, 244, 0.78);
  font-weight: 720;
}

.intro-section,
.content-section,
.final-cta,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-section {
  padding: 54px 0 36px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1fr);
  gap: 48px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 42px;
}

.intro-copy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.intro-copy p {
  margin-bottom: 0;
}

.intro-copy p + p {
  margin-top: 12px;
}

.content-section {
  padding: 74px 0;
}

#services,
#prices,
#process {
  scroll-margin-top: 96px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading > p:not(.section-label) {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card,
.price-card,
.steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(22, 35, 36, 0.07);
}

.service-card {
  min-height: 260px;
  padding: 24px;
}

.service-number {
  display: block;
  margin-bottom: 52px;
  color: var(--berry);
  font-weight: 840;
}

.service-card p,
.price-card p,
.steps p,
.final-cta p,
.site-footer p {
  color: var(--muted);
}

.prices-section {
  width: 100%;
  max-width: none;
  padding: 82px max(16px, calc((100vw - 1120px) / 2));
  background: #eaf0ec;
}

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

.price-card {
  position: relative;
  min-height: 225px;
  padding: 24px;
}

.price-card .price {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 30px;
  line-height: 1;
  font-weight: 840;
}

.featured-price {
  border-color: rgba(31, 111, 104, 0.34);
  box-shadow: var(--shadow);
}

.price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(143, 49, 88, 0.1);
  color: var(--berry);
  font-size: 12px;
  font-weight: 780;
}

.process-section {
  padding-bottom: 88px;
}

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

.steps article {
  padding: 26px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--teal);
  color: #fffaf4;
  font-weight: 840;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  margin-bottom: 48px;
  padding: 42px;
  border-radius: 8px;
  background: var(--teal-dark);
  color: #fffaf4;
}

.final-cta h2 {
  max-width: 740px;
}

.final-cta p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 250, 244, 0.78);
}

.dark-button {
  min-width: 156px;
  background: #fffaf4;
  color: var(--teal-dark);
}

.dark-button:hover {
  background: #f1d7ca;
  color: var(--teal-dark);
}

.site-footer {
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 740px;
  margin: 0;
  font-size: 14px;
}

.site-footer .footer-brand {
  margin-bottom: 8px;
  color: var(--teal);
  font-weight: 840;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .services-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta {
    align-items: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding-left: 12px;
  }

  .brand {
    font-size: 14px;
  }

  .header-button {
    min-width: 94px;
    margin-left: 12px;
    padding: 0 14px;
  }

  .hero {
    min-height: 76vh;
    padding: 116px 18px 54px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(12, 26, 27, 0.9) 0%, rgba(17, 38, 39, 0.74) 72%, rgba(17, 38, 39, 0.44) 100%),
      linear-gradient(180deg, rgba(12, 26, 27, 0.14) 0%, rgba(12, 26, 27, 0.52) 100%);
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .intro-section,
  .content-section {
    padding: 48px 0;
  }

  .services-grid,
  .price-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 32px;
  }

  .price-card {
    min-height: auto;
  }

  .prices-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .final-cta {
    width: calc(100% - 32px);
    padding: 28px 22px;
  }

  .primary-button,
  .secondary-link {
    width: 100%;
  }

  .secondary-link {
    text-align: center;
  }
}
