:root {
    --cream:      #F5F1EB;
    --warm-white: #FAF8F5;
    --stone:      #C8BFB0;
    --sage:       #7A8C7E;
    --sage-deep:  #4E6352;
    --charcoal:   #2A2A28;
    --ink:        #1A1A18;
    --gold:       #A8915A;
    --gold-light: #C8A96A;
    --mist:       #E8E2D9;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--charcoal); min-height: 100vh; line-height: 1.6; }

  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(245,241,235,0.97);
    border-bottom: 1px solid var(--mist);
    backdrop-filter: blur(8px);
    padding: 0 3rem; height: 62px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
  .nav-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--ink); letter-spacing: 0.02em; }
  .nav-sub { font-size: 0.66rem; color: var(--sage); display: block; }
  .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
  .nav-links a { font-size: 0.78rem; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; color: var(--charcoal); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--sage-deep); }
  .nav-links a.active { color: var(--sage-deep); font-weight: 500; }
  .nav-cta { padding: 0.42rem 1.1rem; background: var(--sage-deep) !important; color: var(--cream) !important; border-radius: 2px; font-size: 0.74rem !important; }
  .nav-cta:hover { background: var(--sage) !important; }

  /* ── PAGE ── */
  .page { max-width: 960px; margin: 0 auto; padding: 3rem 1.5rem 5rem; }

  /* ── TWO-COL LAYOUT ── */
  .contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start; }

  /* ── LEFT: INFO ── */
  .contact-info { }
  .eyebrow { font-size: 0.63rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.5rem; }
  .eyebrow::before { content: ''; display: block; width: 18px; height: 1px; background: var(--sage); }
  .page-title { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 300; color: var(--ink); line-height: 1.1; margin-bottom: 0.7rem; }
  .page-intro { font-size: 0.9rem; font-weight: 300; line-height: 1.75; color: #5a5a56; margin-bottom: 2rem; }

  .info-block { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2.2rem; }
  .info-item { display: flex; gap: 0.9rem; align-items: flex-start; }
  .info-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: rgba(78,99,82,0.08); border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
  }
  .info-icon svg { width: 16px; height: 16px; stroke: var(--sage-deep); fill: none; stroke-width: 1.5; }
  .info-label { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.2rem; }
  .info-value { font-size: 0.88rem; color: var(--charcoal); font-weight: 400; line-height: 1.5; }
  .info-value a { color: var(--sage-deep); text-decoration: none; }
  .info-value a:hover { text-decoration: underline; }

  .divider { border: none; border-top: 1px solid var(--mist); margin: 2rem 0; }

  .response-note {
    background: rgba(78,99,82,0.05); border: 1px solid rgba(78,99,82,0.14);
    border-left: 2px solid var(--sage-deep); border-radius: 0 4px 4px 0;
    padding: 0.9rem 1rem;
  }
  .response-note-label { font-size: 0.63rem; font-weight: 600; letter-spacing:0.1em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 0.3rem; }
  .response-note p { font-size: 0.82rem; font-weight: 300; color: var(--sage-deep); line-height: 1.6; }

  /* ── RIGHT: FORM ── */
  .contact-form-wrap { }
  .form-card { background: white; border: 1px solid var(--mist); border-radius: 8px; padding: 2.2rem 2.4rem; }

  .form-section-label {
    font-size: 0.63rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--sage); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.5rem;
  }
  .form-section-label::before { content: ''; display: block; width: 14px; height: 1px; background: var(--sage); }

  .field { margin-bottom: 1.1rem; }
  .field:last-of-type { margin-bottom: 0; }
  .field-label { display: block; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 6px; }
  .field-label .req { color: var(--gold); margin-left: 2px; }
  .field-input {
    width: 100%; padding: 10px 13px; font-size: 0.92rem; font-weight: 400;
    border: 1.5px solid var(--stone); background: white; color: var(--charcoal);
    font-family: 'DM Sans', sans-serif; outline: none; border-radius: 2px;
    transition: border-color 0.2s;
  }
  .field-input:focus { border-color: var(--sage-deep); box-shadow: 0 0 0 3px rgba(78,99,82,0.1); }
  .field-select {
    width: 100%; padding: 10px 13px; font-size: 0.92rem; font-weight: 400;
    border: 1.5px solid var(--stone); background: white; color: var(--charcoal);
    font-family: 'DM Sans', sans-serif; outline: none; border-radius: 2px; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237A8C7E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 13px center; padding-right: 36px;
    transition: border-color 0.2s; cursor: pointer;
  }
  .field-select:focus { border-color: var(--sage-deep); box-shadow: 0 0 0 3px rgba(78,99,82,0.1); }
  .field-textarea {
    width: 100%; padding: 10px 13px; font-size: 0.92rem; font-weight: 400;
    border: 1.5px solid var(--stone); background: white; color: var(--charcoal);
    font-family: 'DM Sans', sans-serif; outline: none; border-radius: 2px;
    transition: border-color 0.2s; resize: vertical; min-height: 140px; line-height: 1.6;
  }
  .field-textarea:focus { border-color: var(--sage-deep); box-shadow: 0 0 0 3px rgba(78,99,82,0.1); }
  .field-hint { font-size: 0.76rem; font-weight: 300; color: var(--stone); margin-top: 5px; line-height: 1.5; }

  .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  .form-divider { border: none; border-top: 1px solid var(--mist); margin: 1.4rem 0; }

  .form-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 1.4rem; flex-wrap: wrap; }
  .form-foot-note { font-size: 0.76rem; font-weight: 300; color: var(--stone); line-height: 1.5; }
  .btn-submit {
    padding: 0.82rem 2.2rem; background: var(--sage-deep); color: var(--cream);
    font-size: 0.86rem; font-weight: 500; border: none; border-radius: 2px;
    cursor: pointer; font-family: 'DM Sans', sans-serif; letter-spacing: 0.04em;
    transition: background 0.2s; display: inline-flex; align-items: center; gap: 0.5rem;
    white-space: nowrap;
  }
  .btn-submit:hover { background: var(--sage); }
  .btn-submit svg { width: 13px; height: 13px; stroke: var(--cream); fill: none; }

  /* ── SUCCESS STATE ── */
  .success-state { display: none; text-align: center; padding: 2rem 0.5rem; }
  .success-icon {
    width: 64px; height: 64px; border-radius: 50%; background: rgba(78,99,82,0.1);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1.3rem;
  }
  .success-icon svg { width: 28px; height: 28px; stroke: var(--sage-deep); fill: none; stroke-width: 2; }
  .success-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: var(--ink); margin-bottom: 0.5rem; }
  .success-msg { font-size: 0.88rem; font-weight: 300; color: #5a5a56; line-height: 1.75; max-width: 360px; margin: 0 auto 1.4rem; }
  .btn-reset { font-size: 0.8rem; color: var(--sage-deep); text-decoration: underline; text-underline-offset: 2px; background: none; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; }

  /* ── FOOTER ── */
  footer { background: var(--cream); border-top: 1px solid var(--mist); padding: 1.4rem 3rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.74rem; color: var(--sage); }