:root {
      --ink: #0b0b0b;
      --cream: #fff8f0;
      --paper: #ffffff;
      --muted: #6f6b66;
      --line: #e9dfd3;
      --orange: #ffb43a;
      --blue: #3a76e8;
      --green: #67d20f;
      --deep-green: #2aa93c;
      --shadow: 0 24px 70px rgba(24, 16, 7, .10);
      --radius: 28px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.55;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, input, select, textarea { font: inherit; }

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

    .topbar {
      background: #111;
      color: #fff;
      font-size: 13px;
    }

    .topbar .container {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      padding: 9px 0;
      flex-wrap: wrap;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(233,223,211,.9);
      background: rgba(255,248,240,.88);
      backdrop-filter: blur(16px);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 82px;
      gap: 22px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 185px;
    }

    .brand-logo {
      width: 170px;
      height: 58px;
      object-fit: contain;
      object-position: center;
      border-radius: 12px;
    }

    nav {
      display: flex;
      gap: 28px;
      align-items: center;
      font-size: 14px;
      font-weight: 650;
    }

    nav a {
      position: relative;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: -8px;
      height: 2px;
      background: var(--deep-green);
      transition: .25s ease;
    }

    nav a:hover::after { right: 0; }

    .nav-actions {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 1px solid transparent;
      border-radius: 999px;
      padding: 13px 19px;
      font-weight: 750;
      font-size: 14px;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

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

    .btn-dark {
      background: #111;
      color: #fff;
      box-shadow: 0 12px 30px rgba(0,0,0,.12);
    }

    .btn-light {
      background: rgba(255,255,255,.75);
      border-color: var(--line);
    }

    .btn-green {
      background: var(--green);
      color: #102000;
    }

    .menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: white;
      cursor: pointer;
    }

    .hero {
      padding: 70px 0 38px;
      overflow: hidden;
      position: relative;
    }

    .hero::before {
      content: "";
      width: 380px;
      height: 380px;
      position: absolute;
      top: 20px;
      right: -130px;
      border-radius: 50%;
      background: rgba(255,180,58,.18);
      filter: blur(10px);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr;
      gap: 52px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 12px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      box-shadow: 0 8px 30px rgba(32, 22, 12, .06);
    }

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

    h1 {
      font-size: clamp(54px, 7.3vw, 105px);
      line-height: .9;
      margin: 22px 0 24px;
      letter-spacing: -.065em;
      max-width: 760px;
    }

    .accent-word {
      display: inline-block;
      position: relative;
      z-index: 1;
    }

    .accent-word::after {
      content: "";
      height: 20%;
      position: absolute;
      left: 2%;
      right: -1%;
      bottom: 5%;
      background: var(--orange);
      z-index: -1;
      border-radius: 999px;
    }

    .hero-copy {
      max-width: 635px;
      color: #5e5954;
      font-size: 18px;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 32px;
    }

    .hero-stats {
      display: flex;
      gap: 26px;
      flex-wrap: wrap;
      color: #5e5954;
      font-size: 13px;
    }

    .hero-stat strong {
      display: block;
      color: #111;
      font-size: 21px;
      margin-bottom: 2px;
    }

    .hero-card {
      position: relative;
      min-height: 560px;
      border-radius: 38px;
      background: #111;
      overflow: hidden;
      box-shadow: var(--shadow);
      isolation: isolate;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(145deg, rgba(255,180,58,.95) 0 26%, transparent 26% 100%),
        linear-gradient(28deg, transparent 0 48%, rgba(58,118,232,.9) 48% 66%, transparent 66% 100%),
        linear-gradient(340deg, transparent 0 55%, rgba(103,210,15,.95) 55% 81%, transparent 81%);
      opacity: .94;
      z-index: -1;
    }

    .machine {
      position: absolute;
      left: 7%;
      right: 7%;
      bottom: 8%;
      background: linear-gradient(180deg,#f8f8f8,#dadada);
      height: 190px;
      border-radius: 22px;
      box-shadow: 0 34px 50px rgba(0,0,0,.28);
      border: 8px solid #222;
    }

    .machine::before {
      content: "LARGE FORMAT • SIGNAGE • BRANDING";
      position: absolute;
      left: 7%;
      right: 7%;
      top: 18%;
      height: 42px;
      background: #111;
      color: white;
      display: grid;
      place-items: center;
      font-size: 11px;
      letter-spacing: .16em;
      border-radius: 8px;
    }

    .machine::after {
      content: "";
      position: absolute;
      width: 54%;
      height: 108px;
      left: 23%;
      bottom: -78px;
      border-radius: 0 0 16px 16px;
      background:
        linear-gradient(90deg,var(--orange) 0 31%,var(--blue) 31% 63%,var(--green) 63%);
      box-shadow: 0 20px 30px rgba(0,0,0,.18);
    }

    .floating-card {
      position: absolute;
      top: 28px;
      right: 28px;
      width: 210px;
      background: rgba(255,255,255,.92);
      border-radius: 20px;
      padding: 18px;
      box-shadow: 0 20px 40px rgba(0,0,0,.14);
      backdrop-filter: blur(10px);
    }

    .floating-card small {
      color: var(--muted);
      display: block;
      margin-bottom: 8px;
    }

    .floating-card strong {
      font-size: 18px;
      line-height: 1.2;
    }

    .badge {
      position: absolute;
      left: 28px;
      top: 36px;
      padding: 9px 12px;
      background: #111;
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      border-radius: 999px;
    }

    .section {
      padding: 92px 0;
    }

    .section-white {
      background: #fff;
    }

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

    .section-head h2 {
      font-size: clamp(36px, 5vw, 64px);
      line-height: .98;
      margin: 0;
      letter-spacing: -.05em;
      max-width: 700px;
    }

    .section-head p {
      max-width: 480px;
      color: var(--muted);
      margin: 0;
    }

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

    .service-card {
      background: var(--cream);
      border: 1px solid var(--line);
      padding: 26px;
      border-radius: 24px;
      min-height: 230px;
      position: relative;
      overflow: hidden;
      transition: .25s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(39,31,22,.08);
    }

    .service-icon {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-weight: 900;
      margin-bottom: 42px;
      background: #fff;
      border: 1px solid var(--line);
    }

    .service-card h3 {
      margin: 0 0 8px;
      font-size: 20px;
    }

    .service-card p {
      color: var(--muted);
      margin: 0;
      font-size: 14px;
    }

    .service-strip {
      margin-top: 16px;
      display: grid;
      grid-template-columns: 1.4fr .6fr;
      gap: 16px;
    }

    .strip-card {
      border-radius: 28px;
      min-height: 270px;
      padding: 30px;
      position: relative;
      overflow: hidden;
    }

    .strip-dark {
      background: #111;
      color: white;
    }

    .strip-dark p { color: #c9c9c9; max-width: 560px; }
    .strip-color {
      background: var(--orange);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .kicker {
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-weight: 800;
      opacity: .7;
    }

    .strip-card h3 {
      font-size: clamp(28px, 4vw, 46px);
      letter-spacing: -.04em;
      line-height: 1;
      margin: 16px 0;
    }

    .training-wrap {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 22px;
      align-items: stretch;
    }

    .training-intro {
      background: #111;
      color: white;
      padding: 38px;
      border-radius: 30px;
      min-height: 520px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .training-intro p {
      color: #c9c9c9;
      max-width: 440px;
    }

    .course-list {
      display: grid;
      gap: 14px;
    }

    .course {
      padding: 24px;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: white;
      display: grid;
      grid-template-columns: 74px 1fr auto;
      gap: 18px;
      align-items: center;
    }

    .course-no {
      width: 74px;
      height: 74px;
      border-radius: 20px;
      display: grid;
      place-items: center;
      font-weight: 900;
      background: var(--cream);
    }

    .course h4 {
      margin: 0 0 6px;
      font-size: 20px;
    }

    .course p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .arrow {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: #111;
      color: white;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      grid-template-rows: 250px 250px;
      gap: 16px;
    }

    .work-card {
      border-radius: 28px;
      padding: 28px;
      position: relative;
      overflow: hidden;
      min-height: 250px;
      border: 1px solid rgba(0,0,0,.04);
    }

    .work-card h3 {
      font-size: 26px;
      margin: 0 0 8px;
      letter-spacing: -.03em;
    }

    .work-card p {
      margin: 0;
      max-width: 420px;
      font-size: 14px;
    }

    .work-large {
      grid-row: span 2;
      background:
        radial-gradient(circle at 72% 24%, rgba(255,255,255,.65), transparent 22%),
        linear-gradient(135deg, #ffe3ab, var(--orange));
    }

    .work-blue {
      background: #dfeaff;
    }

    .work-green {
      background: #e5ffd0;
    }

    .mock-print {
      position: absolute;
      left: 10%;
      right: 10%;
      bottom: -6%;
      height: 55%;
      background: white;
      border: 12px solid #111;
      border-radius: 20px 20px 6px 6px;
      box-shadow: 0 24px 34px rgba(0,0,0,.16);
    }

    .mock-print::before {
      content: "YOUR BRAND,\A PRINTED BOLD.";
      white-space: pre;
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      text-align: center;
      font-size: 28px;
      font-weight: 950;
      line-height: .95;
    }

    .registration {
      padding: 94px 0;
      background: #111;
      color: white;
    }

    .registration-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 48px;
      align-items: center;
    }

    .registration h2 {
      font-size: clamp(44px, 6vw, 78px);
      line-height: .95;
      letter-spacing: -.06em;
      margin: 0 0 18px;
    }

    .registration p {
      color: #bfbfbf;
      max-width: 520px;
    }

    .register-card {
      background: white;
      color: #111;
      padding: 30px;
      border-radius: 28px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    label {
      display: block;
      font-size: 12px;
      font-weight: 800;
      margin: 0 0 7px;
    }

    input, select {
      width: 100%;
      border: 1px solid #ded8d2;
      border-radius: 13px;
      padding: 13px 14px;
      outline: none;
      background: #fff;
    }

    input:focus, select:focus {
      border-color: #111;
      box-shadow: 0 0 0 3px rgba(0,0,0,.05);
    }

    .full { grid-column: 1 / -1; }

    .contact-cta {
      padding: 80px 0;
    }

    .cta-box {
      padding: 44px;
      border-radius: 34px;
      background: var(--orange);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 28px;
    }

    .cta-box h2 {
      font-size: clamp(34px, 5vw, 62px);
      line-height: .98;
      letter-spacing: -.05em;
      margin: 0 0 10px;
    }

    .cta-box p {
      margin: 0;
      max-width: 600px;
    }

    footer {
      background: #0d0d0d;
      color: white;
      padding: 60px 0 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr repeat(3, .75fr);
      gap: 36px;
      padding-bottom: 42px;
      border-bottom: 1px solid #252525;
    }

    footer h4 {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: .13em;
      margin: 0 0 16px;
      color: #999;
    }

    footer a {
      display: block;
      margin: 8px 0;
      color: #d0d0d0;
      font-size: 14px;
    }

    .footer-note {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      padding-top: 24px;
      color: #8b8b8b;
      font-size: 13px;
    }

    .mini-logo {
      width: 190px;
      border-radius: 12px;
      margin-bottom: 18px;
      background: var(--cream);
    }

    @media (max-width: 980px) {
      nav, .nav-actions .btn-light { display: none; }
      .menu-btn { display: block; }
      .hero-grid, .training-wrap, .registration-grid { grid-template-columns: 1fr; }
      .hero-card { min-height: 470px; }
      .service-grid { grid-template-columns: repeat(2, 1fr); }
      .service-strip { grid-template-columns: 1fr; }
      .portfolio-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }
      .work-large { grid-row: auto; min-height: 420px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 680px) {
      .container { width: min(100% - 26px, 1180px); }
      .topbar .container { justify-content: center; text-align: center; }
      .topbar span:last-child { display: none; }
      .nav { min-height: 72px; }
      .brand-logo { width: 145px; }
      .hero { padding-top: 44px; }
      .hero-grid { gap: 32px; }
      h1 { font-size: clamp(44px, 13.6vw, 68px); }
      .hero-copy { font-size: 16px; }
      .hero-card { min-height: 395px; border-radius: 28px; }
      .floating-card { width: 180px; top: 20px; right: 20px; }
      .service-grid { grid-template-columns: 1fr; }
      .section { padding: 68px 0; }
      .section-head { display: block; }
      .section-head p { margin-top: 18px; }
      .course { grid-template-columns: 58px 1fr; }
      .course-no { width: 58px; height: 58px; }
      .arrow { display: none; }
      .form-grid { grid-template-columns: 1fr; }
      .full { grid-column: auto; }
      .cta-box { padding: 30px; display: block; }
      .cta-box .btn { margin-top: 22px; }
      .footer-grid { grid-template-columns: 1fr; }
    }
  
    /* ---------- Motion & showcase enhancements ---------- */
    @media (prefers-reduced-motion: no-preference) {
      .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
      }
      .reveal.in-view {
        opacity: 1;
        transform: translateY(0);
      }

      .float-slow { animation: floatSlow 5s ease-in-out infinite; }
      .float-medium { animation: floatMedium 4s ease-in-out infinite; }
      .hero-card::after {
        content: "";
        position: absolute;
        width: 160px;
        height: 160px;
        right: -55px;
        bottom: 30px;
        border: 28px solid rgba(255,255,255,.16);
        border-radius: 42px;
        transform: rotate(24deg);
        animation: spinDecor 14s linear infinite;
      }

      @keyframes floatSlow {
        0%,100% { transform: translateY(0px); }
        50% { transform: translateY(-12px); }
      }
      @keyframes floatMedium {
        0%,100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-8px) rotate(1.5deg); }
      }
      @keyframes spinDecor {
        to { transform: rotate(384deg); }
      }
      @keyframes marquee {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
      }
      @keyframes shimmer {
        0% { transform: translateX(-130%); }
        100% { transform: translateX(130%); }
      }
    }

    .hero-actions .btn {
      position: relative;
      overflow: hidden;
    }
    .hero-actions .btn::after {
      content: "";
      position: absolute;
      top: 0;
      left: -45%;
      width: 35%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.36), transparent);
      transform: skewX(-18deg);
    }
    @media (prefers-reduced-motion: no-preference) {
      .hero-actions .btn:hover::after { animation: shimmer .8s ease; }
    }

    .partners {
      overflow: hidden;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: #fff;
    }

    .partners-inner {
      padding: 26px 0;
    }

    .partners-label {
      text-align: center;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #817a72;
      margin-bottom: 18px;
    }

    .marquee {
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    }

    .marquee-track {
      display: flex;
      width: max-content;
      gap: 14px;
      animation: marquee 24s linear infinite;
    }

    .marquee:hover .marquee-track { animation-play-state: paused; }

    .partner-logo {
      min-width: 180px;
      height: 76px;
      border: 1px solid #e8e1d9;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: #fffaf4;
      padding: 10px 18px;
      font-weight: 900;
      letter-spacing: -.03em;
      color: #1a1a1a;
    }

    .partner-logo span {
      opacity: .72;
      font-size: 16px;
    }

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

    .service-wide {
      min-height: 280px;
      border-radius: 28px;
      padding: 28px;
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      background: #fff;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .service-wide:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(30,20,10,.08);
    }
    .service-wide .num {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: #111;
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      margin-bottom: 52px;
    }
    .service-wide h3 {
      font-size: 24px;
      line-height: 1.05;
      margin: 0 0 10px;
      letter-spacing: -.035em;
    }
    .service-wide p {
      color: var(--muted);
      font-size: 14px;
      margin: 0;
    }
    .service-wide.orange { background: #fff1d3; }
    .service-wide.blue { background: #eaf0ff; }
    .service-wide.green { background: #ecffdf; }

    .works-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      gap: 16px;
    }
    .project-card {
      border-radius: 28px;
      min-height: 340px;
      position: relative;
      overflow: hidden;
      padding: 26px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid rgba(0,0,0,.05);
      background: #f5f0e9;
    }
    .project-card.tall { min-height: 520px; }
    .project-card h3 {
      margin: 0;
      font-size: 25px;
      letter-spacing: -.04em;
    }
    .project-card p {
      margin: 8px 0 0;
      color: #666;
      max-width: 330px;
      font-size: 14px;
    }
    .project-art {
      height: 190px;
      border-radius: 20px;
      background:
        linear-gradient(145deg, rgba(255,255,255,.65), rgba(255,255,255,.15)),
        linear-gradient(120deg, var(--orange), var(--blue) 52%, var(--green));
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,.08);
    }
    .project-art::before {
      content: "";
      position: absolute;
      inset: 18% 15%;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 15px 28px rgba(0,0,0,.18);
      transform: rotate(-3deg);
    }
    .project-art::after {
      content: "ASH PRINTS";
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      font-weight: 950;
      font-size: 24px;
      letter-spacing: -.04em;
      z-index: 2;
    }

    .tag-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 15px;
    }
    .tag {
      font-size: 11px;
      font-weight: 800;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(255,255,255,.75);
      border: 1px solid rgba(0,0,0,.06);
    }

    .number-strip {
      margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .number-card {
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 22px;
      background: #fff;
    }
    .number-card strong {
      display: block;
      font-size: 30px;
      letter-spacing: -.04em;
    }
    .number-card span {
      color: var(--muted);
      font-size: 13px;
    }

    @media (max-width: 980px) {
      .services-expanded, .works-grid { grid-template-columns: 1fr 1fr; }
      .project-card.tall { min-height: 420px; }
      .number-strip { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 680px) {
      .services-expanded, .works-grid, .number-strip { grid-template-columns: 1fr; }
      .partner-logo { min-width: 150px; }
    }

    textarea {
      width: 100%;
      border: 1px solid #ded8d2;
      border-radius: 13px;
      padding: 13px 14px;
      outline: none;
      background: #fff;
      resize: vertical;
      min-height: 118px;
    }
    textarea:focus {
      border-color: #111;
      box-shadow: 0 0 0 3px rgba(0,0,0,.05);
    }

    .field-error {
      color: #b42318;
      font-size: 12px;
      font-weight: 700;
      margin-top: 6px;
    }

    .flash {
      margin-top: 14px;
      padding: 12px 14px;
      border-radius: 12px;
      font-size: 13px;
      font-weight: 650;
    }
    .flash-success { background: #eefbdd; color: #1a3d00; }
    .flash-error { background: #ffe8e4; color: #7a1c12; }
    .messages { list-style: none; margin: 0 0 18px; padding: 0; }

    .drawer-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(11,11,11,.42);
      z-index: 80;
    }
    .drawer-backdrop.open { display: block; }

    .drawer {
      position: fixed;
      top: 0;
      right: 0;
      height: 100%;
      width: min(360px, 90vw);
      background: var(--cream);
      z-index: 90;
      padding: 22px 22px 32px;
      transform: translateX(110%);
      transition: transform .28s ease;
      box-shadow: -24px 0 50px rgba(0,0,0,.14);
      overflow: auto;
    }
    .drawer.open { transform: translateX(0); }
    .drawer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
    }
    .drawer nav {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      font-size: 22px;
    }
    .drawer nav a {
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
    }
    .drawer nav a::after { display: none; }
    .drawer-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 22px;
    }
    .drawer-close {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: #fff;
      cursor: pointer;
      font-size: 22px;
    }
    body.menu-open { overflow: hidden; }

    .page-register {
      padding: 72px 0 100px;
      background: #111;
      color: #fff;
      min-height: calc(100vh - 220px);
    }
    .page-register .registration-grid { align-items: start; }
    .page-register .registration-grid > div:first-child { padding-top: 18px; }
