:root {
  --ink: #171311;
  --ink-soft: #342a26;
  --muted: #736862;
  --paper: #f7f1ea;
  --surface: #fffaf4;
  --surface-strong: #ffffff;
  --line: #dfd1c6;
  --accent: #9f3344;
  --accent-dark: #742432;
  --gold: #c09157;
  --sage: #51675f;
  --charcoal: #191513;
  --charcoal-2: #27201d;
  --shadow: 0 24px 70px rgba(30, 22, 18, 0.16);
  --shadow-soft: 0 12px 34px rgba(30, 22, 18, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  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;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(20, 16, 14, 0.88), rgba(20, 16, 14, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

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

.brand strong {
  font-size: 14px;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.nav-links {
  display: flex;
  gap: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.nav-links a:hover {
  color: #fff;
}

.header-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
  background: var(--charcoal);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 12, 11, 0.96) 0%, rgba(16, 12, 11, 0.82) 42%, rgba(16, 12, 11, 0.36) 100%),
    linear-gradient(180deg, rgba(16, 12, 11, 0.06), rgba(16, 12, 11, 0.86));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.45fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  width: min(100% - 40px, var(--max));
  min-height: 96vh;
  margin: 0 auto;
  padding: 150px 0 70px;
  color: #fff;
}

.hero-content {
  max-width: 760px;
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

.voucher-strip {
  width: fit-content;
  max-width: 650px;
  margin-top: 26px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(159, 51, 68, 0.45);
  backdrop-filter: blur(14px);
  font-size: 15px;
  font-weight: 750;
}

.voucher-strip strong {
  color: #fff;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(159, 51, 68, 0.42);
  outline-offset: 3px;
}

.btn.primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(159, 51, 68, 0.34);
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-assurance {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(22, 18, 16, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.24);
}

.assurance-label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-assurance dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.hero-assurance div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-assurance dt {
  color: #fff;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.hero-assurance dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band p {
  margin: 0;
  padding: 18px 14px;
  color: var(--muted);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.section h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.04;
}

.decision-section {
  padding-bottom: 58px;
}

.decision-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.decision-panel article {
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.decision-panel article:last-child {
  border-right: 0;
}

.metric,
.card-icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.15;
}

article p,
.process-list p,
.package li,
.decision-panel p,
.proof-list span,
.credibility-card p,
.credential-grid p,
.quote-copy p,
.review-checklist li {
  color: var(--muted);
}

article p {
  margin: 0;
}

.pain-proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 0.7fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pain-copy p:not(.section-kicker) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list div {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 1px 0 rgba(37, 28, 23, 0.04);
}

.proof-list strong {
  color: var(--ink);
}

.credibility-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 16px;
}

.credibility-card {
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-2));
  box-shadow: var(--shadow);
}

.credibility-card h2 {
  color: #fff;
}

.credibility-card p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.credential-grid {
  display: grid;
  gap: 16px;
}

.credential-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.product-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-grid article,
.package {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 1px 0 rgba(37, 28, 23, 0.03);
}

.packages-section {
  padding-top: 28px;
}

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

.package {
  display: flex;
  flex-direction: column;
  min-height: 410px;
}

.package.featured {
  color: #fff;
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  box-shadow: var(--shadow);
}

.package.featured .tag,
.package.featured .package-copy,
.package.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.tag {
  width: fit-content;
  margin: 0 0 40px;
  padding: 6px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.package-copy {
  margin-bottom: 24px;
  color: var(--muted);
}

.package ul {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
  padding-left: 18px;
}

.process-section {
  padding-top: 28px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  padding: 24px;
  border-top: 3px solid var(--sage);
  background: rgba(255, 255, 255, 0.66);
}

.process-list span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
  font-weight: 950;
}

.quote-section {
  padding: 80px 20px;
  background:
    linear-gradient(135deg, rgba(25, 21, 19, 0.96), rgba(39, 32, 29, 0.96)),
    var(--charcoal);
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.9fr);
  gap: clamp(30px, 5vw, 56px);
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: #fffaf4;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.quote-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
}

.quote-copy p {
  margin: 0;
  font-size: 18px;
}

.quote-voucher {
  margin-top: 22px;
  padding: 16px;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  color: var(--ink);
  background: #f7e9e4;
  font-weight: 850;
}

.review-checklist {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.review-checklist h3 {
  font-size: 18px;
}

.review-checklist ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.quote-form {
  display: grid;
  gap: 15px;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.quote-form label,
.quote-form legend {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

fieldset legend {
  padding: 0 6px;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-weight: 750;
}

fieldset input {
  width: 16px;
  min-height: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.submit-btn {
  width: 100%;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.form-note a {
  color: var(--accent);
  font-weight: 950;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: #161310;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #fff;
  font-weight: 850;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

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

  .nav-links,
  .header-cta {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(16, 12, 11, 0.54), rgba(16, 12, 11, 0.92)),
      linear-gradient(90deg, rgba(16, 12, 11, 0.78), rgba(16, 12, 11, 0.5));
  }

  .hero-grid,
  .pain-proof-section,
  .credibility-section,
  .quote-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 170px;
  }

  .hero-assurance {
    max-width: 620px;
  }

  .trust-band,
  .decision-panel,
  .product-grid,
  .package-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .decision-panel {
    border-radius: var(--radius);
  }

  .decision-panel article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .decision-panel article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .product-grid article,
  .package {
    min-height: auto;
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero-grid,
  .section {
    width: min(100% - 28px, var(--max));
  }

  .hero-grid {
    padding: 150px 0 48px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-copy,
  .pain-copy p:not(.section-kicker),
  .quote-copy p,
  .credibility-card p {
    font-size: 16px;
  }

  .hero-actions,
  .trust-band,
  .decision-panel,
  .product-grid,
  .package-grid,
  .process-list,
  fieldset {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .btn,
  .voucher-strip {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading {
    display: grid;
  }

  .section h2,
  .quote-copy h2 {
    font-size: 32px;
  }

  .decision-panel article,
  .decision-panel article:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .decision-panel article:last-child {
    border-bottom: 0;
  }

  .metric,
  .card-icon,
  .process-list span,
  .tag {
    margin-bottom: 20px;
  }

  .quote-section {
    padding: 56px 14px;
  }

  .quote-panel,
  .quote-form {
    padding: 20px;
  }

  .site-footer {
    display: grid;
  }
}
