  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black: #0f0f0f;
    --white: #f5f3ee;
    --red: #c8312a;
    --red-dark: #9e231d;
    --sand: #e8e3d9;
    --mid: #6b6560;
    --light: #d4cfc6;
    --placeholder: #1e1c1a;
    --placeholder-border: #3a3835;
    --placeholder-label: #c8312a;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--white);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── IMAGE PLACEHOLDERS ── */
  .img-placeholder {
    background: var(--placeholder);
    border: 1.5px dashed var(--placeholder-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    position: relative;
  }

  .img-placeholder .ph-icon {
    font-size: 28px;
    opacity: 0.4;
  }

  .img-placeholder .ph-tag {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--placeholder-label);
    background: rgba(200,49,42,0.15);
    padding: 4px 10px;
    border-radius: 2px;
  }

  .img-placeholder .ph-desc {
    font-size: 12px;
    color: var(--mid);
    text-align: center;
    max-width: 260px;
    line-height: 1.5;
  }

  /* Video placeholder has a play button feel */
  .vid-placeholder {
    background: #111;
    border: 1.5px dashed #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 32px;
    position: relative;
  }

  .vid-placeholder .play-ring {
    width: 56px;
    height: 56px;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
  }

  .vid-placeholder .play-ring::after {
    content: '▶';
    color: var(--red);
    font-size: 18px;
    margin-left: 4px;
  }

  .vid-placeholder .ph-tag {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--placeholder-label);
    background: rgba(200,49,42,0.15);
    padding: 4px 10px;
    border-radius: 2px;
  }

  .vid-placeholder .ph-desc {
    font-size: 12px;
    color: var(--mid);
    text-align: center;
    max-width: 280px;
    line-height: 1.5;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    background: var(--black);
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }

  .hero-left::after {
    content: '';
    position: absolute;
    top: 0; right: -1px; bottom: 0;
    width: 2px;
    background: var(--red);
  }

  .wordmark {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 19px;
    letter-spacing: 0.3em;
    color: var(--red);
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .wordmark-sub {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 0.10em;
    color: var(--mid);
    text-transform: none;
  }

  .hero-headline {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(42px, 5.5vw, 72px);
    line-height: 1.05;
    color: var(--white);
    margin-top: 48px;
  }

  .hero-headline em {
    font-style: normal;
    color: var(--red);
  }

  .hero-sub {
    color: var(--light);
    font-size: 17px;
    line-height: 1.7;
    margin-top: 32px;
    max-width: 420px;
    font-weight: 300;
  }

  .hero-cta {
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .btn-primary {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 18px 36px;
    text-decoration: none;
    transition: background 0.2s;
    width: fit-content;
  }
  .btn-primary:hover { background: var(--red-dark); }

  .contact-line {
    color: var(--mid);
    font-size: 13px;
    letter-spacing: 0.05em;
  }
  .contact-line a { color: var(--light); text-decoration: none; }
  .contact-line a:hover { color: var(--red); }
  .contact-email { color: var(--light); font-size: 13px; letter-spacing: 0.05em; }

  .hero-right {
    background: var(--white);
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }

  .problem-label {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 40px;
  }

  .problem-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    align-items: baseline;
  }

  .problem-num {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--red);
    flex-shrink: 0;
    letter-spacing: 0.1em;
    line-height: 1;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum" 1, "tnum" 1;
  }

  .problem-text strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: clamp(15px, 1.2vw, 18px);
    color: var(--black);
    margin-bottom: 4px;
  }

  .problem-text p {
    font-size: clamp(14px, 1vw, 16px);
    color: #3a3835;
    line-height: 1.65;
  }

  /* ── VIDEO BANNER ── */
  .video-banner {
    width: 100%;
    background: #0a0a0a;
  }

  /* ── WHAT IS STEPS ── */
  .what {
    padding: 100px 64px;
  }
  .what-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: start;
  }

  .section-label {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 24px;
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 24px;
  }

  .section-body {
    font-size: 16px;
    color: #3a3835;
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .what-features {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .feature-row {
    display: flex;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--light);
    align-items: flex-start;
  }
  .feature-row:first-child { border-top: 1px solid var(--light); }

  .feature-icon {
    width: 32px;
    height: 32px;
    background: var(--black);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }

  .feature-icon svg { width: 14px; height: 14px; fill: var(--red); }

  .feature-text strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 4px;
  }

  .feature-text p {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.6;
  }

  /* ── IN ACTION PHOTO STRIP ── */
  .in-action {
    padding: 0 0 100px;
    width: 100%;
  }

  .in-action-label {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 24px;
    padding: 0 64px;
  }

  .photo-strip {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3px;
  }

  /* ── HOW IT WORKS ── */
  .how {
    background: var(--black);
    padding: 100px 64px;
  }

  .how-inner { max-width: 1200px; margin: 0 auto; }

  .how-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
  }

  .how-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3vw, 40px);
    color: var(--white);
    line-height: 1.15;
  }

  .how-desc {
    max-width: 320px;
    font-size: 14px;
    color: var(--mid);
    line-height: 1.7;
    text-align: right;
  }

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

  .step-card {
    background: var(--sand);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light);
  }

  .step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .step-card:hover::before { transform: scaleX(1); }

  .step-number {
    font-family: 'Syne', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
    font-variant-numeric: lining-nums;
    font-feature-settings: "lnum" 1;
  }

  .step-title {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--black);
    margin-bottom: 12px;
  }

  .step-body {
    font-size: 14.5px;
    color: #33312e;
    line-height: 1.75;
  }

  /* ── OUTCOMES ── */
  .outcomes { padding: 100px 64px; }
  .outcomes-inner { max-width: 1200px; margin: 0 auto; }
  .outcomes-header { margin-bottom: 56px; }
  .outcomes-title {
    font-family: 'Syne', sans-serif; font-weight: 700;
    font-size: clamp(28px, 3vw, 40px); color: var(--black); line-height: 1.15;
  }
  .outcome-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 64px; }
  .outcome-item { display: grid; grid-template-columns: 30px 1fr; gap: 18px; align-items: start; }
  .outcome-tick { width: 26px; height: 26px; margin-top: 1px; flex-shrink: 0; }
  .outcome-tick svg { width: 100%; height: 100%; display: block; }
  .outcome-title {
    font-family: 'Syne', sans-serif; font-weight: 600; font-size: 20px;
    color: var(--black); margin-bottom: 10px; line-height: 1.25;
  }
  .outcome-body { font-size: 15px; color: #3a3835; line-height: 1.75; }

  /* ── MATS ── */
  .mat-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .mat-grid a { display: block; overflow: hidden; background: var(--sand); border: 1px solid var(--light); }
  .mat-grid img { width: 100%; display: block; transition: transform 0.3s; }
  .mat-grid a:hover img { transform: scale(1.03); }
  .mat-caption { margin-top: 16px; font-size: 13px; color: #4a4540; line-height: 1.6; }

  /* ── RESULTS ── */
  .results {
    padding: 100px 64px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .results-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-bottom: 64px;
  }

  .stat-box {
    background: var(--sand);
    padding: 40px 32px;
    text-align: center;
  }

  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    display: block;
    margin-bottom: 8px;
    font-variant-numeric: lining-nums;
    font-feature-settings: "lnum" 1;
  }

  .stat-label {
    font-size: 14.5px;
    color: #33312e;
    line-height: 1.6;
  }

  .quote-block {
    background: var(--black);
    padding: 56px 64px;
    position: relative;
  }

  .quote-mark {
    font-family: 'Syne', sans-serif;
    font-size: 80px;
    font-weight: 800;
    color: var(--red);
    line-height: 0.6;
    display: block;
    margin-bottom: 24px;
  }

  .quote-text {
    font-family: 'Syne', sans-serif;
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 400;
    color: var(--white);
    line-height: 1.5;
    max-width: 700px;
    margin-bottom: 32px;
  }

  .quote-attribution {
    font-size: 13px;
    color: var(--mid);
    letter-spacing: 0.05em;
  }

  .quote-context {
    position: absolute;
    right: 64px;
    bottom: 56px;
    text-align: right;
    font-size: 12px;
    color: #3a3835;
    line-height: 1.6;
  }

  /* ── TEAM ── */
  .team {
    padding: 100px 64px;
    background: var(--black);
  }

  .team-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .team-bio {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .bio-card {
    background: #1e1c1a;
    padding: 0;
    border-left: 3px solid var(--red);
    display: grid;
    grid-template-columns: 100px 1fr;
    overflow: hidden;
  }

  .bio-photo {
    width: 100px;
    flex-shrink: 0;
  }

  .bio-info {
    padding: 24px 24px 24px 20px;
  }

  .bio-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
    margin-bottom: 4px;
  }

  .bio-role {
    font-size: 12px;
    color: var(--red);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 12px;
  }

  .bio-text {
    font-size: 13px;
    color: var(--light);
    line-height: 1.7;
  }

  /* ── DIAGNOSTIC CTA ── */
  .diagnostic {
    padding: 100px 64px;
    background: var(--red);
  }

  .diagnostic-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  /* stop a long heading from forcing its column wider than half */
  .diagnostic-inner > * { min-width: 0; }

  .diagnostic-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 56px);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
    white-space: nowrap;
  }

  .diagnostic-sub {
    color: rgba(245,243,238,0.75);
    font-size: 16px;
    line-height: 1.7;
  }

  .diagnostic-right {
    background: rgba(0,0,0,0.15);
    padding: 48px;
  }

  .diagnostic-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
  }

  .diagnostic-bullet {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
  }

  .diagnostic-item-text {
    font-size: 15px;
    color: var(--white);
    line-height: 1.6;
  }

  .diagnostic-item-text strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    margin-bottom: 2px;
  }

  .btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--red);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 18px 36px;
    text-decoration: none;
    margin-top: 40px;
    transition: background 0.2s, color 0.2s;
  }
  .btn-white:hover { background: var(--black); color: var(--white); }

  /* ── BOOKING FORM ── */
  .booking-form {
    background: rgba(0,0,0,0.18);
    padding: 40px 44px;
  }

  .booking-form .form-label {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,243,238,0.6);
    margin-bottom: 8px;
  }

  .booking-form input,
  .booking-form textarea {
    display: block;
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(245,243,238,0.25);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 13px 16px;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    border-radius: 0;
    -webkit-appearance: none;
  }

  .booking-form input::placeholder,
  .booking-form textarea::placeholder {
    color: rgba(245,243,238,0.35);
    font-style: italic;
  }

  .booking-form input:focus,
  .booking-form textarea:focus {
    border-color: rgba(245,243,238,0.7);
    background: rgba(255,255,255,0.15);
  }

  .booking-form textarea {
    resize: vertical;
    min-height: 80px;
  }

  .booking-form .form-submit {
    display: inline-block;
    width: 100%;
    background: var(--white);
    color: var(--red);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 18px 36px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-top: 4px;
  }
  .booking-form .form-submit:hover { background: var(--black); color: var(--white); }

  .booking-form .form-note {
    font-size: 12px;
    color: rgba(245,243,238,0.45);
    margin-top: 16px;
    line-height: 1.6;
  }
  .booking-form .form-note a {
    color: rgba(245,243,238,0.65);
    text-decoration: underline;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--black);
    padding: 48px 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-brand {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--white);
    letter-spacing: 0.1em;
  }

  .footer-contact { text-align: right; }

  .footer-contact a {
    display: block;
    color: var(--mid);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
  }
  .footer-contact a:hover { color: var(--red); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-left > * {
    animation: fadeUp 0.7s ease both;
  }
  .hero-left > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-left > *:nth-child(2) { animation-delay: 0.25s; }
  .hero-left > *:nth-child(3) { animation-delay: 0.4s; }

  /* ── RESPONSIVE ── */
  /* Photo grid 2x2 mobile */
  @media (max-width: 900px) {
    .photo-grid-2x2 { grid-template-columns: 1fr !important; }
    .photo-grid-2x2 a img { height: 240px !important; }
    .who-for-section { padding: 64px 32px !important; }
    .who-for-inner { grid-template-columns: 1fr !important; gap: 40px !important; }
  }

  @media (max-width: 900px) {
    .hero, .what-inner, .team-inner, .diagnostic-inner { grid-template-columns: 1fr; }
    .hero-left::after { display: none; }
    .hero-left, .hero-right, .what, .how, .results,
    .team, .diagnostic { padding: 64px 32px; }
    .in-action { padding: 0 0 64px; }
    .in-action-label { padding: 0 32px; }
    .how-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .how-desc { text-align: left; }
    .steps-grid, .stats-row { grid-template-columns: 1fr; }
    .outcomes { padding-left: 32px; padding-right: 32px; }
    .outcome-grid { grid-template-columns: 1fr; gap: 36px; }
    .photo-strip { grid-template-columns: 1fr; }
    .quote-context { position: static; text-align: left; margin-top: 24px; }
    footer { flex-direction: column; gap: 24px; text-align: center; }
    .footer-contact { text-align: center; }
    .bio-card { grid-template-columns: 80px 1fr; }
    .bio-photo { width: 80px; }
    /* Stack the what-section image pair on mobile */
    .what-img-pair { grid-template-columns: 1fr !important; }
    .what-img-pair img { height: 220px !important; }
    /* Scroll strip on mobile */
    #scroll-strip { padding: 0 32px !important; }
  }

  @media (max-width: 1300px) and (min-width: 901px) {
    .hero { min-height: auto; }
    .hero-left { padding: 48px 48px; }
    .hero-right { padding: 48px 48px; }
    .hero-headline { font-size: clamp(36px, 4vw, 56px); }
    .hero-sub { font-size: 15px; }
    .hero-cta { margin-top: 36px; }
    .problem-label { margin-bottom: 24px; }
    .problem-item { margin-bottom: 20px; }
  }

  /* ── SECTION BACKGROUND MODIFIERS ──
     .outcomes and .what appear on more than one page with different
     backgrounds, so the background is set in the markup, not here. */
  .bg-sand  { background: var(--sand); }
  .bg-white { background: var(--white); }


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE ONLY
   Used by the parent homepage. Everything above is shared.
   ═══════════════════════════════════════════════════════════════ */

.home-header { background: var(--black); padding: 28px 64px 0; }
.home-header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.home-header img { height: 44px; width: 44px; object-fit: contain; display: block; }
.redirect-note { font-size: 14.5px; color: var(--mid); font-weight: 300; }
.redirect-note a { color: var(--light); text-decoration: underline; text-underline-offset: 3px; }
.redirect-note a:hover { color: var(--red); }

.home-hero { background: var(--black); padding: 90px 64px 110px; }
.home-hero-inner { max-width: 1200px; margin: 0 auto; }
.home-hero .hero-headline { margin-top: 0; }
.home-hero .hero-sub { max-width: 62ch; margin-top: 36px; }
.home-hero .btn-primary { margin-top: 48px; }

.home-section { padding: 100px 64px; }
.home-section-inner { max-width: 1200px; margin: 0 auto; }
.home-section-inner > * { min-width: 0; }
.home-dark { background: var(--black); }
.home-dark .section-title { color: var(--white); }
.home-sand { background: var(--sand); }

.route-head { margin-bottom: 56px; }
.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.route-grid > * { min-width: 0; }

.route-card {
  background: var(--sand); border-top: 3px solid var(--red);
  padding: 30px; display: flex; flex-direction: column;
}
.route-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.route-icon { color: var(--red); display: block; }
.route-num {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.3em; color: var(--red);
}
.route-name {
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: 22px; line-height: 1.2; color: var(--black); margin-bottom: 14px;
}
.route-name sup { color: var(--red); font-size: 0.5em; top: -0.7em; }
.route-what { font-size: 16px; color: #3a3835; line-height: 1.7; margin-bottom: 18px; }
.route-when {
  font-size: 14.5px; color: #33312e; line-height: 1.65;
  border-top: 1px solid rgba(51,49,46,0.18); padding-top: 16px; margin-top: auto;
}
.route-link {
  display: inline-block; align-self: flex-start; margin-top: 20px;
  font-family: 'Syne', sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: 0.06em; color: var(--red); text-decoration: none;
  border-bottom: 1px solid var(--red); padding-bottom: 3px;
}
.route-link:hover { color: var(--red-dark); border-color: var(--red-dark); }
.route-note { margin-top: 36px; font-size: 14.5px; color: #33312e; line-height: 1.7; max-width: 78ch; }
.route-note .star { color: var(--red); }

.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px 60px; margin-top: 8px; }
.work-grid > * { min-width: 0; }
.work-title { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 20px; color: var(--black); margin-bottom: 10px; }
.work-body { font-size: 15px; color: #3a3835; line-height: 1.75; }

.home-video-frame { position: relative; width: 100%; padding-top: 56.25%; background: #111; }
.home-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.home-video-caption { margin-top: 18px; font-size: 13px; color: var(--mid); letter-spacing: 0.03em; }

.home-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.home-stats > * { min-width: 0; }
.home-stats-caption { margin-top: 44px; font-size: 14.5px; color: #33312e; line-height: 1.7; max-width: 72ch; }

.works-list { display: grid; gap: 34px; margin-top: 8px; }
.works-item { border-left: 3px solid var(--red); padding-left: 26px; max-width: 78ch; }
.works-title { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 19px; color: var(--white); margin-bottom: 8px; }
.works-body { font-size: 15px; color: var(--light); line-height: 1.75; }

.home-who { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.home-who > * { min-width: 0; }
.home-who-text p { color: var(--light); font-size: 16px; line-height: 1.75; margin-bottom: 20px; max-width: 52ch; }
.home-who-photo { margin-top: 36px; background: #1c1c1c; }
.home-who-photo img { width: 100%; height: auto; display: block; }

.home-form { max-width: 760px; }
.home-field { margin-bottom: 24px; }
.home-field label { display: block; font-size: 14.5px; font-weight: 400; color: #33312e; margin-bottom: 8px; }
.home-field input, .home-field textarea {
  width: 100%; font-family: 'DM Sans', sans-serif; font-weight: 300; font-size: 16px;
  color: var(--black); background: var(--white);
  border: 1px solid rgba(51,49,46,0.28); border-radius: 2px; padding: 13px 15px;
}
.home-field textarea { min-height: 130px; resize: vertical; }
.home-field input:focus, .home-field textarea:focus { outline: 2px solid var(--red); border-color: var(--red); }
.home-checks { margin: 8px 0 34px; }
.home-checks-legend { font-size: 14.5px; color: #33312e; margin-bottom: 14px; }
.home-checks-options { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.home-checks-options label {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: 15px; color: #3a3835; line-height: 1.5; cursor: pointer;
}
.home-checks-options input { margin-top: 4px; accent-color: var(--red); width: 16px; height: 16px; flex-shrink: 0; }
button.btn-primary { border: none; cursor: pointer; }

@media (max-width: 900px) {
  .home-header { padding: 24px 32px 0; }
  .home-hero { padding: 56px 32px 72px; }
  .home-section { padding: 64px 32px; }
  .route-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; gap: 32px; }
  .home-stats { grid-template-columns: 1fr 1fr; gap: 32px; }
  .home-who { grid-template-columns: 1fr; gap: 44px; }
  .home-checks-options { grid-template-columns: 1fr; }
}
