 *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --w: #FFFFFF;
      --b: #F5F1E8;
      --bm: #EDE8DA;
      --blk: #0A0A0A;
      --ch: #2B2B2B;
      --mt: #6B6560;
      --ml: #9B948C;
      --g: #D4AF37;
      --gl: #C8A97E;
      --gp: #F0E6C8;
      --gg: rgba(212, 175, 55, 0.18);
      --br: rgba(43, 35, 20, 0.09);
      --brs: rgba(43, 35, 20, 0.16);
      --font: 'Geist', sans-serif;
      --ser: 'Instrument Serif', serif;
      --mono: 'Geist Mono', monospace;
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--w);
      color: var(--blk);
      font-family: var(--font);
      font-weight: 400;
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
    }

    ::-webkit-scrollbar {
      width: 3px;
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gl);
      border-radius: 2px;
    }

    /* ── PROGRESS ── */
    #pb {
      position: fixed;
      top: 0;
      left: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--gl), var(--g));
      z-index: 200;
      width: 0;
      transform-origin: left;
    }

    /* ── HEADER ── */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 0 56px;
      height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.5s var(--ease);
      border-bottom: 1px solid transparent;
    }

    header.s {
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-color: var(--br);
    }

    .logo {
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0.2em;
      color: var(--blk);
      text-decoration: none;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .ldot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--g);
      animation: pdot 2.5s ease-in-out infinite;
    }

    @keyframes pdot {

      0%,
      100% {
        transform: scale(1);
        opacity: 1
      }

      50% {
        transform: scale(1.7);
        opacity: .6
      }
    }

    nav {
      display: flex;
      gap: 34px;
    }

    nav a {
      font-size: 13px;
      font-weight: 400;
      color: var(--ch);
      text-decoration: none;
      letter-spacing: 0.02em;
      opacity: 0.72;
      transition: opacity 0.2s;
      position: relative;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      right: 0;
      height: 1px;
      background: var(--g);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }

    nav a:hover {
      opacity: 1;
    }

    nav a:hover::after {
      transform: scaleX(1);
    }

    nav a.active {
      opacity: 1;
    }

    nav a.active::after {
      transform: scaleX(1);
    }

    .hr {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .bg {
      font-size: 13px;
      color: var(--ch);
      text-decoration: none;
      opacity: 0.65;
      transition: opacity 0.2s;
    }

    .bg:hover {
      opacity: 1;
    }

    .btn-g {
      font-size: 13px;
      font-weight: 500;
      color: var(--blk);
      background: var(--gp);
      border: 1px solid rgba(212, 175, 55, 0.38);
      padding: 9px 20px;
      border-radius: 6px;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-g:hover {
      background: #eed89a;
      border-color: var(--g);
      transform: translateY(-1px);
    }

    /* ── HERO BAND ── */
    .contact-hero {
      padding: 160px 56px 80px;
      background: linear-gradient(165deg, #FDFBF7 0%, var(--b) 55%, #EAE0CA 100%);
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--br);
    }

    .contact-hero::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -100px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(212, 175, 55, 0.09) 0%, transparent 65%);
      pointer-events: none;
    }

    .contact-hero-inner {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: end;
    }

    .ch-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gl);
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp 0.9s 0.2s var(--ease) forwards;
    }

    .ch-line {
      width: 28px;
      height: 1px;
      background: var(--gl);
      animation: gl 0.8s 0.5s ease forwards;
      transform: scaleX(0);
      transform-origin: left;
    }

    @keyframes gl {
      to {
        transform: scaleX(1);
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(18px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    h1.ch-h1 {
      font-size: clamp(46px, 5.5vw, 80px);
      font-weight: 600;
      line-height: 1.04;
      letter-spacing: -0.038em;
      color: var(--blk);
      margin-bottom: 24px;
      opacity: 0;
      animation: fadeUp 1s 0.35s var(--ease) forwards;
    }

    h1.ch-h1 em {
      font-style: italic;
      font-family: var(--ser);
      font-weight: 400;
      color: var(--ch);
    }

    .ch-sub {
      font-size: 17px;
      font-weight: 300;
      color: var(--mt);
      line-height: 1.7;
      max-width: 460px;
      opacity: 0;
      animation: fadeUp 1s 0.5s var(--ease) forwards;
    }

    .ch-right {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: flex-end;
      opacity: 0;
      animation: fadeUp 1s 0.45s var(--ease) forwards;
    }

    .ch-stat {
      background: var(--w);
      border: 1px solid var(--brs);
      border-radius: 12px;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      gap: 16px;
      box-shadow: 0 8px 32px rgba(20, 15, 5, 0.07);
      transition: transform 0.3s var(--ease), box-shadow 0.3s;
    }

    .ch-stat:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 48px rgba(20, 15, 5, 0.10);
    }

    .ch-stat-icon {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      background: var(--gp);
      border: 1px solid rgba(212, 175, 55, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
    }

    .ch-stat-val {
      font-size: 20px;
      font-weight: 700;
      color: var(--blk);
      letter-spacing: -0.02em;
    }

    .ch-stat-lbl {
      font-size: 12px;
      font-weight: 300;
      color: var(--mt);
    }

    /* ── MAIN CONTACT LAYOUT ── */
    .contact-main {
      max-width: 1300px;
      margin: 0 auto;
      padding: 100px 56px 120px;
      display: grid;
      grid-template-columns: 5fr 4fr;
      gap: 80px;
      align-items: start;
    }

    /* ── FORM ── */
    .form-wrap {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    }

    .form-wrap.v {
      opacity: 1;
      transform: translateY(0);
    }

    .form-section-title {
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: var(--blk);
      margin-bottom: 8px;
    }

    .form-section-sub {
      font-size: 14px;
      font-weight: 300;
      color: var(--mt);
      line-height: 1.6;
      margin-bottom: 44px;
    }

    /* Type selector */
    .type-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 36px;
      background: var(--b);
      border: 1px solid var(--br);
      border-radius: 10px;
      padding: 5px;
    }

    .type-tab {
      flex: 1;
      padding: 9px 16px;
      border-radius: 7px;
      border: none;
      background: transparent;
      font-family: var(--font);
      font-size: 13px;
      font-weight: 400;
      color: var(--mt);
      cursor: pointer;
      transition: all 0.25s var(--ease);
      letter-spacing: 0.01em;
    }

    .type-tab.active {
      background: var(--w);
      color: var(--blk);
      font-weight: 500;
      box-shadow: 0 2px 8px rgba(20, 15, 5, 0.08);
    }

    .type-tab:hover:not(.active) {
      color: var(--ch);
    }

    /* Field groups */
    .field-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .field {
      margin-bottom: 20px;
    }

    .field label {
      display: block;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--mt);
      margin-bottom: 8px;
    }

    .field input,
    .field textarea,
    .field select {
      width: 100%;
      background: var(--w);
      border: 1px solid var(--brs);
      border-radius: 8px;
      padding: 13px 16px;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 300;
      color: var(--blk);
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
      -webkit-appearance: none;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: var(--ml);
    }

    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      border-color: var(--g);
      box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
    }

    .field textarea {
      resize: vertical;
      min-height: 130px;
      line-height: 1.6;
    }

    .field select {
      background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239B948C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 40px;
      cursor: pointer;
    }

    .field select option {
      background: var(--w);
      color: var(--blk);
    }

    /* Company size pills */
    .pill-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .pill {
      padding: 7px 16px;
      border-radius: 100px;
      border: 1px solid var(--brs);
      background: var(--w);
      font-size: 12px;
      font-weight: 400;
      color: var(--mt);
      cursor: pointer;
      transition: all 0.2s;
      user-select: none;
    }

    .pill:hover {
      border-color: rgba(212, 175, 55, 0.45);
      color: var(--ch);
    }

    .pill.active {
      background: var(--gp);
      border-color: rgba(212, 175, 55, 0.5);
      color: var(--blk);
      font-weight: 500;
    }

    /* Submit */
    .submit-row {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 32px;
    }

    .btn-submit {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 500;
      color: var(--w);
      background: var(--blk);
      padding: 15px 32px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      letter-spacing: 0.01em;
      transition: all 0.25s var(--ease);
      position: relative;
      overflow: hidden;
    }

    .btn-submit::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, transparent 60%);
      pointer-events: none;
    }

    .btn-submit:hover {
      background: var(--ch);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(10, 10, 10, 0.22);
    }

    .btn-submit svg {
      transition: transform 0.2s;
    }

    .btn-submit:hover svg {
      transform: translateX(3px);
    }

    .btn-submit.loading {
      pointer-events: none;
    }

    .btn-submit.loading .btn-text {
      opacity: 0;
    }

    .btn-submit.loading .btn-loader {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .btn-loader {
      display: none;
    }

    .btn-submit.loading .btn-loader {
      display: block;
    }

    .submit-note {
      font-size: 12px;
      font-weight: 300;
      color: var(--ml);
      line-height: 1.55;
    }

    .submit-note a {
      color: var(--gl);
      text-decoration: none;
    }

    .submit-note a:hover {
      text-decoration: underline;
    }

    /* Success state */
    .success-msg {
      display: none;
      text-align: center;
      padding: 64px 32px;
      background: var(--b);
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 14px;
    }

    .success-msg.show {
      display: block;
    }

    .success-icon {
      font-size: 40px;
      margin-bottom: 20px;
    }

    .success-msg h3 {
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }

    .success-msg p {
      font-size: 15px;
      font-weight: 300;
      color: var(--mt);
      line-height: 1.65;
    }

    /* ── SIDEBAR ── */
    .sidebar {
      display: flex;
      flex-direction: column;
      gap: 24px;
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.8s 0.15s var(--ease), transform 0.8s 0.15s var(--ease);
    }

    .sidebar.v {
      opacity: 1;
      transform: translateY(0);
    }

    /* Contact cards */
    .contact-card {
      border: 1px solid var(--br);
      border-radius: 14px;
      padding: 28px;
      background: var(--w);
      position: relative;
      overflow: hidden;
      transition: all 0.3s var(--ease);
      cursor: default;
    }

    .contact-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, var(--gg) 0%, transparent 65%);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .contact-card:hover {
      border-color: rgba(212, 175, 55, 0.3);
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(20, 15, 5, 0.08);
    }

    .contact-card:hover::before {
      opacity: 1;
    }

    .cc-icon {
      width: 42px;
      height: 42px;
      border-radius: 11px;
      background: var(--gp);
      border: 1px solid rgba(212, 175, 55, 0.22);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    .cc-icon svg {
      width: 18px;
      height: 18px;
      color: var(--g);
    }

    .cc-title {
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--blk);
      margin-bottom: 6px;
    }

    .cc-desc {
      font-size: 13px;
      font-weight: 300;
      color: var(--mt);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .cc-link {
      font-size: 13px;
      font-weight: 500;
      color: var(--blk);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }

    .cc-link:hover {
      gap: 10px;
    }

    .cc-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(90, 158, 110, 0.1);
      border: 1px solid rgba(90, 158, 110, 0.25);
      border-radius: 100px;
      padding: 4px 12px;
      font-size: 11px;
      font-weight: 500;
      color: #5a9e6e;
    }

    .cc-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #5a9e6e;
      animation: statusPulse 2s ease-in-out infinite;
    }

    @keyframes statusPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: 0.5;
        transform: scale(0.8)
      }
    }

    /* Office card */
    .office-card {
      border: 1px solid var(--br);
      border-radius: 14px;
      overflow: hidden;
      background: var(--w);
      transition: all 0.3s var(--ease);
    }

    .office-card:hover {
      border-color: rgba(212, 175, 55, 0.3);
      transform: translateY(-3px);
      box-shadow: 0 16px 48px rgba(20, 15, 5, 0.08);
    }

    .office-img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      display: block;
    }

    .office-body {
      padding: 22px;
    }

    .office-city {
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -0.01em;
      margin-bottom: 6px;
    }

    .office-addr {
      font-size: 13px;
      font-weight: 300;
      color: var(--mt);
      line-height: 1.65;
    }

    .office-tags {
      display: flex;
      gap: 6px;
      margin-top: 12px;
      flex-wrap: wrap;
    }

    .office-tag {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 4px;
      background: var(--b);
      border: 1px solid var(--br);
      color: var(--ml);
    }

    .office-tag.hq {
      background: var(--gp);
      border-color: rgba(212, 175, 55, 0.25);
      color: var(--ch);
    }

    /* Social row */
    .social-row {
      display: flex;
      gap: 10px;
    }

    .social-btn {
      width: 40px;
      height: 40px;
      border-radius: 9px;
      border: 1px solid var(--brs);
      background: var(--w);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--mt);
      text-decoration: none;
      transition: all 0.2s var(--ease);
    }

    .social-btn:hover {
      border-color: rgba(212, 175, 55, 0.4);
      color: var(--blk);
      transform: translateY(-2px);
      background: var(--gp);
    }

    .social-btn svg {
      width: 16px;
      height: 16px;
    }

    /* ── BOTTOM BAND ── */
    .bottom-band {
      background: var(--b);
      border-top: 1px solid var(--br);
      border-bottom: 1px solid var(--br);
      padding: 80px 56px;
    }

    .bb-inner {
      max-width: 1300px;
      margin: 0 auto;
    }

    .bb-title {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gl);
      margin-bottom: 48px;
    }

    .bb-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--brs);
      border: 1px solid var(--brs);
      border-radius: 14px;
      overflow: hidden;
    }

    .bb-item {
      background: var(--w);
      padding: 36px 32px;
      transition: background 0.25s;
      cursor: default;
    }

    .bb-item:hover {
      background: #fdfaf4;
    }

    .bb-num {
      font-size: 32px;
      font-weight: 700;
      letter-spacing: -0.04em;
      color: var(--blk);
      margin-bottom: 8px;
    }

    .bb-num .u {
      font-size: 0.55em;
      font-weight: 400;
      color: var(--g);
    }

    .bb-label {
      font-size: 13px;
      font-weight: 300;
      color: var(--mt);
      line-height: 1.55;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--blk);
      padding: 80px 56px 56px;
    }

    .ftop {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 72px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .flw {
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--w);
      display: flex;
      align-items: center;
      gap: 5px;
      margin-bottom: 18px;
    }

    .fld {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--g);
    }

    .fab {
      font-size: 13px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.38);
      line-height: 1.75;
      max-width: 280px;
    }

    .fct {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 20px;
    }

    .flinks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 13px;
    }

    .flinks a {
      font-size: 13.5px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      transition: color 0.2s;
    }

    .flinks a:hover {
      color: rgba(255, 255, 255, 0.85);
    }

    .fbot {
      padding-top: 56px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
    }

    .fwm {
      font-size: clamp(56px, 10vw, 140px);
      font-weight: 700;
      letter-spacing: -0.04em;
      color: rgba(255, 255, 255, 0.04);
      line-height: 1;
      user-select: none;
    }

    .fleg {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.22);
      text-align: right;
      line-height: 1.9;
    }

    /* ── UTILITIES ── */
    .fu {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    }

    .fu.v {
      opacity: 1;
      transform: translateY(0);
    }

    .fu.d1 {
      transition-delay: .1s
    }

    .fu.d2 {
      transition-delay: .2s
    }

    .fu.d3 {
      transition-delay: .3s
    }

    /* ── RESPONSIVE ── */
    @media(max-width:1024px) {
      .contact-hero-inner {
        grid-template-columns: 1fr;
      }

      .ch-right {
        display: none;
      }

      .contact-main {
        grid-template-columns: 1fr;
        gap: 56px;
      }

      .ftop {
        grid-template-columns: 1fr 1fr;
      }

      nav {
        display: none;
      }

      .bb-grid {
        grid-template-columns: 1fr;
      }
    }

    @media(max-width:640px) {

      header,
      .contact-hero,
      .contact-main,
      .bottom-band,
      footer {
        padding-left: 24px !important;
        padding-right: 24px !important;
      }

      .field-row {
        grid-template-columns: 1fr;
      }

      .ftop {
        grid-template-columns: 1fr;
      }

      .fwm {
        font-size: 48px;
      }

      .type-tabs {
        flex-wrap: wrap;
      }

      .ch-h1 {
        font-size: 40px;
      }
    }
  