  :root {
    --navy:       #0c1a2e;
    --navy-mid:   #162540;
    --navy-light: #1e3355;
    --gold:       #b89a5a;
    --gold-light: #d4b87a;
    --gold-pale:  rgba(184,154,90,0.10);
    --cream:      #f5f0e8;
    --warm-white: #faf8f4;
    --text-dark:  #1a1a2e;
    --text-muted: #5a6475;
    --border:     rgba(184,154,90,0.20);
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--warm-white);
    color: var(--text-dark);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--navy); }
  ::-webkit-scrollbar-thumb { background: var(--gold); }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4rem;
    background: rgba(12,26,46,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(184,154,90,0.18);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    font-weight: 400;
    text-decoration: none;
  }
  .nav-logo span { font-style: italic; font-weight: 300; color: rgba(212,184,122,0.7); }
  .nav-links { display: flex; gap: 2.5rem; align-items: center; }
  .nav-links a {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.65);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 400;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--gold-light); }
  .nav-cta {
    padding: 0.55rem 1.4rem;
    border: 1px solid rgba(184,154,90,0.5);
    color: var(--gold-light) !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.15em !important;
    background: rgba(184,154,90,0.12);
  }

  /* ── PAGE HEADER ── */
  .page-header {
    background: var(--navy);
    padding: 9rem 5rem 5rem;
    position: relative;
    overflow: hidden;
  }
  .page-header::before {
    content: 'CONTACT';
    position: absolute;
    right: -1rem; bottom: -2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 11rem;
    font-weight: 300;
    color: rgba(184,154,90,0.04);
    letter-spacing: 0.3em;
    pointer-events: none;
    white-space: nowrap;
  }
  .page-header-glow {
    position: absolute;
    top: -200px; left: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(184,154,90,0.05) 0%, transparent 65%);
    pointer-events: none;
  }
  .header-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  .header-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
  .page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.1;
    position: relative;
    z-index: 1;
  }
  .page-header h1 em {
    font-style: italic;
    color: var(--gold-light);
  }
  .page-header-sub {
    font-size: 0.9rem;
    color: rgba(245,240,232,0.45);
    margin-top: 1rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
  }

  /* ── BREADCRUMB ── */
  .breadcrumb {
    background: var(--navy-mid);
    border-bottom: 1px solid rgba(184,154,90,0.12);
    padding: 0.9rem 5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .breadcrumb a, .breadcrumb span {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.35);
    text-decoration: none;
    transition: color 0.3s;
  }
  .breadcrumb a:hover { color: var(--gold-light); }
  .breadcrumb .sep { color: rgba(184,154,90,0.3); font-size: 0.6rem; }
  .breadcrumb .current { color: var(--gold); }

  /* ── MAIN LAYOUT ── */
  .contact-main {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: calc(100vh - 300px);
  }

  /* ── LEFT PANEL ── */
  .contact-left {
    background: var(--cream);
    padding: 5rem;
    border-right: 1px solid var(--border);
  }
  .cl-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .cl-eyebrow::after { content: ''; flex: 0 0 30px; height: 1px; background: var(--gold); opacity: 0.5; }
  .cl-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }
  .cl-desc {
    font-size: 0.86rem;
    line-height: 1.95;
    color: var(--text-muted);
    margin-bottom: 3rem;
    border-left: 2px solid var(--border);
    padding-left: 1.2rem;
  }

  .info-block {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 3rem;
  }
  .info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s;
  }
  .info-item:first-child { border-top: 1px solid var(--border); }
  .info-icon {
    width: 42px; height: 42px;
    border: 1px solid var(--border);
    background: white;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s;
  }
  .info-item:hover .info-icon {
    background: var(--gold-pale);
    border-color: rgba(184,154,90,0.4);
  }
  .info-label {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
    font-weight: 400;
  }
  .info-val {
    font-size: 0.84rem;
    color: var(--text-dark);
    line-height: 1.7;
  }
  .info-val a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
  }
  .info-val a:hover { color: var(--gold); }

  .social-row {
    display: flex;
    gap: 0.8rem;
    margin-top: 2rem;
  }
  .social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.2rem;
    border: 1px solid var(--border);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 400;
  }
  .social-btn:hover {
    border-color: rgba(184,154,90,0.4);
    color: var(--navy);
    background: var(--gold-pale);
  }

  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    margin-top: 3rem;
  }
  .back-link:hover { color: var(--navy); }
  .back-link svg { width: 16px; height: 16px; }

  /* ── RIGHT PANEL — FORM ── */
  .contact-right {
    background: white;
    padding: 5rem;
    position: relative;
  }
  .form-header {
    margin-bottom: 3rem;
  }
  .form-header-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .form-header-eyebrow::after { content: ''; flex: 0 0 30px; height: 1px; background: var(--gold); opacity: 0.5; }
  .form-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }
  .form-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
  }

  /* ── FORM ELEMENTS ── */
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
  }
  .form-group label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
  }
  .form-group label .req {
    color: var(--gold);
    margin-left: 0.2rem;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(90,100,117,0.2);
    background: var(--warm-white);
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-dark);
    transition: all 0.25s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(184,154,90,0.07);
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(90,100,117,0.4);
    font-style: italic;
    font-size: 0.82rem;
  }
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.7;
  }
  .form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23b89a5a' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
  }

  /* Honeypot */
  .ohnohoney { opacity: 0; position: absolute; top: 0; left: 0; height: 0; width: 0; z-index: -1; }

  .privacy-note {
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 1.2rem;
    background: var(--cream);
    border-left: 3px solid var(--border);
    margin-bottom: 2rem;
  }
  .privacy-note strong { color: var(--navy); font-weight: 500; }

  .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.8rem;
    background: var(--navy);
    color: var(--gold-light);
    border: 1px solid var(--navy);
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
  }
  .btn-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 0;
  }
  .btn-submit:hover::after { transform: translateX(0); }
  .btn-submit:hover { color: var(--navy); border-color: var(--gold); }
  .btn-submit span { position: relative; z-index: 1; }
  .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  .btn-submit:disabled::after { display: none; }

  /* ── STATUS MESSAGES ── */
  .status-msg {
    display: none;
    padding: 1.2rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.84rem;
    line-height: 1.7;
    border-left: 3px solid;
    animation: fadeUp 0.4s ease both;
  }
  .status-msg.success {
    display: block;
    background: rgba(34,100,60,0.06);
    border-color: #3a8a5c;
    color: #1e5c3a;
  }
  .status-msg.error {
    display: block;
    background: rgba(180,30,30,0.05);
    border-color: #c0392b;
    color: #8b1a1a;
  }
  .status-msg .status-icon { font-size: 1.1rem; margin-right: 0.5rem; }

  /* Loading spinner */
  .spinner {
    width: 16px; height: 16px;
    border: 2px solid rgba(184,154,90,0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: none;
  }
  @keyframes spin { to { transform: rotate(360deg); } }
  .btn-submit.loading .spinner { display: block; }
  .btn-submit.loading .btn-text { opacity: 0.7; }

  /* ── DIVIDER LINE ── */
  .form-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 2rem 0;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    border-top: 1px solid rgba(184,154,90,0.15);
    padding: 2.5rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
  }
  .footer-logo span { font-style: italic; font-weight: 300; }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.35);
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover { color: var(--gold-light); }
  .footer-copy {
    font-size: 0.68rem;
    color: rgba(245,240,232,0.25);
    letter-spacing: 0.1em;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav { padding: 1.1rem 2rem; }
    .page-header { padding: 8rem 2.5rem 4rem; }
    .breadcrumb { padding: 0.9rem 2.5rem; }
    .contact-main { grid-template-columns: 1fr; }
    .contact-left { border-right: none; border-bottom: 1px solid var(--border); padding: 4rem 2.5rem; }
    .contact-right { padding: 4rem 2.5rem; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .page-header { padding: 7rem 1.5rem 3rem; }
    .breadcrumb { padding: 0.9rem 1.5rem; }
    .contact-left { padding: 3rem 1.5rem; }
    .contact-right { padding: 3rem 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.5rem; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }
