*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    :root {
      --white: #ffffff;
      --black: #000000;
      --grey: rgba(255,255,255,0.45);
      --line: rgba(255,255,255,0.15);
      --font: 'Orbitron', sans-serif;
    }
 
    ::selection { background: #fff; color: #000; }
 
    html, body {
      height: 100%;
      background: var(--black);
      color: var(--white);
      font-family: var(--font);
      overflow-x: hidden;
    }
 
    /* ── NAVBAR ── */
    .navbar {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 64px;
      z-index: 990;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      background: rgba(0,0,0,0.85);
      backdrop-filter: blur(10px);
      transition: transform 0.45s cubic-bezier(.22,1,.36,1), opacity 0.3s ease;
    }
    .navbar.hidden { transform: translateY(-120%); opacity: 0; }
 
    .dropdown-button {
      background: transparent;
      border: none;
      padding: 16px;
      cursor: pointer;
      z-index: 10000;
    }
    .menu-icon { display: flex; flex-direction: column; justify-content: space-around; width: 30px; height: 20px; }
    .bar { height: 2.3px; width: 100%; background: var(--white); }
 
    .toplogo img { height: 40px; width: auto; display: block; justify-self: center; }
    .nav-actions { justify-self: end; padding-right: 40px; }
 
    /* ── OVERLAY MENU ── */
    .overlay {
      position: fixed; top: 0; left: 0;
      width: 100%; height: 0;
      background: var(--black);
      overflow: hidden;
      transition: height 0.5s ease;
      z-index: 1000;
    }
    .overlay-content {
      position: relative; top: 15%;
      text-align: center;
      display: flex; flex-direction: column;
      padding: 16px; gap: 0;
    }
    .overlay-content a {
      position: relative;
      font-size: 4em;
      color: var(--white);
      padding: 30px 20px;
      text-decoration: none;
      overflow: hidden;
      display: inline-block;
      transition: color 0.4s ease;
    }
    .overlay-content a::before {
      content: "";
      position: absolute; top: 0; left: 50%;
      width: 100%; height: 100%;
      background: var(--white);
      transform: translateX(-50%) scaleX(0);
      transform-origin: center;
      transition: transform 0.4s ease;
      z-index: -1;
    }
    .overlay-content a:hover::before { transform: translateX(-50%) scaleX(1); }
    .overlay-content a:hover { color: var(--black); }
    .closebtn {
      position: absolute; top: 20px; right: 40px;
      font-size: 3em; text-decoration: none; color: var(--white);
    }
 
    /* ── PAGE LAYOUT ── */
    .page-wrapper {
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      padding-top: 64px;
    }
 
    .contact-main {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      padding: 80px 60px;
      align-items: start;
    }
 
    /* ── LEFT PANEL ── */
    .contact-left {
      padding-right: 60px;
      padding-top: 20px;
      border-right: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
 
    .contact-label {
      font-size: 11px;
      letter-spacing: 0.3em;
      color: var(--grey);
      text-transform: uppercase;
    }
 
    .contact-heading {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 600;
      line-height: 1.05;
      letter-spacing: 0.04em;
    }
 
    .contact-heading span {
      display: block;
      color: var(--grey);
      font-weight: 400;
    }
 
    .contact-disclaimer {
      font-size: 12px;
      line-height: 1.9;
      color: var(--grey);
      letter-spacing: 0.06em;
      border-left: 1px solid var(--line);
      padding-left: 20px;
    }
 
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
 
    .contact-info-item {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
 
    .contact-info-label {
      font-size: 9px;
      letter-spacing: 0.3em;
      color: var(--grey);
    }
 
    .contact-info-value {
      font-size: 13px;
      letter-spacing: 0.1em;
      color: var(--white);
    }
 
    /* ── RIGHT PANEL / FORM ── */
    .contact-right {
      padding-left: 60px;
      padding-top: 20px;
    }
 
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
 
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
 
    .field {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding-bottom: 32px;
      border-bottom: 1px solid var(--line);
      margin-bottom: 32px;
    }
 
    .field:last-of-type {
      border-bottom: none;
      margin-bottom: 0;
    }
 
    .field label {
      font-size: 9px;
      letter-spacing: 0.3em;
      color: var(--grey);
      font-weight: 400;
      text-transform: uppercase;
    }
 
    .field input,
    .field textarea {
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(255,255,255,0.3);
      color: var(--white);
      font-family: var(--font);
      font-size: 14px;
      letter-spacing: 0.08em;
      padding: 10px 0;
      width: 100%;
      outline: none;
      transition: border-color 0.3s ease;
      resize: none;
    }
 
    .field input:focus,
    .field textarea:focus {
      border-bottom-color: var(--white);
    }
 
    .field input::placeholder,
    .field textarea::placeholder {
      color: rgba(255,255,255,0.2);
      font-family: var(--font);
      font-size: 12px;
    }
 
    /* ── SUBMIT ── */
    .submit-row {
      display: flex;
      align-items: center;
      gap: 24px;
      padding-top: 8px;
    }
 
    .submit-btn {
      font-family: var(--font);
      font-size: 11px;
      letter-spacing: 0.2em;
      color: var(--white);
      background: transparent;
      border: 1px solid var(--white);
      padding: 16px 36px;
      cursor: pointer;
      text-transform: uppercase;
      transition: background 0.4s ease, color 0.4s ease;
      white-space: nowrap;
    }
 
    .submit-btn:hover:not(:disabled) {
      background: var(--white);
      color: var(--black);
    }
 
    .submit-btn:disabled {
      opacity: 0.4;
      cursor: not-allowed;
    }
 
    #status-msg {
      display: none;
      font-size: 11px;
      letter-spacing: 0.1em;
      line-height: 1.6;
    }
    #status-msg.success { color: #afffb0; }
    #status-msg.error   { color: #ffafaf; }
 
    /* ── FOOTER ── */
    .site-footer {
      background: var(--black);
      border-top: 1px solid var(--line);
      padding: 24px 60px;
    }
 
    .footer-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
    }
 
    .footer-content p {
      font-size: 10px;
      letter-spacing: 0.2em;
      color: var(--grey);
    }
 
    .footer-icons {
      display: flex;
      gap: 20px;
    }
 
    .footer-icons a {
      color: var(--grey);
      transition: color 0.2s ease, transform 0.2s ease;
      display: inline-flex;
    }
 
    .footer-icons a:hover {
      color: var(--white);
      transform: translateY(-2px);
    }
 
    .footer-icons svg { width: 20px; height: 20px; }

    .site-footer:hover .footer-content p {color: var(--white); transition: color 0.2s ease;}

 
    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    .contact-left  { animation: fadeUp 0.8s ease 0.1s both; }
    .contact-right { animation: fadeUp 0.8s ease 0.25s both; }
 
    /* ── MOBILE ── */
    @media (max-width: 768px) {
      .contact-main {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 48px;
      }
      .contact-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding-bottom: 48px;
        gap: 28px;
      }
      .contact-right { padding-left: 0; }
      .form-row { grid-template-columns: 1fr; gap: 0; }
      .overlay-content a { font-size: 2em; padding: 16px 20px; }
      .site-footer { padding: 24px; }
      .footer-content { flex-direction: row; gap: 16px; text-align: center; }
    }