:root {
  color-scheme: light;
  --ink: #15181d;
  --muted: #606a75;
  --line: #d9e0e6;
  --paper: #f7f8f5;
  --white: #ffffff;
  --green: #1f6f5b;
  --green-dark: #174f44;
  --blue: #244b74;
  --clay: #b96f4a;
  --gold: #d8a334;
  --shadow: 0 24px 70px rgba(24, 32, 43, 0.14);
}

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

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

img,
svg {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(21, 24, 29, 0.08);
  background: rgba(247, 248, 245, 0.92);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.proof-strip,
.header-action {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: 330px;
  height: 62px;
}

.nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 36px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.footer a:hover {
  color: var(--green);
}

.header-action {
  min-height: 40px;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 700;
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
  min-height: calc(100svh - 72px);
  padding: clamp(44px, 6vw, 86px) clamp(18px, 4vw, 54px) 36px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6.3vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
}

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

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.proof-strip {
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
}

.proof-strip div {
  min-width: 156px;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.proof-strip dt {
  font-weight: 800;
}

.proof-strip dd {
  margin: 0;
  color: var(--muted);
}

.hero-board {
  min-width: 0;
}

.listing-window {
  overflow: hidden;
  border: 1px solid rgba(21, 24, 29, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d1d7de;
}

.photo-preview {
  position: relative;
  display: grid;
  min-height: 278px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31, 111, 91, 0.15), rgba(36, 75, 116, 0.11)),
    repeating-linear-gradient(0deg, rgba(21, 24, 29, 0.04), rgba(21, 24, 29, 0.04) 1px, transparent 1px, transparent 22px);
}

.photo-preview p {
  position: absolute;
  right: 16px;
  bottom: 12px;
  margin: 0;
  color: rgba(21, 24, 29, 0.62);
  font-size: 0.83rem;
  font-weight: 700;
}

.retouch-labels {
  position: absolute;
  inset: 14px 14px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  pointer-events: none;
}

.retouch-labels span {
  width: max-content;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(21, 24, 29, 0.76);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.retouch-labels span:last-child {
  justify-self: start;
  background: rgba(31, 111, 91, 0.86);
}

.offer-preview {
  display: grid;
  gap: 24px;
  min-height: 300px;
  align-content: center;
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(21, 24, 29, 0.9), rgba(31, 111, 91, 0.78)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07) 1px, transparent 1px, transparent 24px);
  color: var(--white);
}

.offer-preview h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.05;
}

.preview-kicker {
  width: max-content;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.preview-metrics div {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.preview-metrics strong {
  font-size: 1.45rem;
}

.preview-metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.listing-content {
  padding: 26px;
}

.tag,
.badge {
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(31, 111, 91, 0.11);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.listing-content h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.42rem, 2vw, 2rem);
  line-height: 1.12;
}

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

.description-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.mini-grid span {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: linear-gradient(135deg, #e3e8e9, #bdc9ce);
}

.band,
.section,
.contact {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 4vw, 54px);
}

.comparison {
  padding-top: clamp(42px, 6vw, 82px);
  background: linear-gradient(180deg, var(--paper), #eef3f0);
}

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

.section-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(20px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.section-copy.narrow {
  display: block;
  max-width: 850px;
}

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

.problem-list,
.approach-grid,
.steps,
.package-grid,
.deliverables,
.case-studies-grid {
  display: grid;
  gap: 18px;
}

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

.problem-list article,
.steps article,
.package,
.approach-grid > div,
.deliverables article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.problem-list article,
.steps article,
.approach-grid > div,
.deliverables article {
  padding: 24px;
}

.problem-list p,
.steps p,
.package p,
.approach-grid li,
.deliverables p,
.faq-list p {
  color: var(--muted);
}

.case-studies-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}

.comparison-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(20px, 5vw, 64px);
  align-items: end;
  margin-bottom: 28px;
}

.comparison-heading h2 {
  max-width: 920px;
  margin-bottom: 0;
}

.comparison-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.case-study-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(24, 32, 43, 0.08);
}

.case-study-card:nth-child(1) {
  border-color: rgba(31, 111, 91, 0.28);
}

.case-study-content {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
}

.case-study-content h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
}

.case-study-content p {
  margin-bottom: 0;
  font-size: 1.02rem;
  color: var(--muted);
}

.case-photo {
  position: relative;
  display: grid;
  min-height: clamp(260px, 30vw, 380px);
  place-items: center;
  overflow: hidden;
}

.case-photo p {
  position: absolute;
  right: 14px;
  bottom: 12px;
  margin: 0;
  color: rgba(21, 24, 29, 0.66);
  font-size: 0.82rem;
  font-weight: 800;
}

.audi-photo {
  background:
    linear-gradient(135deg, rgba(36, 75, 116, 0.28), rgba(31, 111, 91, 0.14)),
    repeating-linear-gradient(0deg, rgba(21, 24, 29, 0.045), rgba(21, 24, 29, 0.045) 1px, transparent 1px, transparent 24px);
}

.skoda-photo {
  background:
    linear-gradient(135deg, rgba(216, 163, 52, 0.24), rgba(31, 111, 91, 0.12)),
    repeating-linear-gradient(90deg, rgba(21, 24, 29, 0.04), rgba(21, 24, 29, 0.04) 1px, transparent 1px, transparent 24px);
}

.photo-lines {
  display: grid;
  width: min(78%, 420px);
  gap: 12px;
  transform: rotate(-2deg);
}

.photo-lines.polished {
  transform: none;
}

.photo-lines span {
  height: 24px;
  border-radius: 999px;
  background: rgba(96, 106, 117, 0.28);
}

.photo-lines span:nth-child(2) {
  width: 82%;
}

.photo-lines span:nth-child(3) {
  width: 64%;
}

.photo-lines.polished span {
  background: rgba(31, 111, 91, 0.32);
}

.result-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.result-row div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #f8faf8;
}

.result-row span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.result-row strong {
  display: block;
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  line-height: 1.08;
}

.performance-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.26);
  box-shadow: var(--shadow);
}

.performance-stats div {
  display: grid;
  gap: 6px;
  min-height: 138px;
  align-content: center;
  padding: 18px;
  background: var(--ink);
  color: var(--white);
}

.performance-stats strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.performance-stats span {
  color: rgba(255, 255, 255, 0.72);
}

.stats-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.steps span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.approach {
  background: #edf3f0;
}

.approach-grid {
  grid-template-columns: repeat(2, 1fr);
}

.approach-grid ul,
.package ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

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

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

.package {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.package.featured {
  border-color: rgba(31, 111, 91, 0.34);
  box-shadow: var(--shadow);
}

.promo-note {
  margin-top: 12px;
  color: var(--gold-dark);
  font-weight: 800;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 10px 0 6px;
}

.current-price {
  color: var(--ink);
  font-size: clamp(2.15rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0;
}

.old-price {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.package-action {
  width: 100%;
  margin-top: 24px;
}

.package-action.disabled {
  opacity: 0.66;
}

.order-ready {
  background: #f3f1ea;
}

.retouch-section {
  background: var(--paper);
}

.retouch-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.retouch-showcase img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.showcase-labels {
  inset: 18px 18px auto;
}

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

.retouch-rules article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.retouch-rules p {
  margin-bottom: 0;
  color: var(--muted);
}

.deliverables {
  grid-template-columns: repeat(4, 1fr);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 82px);
  background: var(--ink);
  color: var(--white);
}

.contact .eyebrow {
  color: #8ed7bf;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  align-self: start;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.package-choice {
  display: grid;
  gap: 10px;
  margin: 0;
  border: 0;
  padding: 0;
}

.package-choice legend {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.package-choice label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.package-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.package-choice label:has(input:checked) {
  border-color: #8ed7bf;
  background: rgba(142, 215, 191, 0.15);
}

.consent-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
}

.consent-row a {
  color: #8ed7bf;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.next-steps-note {
  border: 1px solid rgba(142, 215, 191, 0.25);
  border-radius: 8px;
  padding: 16px;
  background: rgba(142, 215, 191, 0.1);
}

.next-steps-note h3 {
  margin-bottom: 10px;
  color: var(--white);
}

.next-steps-note ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 54px);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

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

.legal-page,
.thank-you-page {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) clamp(18px, 4vw, 54px);
}

.legal-page h1,
.thank-you-page h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 1;
}

.legal-page > p,
.thank-you-page > p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.12rem;
}

.legal-content {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.legal-content h2 {
  margin-bottom: 4px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.legal-content p {
  max-width: 780px;
  color: var(--muted);
}

.legal-content a,
.thank-you-page a:not(.button) {
  color: var(--green);
  font-weight: 800;
}

.next-steps-public {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 34px 0;
}

.next-steps-public article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.next-steps-public span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.next-steps-public h2 {
  margin: 16px 0 8px;
  font-size: 1.2rem;
}

.next-steps-public p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .section-copy,
  .comparison-heading,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .problem-list,
  .steps,
  .package-grid,
  .deliverables,
  .case-studies-grid,
  .performance-stats,
  .result-row,
  .retouch-rules,
  .next-steps-public {
    grid-template-columns: 1fr;
  }

  .package {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
  }

  .brand-logo {
    width: 214px;
    height: auto;
  }

  .header-action {
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 30px;
  }

  .proof-strip {
    display: grid;
  }

  .photo-preview {
    min-height: 210px;
  }

  .preview-metrics {
    grid-template-columns: 1fr;
  }

  .retouch-showcase img {
    aspect-ratio: 1 / 1;
  }

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

  .footer {
    display: grid;
  }

  .footer-links {
    display: grid;
  }
}
