     /* ── DESIGN SYSTEM TOKENS v2.0 ── */

    html {
      scroll-behavior: smooth;
    }

    /* PAGE LAYOUT */
    .contact-page {
      min-height: 100vh;
      padding: 140px 52px var(--sp-12);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-12);
      max-width: 1280px;
      margin: 0 auto;
      align-items: start;
    }

    /* LEFT — copy + illustration */

    .contact-eyebrow {
      font-family: 'Jost', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--ink-light);
      margin-bottom: var(--sp-3);
      opacity: 0;
      animation: fadeUp 0.7s 0.1s ease both;
    }

    .contact-title {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 400;
      line-height: 1.05;
      color: var(--ink);
      margin-bottom: var(--sp-3);
      opacity: 0;
      animation: fadeUp 0.7s 0.2s ease both;
    }

    .contact-title em {
      font-style: italic;
      color: var(--ink-mid);
    }

    .contact-desc {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 18px;
      font-style: italic;
      color: var(--ink-mid);
      line-height: 1.75;
      margin-bottom: var(--sp-2);
      opacity: 0;
      animation: fadeUp 0.7s 0.3s ease both;
    }

    .contact-email {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 15px;
      color: var(--ink-mid);
      margin-bottom: var(--sp-4);
      opacity: 0;
      animation: fadeUp 0.7s 0.35s ease both;
    }

    .contact-email a {
      color: var(--accent-rose);
      text-decoration: none;
      transition: color var(--t-micro);
    }

    .contact-email a:hover {
      color: var(--ink);
    }

    .contact-illus {
      opacity: 0;
      animation: fadeUp 0.7s 0.4s ease both;
    }

    .contact-illus img {
      width: 100%;
      max-width: 250px;
      object-fit: contain;
      display: block;
    }

    /* RIGHT — form */
    .contact-right {
      opacity: 0;
      animation: fadeUp 0.7s 0.3s ease both;
    }

    .contact-form {
      background: rgba(255, 255, 255, 0.5);
      border: 1px solid rgba(196, 191, 223, 0.5);
      padding: var(--sp-6);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--sp-3);
      margin-bottom: 0;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: var(--sp-3);
    }

    .form-group.full {
      grid-column: 1 / -1;
    }

    .form-label {
      font-family: 'Jost', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--ink-light);
      margin-bottom: 6px;
    }

    .req {
      color: var(--accent-rose);
    }

    .form-input,
    .form-textarea {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 17px;
      color: var(--ink);
      background: rgba(255, 255, 255, 0.7);
      border: 1px solid var(--lavender-deep);
      border-bottom: 2px solid var(--lavender-deep);
      padding: 11px 14px;
      outline: none;
      transition: border-color var(--t-micro), background var(--t-micro);
      width: 100%;
      line-height: 1.5;
      border-radius: 1px;
      appearance: none;
      -webkit-appearance: none;
    }

    .form-input::placeholder,
    .form-textarea::placeholder {
      color: var(--ink-light);
      font-style: italic;
    }

    .form-input:focus,
    .form-textarea:focus {
      border-color: var(--accent-gold);
      border-bottom-color: var(--accent-gold);
      background: var(--white);
      box-shadow: 0 2px 0 rgba(201, 151, 74, 0.2);
    }

    .form-textarea {
      resize: vertical;
      min-height: 140px;
    }

    /* Select — matches write.html convention */
    select.form-input {
      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 d='M1 1l5 5 5-5' stroke='%23C9974A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      background-color: rgba(255, 255, 255, 0.7);
      padding-right: 40px;
      cursor: pointer;
    }

    .form-submit {
      background: var(--warm-dark);
      color: var(--white);
      padding: 14px 36px;
      font-family: 'Jost', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      width: 100%;
      position: relative;
      overflow: hidden;
      transition: all var(--t-hover) ease;
      margin-top: var(--sp-2);
    }

    .form-submit::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--accent-rose);
      transform: translateX(-100%);
      transition: transform var(--t-hover) ease;
    }

    .form-submit:hover::before {
      transform: translateX(0);
    }

    .form-submit:focus-visible {
      outline: 2px solid var(--accent-gold);
      outline-offset: 3px;
    }

    .form-submit span {
      position: relative;
      z-index: 1;
    }

    /* Confirmation state */
    .form-sent {
      display: none;
      text-align: center;
      padding: var(--sp-6) var(--sp-4);
    }

    .form-sent.visible {
      display: block;
    }

    .form-sent-icon {
      display: block;
      margin: 0 auto var(--sp-3);
      width: 60px;
      height: auto;
    }

    .form-sent-title {
      font-family: 'DM Serif Display', serif;
      font-size: 28px;
      font-weight: 400;
      color: var(--ink);
      line-height: 1.2;
      margin-bottom: var(--sp-2);
    }

    .form-sent-title em {
      font-style: italic;
    }

    .form-sent-body {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-style: italic;
      color: var(--ink-mid);
      line-height: 1.75;
    }

    .hidden { display: none; }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(16px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    
    /* CHECKBOX + CONSENT — contact form opt-in and privacy notice */
    .contact-checkbox-group {
      margin-bottom: var(--sp-3);
    }

    .contact-checkbox-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .contact-checkbox-item input[type="checkbox"] {
      width: 15px;
      height: 15px;
      flex-shrink: 0;
      margin-top: 3px;
      accent-color: var(--ink);
      cursor: pointer;
    }

    .contact-checkbox-item label {
     /* font-family: 'Jost', sans-serif;*/
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 16px;
      font-weight: 500;
      /*letter-spacing: 2px;
     text-transform: uppercase;*/
      color: var(--ink-light);
      line-height: 1.75;
      cursor: pointer;
    }

    .contact-checkbox-item label .opt {
      font-size: 14px;
      color: var(--accent-gold);
      font-style: italic;
      letter-spacing: 0;
      text-transform: none;
      margin-left: 4px;
    }

    .contact-consent-note {
      font-family: 'Cormorant Garamond', Georgia, serif;
      font-size: 14px;
      font-style: italic;
      color: var(--ink-light);
      line-height: 1.75;
      margin-bottom: var(--sp-3);
    }

    .contact-consent-note a {
      color: var(--ink-light);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

@media(max-width:900px) {
      nav {
        padding: 16px 24px;
      }

      .nav-links {
        display: none;
      }

      .nav-hamburger {
        display: flex;
      }

      .contact-page {
        grid-template-columns: 1fr;
        padding: 120px 24px var(--sp-12);
        gap: var(--sp-8);
      }

      .contact-illus img {
        max-width: 220px;
      }

      footer {
        padding: 48px 24px 24px;
      }

      .footer-top {
        flex-direction: column;
        gap: 28px;
      }

      .footer-right {
        align-items: flex-start;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
      }
    }
