  .contact-hero {
    padding: 140px 0 var(--space-xl);
    background: var(--brand-navy);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .contact-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  }
  .contact-hero .container { position: relative; z-index: 1; }
  .contact-hero .page-hero-path {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--space-lg);
    font-family: var(--font-display);
  }
  .contact-hero .current { color: var(--brand-red); }
  .contact-hero h1 {
    font-size: clamp(48px, 7vw, 96px);
    color: white;
    letter-spacing: -0.035em;
    font-weight: 800;
    max-width: 900px;
  }
  .contact-hero h1 .accent { color: var(--brand-red); font-style: italic; font-weight: 600; }
  .contact-hero .lede {
    color: rgba(255,255,255,0.7);
    font-size: 20px;
    max-width: 600px;
    margin-top: var(--space-md);
    line-height: 1.55;
  }

  /* Contact layout */
  .contact-main {
    padding: var(--space-2xl) 0 var(--space-3xl);
    background: white;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--space-2xl);
  }

  /* FORM */
  .form-wrap {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: var(--space-2xl);
  }
  .form-head {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--line);
  }
  .form-head h2 {
    font-size: 32px;
    color: var(--brand-navy);
    margin-bottom: 8px;
  }
  .form-head p {
    color: var(--ink-3);
    font-size: 15px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
  }
  .form-row.single { grid-template-columns: 1fr; }
  .field {
    display: flex;
    flex-direction: column;
  }
  .field label {
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-3);
    margin-bottom: 8px;
    font-weight: 600;
  }
  .field label .req { color: var(--brand-red); }
  .field input,
  .field select,
  .field textarea {
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: white;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    border-radius: 10px;
    transition: all .2s;
    outline: none;
  }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    border-color: var(--brand-navy);
    box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.1);
  }
  .field textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-body);
  }

  .product-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .chip-check {
    position: relative;
  }
  .chip-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .chip-check label {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-2);
    cursor: pointer;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
    transition: all .15s;
  }
  .chip-check label:hover { border-color: var(--brand-navy); }
  .chip-check input:checked + label {
    background: var(--brand-navy);
    color: white;
    border-color: var(--brand-navy);
  }

  .form-submit {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
  }
  .form-submit p {
    font-size: 12px;
    color: var(--ink-3);
    max-width: 360px;
  }

  /* Loading spinner for submit button */
  .btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin .6s linear infinite;
  }
  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  /* Field error state */
  .field input:invalid:not(:placeholder-shown),
  .field select:invalid:not([value=""]) {
    border-color: var(--brand-red);
  }
  .field input:valid:not(:placeholder-shown) {
    border-color: var(--brand-green);
  }

  .form-success {
    display: none;
    padding: var(--space-2xl);
    text-align: center;
    background: var(--bg-2);
    border: 1px solid var(--brand-green);
  }
  .form-success.show { display: block; }
  .form-success h3 {
    color: var(--brand-green-deep);
    font-size: 28px;
    margin-bottom: 10px;
  }
  .form-success p {
    color: var(--ink-2);
    font-size: 16px;
  }
  .success-icon {
    width: 64px; height: 64px;
    background: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
  }

  /* SIDE */
  .contact-side {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }
  .contact-card {
    padding: var(--space-xl);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--bg-2);
  }
  .contact-card.dark {
    background: var(--brand-navy);
    color: white;
    border: none;
  }
  .contact-card .eyebrow { margin-bottom: var(--space-sm); }
  .contact-card.dark .eyebrow { color: var(--brand-red); }
  .contact-card h3 {
    font-size: 22px;
    color: var(--brand-navy);
    margin-bottom: var(--space-md);
  }
  .contact-card.dark h3 { color: white; }
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .contact-card.dark .contact-item { border-bottom-color: rgba(255,255,255,0.1); }
  .contact-item:last-child { border-bottom: none; }
  .contact-item-icon {
    width: 40px; height: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .contact-card.dark .contact-item-icon { background: rgba(255,255,255,0.1); }
  .contact-item-icon svg {
    width: 18px; height: 18px;
    color: var(--brand-navy);
  }
  .contact-card.dark .contact-item-icon svg { color: white; }
  .contact-item-icon.wa { background: var(--brand-green); }
  .contact-item-icon.wa svg { color: white; }
  .contact-item-info .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-3);
    margin-bottom: 2px;
    font-family: var(--font-display);
  }
  .contact-card.dark .contact-item-info .label { color: rgba(255,255,255,0.5); }
  .contact-item-info .value {
    font-size: 16px;
    font-weight: 500;
    color: var(--brand-navy);
  }
  .contact-card.dark .contact-item-info .value { color: white; }
  .contact-item-info a:hover { color: var(--brand-red); }

  .hours-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 20px;
    margin-top: var(--space-sm);
  }
  .hours-grid dt {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--ink-3);
    font-weight: 500;
  }
  .contact-card.dark .hours-grid dt { color: rgba(255,255,255,0.6); }
  .hours-grid dd {
    font-family: ui-monospace, monospace;
    font-size: 13px;
    color: var(--brand-navy);
    font-weight: 600;
  }
  .contact-card.dark .hours-grid dd { color: white; }

  /* MAP */
  .map-section {
    padding: 0 0 var(--space-3xl);
    background: white;
  }
  .map-wrap {
    aspect-ratio: 16/8;
    background: var(--brand-navy);
    position: relative;
    overflow: hidden;
  }
  .map-wrap iframe,
  .map-mock {
    width: 100%; height: 100%;
    border: none;
  }
  .map-mock {
    background:
      radial-gradient(circle at 30% 50%, rgba(100, 170, 255, 0.15), transparent 50%),
      linear-gradient(180deg, #e8e6df 0%, #d7d3c6 100%);
    position: relative;
  }
  .map-mock::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, black, rgba(0,0,0,0.7));
  }
  .map-roads {
    position: absolute; inset: 0;
  }
  .map-roads svg { width: 100%; height: 100%; }
  .map-pin {
    position: absolute;
    top: 45%; left: 52%;
    transform: translate(-50%, -100%);
    z-index: 3;
  }
  .pin-card {
    background: white;
    padding: 14px 18px;
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.3);
    min-width: 240px;
    position: relative;
    font-family: var(--font-display);
  }
  .pin-card::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
  }
  .pin-card .label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-red);
    margin-bottom: 4px;
    font-weight: 700;
  }
  .pin-card .name {
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 2px;
  }
  .pin-card .addr {
    font-size: 12px;
    color: var(--ink-3);
  }
  .pin-dot {
    width: 22px; height: 22px;
    background: var(--brand-red);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 6px 16px rgba(212, 46, 46, 0.4);
    margin: 12px auto 0;
    position: relative;
  }
  .pin-dot::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: rgba(212, 46, 46, 0.3);
    animation: pulse 2s infinite;
    z-index: -1;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.4); opacity: 0; }
  }

  @media (max-width: 900px) {
    .contact-hero { padding: 120px 0 var(--space-xl); }
    .contact-hero h1 { font-size: clamp(36px, 9vw, 56px); }
    .contact-hero-inner { grid-template-columns: 1fr; gap: var(--space-lg); }
    .contact-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .form-row { grid-template-columns: 1fr; gap: var(--space-md); }
    .form-wrap { padding: var(--space-lg); }
    .contact-info-wrap { padding: var(--space-lg); }
    .field input, .field textarea, .field select {
      font-size: 16px !important; /* prevent iOS zoom */
    }
    .map-section { padding: var(--space-2xl) 0; }
  }

  @media (max-width: 640px) {
    .contact-hero h1 { font-size: clamp(30px, 10vw, 42px); }
    .form-wrap { padding: var(--space-md); }
    .form-wrap h2 { font-size: 24px; }
    .contact-item { padding: var(--space-md) 0; }
    .contact-item .icon { width: 36px; height: 36px; }
  }
