*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --walnut:      #4A3220;   /* 8.7:1 on cream  — headings on light bg  */
      --sienna:      #8B3A0F;   /* 5.8:1 on cream  — labels on light bg    */
      --tan:         #C4A882;   /* DECORATIVE ONLY — borders/bg, never text */
      --tan-light:   #DDD0BA;   /* DECORATIVE ONLY — subtle borders         */
      --cream:       #F5F0E8;   /* page background                          */
      --cream-dark:  #EDE3D4;   /* surface variant                          */
      --espresso:    #1A1108;   /* 14:1 on cream — body text on light bg    */
      --sage:        #3D5C38;   /* 6.4:1 on cream — accent on light bg      */
      --linen:       #F0E2CC;   /* 9.1:1 on espresso — primary on dark bg   */
      --linen-muted: #C8A97A;   /* 4.6:1 on espresso — muted on dark bg     */
      --white:       #FEFCF8;   /* 14.5:1 on espresso — bright on dark bg   */
    }

    html, body {
      height: 100%;
      background-color: var(--cream);
      color: var(--espresso);
      font-family: 'Lato', sans-serif;
      overflow-x: hidden;
    }

    /* ── GRAIN OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 128px;
      pointer-events: none;
      z-index: 100;
      opacity: 0.5;
    }

    /* ── LAYOUT: side-by-side, whole page scrolls ── */
    .page {
      display: flex;
      min-height: 100vh;
      height: auto;
    }

    /* ── LEFT PANEL ── */
    .left {
      width: 50%;
      flex-shrink: 0;
      background: var(--espresso);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 72px 60px;
    }

    .left::before {
      content: '';
      position: absolute;
      top: -120px; left: -120px;
      width: 480px; height: 480px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(196,168,130,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .left::after {
      content: '';
      position: absolute;
      bottom: -80px; right: -80px;
      width: 360px; height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(107,78,53,0.25) 0%, transparent 70%);
      pointer-events: none;
    }

    .left-line {
      position: absolute;
      left: 40px; top: 15%; bottom: 15%;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(196,168,130,0.4), transparent);
    }

    .brand-mark {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 52px;
      animation: fadeUp 0.8s ease both;
    }

    .brand-mark .six {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--linen);
    }

    .brand-mark .divider-dot {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--tan);
      opacity: 0.7;
    }

    .brand-mark .word {
      font-family: 'Lato', sans-serif;
      font-size: 16px;
      font-weight: 300;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--linen-muted);
    }

    .headline-block {
      margin-bottom: 36px;
      animation: fadeUp 0.8s 0.15s ease both;
    }

    .overline {
      font-family: 'Lato', sans-serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--linen-muted);
      margin-bottom: 16px;
    }

    .main-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(38px, 4vw, 58px);
      font-weight: 700;
      line-height: 1.1;
      color: var(--white);
    }

    .main-headline em {
      font-style: italic;
      color: var(--linen);
    }

    .tagline {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: clamp(16px, 1.6vw, 20px);
      color: var(--linen);
      line-height: 1.5;
      margin-top: 16px;
    }

    .story-block {
      margin-bottom: 28px;
      animation: fadeUp 0.8s 0.3s ease both;
    }

    .story-rule {
      width: 48px; height: 1px;
      background: var(--sienna);
      margin-bottom: 16px;
    }

    .story-text {
      font-family: 'Lato', sans-serif;
      font-size: 16px;
      font-weight: 300;
      line-height: 1.8;
      color: var(--linen);
      max-width: 440px;
    }

    .story-text strong {
      color: var(--white);
      font-weight: 600;
    }

    .hemingway-quote {
      padding: 18px 22px;
      border-left: 2px solid var(--tan);
      background: rgba(196,168,130,0.06);
      animation: fadeUp 0.8s 0.45s ease both;
    }

    .hemingway-quote p {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 16px;
      color: var(--linen);
      line-height: 1.7;
    }

    .hemingway-quote cite {
      display: block;
      margin-top: 8px;
      font-family: 'Lato', sans-serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--linen-muted);
    }

    .social-row {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 36px;
      animation: fadeUp 0.8s 0.55s ease both;
    }

    .social-label {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--linen-muted);
    }

    .social-link {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      font-weight: 400;
      color: var(--linen);
      text-decoration: none;
      transition: color 0.2s;
    }

    .social-link:hover { color: var(--white); }

    .social-link svg {
      width: 16px; height: 16px;
      fill: currentColor;
    }

    /* ── RIGHT PANEL ── */
    .right {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 72px 60px 80px;
      background: var(--cream);
      position: relative;
    }

    .right::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(to right, var(--walnut), var(--tan), var(--sienna));
    }

    .status-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border: 1px solid var(--tan-light);
      border-radius: 100px;
      background: var(--cream-dark);
      margin-bottom: 32px;
      animation: fadeUp 0.8s 0.2s ease both;
      width: fit-content;
    }

    .status-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--sienna);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }

    .status-text {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--walnut);
    }

    .form-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(24px, 2.6vw, 36px);
      font-weight: 600;
      line-height: 1.25;
      color: var(--espresso);
      margin-bottom: 12px;
      animation: fadeUp 0.8s 0.3s ease both;
    }

    .form-subtext {
      font-family: 'Lato', sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.7;
      color: var(--walnut);
      max-width: 420px;
      margin-bottom: 32px;
      animation: fadeUp 0.8s 0.4s ease both;
    }

    /* ── HUBSPOT FORM WRAPPER ── */
    .hs-form-wrapper {
      animation: fadeUp 0.8s 0.5s ease both;
      max-width: 520px;
    }

    /* ── SUPPRESS HubSpot injected chrome ── */
    /* Hide the auto-generated form title & description */
    .hs-form-wrapper .hs-richtext,
    .hs-form-wrapper .hs-form-title,
    .hs-form-wrapper h3.hs-form-title,
    .hs-form-wrapper .form-title { display: none !important; }

    /* Hide "Create your own free forms" branding link */
    .hs-form-wrapper .hubspot-link__container,
    .hs-form-wrapper .hs-form .hs_submit .hubspot-link__container,
    .hs-form-wrapper a[href*="hubspot.com/free-form-builder"],
    .hs-form-wrapper a[href*="hubspot.com?utm"],
    .hs-form-wrapper .legal-consent-container ~ div a[class*="hubspot"],
    .hs-form-wrapper span.hs-form-booleancheckbox-display ~ .hubspot-link__container {
      display: none !important;
    }

    /* Hide phone & message fields if present on default form */
    .hs-form-wrapper .hs_phone,
    .hs-form-wrapper .hs_message { display: none !important; }

    /* ── Style all form fields ── */
    .hs-form-wrapper .hs-form fieldset {
      max-width: 100% !important;
      border: none !important;
    }

    .hs-form-wrapper .hs-form .hs-form-field {
      margin-bottom: 18px !important;
    }

    .hs-form-wrapper .hs-form label:not(.hs-error-msg) {
      font-family: 'Lato', sans-serif !important;
      font-size: 16px !important;
      font-weight: 700 !important;
      letter-spacing: 0.1em !important;
      text-transform: uppercase !important;
      color: var(--walnut) !important;
      margin-bottom: 7px !important;
      display: block !important;
    }

    .hs-form-wrapper .hs-form .hs-input,
    .hs-form-wrapper .hs-form input[type="text"],
    .hs-form-wrapper .hs-form input[type="email"],
    .hs-form-wrapper .hs-form input[type="tel"],
    .hs-form-wrapper .hs-form textarea,
    .hs-form-wrapper .hs-form select {
      width: 100% !important;
      padding: 13px 16px !important;
      border: 2px solid var(--tan-light) !important;
      border-radius: 3px !important;
      background: var(--white) !important;
      font-family: 'Lato', sans-serif !important;
      font-size: 16px !important;
      font-weight: 400 !important;
      color: var(--espresso) !important;
      transition: border-color 0.2s, box-shadow 0.2s !important;
      outline: none !important;
      -webkit-appearance: none !important;
      box-shadow: none !important;
    }

    .hs-form-wrapper .hs-form .hs-input:focus,
    .hs-form-wrapper .hs-form input:focus,
    .hs-form-wrapper .hs-form textarea:focus {
      border-color: var(--walnut) !important;
      box-shadow: 0 0 0 3px rgba(74,50,32,0.12) !important;
    }

    /* Fix two-column fieldsets (First / Last name) */
    .hs-form-wrapper .hs-form fieldset.form-columns-2 {
      display: flex !important;
      gap: 16px !important;
    }

    .hs-form-wrapper .hs-form fieldset.form-columns-2 .hs-form-field {
      flex: 1 !important;
      min-width: 0 !important;
    }

    /* ── Submit button ── */
    .hs-form-wrapper .hs-form .hs-submit,
    .hs-form-wrapper .hs-form .actions {
      margin-top: 8px !important;
    }

    .hs-form-wrapper .hs-form .hs-button,
    .hs-form-wrapper .hs-form input[type="submit"] {
      display: block !important;
      width: 100% !important;
      padding: 15px 32px !important;
      background: var(--espresso) !important;
      border: none !important;
      border-radius: 3px !important;
      font-family: 'Lato', sans-serif !important;
      font-size: 16px !important;
      font-weight: 700 !important;
      letter-spacing: 0.2em !important;
      text-transform: uppercase !important;
      color: var(--white) !important;
      cursor: pointer !important;
      transition: background 0.2s, transform 0.1s !important;
    }

    .hs-form-wrapper .hs-form .hs-button:hover,
    .hs-form-wrapper .hs-form input[type="submit"]:hover {
      background: var(--walnut) !important;
    }

    .hs-form-wrapper .hs-form .hs-button:active {
      transform: scale(0.99) !important;
    }

    /* ── Error messages ── */
    .hs-form-wrapper .hs-form .hs-error-msgs {
      list-style: none !important;
      margin-top: 4px !important;
      padding: 0 !important;
    }

    .hs-form-wrapper .hs-form .hs-error-msgs li label,
    .hs-form-wrapper .hs-form .hs-error-msg {
      color: var(--sienna) !important;
      font-family: 'Lato', sans-serif !important;
      font-size: 16px !important;
      font-weight: 600 !important;
      text-transform: none !important;
      letter-spacing: 0 !important;
    }

    /* ── reCAPTCHA nudge ── */
    .hs-form-wrapper .hs-form .grecaptcha-badge { margin-top: 12px; }

    /* ── Success message ── */
    .hs-form-wrapper .submitted-message {
      font-family: 'Playfair Display', serif !important;
      font-size: 18px !important;
      font-style: italic !important;
      color: var(--walnut) !important;
      padding: 24px 0 !important;
      line-height: 1.6 !important;
    }

    /* ── SETUP NOTICE (shown until HubSpot is connected) ── */
    .setup-notice {
      background: var(--cream-dark);
      border: 2px dashed var(--tan);
      border-radius: 6px;
      padding: 28px;
    }

    .setup-notice h3 {
      font-family: 'Playfair Display', serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--walnut);
      margin-bottom: 10px;
    }

    .setup-notice p {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.7;
      color: var(--walnut);
      margin-bottom: 12px;
    }

    .setup-notice ol {
      padding-left: 20px;
      margin-bottom: 12px;
    }

    .setup-notice ol li {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.8;
      color: var(--walnut);
      margin-bottom: 4px;
    }

    .setup-notice ol li strong { color: var(--espresso); font-weight: 700; }

    .setup-notice code {
      display: block;
      margin-top: 12px;
      padding: 14px 16px;
      background: var(--espresso);
      border-radius: 3px;
      font-family: 'Courier New', monospace;
      font-size: 16px;
      color: var(--linen);
      line-height: 1.7;
      white-space: pre;
      overflow-x: auto;
    }

    /* ── PROMISE BAR ── */
    .promise-bar {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-top: 28px;
      padding: 20px 24px;
      background: var(--cream-dark);
      border-left: 3px solid var(--sage);
      animation: fadeUp 0.8s 0.65s ease both;
      max-width: 520px;
    }

    .promise-bar .icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }

    .promise-bar p {
      font-size: 16px;
      font-weight: 400;
      line-height: 1.7;
      color: var(--walnut);
    }

    .promise-bar p strong { color: var(--espresso); font-weight: 700; }

    /* ── FOOTER ── */
    .footer-left {
      margin-top: 40px;
      font-size: 16px;
      font-weight: 400;
      letter-spacing: 0.05em;
      color: var(--linen-muted);
    }

    .footer-right {
      margin-top: 40px;
      font-size: 16px;
      font-weight: 400;
      letter-spacing: 0.05em;
      color: var(--walnut);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 1200px) {
      .page { flex-direction: column; }

      .left {
        width: 100%;
        position: static;
        height: auto;
        padding: 56px 40px;
      }

      .left::before, .left::after { display: none; }
      .left-line { display: none; }

      .right { padding: 56px 40px 64px; }
      .right::before { height: 2px; }

      .footer-left { text-align: center; }
      .footer-right { text-align: center; }

      .social-row { margin-top: 28px; }
      .hs-form-wrapper, .promise-bar { max-width: 100%; }
    }

    @media (max-width: 560px) {
      .left, .right { padding: 44px 24px 56px; }
    }