:root {
  --bg: #fff8e8;
  --ink: #17212b;
  --muted: #5b6470;
  --navy: #0b2d4d;
  --green: #19623a;
  --gold: #d29a29;
  --cream: #fffaf0;
  --card: #ffffff;
  --line: rgba(23,33,43,0.14);
  --shadow: 0 20px 60px rgba(11,45,77,0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(210,154,41,0.18), transparent 30rem),
    linear-gradient(180deg, var(--bg), #ffffff 45%, var(--bg));
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(255,248,232,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  color: var(--cream);
  background: var(--navy);
  font-size: 1rem;
  letter-spacing: 0.06em;
  box-shadow: inset 0 0 0 3px var(--gold);
}

.brand-text {
  color: var(--navy);
  letter-spacing: 0.02em;
}

nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 700;
  color: var(--navy);
}

.nav-cta {
  padding: 10px 16px;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(50px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

h1, h2, h3 { line-height: 1.05; margin: 0; color: var(--navy); }

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.05em;
}

h3 { font-size: 1.35rem; }

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 2px solid var(--navy);
}

.primary {
  color: white;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(11,45,77,0.22);
}

.secondary {
  color: var(--navy);
  background: transparent;
}

.card-preview { display: grid; place-items: center; }

.mock-card {
  width: min(330px, 84vw);
  aspect-ratio: 2.5 / 3.5;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff, #f6e6be);
  border: 8px solid var(--navy);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.mock-photo {
  display: grid;
  place-items: center;
  height: 68%;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(25,98,58,0.88), rgba(11,45,77,0.9)),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.1) 10px, rgba(255,255,255,0.1) 20px);
  color: rgba(255,255,255,0.86);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.mock-band {
  margin-top: 14px;
  padding: 13px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
}

.mock-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--navy);
  font-weight: 900;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 clamp(18px, 5vw, 72px) 30px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
  border-radius: 24px;
  overflow: hidden;
}

.trust-strip div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child { border-right: 0; }

.trust-strip strong {
  display: block;
  color: var(--navy);
  font-size: 1.2rem;
}

.trust-strip span { color: var(--muted); }

.section {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.section-alt {
  background: var(--navy);
  color: white;
}

.section-alt h2, .section-alt h3 { color: white; }
.section-alt .eyebrow { color: #f3c862; }

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.15rem;
}

.section-alt .section-heading p:not(.eyebrow) { color: rgba(255,255,255,0.72); }

.sample-grid, .pricing-grid, .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sample-card, .price-card, .step {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(23,33,43,0.07);
}

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

.sample-image {
  display: grid;
  place-items: center;
  min-height: 280px;
  margin-bottom: 18px;
  border: 2px dashed rgba(11,45,77,0.28);
  border-radius: 18px;
  background: #f6edd7;
  color: var(--navy);
  font-weight: 900;
}

.price-card {
  position: relative;
  color: var(--ink);
}

.price-card.featured {
  border: 3px solid var(--gold);
  transform: translateY(-10px);
}

.badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price {
  margin: 18px 0;
  color: var(--green);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  margin-left: 4px;
}

ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 900;
}

.cta {
  margin: 40px clamp(18px, 5vw, 72px) 80px;
  padding: clamp(36px, 6vw, 70px);
  text-align: center;
  color: white;
  background:
    linear-gradient(135deg, rgba(11,45,77,0.97), rgba(25,98,58,0.92)),
    radial-gradient(circle at top right, rgba(210,154,41,0.35), transparent 22rem);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.cta h2 { color: white; }
.cta p { max-width: 720px; margin: 16px auto 28px; color: rgba(255,255,255,0.78); }

footer {
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer p { margin: 4px 0; }

@media (max-width: 850px) {
  .site-header {
    position: static;
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .sample-grid,
  .pricing-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child { border-bottom: 0; }

  .price-card.featured { transform: none; }
}
