    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg:       #07090e;
      --bg2:      #0d1018;
      --text:     #ddd8cd;
      --muted:    #6b6b6b;
      --accent:   #c6ff00;
      --error:    #ff5c5c;
      --border:   rgba(255,255,255,0.07);
      --ff-display: 'DM Serif Display', serif;
      --ff-head:  'Cormorant Garamond', serif;
      --ff-ui:    'Syne', sans-serif;
    }

    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--ff-ui);
      overflow-x: hidden;
      cursor: none;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* ─── CURSOR ─────────────────────────────────────────────── */
    #cursor {
      position: fixed; width: 10px; height: 10px;
      background: var(--accent); border-radius: 50%;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width .3s, height .3s;
      mix-blend-mode: difference;
    }
    #cursor-ring {
      position: fixed; width: 38px; height: 38px;
      border: 1px solid rgba(198,255,0,0.5); border-radius: 50%;
      pointer-events: none; z-index: 9998;
      transform: translate(-50%, -50%);
      transition: left .12s, top .12s, width .3s, height .3s;
    }

    /* ─── NAV ────────────────────────────────────────────────── */
    #nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      transform: translateY(-100%);
      transition: transform .5s cubic-bezier(.76,0,.24,1);
      background: rgba(7,9,14,0.92);
      backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    #nav.visible { transform: translateY(0); }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 6vw; height: 68px;
    }
    .nav-logo {
      font-family: var(--ff-ui); font-size: 18px; font-weight: 800;
      letter-spacing: .1em; text-transform: uppercase;
      color: #fff; text-decoration: none;
      display: flex; align-items: center; gap: 6px;
    }
    .nav-logo span { color: var(--accent); font-size: 22px; }
    .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
    .nav-links a {
      font-family: var(--ff-ui); font-size: 11px; font-weight: 600;
      letter-spacing: .15em; text-transform: uppercase;
      color: var(--muted); text-decoration: none;
      transition: color .25s; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 1px; background: var(--accent);
      transform: scaleX(0); transform-origin: left; transition: transform .3s;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { transform: scaleX(1); }
    .nav-cta {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
      letter-spacing: .15em; text-transform: uppercase;
      color: var(--bg); background: var(--accent);
      padding: 10px 20px; text-decoration: none; transition: background .25s;
    }
    .nav-cta:hover { background: #fff; }
    .nav-hamburger {
      display: none; flex-direction: column; justify-content: center;
      gap: 5px; width: 36px; height: 36px;
      background: none; border: none; cursor: pointer; padding: 4px;
    }
    .nav-hamburger span {
      display: block; height: 1.5px; background: var(--text);
      transition: transform .35s cubic-bezier(.76,0,.24,1), opacity .25s, width .3s;
      transform-origin: center;
    }
    .nav-hamburger span:nth-child(1) { width: 24px; }
    .nav-hamburger span:nth-child(2) { width: 16px; }
    .nav-hamburger span:nth-child(3) { width: 20px; }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 22px; }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }

    .nav-drawer {
      display: none; position: fixed; inset: 0; z-index: 150; pointer-events: none;
    }
    .nav-drawer-backdrop {
      position: absolute; inset: 0; background: rgba(7,9,14,0.75); opacity: 0;
      transition: opacity .4s; backdrop-filter: blur(6px);
    }
    .nav-drawer-panel {
      position: absolute; top: 0; right: 0; bottom: 0; width: min(80vw, 300px);
      background: var(--bg2); border-left: 1px solid var(--border);
      transform: translateX(100%); transition: transform .45s cubic-bezier(.76,0,.24,1);
      padding: 88px 32px 48px; display: flex; flex-direction: column;
    }
    .nav-drawer.open { pointer-events: all; }
    .nav-drawer.open .nav-drawer-backdrop { opacity: 1; }
    .nav-drawer.open .nav-drawer-panel { transform: translateX(0); }
    .drawer-links { list-style: none; border-top: 1px solid var(--border); }
    .drawer-links li { border-bottom: 1px solid var(--border); opacity: 0; transform: translateX(16px); transition: opacity .3s, transform .3s; }
    .nav-drawer.open .drawer-links li { opacity: 1; transform: translateX(0); }
    .nav-drawer.open .drawer-links li:nth-child(1) { transition-delay: .08s; }
    .nav-drawer.open .drawer-links li:nth-child(2) { transition-delay: .13s; }
    .nav-drawer.open .drawer-links li:nth-child(3) { transition-delay: .18s; }
    .nav-drawer.open .drawer-links li:nth-child(4) { transition-delay: .23s; }
    .nav-drawer.open .drawer-links li:nth-child(5) { transition-delay: .28s; }
    .drawer-links a {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 0; font-family: var(--ff-head); font-size: 1.35rem;
      color: var(--text); text-decoration: none; transition: color .2s;
    }
    .drawer-links a:hover { color: #fff; }
    .drawer-cta {
      margin-top: 32px; display: block; text-align: center; padding: 14px 20px;
      background: var(--accent); color: var(--bg); font-family: var(--ff-ui);
      font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
      text-decoration: none; opacity: 0; transform: translateY(10px);
      transition: opacity .3s .32s, transform .3s .32s;
    }
    .nav-drawer.open .drawer-cta { opacity: 1; transform: translateY(0); }

    /* ─── PAGE ───────────────────────────────────────────────── */
    #page {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 68px;
      min-height: 100vh;
    }

    /* ─── LEFT — Visual ──────────────────────────────────────── */
    #visual {
      position: sticky;
      top: 68px;
      height: calc(100vh - 68px);
      background: var(--bg2);
      border-right: 1px solid var(--border);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 56px 7vw 56px 6vw;
    }

    /* Large faded background text */
    .visual-bg-text {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      font-family: var(--ff-display);
      font-size: clamp(80px, 13vw, 160px);
      font-weight: 400;
      color: rgba(255,255,255,0.025);
      white-space: nowrap;
      letter-spacing: -.04em;
      pointer-events: none;
      user-select: none;
      line-height: 1;
    }

    /* Animated accent lines */
    .visual-lines {
      position: absolute;
      inset: 0; pointer-events: none;
    }
    .vline {
      position: absolute;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(198,255,0,0.12), transparent);
      animation: linePulse ease-in-out infinite;
    }
    @keyframes linePulse {
      0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
      50%       { opacity: 1;   transform: scaleY(1); }
    }

    .visual-logo {
      font-family: var(--ff-ui); font-size: 13px; font-weight: 800;
      letter-spacing: .18em; text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      display: flex; align-items: center; gap: 6px;
      margin-bottom: 48px; position: relative; z-index: 1;
      opacity: 0; animation: fadeUp .6s .1s forwards;
    }
    .visual-logo span { color: var(--accent); }

    .visual-quote {
      position: relative; z-index: 1;
      opacity: 0; animation: fadeUp .7s .25s forwards;
    }
    .visual-quote blockquote {
      font-family: var(--ff-display);
      font-size: clamp(1.6rem, 2.5vw, 2.6rem);
      font-weight: 400; line-height: 1.15;
      color: rgba(255,255,255,0.85);
      margin-bottom: 20px;
    }
    .visual-quote blockquote em { font-style: italic; color: var(--accent); }
    .visual-quote cite {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
      letter-spacing: .22em; text-transform: uppercase;
      color: var(--muted); font-style: normal;
      display: flex; align-items: center; gap: 10px;
    }
    .visual-quote cite::before { content: ''; width: 20px; height: 1px; background: var(--muted); }

    /* Stats strip */
    .visual-stats {
      display: flex; gap: 0;
      margin-top: 44px;
      border-top: 1px solid var(--border);
      position: relative; z-index: 1;
      opacity: 0; animation: fadeUp .6s .4s forwards;
    }
    .visual-stat {
      flex: 1; padding: 20px 0;
      border-right: 1px solid var(--border);
    }
    .visual-stat:last-child { border-right: none; padding-left: 20px; }
    .visual-stat:not(:first-child) { padding-left: 20px; }
    .stat-num {
      font-family: var(--ff-display); font-size: 1.6rem;
      color: #fff; line-height: 1; margin-bottom: 4px;
    }
    .stat-num em { font-style: italic; color: var(--accent); }
    .stat-label {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 600;
      letter-spacing: .1em; color: var(--muted); text-transform: uppercase;
    }

    /* ─── RIGHT — Form ───────────────────────────────────────── */
    #form-panel {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 72px 7vw 72px 6vw;
      min-height: calc(100vh - 68px);
    }

    .form-header {
      margin-bottom: 48px;
      opacity: 0; animation: fadeUp .6s .15s forwards;
    }
    .form-label {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
      letter-spacing: .28em; text-transform: uppercase; color: var(--accent);
      display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
    }
    .form-label::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
    .form-title {
      font-family: var(--ff-display);
      font-size: clamp(2.2rem, 3.5vw, 3.8rem);
      font-weight: 400; line-height: 1.0; letter-spacing: -.02em; color: #fff;
    }
    .form-title em { font-style: italic; color: var(--accent); }

    /* Fields */
    .field {
      display: flex; flex-direction: column;
      margin-bottom: 22px; position: relative;
    }
    .field label {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
      letter-spacing: .16em; text-transform: uppercase;
      color: var(--muted); margin-bottom: 10px;
      transition: color .2s;
    }
    .field:focus-within label { color: var(--accent); }

    .input-wrap {
      position: relative;
    }
    .field input {
      width: 100%;
      background: var(--bg2);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: var(--ff-ui); font-size: 13px;
      padding: 14px 46px 14px 16px;
      outline: none;
      transition: border-color .25s, background .25s, box-shadow .25s;
      -webkit-appearance: none; appearance: none;
    }
    .field input::placeholder { color: rgba(107,107,107,0.6); }
    .field input:focus {
      border-color: rgba(198,255,0,0.4);
      background: rgba(13,16,24,0.8);
      box-shadow: 0 0 0 3px rgba(198,255,0,0.05);
    }
    .field input.valid   { border-color: rgba(198,255,0,0.3); }
    .field input.invalid { border-color: rgba(255,92,92,0.5); }

    /* Toggle password visibility */
    .toggle-pw {
      position: absolute; right: 14px; top: 50%;
      transform: translateY(-50%);
      background: none; border: none; cursor: pointer;
      color: var(--muted); padding: 4px;
      transition: color .2s;
      display: flex; align-items: center;
    }
    .toggle-pw:hover { color: var(--accent); }

    .field-error {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 600;
      color: var(--error); margin-top: 6px;
      display: flex; align-items: center; gap: 5px;
      height: 0; overflow: hidden; opacity: 0;
      transition: height .25s, opacity .25s;
    }
    .field-error.show { height: 18px; opacity: 1; }
    .field-error::before { content: '!'; flex-shrink: 0; }

    /* Forgot password */
    .forgot-row {
      display: flex; justify-content: flex-end;
      margin-top: -10px; margin-bottom: 28px;
      opacity: 0; animation: fadeUp .6s .4s forwards;
    }
    .forgot-link {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 600;
      letter-spacing: .1em; color: var(--muted);
      text-decoration: none; transition: color .2s;
      position: relative;
    }
    .forgot-link::after {
      content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
      height: 1px; background: var(--accent);
      transform: scaleX(0); transform-origin: left; transition: transform .3s;
    }
    .forgot-link:hover { color: var(--accent); }
    .forgot-link:hover::after { transform: scaleX(1); }

    /* Submit */
    .submit-btn {
      width: 100%;
      display: flex; align-items: center; justify-content: center; gap: 12px;
      background: var(--accent); color: var(--bg);
      font-family: var(--ff-ui); font-size: 12px; font-weight: 700;
      letter-spacing: .18em; text-transform: uppercase;
      padding: 18px 32px; border: none; cursor: pointer;
      position: relative; overflow: hidden;
      transition: gap .3s;
      margin-bottom: 28px;
      opacity: 0; animation: fadeUp .6s .45s forwards;
    }
    .submit-btn::before {
      content: ''; position: absolute; inset: 0; background: #fff;
      transform: translateX(-101%);
      transition: transform .4s cubic-bezier(.76,0,.24,1);
    }
    .submit-btn:hover::before { transform: translateX(0); }
    .submit-btn span, .submit-btn svg { position: relative; z-index: 1; }
    .submit-btn:hover { gap: 18px; }
    .submit-btn svg { transition: transform .3s; }
    .submit-btn:hover svg { transform: translateX(5px); }
    .submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
    .submit-btn:disabled::before { display: none; }

    /* Divider */
    .or-divider {
      display: flex; align-items: center; gap: 16px;
      margin-bottom: 28px;
      opacity: 0; animation: fadeUp .5s .5s forwards;
    }
    .or-divider::before, .or-divider::after {
      content: ''; flex: 1; height: 1px; background: var(--border);
    }
    .or-divider span {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 600;
      letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
      flex-shrink: 0;
    }

    /* Create account CTA */
    .create-account {
      display: flex; flex-direction: column;
      border: 1px solid var(--border);
      padding: 24px 28px;
      position: relative; overflow: hidden;
      transition: border-color .3s, background .3s;
      text-decoration: none;
      opacity: 0; animation: fadeUp .5s .55s forwards;
    }
    .create-account::before {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0;
      width: 2px; background: var(--accent);
      transform: scaleY(0); transform-origin: bottom;
      transition: transform .35s cubic-bezier(.16,1,.3,1);
    }
    .create-account:hover { border-color: rgba(198,255,0,0.25); background: rgba(198,255,0,0.025); }
    .create-account:hover::before { transform: scaleY(1); }

    .create-account-top {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 6px;
    }
    .create-account-label {
      font-family: var(--ff-ui); font-size: 10px; font-weight: 700;
      letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
    }
    .create-account-arrow {
      color: var(--accent); transition: transform .3s;
    }
    .create-account:hover .create-account-arrow { transform: translateX(6px); }
    .create-account-title {
      font-family: var(--ff-head); font-size: 1.3rem; font-weight: 600;
      color: #fff; line-height: 1.2; margin-bottom: 4px;
    }
    .create-account-desc {
      font-family: var(--ff-ui); font-size: 11px; color: var(--muted); line-height: 1.6;
    }

    /* Server error */
    #server-error {
      display: flex; align-items: center; gap: 10px;
      background: rgba(255,92,92,0.08);
      border: 1px solid rgba(255,92,92,0.25);
      padding: 14px 18px; margin-bottom: 24px;
      font-family: var(--ff-ui); font-size: 11px; color: var(--error);
      height: 0; overflow: hidden; opacity: 0;
      transition: height .3s, opacity .3s, padding .3s, margin .3s;
    }
    #server-error.show { height: auto; opacity: 1; padding: 14px 18px; margin-bottom: 24px; }
    #server-error::before { content: '!'; font-weight: 800; font-size: 14px; flex-shrink: 0; }

    /* ─── ANIMATIONS ─────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* form fields stagger */
    .field:nth-child(1) { opacity: 0; animation: fadeUp .6s .25s forwards; }
    .field:nth-child(2) { opacity: 0; animation: fadeUp .6s .32s forwards; }

    /* ─── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 900px) {
      #page { grid-template-columns: 1fr; }
      #visual { display: none; }
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: flex; }
      .nav-drawer { display: block; }
      #form-panel { padding: 60px 5vw 80px; min-height: auto; }
    }
    @media (max-width: 600px) {
      body { cursor: auto; }
      #cursor, #cursor-ring { display: none; }
    }
    
        /* ── Footer ──────────────────────────────────────────────── */
    #site-footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 64px 6vw 36px;
      position: relative;
      overflow: hidden;
    }

    /* Giant faded background logo */
    #site-footer::before {
      content: '✦';
      position: absolute;
      right: -2vw;
      bottom: -40px;
      font-family: var(--ff-ui);
      font-size: clamp(180px, 22vw, 300px);
      color: rgba(255, 255, 255, 0.018);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }

    /* Accent top line */
    #site-footer::after {
      content: '';
      position: absolute;
      top: 0;
      left: 6vw;
      width: 80px;
      height: 2px;
      background: var(--accent);
    }

    /* ── Top row ── */
    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 28px;
      position: relative;
    }

    /* Brand */
    .footer-brand {}

    .footer-logo {
      font-family: var(--ff-ui);
      font-size: 20px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #fff;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 14px;
    }

    .footer-logo span {
      color: var(--accent);
      font-size: 24px;
    }

    .footer-tagline {
      font-family: var(--ff-head);
      font-size: 1.05rem;
      font-style: italic;
      font-weight: 300;
      color: rgba(221, 216, 205, 0.45);
      line-height: 1.6;
      max-width: 260px;
    }

    /* Nav links — center */
    .footer-nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .footer-nav-label {
      font-family: var(--ff-ui);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 4px;
    }

    .footer-nav a {
      font-family: var(--ff-ui);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color .2s;
      position: relative;
    }

    .footer-nav a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s cubic-bezier(.16, 1, .3, 1);
    }

    .footer-nav a:hover {
      color: var(--text);
    }

    .footer-nav a:hover::after {
      transform: scaleX(1);
    }

    /* Socials — right */
    .footer-social {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 16px;
    }

    .footer-social-label {
      font-family: var(--ff-ui);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .social-links {
      display: flex;
      gap: 10px;
    }

    .social-link {
      width: 38px;
      height: 38px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      text-decoration: none;
      transition: border-color .25s, color .25s, background .25s, transform .25s;
    }

    .social-link:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(198, 255, 0, 0.06);
      transform: translateY(-3px);
    }

    .social-link svg {
      width: 15px;
      height: 15px;
    }

    /* Newsletter micro */
    .footer-newsletter {
      margin-top: 6px;
      display: flex;
      align-items: center;
    }

    .footer-newsletter input {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-right: none;
      color: var(--text);
      font-family: var(--ff-ui);
      font-size: 11px;
      padding: 9px 14px;
      outline: none;
      width: 190px;
      transition: border-color .25s;
    }

    .footer-newsletter input::placeholder {
      color: rgba(107, 107, 107, 0.5);
    }

    .footer-newsletter input:focus {
      border-color: rgba(198, 255, 0, 0.3);
    }

    .footer-newsletter button {
      background: var(--accent);
      border: none;
      color: var(--bg);
      font-family: var(--ff-ui);
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      padding: 9px 14px;
      cursor: pointer;
      transition: background .25s;
      white-space: nowrap;
    }

    .footer-newsletter button:hover {
      background: #fff;
    }

    /* ── Bottom row ── */
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      position: relative;
    }

    .footer-copy {
      font-family: var(--ff-ui);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .1em;
      color: rgba(107, 107, 107, 0.6);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-copy .copy-sep {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: rgba(107, 107, 107, 0.4);
      flex-shrink: 0;
    }

    .footer-copy a {
      color: rgba(198, 255, 0, 0.5);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-copy a:hover {
      color: var(--accent);
    }

    .footer-legal {
      display: flex;
      gap: 24px;
    }

    .footer-legal a {
      font-family: var(--ff-ui);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(107, 107, 107, 0.45);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-legal a:hover {
      color: var(--muted);
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .footer-top {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }

      .footer-nav {
        align-items: flex-start;
      }

      .footer-social {
        align-items: flex-start;
      }
    }

    @media (max-width: 600px) {
      .footer-top {
        grid-template-columns: 1fr;
      }

      .footer-social {
        align-items: flex-start;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }

      .footer-newsletter input {
        width: 160px;
      }

      #site-footer {
        padding: 48px 5vw 32px;
      }
    }