:root {
  color-scheme: light;
  --ink: #101412;
  --ink-soft: #3e4742;
  --paper: #f7f8f5;
  --paper-strong: #ffffff;
  --line: rgba(16, 20, 18, 0.14);
  --accent: #0f6f62;
  --accent-strong: #0a4f48;
  --mist: #e8efea;
  --shadow: 0 24px 80px rgba(16, 20, 18, 0.18);
  --max: 1180px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: var(--accent);
  transform-origin: left;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: var(--header);
  padding: 0 clamp(18px, 4vw, 52px);
  color: var(--paper-strong);
  transition:
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 248, 245, 0.9);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(16, 20, 18, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-name {
  max-width: 220px;
  overflow: hidden;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 30px);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a,
.text-link {
  text-decoration: none;
}

.site-nav a {
  opacity: 0.86;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.header-cta {
  justify-self: end;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: hero-settle 1600ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 10, 8, 0.84) 0%, rgba(5, 10, 8, 0.52) 36%, rgba(5, 10, 8, 0.08) 72%),
    linear-gradient(180deg, rgba(5, 10, 8, 0.5) 0%, rgba(5, 10, 8, 0.05) 45%, rgba(5, 10, 8, 0.58) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(650px, calc(100% - 36px));
  min-height: 100svh;
  margin-left: clamp(18px, 7vw, 96px);
  padding: calc(var(--header) + 44px) 0 56px;
}

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

.hero .eyebrow,
.contact .eyebrow {
  color: #bfe6d8;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(3.9rem, 8.1vw, 7.5rem);
  line-height: 0.91;
}

h2 {
  max-width: 820px;
  font-size: clamp(2.25rem, 5vw, 5.5rem);
  line-height: 0.94;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.05;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-strong);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.64);
  color: #fff;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(18px, 6vw, 76px);
  z-index: 2;
  display: grid;
  width: min(310px, calc(100% - 36px));
  gap: 4px;
  border-left: 2px solid #bfe6d8;
  padding-left: 18px;
  color: #fff;
}

.hero-panel span,
.hero-panel small,
.package-meta,
.service-item p,
.timeline-step p,
.coverage-copy p,
.contact p,
.intro-grid p,
.media-copy p,
.site-footer {
  color: var(--ink-soft);
}

.hero-panel span,
.hero-panel small {
  color: rgba(255, 255, 255, 0.7);
}

.hero-panel strong {
  font-size: 1.25rem;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(76px, 11vw, 140px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 6vw, 92px);
  align-items: end;
  margin-bottom: clamp(42px, 7vw, 84px);
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-grid p,
.media-copy p,
.coverage-copy p,
.contact p {
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
}

.service-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 70px minmax(180px, 0.7fr) minmax(240px, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: start;
  background: var(--paper);
  padding: clamp(24px, 4vw, 42px) 0;
}

.service-number {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 900;
}

.service-item h3,
.service-item p {
  margin-bottom: 0;
}

.media-band {
  position: relative;
  min-height: clamp(560px, 74vw, 860px);
  overflow: hidden;
  color: #fff;
}

.media-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 11, 9, 0.78), rgba(7, 11, 9, 0.34) 47%, rgba(7, 11, 9, 0.1)),
    linear-gradient(180deg, rgba(7, 11, 9, 0.1), rgba(7, 11, 9, 0.58));
}

.media-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  width: min(620px, calc(100% - 36px));
  min-height: inherit;
  padding: clamp(70px, 10vw, 128px) 0 clamp(64px, 9vw, 108px) clamp(18px, 7vw, 96px);
}

.media-copy h2 {
  margin-bottom: 20px;
}

.media-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(38px, 6vw, 76px);
}

.section-heading h2 {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.timeline-step {
  min-height: 300px;
  background: var(--paper);
  padding: clamp(24px, 4vw, 42px);
}

.timeline-step span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 72px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  font-weight: 900;
}

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

.package-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
  padding: clamp(24px, 4vw, 38px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 111, 98, 0.34);
  box-shadow: var(--shadow);
}

.package-card.featured {
  background: var(--ink);
  color: #fff;
}

.package-card.featured .package-meta,
.package-card.featured li {
  color: rgba(255, 255, 255, 0.72);
}

.package-meta {
  min-height: 52px;
  margin-bottom: 44px;
}

.package-card ul {
  display: grid;
  gap: 13px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}

.package-card li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(32px, 8vw, 104px);
  align-items: start;
}

.coverage-copy h2 {
  margin-bottom: 22px;
}

.coverage-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.coverage-map span {
  display: flex;
  min-height: 74px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 850;
}

.contact {
  background: var(--ink);
  color: #fff;
  padding: clamp(76px, 12vw, 150px) clamp(18px, 5vw, 68px);
}

.contact-inner {
  width: min(920px, 100%);
}

.contact h2 {
  margin-bottom: 22px;
}

.contact p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
}

.contact .text-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 850;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 28px;
  padding: 28px clamp(18px, 5vw, 68px);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js .hero .reveal {
  animation: hero-reveal 850ms 160ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

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

@keyframes hero-settle {
  to {
    transform: scale(1);
  }
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --header: 68px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .intro-grid,
  .coverage,
  .timeline,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline-step {
    min-height: 0;
  }

  .timeline-step span {
    margin-bottom: 36px;
  }

  .package-card {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-name {
    max-width: 154px;
    font-size: 0.76rem;
  }

  .header-cta {
    padding: 9px 11px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(5, 10, 8, 0.88) 0%, rgba(5, 10, 8, 0.56) 58%, rgba(5, 10, 8, 0.1) 100%),
      linear-gradient(180deg, rgba(5, 10, 8, 0.48), rgba(5, 10, 8, 0.5));
  }

  .hero-content {
    min-height: 620px;
    width: auto;
    margin-left: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  h1 {
    font-size: clamp(3.25rem, 17vw, 5.25rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.65rem);
  }

  .hero-panel {
    right: 18px;
    bottom: 28px;
    left: 18px;
  }

  .section,
  .contact {
    padding-block: 72px;
  }

  .media-band {
    min-height: 620px;
  }

  .media-band img {
    object-position: 58% center;
  }

  .media-copy {
    padding: 72px 18px;
  }

  .coverage-map {
    grid-template-columns: 1fr;
  }
}
