:root {
      --bg: #f6efe6;
      --bg-soft: #fbf6ef;
      --paper: #fffdf8;
      --paper-2: #f3e7dc;
      --ink: #282524;
      --text: #37302e;
      --muted: #736965;
      --muted-2: #968780;
      --line: #e4d5ca;
      --burgundy: #7c2432;
      --burgundy-2: #963747;
      --burgundy-soft: #f3e0e3;
      --plum: #3a2730;
      --clay: #b8846c;
      --green-soft: #edf2e9;
      --shadow: 0 24px 70px rgba(55, 38, 30, 0.12);
      --radius: 24px;
      --radius-sm: 16px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
      background:
        radial-gradient(circle at 8% 4%, rgba(124, 36, 50, 0.12), transparent 28rem),
        radial-gradient(circle at 92% 10%, rgba(184, 132, 108, 0.16), transparent 26rem),
        var(--bg);
      color: var(--text);
      line-height: 1.55;
    }

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

    .page-shell { overflow: hidden; }

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

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(16px);
      background: rgba(246, 239, 230, 0.82);
      border-bottom: 1px solid rgba(124, 36, 50, 0.08);
    }

    .topbar-inner {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 750;
      letter-spacing: -0.02em;
      color: var(--ink);
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      background: linear-gradient(135deg, var(--burgundy), var(--plum));
      font-size: 12px;
      letter-spacing: 0.04em;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 22px;
      font-size: 14px;
      color: var(--muted);
    }

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

    .btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 22px;
      border-radius: 999px;
      background: var(--burgundy);
      color: #fffaf5;
      font-weight: 760;
      letter-spacing: -0.01em;
      border: 1px solid rgba(255,255,255,0.1);
      box-shadow: 0 14px 32px rgba(124, 36, 50, 0.22);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
      cursor: pointer;
    }

    .btn:hover {
      transform: translateY(-2px);
      background: var(--burgundy-2);
      box-shadow: 0 18px 40px rgba(124, 36, 50, 0.28);
    }

    .btn.secondary {
      background: transparent;
      color: var(--burgundy);
      border: 1px solid rgba(124, 36, 50, 0.22);
      box-shadow: none;
    }

    .btn.secondary:hover { background: rgba(124, 36, 50, 0.06); }

    .hero {
      padding: 72px 0 70px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 54px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border-radius: 999px;
      color: var(--burgundy);
      background: rgba(124, 36, 50, 0.08);
      border: 1px solid rgba(124, 36, 50, 0.12);
      font-size: 13px;
      font-weight: 760;
      letter-spacing: 0.01em;
      margin-bottom: 24px;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--burgundy);
    }

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

    h1 {
      font-size: clamp(42px, 6vw, 74px);
      line-height: .95;
      letter-spacing: -0.065em;
      color: var(--ink);
      margin-bottom: 22px;
      max-width: 860px;
    }

    .lead {
      font-size: clamp(18px, 2vw, 22px);
      line-height: 1.48;
      color: #4c4441;
      max-width: 710px;
      margin-bottom: 18px;
    }

    .lead-strong {
      font-size: clamp(18px, 2vw, 23px);
      color: var(--ink);
      font-weight: 740;
      letter-spacing: -0.02em;
      margin-bottom: 18px;
    }

    .micro-benefits {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 26px 0 32px;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: var(--paper);
      border: 1px solid var(--line);
      color: #5d5350;
      font-size: 14px;
      font-weight: 650;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      margin-bottom: 22px;
    }

    .event-line {
      color: var(--muted);
      font-size: 15px;
    }

    .visual-card {
      position: relative;
      min-height: 560px;
      border-radius: 36px;
      background: linear-gradient(160deg, #fffaf4, #efe1d6);
      border: 1px solid rgba(124, 36, 50, 0.12);
      box-shadow: var(--shadow);
      overflow: hidden;
      padding: 26px;
    }

    .visual-card::before {
      content: "";
      position: absolute;
      inset: auto -10% -18% 22%;
      height: 260px;
      background: radial-gradient(circle, rgba(124, 36, 50, 0.18), transparent 70%);
    }

    .photo-placeholder {
      position: relative;
      z-index: 1;
      min-height: 410px;
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(58, 39, 48, 0.92), rgba(40, 37, 36, 0.95)),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,0.05) 10px, rgba(255,255,255,0.05) 20px);
      border: 1px dashed rgba(255, 250, 245, 0.36);
      display: grid;
      place-items: center;
      text-align: center;
      color: rgba(255,250,245,.78);
      padding: 28px;
    }

    .placeholder-title {
      font-weight: 760;
      color: #fffaf5;
      letter-spacing: -0.02em;
      font-size: 21px;
    }

    .placeholder-note {
      max-width: 280px;
      margin: 8px auto 0;
      font-size: 14px;
      color: rgba(255,250,245,.66);
    }

    .hero-quote {
      position: relative;
      z-index: 2;
      margin: -34px 20px 0 auto;
      max-width: 365px;
      padding: 22px;
      border-radius: 22px;
      background: var(--paper);
      box-shadow: 0 18px 52px rgba(58, 39, 48, 0.18);
      border: 1px solid var(--line);
    }

    .hero-quote .quote-mark {
      color: var(--burgundy);
      font-size: 32px;
      line-height: 1;
      margin-bottom: 6px;
    }

    .hero-quote p {
      font-size: 18px;
      font-weight: 760;
      color: var(--ink);
      letter-spacing: -0.025em;
      line-height: 1.25;
      margin-bottom: 0;
    }

    section { padding: 74px 0; }

    .section-head {
      max-width: 820px;
      margin-bottom: 34px;
    }

    .section-kicker {
      color: var(--burgundy);
      text-transform: uppercase;
      letter-spacing: .13em;
      font-size: 12px;
      font-weight: 850;
      margin-bottom: 12px;
    }

    h2 {
      font-size: clamp(34px, 4vw, 54px);
      line-height: 1.02;
      letter-spacing: -0.055em;
      color: var(--ink);
      margin-bottom: 16px;
    }

    .section-copy {
      font-size: 19px;
      color: #554b47;
      max-width: 750px;
    }

    .panel {
      background: rgba(255,253,248,.72);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 16px 52px rgba(55, 38, 30, 0.08);
    }

    .pain-panel { padding: 34px; }

    .quote-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 28px;
    }

    .pain-quote {
      min-height: 116px;
      display: flex;
      align-items: center;
      padding: 22px;
      border-radius: 20px;
      background: #34272b;
      color: #fff7f0;
      font-size: 20px;
      font-weight: 760;
      line-height: 1.25;
      letter-spacing: -0.02em;
      box-shadow: 0 16px 36px rgba(58, 39, 48, 0.13);
    }

    .pain-quote:nth-child(2n) { background: #7c2432; }
    .pain-quote:nth-child(3n) { background: #4b3434; }

    .proof-note {
      margin-top: 24px;
      padding-left: 18px;
      border-left: 3px solid var(--burgundy);
      color: #4d4542;
      font-size: 18px;
    }

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

    .reaction-card {
      padding: 28px;
      border-radius: var(--radius);
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: 0 16px 48px rgba(55, 38, 30, 0.07);
    }

    .card-number {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--burgundy-soft);
      color: var(--burgundy);
      font-weight: 850;
      margin-bottom: 18px;
    }

    .reaction-card h3 {
      font-size: 27px;
      line-height: 1.08;
      letter-spacing: -0.035em;
      color: var(--ink);
      margin-bottom: 12px;
    }

    .arrow-line {
      margin: 16px 0;
      color: var(--burgundy);
      font-weight: 850;
      letter-spacing: .04em;
    }

    .reaction-card p { color: var(--muted); margin-bottom: 0; }

    .bridge {
      margin-top: 28px;
      padding: 26px;
      border-radius: var(--radius);
      background: linear-gradient(135deg, var(--plum), #5a2634);
      color: #fff7f0;
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 28px;
      align-items: center;
    }

    .bridge strong {
      font-size: 22px;
      line-height: 1.25;
      display: block;
      letter-spacing: -0.02em;
      margin-bottom: 8px;
    }

    .bridge p { margin: 0; color: rgba(255,247,240,.76); }

    .image-placeholder-light {
      min-height: 210px;
      border-radius: 20px;
      border: 1px dashed rgba(255,255,255,.4);
      background: rgba(255,255,255,.08);
      display: grid;
      place-items: center;
      text-align: center;
      padding: 22px;
      color: rgba(255,247,240,.68);
    }

    .change-grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 28px;
      align-items: stretch;
    }

    .reflex-card {
      padding: 30px;
      border-radius: var(--radius);
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: 0 16px 48px rgba(55, 38, 30, 0.07);
    }

    .reflex-card.dark {
      background: #34272b;
      color: #fff7f0;
      border-color: rgba(255,255,255,.12);
    }

    .reflex-label {
      font-size: 13px;
      color: var(--muted-2);
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 850;
      margin-bottom: 12px;
    }

    .reflex-card.dark .reflex-label { color: rgba(255,247,240,.58); }

    .reflex-card h3 {
      font-size: 32px;
      line-height: 1.08;
      letter-spacing: -0.04em;
      margin-bottom: 16px;
    }

    .reflex-card p { margin-bottom: 0; color: var(--muted); }
    .reflex-card.dark p { color: rgba(255,247,240,.76); }

    .diagram-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--burgundy);
      font-weight: 900;
      font-size: 34px;
      margin: 14px 0;
    }

    .program {
      background: rgba(255,253,248,.44);
      border-top: 1px solid rgba(124,36,50,.08);
      border-bottom: 1px solid rgba(124,36,50,.08);
    }

    .timeline {
      display: grid;
      gap: 16px;
    }

    .week {
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: 26px;
      padding: 26px;
      border-radius: var(--radius);
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: 0 12px 36px rgba(55, 38, 30, 0.06);
    }

    .week-badge {
      color: var(--burgundy);
      font-weight: 850;
      letter-spacing: .03em;
      text-transform: uppercase;
      font-size: 13px;
    }

    .week h3 {
      font-size: 24px;
      line-height: 1.1;
      letter-spacing: -0.035em;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .week p { margin: 0; color: var(--muted); }

    .format-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 22px;
    }

    .format-item {
      padding: 18px;
      border-radius: 18px;
      background: var(--paper-2);
      border: 1px solid var(--line);
      color: #554a46;
      font-weight: 700;
    }

    .fit-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .fit-card {
      padding: 30px;
      border-radius: var(--radius);
      background: var(--paper);
      border: 1px solid var(--line);
    }

    .fit-card h3 {
      color: var(--ink);
      font-size: 28px;
      letter-spacing: -0.04em;
      margin-bottom: 18px;
    }

    .fit-card ul, .price-card ul, .faq-list { margin: 0; padding: 0; list-style: none; }

    .fit-card li, .price-card li {
      position: relative;
      padding-left: 28px;
      margin: 13px 0;
      color: var(--muted);
    }

    .fit-card li::before, .price-card li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .62em;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--burgundy);
    }

    .fit-card.no li::before { background: var(--muted-2); }

    .about-grid {
      display: grid;
      grid-template-columns: .78fr 1.22fr;
      gap: 30px;
      align-items: stretch;
    }

    .portrait-placeholder {
      min-height: 480px;
      border-radius: 30px;
      border: 1px dashed rgba(124,36,50,.28);
      background:
        linear-gradient(135deg, rgba(255,253,248,.65), rgba(243,231,220,.85)),
        repeating-linear-gradient(-45deg, rgba(124,36,50,.04), rgba(124,36,50,.04) 10px, transparent 10px, transparent 20px);
      display: grid;
      place-items: center;
      text-align: center;
      color: var(--muted);
      padding: 26px;
    }

    .about-copy {
      padding: 34px;
      border-radius: var(--radius);
      background: var(--paper);
      border: 1px solid var(--line);
    }

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

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 22px;
    }

    .metric {
      padding: 18px;
      border-radius: 18px;
      background: var(--bg-soft);
      border: 1px solid var(--line);
    }

    .metric strong {
      display: block;
      color: var(--burgundy);
      font-size: 26px;
      letter-spacing: -0.04em;
    }

    .metric span { color: var(--muted); font-size: 13px; }

    .pricing {
      background: linear-gradient(180deg, rgba(255,253,248,.42), rgba(243,231,220,.5));
      border-top: 1px solid rgba(124,36,50,.08);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      align-items: stretch;
    }

    .price-card {
      position: relative;
      padding: 30px;
      border-radius: 30px;
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: 0 18px 54px rgba(55, 38, 30, 0.08);
      display: flex;
      flex-direction: column;
    }

    .price-card.featured {
      border: 2px solid rgba(124,36,50,.55);
      transform: translateY(-8px);
    }

    .ribbon {
      position: absolute;
      top: 18px;
      right: 18px;
      padding: 7px 11px;
      border-radius: 999px;
      background: var(--burgundy);
      color: #fffaf5;
      font-size: 12px;
      font-weight: 800;
    }

    .price-card h3 {
      font-size: 31px;
      letter-spacing: -0.04em;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .price {
      font-size: 46px;
      line-height: 1;
      letter-spacing: -0.055em;
      color: var(--burgundy);
      font-weight: 850;
      margin: 16px 0 18px;
    }

    .price small {
      font-size: 18px;
      color: var(--muted);
      letter-spacing: 0;
    }

    .price-intro {
      color: var(--muted);
      min-height: 52px;
    }

    .price-card ul { margin-bottom: 26px; }

    .price-card .btn { margin-top: auto; width: 100%; }

    .signup-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 30px;
      align-items: start;
    }

    .signup-note {
      padding: 32px;
      border-radius: var(--radius);
      background: #34272b;
      color: #fff7f0;
    }

    .signup-note h2 { color: #fff7f0; }
    .signup-note p { color: rgba(255,247,240,.75); font-size: 18px; }

    .form-card {
      padding: 30px;
      border-radius: var(--radius);
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .form-row { display: grid; gap: 14px; margin-bottom: 14px; }

    .form-row.two { grid-template-columns: 1fr 1fr; }

    label {
      display: block;
      font-size: 13px;
      font-weight: 760;
      color: var(--ink);
      margin-bottom: 6px;
    }

    input, select {
      width: 100%;
      min-height: 52px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: #fffdfa;
      padding: 0 14px;
      font: inherit;
      color: var(--text);
      outline: none;
    }

    input:focus, select:focus {
      border-color: rgba(124,36,50,.48);
      box-shadow: 0 0 0 4px rgba(124,36,50,.08);
    }

    .form-helper { color: var(--muted); font-size: 14px; margin: 12px 0 0; }

    .faq-wrap {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 34px;
      align-items: start;
    }

    .faq-item {
      padding: 22px 0;
      border-bottom: 1px solid var(--line);
    }

    .faq-item:first-child { border-top: 1px solid var(--line); }

    .faq-item h3 {
      font-size: 20px;
      letter-spacing: -0.025em;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .faq-item p { margin: 0; color: var(--muted); }

    .closing {
      padding: 88px 0 96px;
      background:
        radial-gradient(circle at 20% 10%, rgba(124,36,50,.28), transparent 30rem),
        linear-gradient(135deg, #34272b, #532432 70%, #7c2432);
      color: #fff7f0;
    }

    .closing-inner {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 40px;
      align-items: center;
    }

    .closing h2 { color: #fff7f0; }
    .closing p { color: rgba(255,247,240,.78); font-size: 20px; }

    .closing .btn {
      background: #fff7f0;
      color: var(--burgundy);
      box-shadow: 0 18px 40px rgba(0,0,0,.22);
    }

    .footer {
      padding: 30px 0;
      background: #2b2225;
      color: rgba(255,247,240,.62);
      font-size: 14px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .design-note {
      border-radius: 999px;
      border: 1px solid rgba(255,247,240,.22);
      padding: 8px 12px;
      color: rgba(255,247,240,.72);
    }

    @media (max-width: 980px) {
      .nav { display: none; }
      .hero-grid, .change-grid, .about-grid, .signup-grid, .faq-wrap, .closing-inner { grid-template-columns: 1fr; }
      .visual-card { min-height: auto; }
      .quote-grid, .cards-3, .pricing-grid { grid-template-columns: 1fr; }
      .price-card.featured { transform: none; }
      .format-strip, .metric-grid { grid-template-columns: 1fr 1fr; }
      .bridge { grid-template-columns: 1fr; }
    }

    @media (max-width: 620px) {
      .container { width: min(100% - 28px, var(--max)); }
      .hero { padding: 42px 0 52px; }
      section { padding: 52px 0; }
      h1 { font-size: 44px; }
      h2 { font-size: 36px; }
      .topbar-inner { min-height: 64px; }
      .topbar .btn { min-height: 42px; padding: 0 14px; font-size: 14px; }
      .micro-benefits { gap: 7px; }
      .week { grid-template-columns: 1fr; gap: 8px; }
      .format-strip, .metric-grid, .fit-grid, .form-row.two { grid-template-columns: 1fr; }
      .pain-panel, .reaction-card, .reflex-card, .fit-card, .about-copy, .price-card, .form-card, .signup-note { padding: 22px; }
      .hero-quote { margin: -24px 0 0; }
    }

/* =========== NLP.BG-LIKE SITE MENU =========== */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(246, 239, 230, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(124, 36, 50, .10);
  box-shadow: 0 8px 28px rgba(55,38,30,.055);
}
.site-header-top {
  min-height: 38px; border-bottom: 1px solid rgba(124,36,50,.08);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: var(--muted); font-size: .86rem; font-weight: 680;
}
.site-contact, .site-account { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.site-account a, .site-contact a { text-decoration: none; color: var(--text); }
.site-nav-row { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 190px; }
.logo-mark { width: 44px; height: 44px; border-radius: 14px; background: linear-gradient(145deg, var(--burgundy), var(--plum)); color: #fffaf5; display: grid; place-items: center; font-family: Georgia,serif; font-weight: 700; font-size: 1.24rem; box-shadow: 0 12px 26px rgba(124,36,50,.18); }
.logo-text strong { display: block; font-size: .98rem; line-height: 1.05; letter-spacing: -.02em; color: var(--ink); }
.logo-text span { display: block; font-size: .74rem; color: var(--muted); margin-top: 2px; }
.site-menu { display: flex; align-items: center; justify-content: flex-end; gap: 2px; list-style: none; margin: 0; padding: 0; }
.site-menu > li { position: relative; }
.site-menu a { display: flex; align-items: center; gap: 6px; min-height: 44px; padding: 0 10px; text-decoration: none; color: var(--ink); font-size: .88rem; font-weight: 760; border-radius: 999px; white-space: nowrap; }
.site-menu a:hover { background: rgba(124,36,50,.08); color: var(--burgundy); }
.site-menu .has-sub > a::after { content: "⌄"; font-size: .82rem; color: var(--muted); }
.submenu { position: absolute; left: 0; top: calc(100% + 8px); min-width: 255px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 16px 48px rgba(55, 38, 30, 0.10); padding: 8px; list-style: none; margin: 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .16s ease; }
.site-menu li:hover > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a { border-radius: 12px; min-height: 38px; justify-content: flex-start; font-size: .88rem; padding: 0 12px; }
.mobile-menu-toggle { display: none; border: 1px solid var(--line); background: var(--paper); border-radius: 999px; min-height: 42px; padding: 0 14px; font-weight: 760; color: var(--burgundy); }
.hp-field { position: absolute !important; left: -9999px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent { display: block; position: relative; color: var(--muted); font-size: 14px; line-height: 1.45; margin: 14px 0 18px; cursor: pointer; }
.consent input[type="checkbox"] { position: absolute; opacity: 0; width: 1px; height: 1px; min-height: 0; margin: 0; pointer-events: none; }
.consent span { display: block; position: relative; padding-left: 34px; min-height: 26px; }
.consent span::before { content: ""; position: absolute; left: 0; top: 1px; width: 22px; height: 22px; border-radius: 6px; border: 2px solid rgba(124, 36, 50, .58); background: #fffdfa; box-shadow: 0 1px 0 rgba(55, 38, 30, .08); }
.consent span::after { content: ""; position: absolute; left: 8px; top: 5px; width: 6px; height: 12px; border: solid #fff; border-width: 0 3px 3px 0; transform: rotate(45deg); display: none; }
.consent input[type="checkbox"]:checked + span::before { background: var(--burgundy); border-color: var(--burgundy); }
.consent input[type="checkbox"]:checked + span::after { display: block; }
.consent input[type="checkbox"]:focus + span::before { outline: 3px solid rgba(124, 36, 50, .22); outline-offset: 2px; }
.consent a { color: var(--burgundy); font-weight: 760; }
.form-msg { padding: 14px 16px; border-radius: 14px; font-weight: 750; font-size: 14px; display: none; margin-top: 14px; }
.form-msg.success { background: var(--green-soft); color: #2f4d2b; display: block; }
.form-msg.error { background: var(--burgundy-soft); color: var(--burgundy); display: block; }
.visual-card img, .portrait-placeholder img, .image-placeholder-light img { width: 100%; height: 100%; object-fit: cover; display:block; border-radius: inherit; }
.photo-placeholder.with-image, .portrait-placeholder.with-image, .image-placeholder-light.with-image { padding: 0; border-style: solid; overflow:hidden; }
.admin-link-footer { opacity: .55; text-decoration: none; }
.thank-you-page { min-height: 68vh; display: grid; place-items: center; padding: 90px 0; }
.thank-card { width: min(820px, calc(100% - 36px)); border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); padding: clamp(34px, 5vw, 62px); text-align: center; }
.thank-card h1 { font-size: clamp(42px, 6vw, 74px); margin-left: auto; margin-right: auto; }
.thank-card p { color: var(--text); font-size: 1.14rem; }
.mobile-sticky { display: none; }
@media (max-width: 1120px) {
  .mobile-menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav-row { min-height: 64px; }
  .site-menu { display: none; position: absolute; left: 18px; right: 18px; top: calc(100% + 8px); background: var(--paper); border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); padding: 12px; align-items: stretch; flex-direction: column; }
  .site-header.menu-open .site-menu { display: flex; }
  .site-menu a { justify-content: space-between; border-radius: 14px; padding: 0 14px; }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 8px 12px; background: transparent; min-width: 0; display: block; }
  .submenu a { min-height: 34px; font-weight: 680; color: var(--text); }
  .site-header-top { display: none; }
}
@media (max-width: 680px) {
  .site-logo { min-width: 0; }
  .logo-text span { display: none; }
  .logo-mark { width: 40px; height: 40px; }
  .mobile-sticky { display: block; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90; }
  .mobile-sticky a { width: 100%; }
  .footer { padding-bottom: 90px; }
}
