  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: #ffffff;
    color: #1a1a2e;
    font-family: 'Work Sans', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  ::selection { background: #e8dcc6; color: #1a1a2e; }
  a { color: inherit; }

  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px clamp(24px, 5vw, 72px);
    background: rgba(255,255,255,0.92);
    border-bottom: 1px solid #e0dccf;
  }
  .logo {
    text-decoration: none;
    color: #1a1a2e;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1;
    white-space: nowrap;
  }
  .logo img {
    display: block;
    height: 48px;
    width: auto;
  }
  .logo img.logo-mobile { display: none; }
  nav.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 46px);
  }
  nav.primary-nav a {
    text-decoration: none;
    color: #1a1a2e;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  nav.primary-nav a[aria-current="page"] { color: #b08d57; }

  .nav-toggle {
    display: none;
    width: 32px;
    height: 22px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
  }
  .nav-toggle span {
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: #1a1a2e;
    transition: transform 0.35s ease, opacity 0.35s ease, top 0.35s ease;
  }
  .nav-toggle span:nth-child(1) { top: 0; }
  .nav-toggle span:nth-child(2) { top: 10px; }
  .nav-toggle span:nth-child(3) { top: 20px; }
  .nav-open .nav-toggle span:nth-child(1) { top: 10px; transform: rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #b08d57;
    font-weight: 400;
  }

  main {
    flex: 1;
    padding: clamp(150px, 20vh, 240px) clamp(24px, 5vw, 72px) clamp(90px, 12vh, 150px);
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 110px);
    align-items: start;
  }
  .contact-grid h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: clamp(42px, 5.4vw, 78px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-top: 30px;
    max-width: 12ch;
  }
  .contact-grid > div:first-child > p {
    margin-top: 34px;
    max-width: 44ch;
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.85;
    font-weight: 300;
    color: #4a4a5a;
  }
  .contact-details {
    margin-top: 56px;
    border-top: 1px solid #e0dccf;
    padding-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .contact-details .label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6a6a78;
  }
  .contact-details .phone-email {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .contact-details a.phone {
    text-decoration: none;
    color: #1a1a2e;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
  }
  .contact-details a.email {
    text-decoration: none;
    color: #6a6a78;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.02em;
  }
  .contact-details .served {
    font-size: 12px;
    letter-spacing: 0.06em;
    color: #a8a8b0;
    font-weight: 300;
  }

  form.assessment-form { display: flex; flex-direction: column; gap: 30px; }
  form.assessment-form label { display: flex; flex-direction: column; gap: 9px; }
  form.assessment-form .field-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6a6a78;
  }
  form.assessment-form input,
  form.assessment-form textarea {
    border: none;
    border-bottom: 1px solid #e0dccf;
    background: transparent;
    padding: 8px 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    color: #1a1a2e;
    outline: none;
    resize: none;
  }
  .submit-btn {
    margin-top: 14px;
    align-self: flex-start;
    border: 1px solid #1a1a2e;
    background: transparent;
    color: #1a1a2e;
    padding: 16px 34px;
    font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.4s ease, color 0.4s ease;
  }
  .submit-btn:hover { background: #1a1a2e; color: #ffffff; }
  .submit-btn[disabled] { opacity: 0.5; pointer-events: none; }
  .form-error {
    margin-top: 18px;
    font-size: 14px;
    color: #a03a3a;
    font-weight: 400;
  }
  .recaptcha-note {
    margin-top: 20px;
    font-size: 11.5px;
    font-weight: 300;
    color: #a8a8b0;
    line-height: 1.6;
  }
  .recaptcha-note a { color: #a8a8b0; }
  .grecaptcha-badge { visibility: hidden; }
  .thank-you {
    border: 1px solid #e0dccf;
    padding: 64px 48px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .thank-you span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    color: #b08d57;
    font-weight: 400;
  }
  .thank-you p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    color: #4a4a5a;
    max-width: 40ch;
  }
  [hidden] { display: none !important; }

  footer {
    border-top: 1px solid #e0dccf;
    padding: 60px clamp(24px, 5vw, 72px) 48px;
  }
  .footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
  }
  .footer-brand span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.03em;
    display: block;
  }
  .footer-brand small {
    font-size: 12.5px;
    font-weight: 300;
    color: #6a6a78;
    letter-spacing: 0.04em;
  }
  .footer-brand img {
    display: block;
    height: 40px;
    width: auto;
  }
  .footer-brand img.logo-mobile { display: none; }
  footer nav { display: flex; gap: 30px; flex-wrap: wrap; }
  footer nav a {
    text-decoration: none;
    color: #6a6a78;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .footer-copy { font-size: 12px; font-weight: 300; color: #a8a8b0; }

  [data-reveal] { opacity: 0; transform: translateY(40px); }
  [data-reveal].is-visible { opacity: 1; transform: translateY(0); transition: opacity 1.4s cubic-bezier(0.16,1,0.3,1), transform 1.4s cubic-bezier(0.16,1,0.3,1); }
  @media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1; transform: none; }
  }

  @media (max-width: 860px) {
    .logo img.logo-desktop, .footer-brand img.logo-desktop { display: none; }
    .logo img.logo-mobile, .footer-brand img.logo-mobile { display: block; }

    nav.primary-nav {
      position: fixed;
      inset: 0;
      flex-direction: column;
      justify-content: center;
      gap: 36px;
      background: #ffffff;
      transform: translateX(100%);
      transition: transform 0.4s ease;
    }
    nav.primary-nav a { font-size: 15px; }
    .nav-open nav.primary-nav { transform: translateX(0); }
    .nav-toggle { display: block; }
    body.nav-open { overflow: hidden; }

    .contact-grid { grid-template-columns: 1fr; }
  }
