:root {
  --ink: #10231f;
  --muted: #52625d;
  --paper: #fbfaf7;
  --line: #d9ded7;
  --teal: #0d7767;
  --teal-dark: #07594c;
  --copper: #c45d35;
  --gold: #d9a441;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(16, 35, 31, 0.16);
}

* {
  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;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 35, 31, 0.86), rgba(16, 35, 31, 0.18));
}

.brand,
.nav-links,
.header-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.14);
  font-weight: 900;
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.9rem;
}

.nav-links a,
.header-cta {
  text-decoration: none;
}

.header-cta {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  color: var(--white);
}

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

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1900&q=82");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 22, 19, 0.88), rgba(8, 22, 19, 0.58) 42%, rgba(8, 22, 19, 0.18)),
    linear-gradient(180deg, rgba(8, 22, 19, 0.4), rgba(8, 22, 19, 0.68));
}

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

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

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

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(3.25rem, 8vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(38px, 8vh, 86px);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin: 0;
  background: rgba(255, 255, 255, 0.32);
  box-shadow: var(--shadow);
}

.hero-stats div {
  min-height: 116px;
  padding: 20px;
  background: rgba(16, 35, 31, 0.78);
}

.hero-stats dt {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.section-band {
  padding: clamp(64px, 9vw, 108px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  padding: 42px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-grid,
.proof-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro p:last-child,
.section-heading p,
.proof-copy p,
.contact p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.services {
  background: #f2f6f1;
}

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

.service-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.service-number {
  display: block;
  margin-bottom: 36px;
  color: var(--copper);
  font-weight: 900;
}

.service-card h3,
.price-card h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
  line-height: 1.16;
}

.service-card p,
.price-card p,
.price-card li {
  color: var(--muted);
}

.proof {
  background: var(--paper);
}

.proof-photo {
  min-height: 520px;
  border-radius: 8px;
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1300&q=82");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 13px;
  height: 8px;
  border: solid var(--teal);
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.pricing {
  background: #fff7ed;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  padding: 26px;
}

.price-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.price-card h3 {
  color: var(--ink);
  font-size: 2.6rem;
}

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

.contact {
  color: var(--white);
  background: var(--ink);
}

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

.contact p,
.contact address,
.contact a {
  color: rgba(255, 255, 255, 0.78);
}

address {
  margin-top: 28px;
  font-style: normal;
}

.contact-line {
  margin-top: 22px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  padding: 12px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 22px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.68);
  background: #07110f;
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 112px;
  }

  .hero-stats,
  .intro-grid,
  .proof-grid,
  .contact-grid,
  .service-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: auto;
  }

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

  .proof-photo {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
  }

  .brand span:last-child {
    max-width: 130px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: 3.25rem;
  }

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

  .section-inner {
    width: min(100% - 28px, 1120px);
  }
}
