:root {
      --bg: #07101f;
      --bg-soft: #0c1728;
      --text: #f7f3ea;
      --muted: #b9c1ce;
      --gold: #d9b85f;
      --gold-light: #f2dc99;
      --shadow: 0 24px 70px rgba(0,0,0,.35);
      --radius: 26px;
      --max: 1180px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 75% 5%, rgba(217,184,95,.18), transparent 33%),
        radial-gradient(circle at 15% 15%, rgba(42,88,150,.28), transparent 36%),
        linear-gradient(180deg, #050912 0%, var(--bg) 42%, #060a12 100%);
      color: var(--text);
      overflow-x: hidden;
      max-width: 100%;
    }

    main,
    footer {
      max-width: 100%;
      overflow-x: clip;
    }
    body.menu-open { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    .container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      width: 100%;
      z-index: 100;
      padding: 16px 0;
      background: rgba(5, 9, 18, .72);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255,255,255,.08);
      transition: .25s ease;
    }
    .site-header.is-scrolled {
      padding: 10px 0;
      background: rgba(5, 9, 18, .92);
      box-shadow: 0 12px 40px rgba(0,0,0,.28);
    }
    .site-header .container { width: 100%; max-width: var(--max); padding-left: 20px; padding-right: 20px; }
    .header-inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(10px, 2vw, 28px); min-width: 0; width: 100%; }
    .brand { display: flex; align-items: center; min-width: 0; flex: 1 1 auto; overflow: hidden; }
    .brand-logo { width: 245px; max-width: 100%; height: 66px; object-fit: contain; object-position: left center; border-radius: 12px; }
    .main-nav {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 7px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 999px;
      background: rgba(255,255,255,.04);
    }
    .main-nav a { color: var(--muted); font-size: 14px; padding: 11px 14px; border-radius: 999px; transition: .2s ease; }
    .main-nav a:hover, .main-nav a.active { color: var(--text); background: rgba(255,255,255,.08); }
    .header-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #08101d;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      padding: 13px 18px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 14px;
      box-shadow: 0 16px 34px rgba(217,184,95,.22);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .header-cta:hover, .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(217,184,95,.28); }
    .menu-toggle {
      display: none;
      width: 48px;
      height: 48px;
      flex: 0 0 48px;
      margin-left: auto;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 16px;
      background: rgba(255,255,255,.06);
      color: var(--text);
      cursor: pointer;
    }
    .menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: currentColor; transition: .2s ease; }

    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      align-items: center;
      padding: 150px 0 90px;
      isolation: isolate;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 110px 5% auto auto;
      width: 520px;
      height: 520px;
      background: radial-gradient(circle, rgba(217,184,95,.18), transparent 62%);
      filter: blur(10px);
      z-index: -1;
      animation: floatGlow 7s ease-in-out infinite alternate;
    }
    @keyframes floatGlow {
      from { transform: translate3d(0,0,0) scale(1); }
      to { transform: translate3d(-30px,25px,0) scale(1.08); }
    }
    .hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); align-items: center; gap: 70px; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gold-light);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .16em;
      margin-bottom: 22px;
    }
    .eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
    h1 { font-size: clamp(32px, 3.7vw, 54px); line-height: 1.04; letter-spacing: -.06em; max-width: 820px; margin-bottom: 26px; }
    .highlight { color: var(--gold-light); white-space: nowrap; }
    .hero-lead { color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.65; max-width: 660px; margin-bottom: 34px; }
    .hero-actions, .section-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
    .btn-primary, .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 850;
      transition: .22s ease;
      border: 0;
      cursor: pointer;
      font: inherit;
    }
    .btn-primary { color: #08101d; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 18px 40px rgba(217,184,95,.22); }
    .btn-secondary { color: var(--text); border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); }
    .btn-secondary:hover { transform: translateY(-2px); border-color: rgba(217,184,95,.45); background: rgba(255,255,255,.08); }
    .hero-note { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 620px; margin-top: 44px; }
    .mini-stat { padding: 16px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.045); }
    .mini-stat strong { display: block; color: var(--text); font-size: 15px; margin-bottom: 4px; }
    .mini-stat span { color: var(--muted); font-size: 13px; line-height: 1.4; }
    .portrait-card { position: relative; border-radius: 36px; padding: 18px; border: 1px solid rgba(255,255,255,.1); background: linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035)); box-shadow: var(--shadow); }
    .portrait-card::before { content: ""; position: absolute; inset: 10% -8% -8% 18%; border-radius: 36px; background: linear-gradient(135deg, rgba(217,184,95,.25), rgba(23,64,112,.15)); z-index: -1; transform: rotate(5deg); }
    .portrait { aspect-ratio: 4/5; border-radius: 28px; overflow: hidden; background: #05070d; }
    .portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; opacity: .95; }
    .portrait-label { position: absolute; left: 0; right: 0; bottom: 34px; width: min(82%, 360px); margin: 0 auto; padding: 16px 18px; border-radius: 22px; background: rgba(5,9,18,.72); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(14px); }
    .portrait-label strong { display: block; margin-bottom: 5px; }
    .portrait-label span { color: var(--muted); font-size: 14px; }

    section { scroll-margin-top: 110px; padding: 110px 0; }
    .section-head { max-width: 760px; margin-bottom: 44px; }
    .section-kicker { color: var(--gold-light); font-weight: 850; text-transform: uppercase; letter-spacing: .15em; font-size: 13px; margin-bottom: 16px; }
    h2 { font-size: clamp(34px, 4vw, 58px); line-height: 1.02; letter-spacing: -.045em; margin-bottom: 20px; }
    .section-head p, .text-block p, .about-copy p, .faq-answer, .contact-intro { color: var(--muted); font-size: 17px; line-height: 1.75; }

    .intro-card {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr .7fr;
      gap: 34px;
      padding: clamp(28px, 5vw, 58px);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 36px;
      background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
      box-shadow: var(--shadow);
    }
    .intro-card::after { content: ""; position: absolute; right: -120px; top: -130px; width: 340px; height: 340px; border-radius: 50%; background: rgba(217,184,95,.12); filter: blur(8px); }
    .text-block h3 { font-size: clamp(28px, 3vw, 42px); letter-spacing: -.035em; margin-bottom: 18px; }
    .check-list { display: grid; gap: 14px; align-content: start; position: relative; z-index: 1; }
    .check-item { display: flex; gap: 12px; align-items: flex-start; padding: 15px; border-radius: 18px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); }
    .check-icon { width: 26px; height: 26px; min-width: 26px; border-radius: 50%; display: grid; place-items: center; color: #08101d; background: var(--gold); font-weight: 900; font-size: 14px; }
    .check-item strong { display: block; margin-bottom: 3px; }
    .check-item span { color: var(--muted); line-height: 1.5; font-size: 14px; }

    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .service-card { position: relative; min-height: 255px; padding: 26px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.1); background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035)); overflow: hidden; transition: transform .24s ease, border-color .24s ease, background .24s ease; }
    .service-card::after { content: ""; position: absolute; inset: auto -50px -65px auto; width: 180px; height: 180px; border-radius: 50%; background: rgba(217,184,95,.10); transition: .25s ease; }
    .service-card:hover { transform: translateY(-6px); border-color: rgba(217,184,95,.35); background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.045)); }
    .service-card:hover::after { transform: scale(1.2); background: rgba(217,184,95,.17); }
    .service-number { width: 42px; height: 42px; border-radius: 15px; display: grid; place-items: center; color: #08101d; background: linear-gradient(135deg, var(--gold-light), var(--gold)); font-weight: 900; margin-bottom: 24px; }
    .service-card h3 { font-size: 23px; line-height: 1.12; margin-bottom: 14px; letter-spacing: -.02em; }
    .service-card p { color: var(--muted); line-height: 1.65; position: relative; z-index: 1; }

    .deep-section { position: relative; background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.045)); border-top: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }
    .deep-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
    .quote-box { padding: 34px; border-radius: 30px; border: 1px solid rgba(217,184,95,.26); background: linear-gradient(135deg, rgba(217,184,95,.14), rgba(255,255,255,.04)); box-shadow: var(--shadow); }
    .quote-box p { font-size: clamp(25px, 3vw, 40px); line-height: 1.15; letter-spacing: -.035em; font-weight: 850; }
    .quote-box span { display: block; color: var(--muted); margin-top: 20px; line-height: 1.65; }

    .about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
    .about-photo { border-radius: 34px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); box-shadow: var(--shadow); aspect-ratio: 4/5; }
    .about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
    .about-copy h2 { margin-bottom: 24px; }
    .about-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 30px; }
    .about-point { padding: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.045); }
    .about-point strong { color: var(--gold-light); display: block; margin-bottom: 6px; }
    .about-point span { color: var(--muted); font-size: 14px; line-height: 1.5; }

    .gordon-emblem {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 22px;
      padding: 14px 16px;
      border-radius: 20px;
      background: rgba(255,255,255,.035);
      border: 1px solid rgba(255,255,255,.08);
      max-width: 420px;
    }

    .gordon-emblem img {
      width: 58px;
      height: 58px;
      object-fit: contain;
      border-radius: 50%;
      flex: 0 0 58px;
    }

    .gordon-emblem span {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .credentials-strip { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); }
    .credentials-strip small { display: block; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
    .credential-logos { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
    .credential-logo { width: 96px; height: 96px; display: grid; place-items: center; padding: 0; border-radius: 50%; background: transparent; border: 0; }
    .credential-logo.masterclass { width: 96px; height: 96px; }
    .credential-logo img { width: 100%; height: 100%; object-fit: contain; }

    .steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: step; }
    .step { position: relative; padding: 24px; min-height: 220px; border-radius: 24px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.045); counter-increment: step; overflow: hidden; }
    .step::before { content: counter(step); display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 34px; border-radius: 15px; background: rgba(217,184,95,.16); border: 1px solid rgba(217,184,95,.35); color: var(--gold-light); font-weight: 900; }
    .step h3 { font-size: 19px; line-height: 1.2; margin-bottom: 10px; }
    .step p { color: var(--muted); font-size: 14px; line-height: 1.55; }


    .reviews-section {
      position: relative;
      background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,.035));
      border-top: 1px solid rgba(255,255,255,.07);
      border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .reviews-header {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: end;
      margin-bottom: 34px;
    }

    .reviews-header h2 {
      margin-bottom: 16px;
    }

    .reviews-header p {
      max-width: 720px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
    }

    .review-score {
      min-width: 190px;
      padding: 22px;
      border-radius: 24px;
      border: 1px solid rgba(217,184,95,.25);
      background: rgba(217,184,95,.09);
      text-align: center;
      box-shadow: var(--shadow);
    }

    .stars {
      color: var(--gold-light);
      letter-spacing: .12em;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .review-score strong {
      display: block;
      font-size: 38px;
      line-height: 1;
      color: var(--text);
      margin-bottom: 7px;
    }

    .review-score span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .review-card {
      min-height: 260px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 22px;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,.1);
      background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
    }

    .review-card .stars {
      font-size: 14px;
      margin-bottom: 16px;
    }

    .review-card p {
      color: var(--muted);
      line-height: 1.65;
      font-size: 15px;
    }

    .review-person {
      display: block;
      color: var(--text);
      font-weight: 850;
      margin-top: 20px;
    }

    .review-source {
      display: block;
      color: var(--gold-light);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-top: 4px;
    }

    .reviews-footer {
      display: flex;
      justify-content: center;
      margin-top: 28px;
    }

    @media (max-width: 1040px) {
      .reviews-header {
        grid-template-columns: 1fr;
        align-items: start;
      }

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

    @media (max-width: 620px) {
      .reviews-grid {
        grid-template-columns: 1fr;
      }

      .review-card {
        min-height: auto;
      }
    }

    .faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: start; }
    .faq-grid .section-head h2 { font-size: clamp(30px, 3vw, 46px); white-space: nowrap; }
    .faq-list { display: grid; gap: 12px; }
    .faq-item { border-radius: 22px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.045); overflow: hidden; }
    .faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 20px 22px; border: 0; background: transparent; color: var(--text); font: inherit; font-weight: 800; text-align: left; cursor: pointer; }
    .faq-question span:last-child { color: var(--gold-light); font-size: 22px; transition: .2s ease; }
    .faq-answer { display: none; padding: 0 22px 22px; font-size: 15px; }
    .faq-item.open .faq-answer { display: block; }
    .faq-item.open .faq-question span:last-child { transform: rotate(45deg); }

    .contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 36px; align-items: stretch; }
    .contact-card, .contact-form { height: 100%; border: 1px solid rgba(255,255,255,.1); border-radius: 30px; background: rgba(255,255,255,.055); box-shadow: var(--shadow); }
    .contact-card { padding: 30px; }
    .contact-card h3 { font-size: 28px; margin-bottom: 14px; letter-spacing: -.02em; }
    .contact-lines { display: grid; gap: 14px; margin-top: 28px; }
    .contact-line { padding: 17px; border-radius: 18px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); }
    .contact-line small { display: block; color: var(--gold-light); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: 11px; margin-bottom: 5px; }
    .contact-line span, .contact-line a { color: var(--text); font-weight: 750; }
    .social-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
    .social-link { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--gold-light) !important; background: rgba(217,184,95,.10); border: 1px solid rgba(217,184,95,.28); transition: .22s ease; }
    .social-link svg { width: 21px; height: 21px; fill: currentColor; }
    .social-link:hover { transform: translateY(-2px); background: rgba(217,184,95,.16); border-color: rgba(217,184,95,.45); }

    .contact-form { display: flex; flex-direction: column; justify-content: space-between; gap: 24px; padding: 30px; }
    .form-grid { flex: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-content: start; }
    .form-field.full { grid-column: 1 / -1; }
    label { display: block; color: var(--muted); font-size: 13px; font-weight: 800; letter-spacing: .04em; margin-bottom: 8px; }
    input, select, textarea { width: 100%; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; background: rgba(5,9,18,.52); color: var(--text); padding: 15px 16px; font: inherit; outline: none; transition: .2s ease; }
    .select-wrap { position: relative; }
    .select-wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--gold-light);
  border-bottom: 2px solid var(--gold-light);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
    .select-wrap select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 52px; color: var(--gold-light); font-weight: 750; border-color: rgba(217,184,95,.32); background: linear-gradient(135deg, rgba(217,184,95,.13), rgba(255,255,255,.035)), rgba(5,9,18,.64); box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
    .select-wrap select:hover { border-color: rgba(217,184,95,.55); background: linear-gradient(135deg, rgba(217,184,95,.18), rgba(255,255,255,.045)), rgba(5,9,18,.72); }
    .select-wrap select option { color: #f7f3ea; background: #07101f; }
    textarea { min-height: 235px; resize: vertical; }
    input:focus, select:focus, textarea:focus { border-color: rgba(217,184,95,.55); box-shadow: 0 0 0 4px rgba(217,184,95,.08); }
    .honeypot { display: none !important; visibility: hidden !important; height: 0 !important; overflow: hidden !important; }
    .form-status { display: none; margin-bottom: 18px; padding: 14px 16px; border-radius: 16px; line-height: 1.5; }
    .form-status.success { display: block; background: rgba(66, 190, 101, .12); border: 1px solid rgba(66, 190, 101, .30); color: #c7f6d2; }
    .form-status.error { display: block; background: rgba(217, 86, 86, .12); border: 1px solid rgba(217, 86, 86, .30); color: #ffd0d0; }

    .site-footer { padding: 28px 0; color: var(--muted); border-top: 1px solid rgba(255,255,255,.08); background: rgba(0,0,0,.18); }
    .footer-credit a { color: var(--text); font-weight: 800; transition: .2s ease; }
    .footer-credit a:hover { color: var(--gold-light); }
    .footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
    .footer-socials { justify-content: flex-end; margin-top: 0; }
    .footer-socials .social-link { width: 38px; height: 38px; color: #ffffff !important; background: transparent; border-color: rgba(255,255,255,.22); }
    .footer-socials .social-link svg { width: 17px; height: 17px; }
    .footer-socials .social-link:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.45); }

    .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 1040px) {
      .header-cta { display: none; }
      .hero-grid, .intro-card, .deep-grid, .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
      .hero-grid { gap: 42px; }
      .portrait-card { max-width: 520px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .steps { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 1100px) {
      .site-header {
        width: 100%;
        max-width: 100%;
        overflow: visible;
      }

      .site-header .container {
        width: 100%;
        max-width: none;
        margin: 0 auto;
        padding-left: 14px;
        padding-right: 14px;
      }

      .header-inner {
        position: relative;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 46px;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 100%;
      }

      .brand {
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
      }

      .brand-logo {
        width: min(200px, 100%);
        height: 54px;
        object-fit: contain;
        object-position: left center;
      }

      .header-cta {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        grid-column: 2;
        width: 46px;
        height: 46px;
        min-width: 46px;
        max-width: 46px;
        margin: 0;
        padding: 0;
        justify-self: end;
        overflow: hidden;
      }

      .menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        margin: 0;
        flex: 0 0 2px;
      }

      .main-nav {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border-radius: 24px;
        padding: 12px;
        background: rgba(5,9,18,.98);
        box-shadow: var(--shadow);
        z-index: 150;
      }

      body.menu-open .main-nav {
        display: flex;
      }

      .main-nav a {
        padding: 16px;
        border-radius: 16px;
      }

      .brand-text strong {
        font-size: 12px;
        letter-spacing: .13em;
      }

      .brand-text small { display: none; }

      .hero {
        min-height: auto;
        padding: 128px 0 70px;
      }

      .hero::before {
        right: -180px;
        width: 360px;
        height: 360px;
      }

      .portrait-card::before {
        inset: 8% 0 -5% 10%;
      }

      .hero-note {
        grid-template-columns: 1fr;
      }

      section {
        padding: 78px 0;
      }

      .services-grid,
      .steps,
      .about-points,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .service-card,
      .step {
        min-height: auto;
      }
    }

    @media (max-width: 520px) {
      .container { width: min(100% - 24px, var(--max)); }

      .site-header .container {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
      }

      .header-inner {
        grid-template-columns: minmax(0, 1fr) 42px;
        gap: 8px;
      }

      .brand-logo {
        width: min(170px, 100%);
        height: 46px;
        border-radius: 10px;
      }

      .menu-toggle {
        width: 42px;
        height: 42px;
        min-width: 42px;
        max-width: 42px;
        border-radius: 14px;
      }

      .menu-toggle span {
        width: 20px;
      }

      .hero-actions,
      .section-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .btn-primary,
      .btn-secondary {
        width: 100%;
      }

      h1 {
        font-size: 30px;
      }

      .portrait-card {
        padding: 12px;
        border-radius: 26px;
      }

      .portrait {
        border-radius: 21px;
      }

      .portrait-label {
        bottom: 24px;
      }

      .footer-inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 14px;
      }

      .gordon-emblem {
        align-items: center;
        max-width: 100%;
      }

      .footer-socials {
        justify-content: center;
      }
    }
