:root {
  --ink: #182520;
  --muted: #5f6f68;
  --line: #ddd5c8;
  --paper: #fbf7ef;
  --white: #ffffff;
  --field: #f0e7da;
  --accent: #2f6d58;
  --accent-dark: #204c3f;
  --gold: #b7833f;
  --coral: #c96f4d;
  --mint: #dcebe1;
  --shadow: 0 24px 70px rgba(25, 35, 30, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fbf7ef 0%, #f4efe6 100%);
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 239, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: var(--white);
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #efe7db;
  padding: clamp(34px, 6vw, 84px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 29, 25, .9), rgba(18, 29, 25, .66) 44%, rgba(18, 29, 25, .18)),
    linear-gradient(0deg, rgba(18, 29, 25, .34), rgba(18, 29, 25, .05) 48%, rgba(255,255,255,.05));
  z-index: 1;
}

.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(251,247,239,.05), rgba(251,247,239,.12)),
    url("assets/solution-hero.png") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-note {
  position: absolute;
  right: clamp(22px, 6vw, 86px);
  bottom: clamp(22px, 6vw, 72px);
  z-index: 2;
  width: min(320px, 34vw);
  padding: 20px 22px;
  color: var(--ink);
  background: rgba(255, 252, 245, .88);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(12, 20, 16, .22);
  backdrop-filter: blur(10px);
}

.hero-note span,
.hero-note strong {
  display: block;
}

.hero-note span {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-note strong {
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.08;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: .96;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.02;
  margin-bottom: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  padding: 9px 12px;
  color: rgba(255,255,255,.88);
  background: rgba(255,250,240,.13);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px;
  font-size: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 6px;
  font-weight: 700;
}

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

.button.secondary {
  border: 1px solid rgba(255, 255, 255, .55);
  color: var(--white);
}

.band,
.content-section,
.contact-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.band {
  background: var(--white);
}

.section-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
}

.section-grid > p,
.trust-copy {
  color: var(--muted);
  font-size: 19px;
}

.problem-strip {
  padding: 0 clamp(18px, 4vw, 56px) clamp(58px, 7vw, 92px);
  background: var(--white);
}

.problem-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px;
  background: linear-gradient(135deg, var(--ink), #24483c);
  color: var(--white);
  border-radius: 8px;
}

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

.problem-grid div {
  padding: 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
}

.problem-grid strong,
.problem-grid span {
  display: block;
}

.problem-grid strong {
  margin-bottom: 10px;
  font-size: 18px;
}

.problem-grid span {
  color: rgba(255,255,255,.72);
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 38px;
}

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

.service-grid,
.pricing-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.price-card {
  min-height: 100%;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card.featured {
  background: linear-gradient(145deg, var(--ink), var(--accent-dark));
  color: var(--white);
  border-color: var(--ink);
}

.service-card.featured p,
.service-card.featured li {
  color: rgba(255, 255, 255, .78);
}

.service-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

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

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

li + li {
  margin-top: 8px;
}

.pricing {
  background: #efe7dc;
}

.advantage-section {
  background: #fff8ee;
}

.advantage-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.advantage-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(35, 40, 32, .08);
}

.advantage-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--accent-dark);
  font-weight: 700;
}

.advantage-grid p {
  color: var(--muted);
}

.outcome-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 4vw, 56px);
  background: var(--paper);
}

.outcome-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.outcome-item {
  padding: 28px;
  border-left: 3px solid var(--accent);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(25, 35, 30, .08);
}

.outcome-item span {
  display: block;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 24px;
}

.outcome-item p {
  color: var(--muted);
}

.price {
  color: var(--ink) !important;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.retainer {
  max-width: 1180px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 24px;
  align-items: center;
  padding: 32px;
  background: linear-gradient(135deg, var(--accent-dark), #2c6a55);
  color: var(--white);
  border-radius: 8px;
}

.retainer p {
  color: rgba(255,255,255,.78);
}

.retainer-list {
  display: grid;
  gap: 10px;
}

.retainer-list span {
  padding: 14px 16px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
}

.steps {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.steps li {
  padding-top: 22px;
  border-top: 2px solid var(--accent);
}

.steps span {
  display: block;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
}

.steps p {
  color: var(--muted);
}

.trust {
  background: #fffdf8;
}

.for-whom {
  background: #fffdf8;
}

.fineprint,
.placeholder-note {
  font-size: 14px !important;
  color: var(--muted);
}

.contact-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(201,111,77,.22), transparent 25%),
    linear-gradient(135deg, var(--ink), #24483c);
}

.contact-box {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 56px);
  background: var(--white);
  border-radius: 8px;
}

.contact-box p {
  color: var(--muted);
  font-size: 18px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 14px;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 16px;
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  background: #101713;
  color: rgba(255,255,255,.74);
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 760px;
  }

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

  .hero-note {
    right: 18px;
    bottom: 18px;
    width: min(300px, 42vw);
  }

  .section-grid,
  .service-grid,
  .pricing-layout,
  .retainer,
  .steps,
  .problem-grid,
  .outcome-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 42px;
  }

  .hero {
    padding: 28px 18px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-photo {
    background-position: 61% center;
  }

  .hero-note {
    display: none;
  }
}
