        :root {
            --ink:        #1a1a2e;
            --ink-mid:    #3d3d5c;
            --ink-light:  #6b6b8a;
            --gold:       #c9a84c;
            --gold-light: #f0d98a;
            --gold-bg:    rgba(201,168,76,.08);
            --sage:       #4a7c59;
            --sage-light: #e8f2eb;
            --cream:      #faf8f3;
            --white:      #ffffff;
            --border:     #e2ddd4;
            --error:      #c0392b;
            --error-bg:   #fdf0ef;
            --shadow:     0 2px 20px rgba(26,26,46,.08);
            --radius:     10px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--cream);
            color: var(--ink);
            font-size: 15px;
            line-height: 1.65;
        }

        /* ── HEADER ── */
        .site-header {
            background: var(--ink); color: var(--white);
            padding: 0 40px; display: flex; align-items: center; justify-content: space-between;
            height: 68px; position: sticky; top: 0; z-index: 100;
            box-shadow: 0 2px 12px rgba(0,0,0,.25);
        }
        .logo { display: flex; align-items: center; gap: 12px; }
        .home-btn {
            display: inline-flex; align-items: center; gap: 6px;
            background: transparent; border: 1px solid rgba(201,168,76,.45);
            color: var(--gold-light); font-size: 12px; font-weight: 600;
            letter-spacing: .8px; text-transform: uppercase; text-decoration: none;
            padding: 6px 16px; border-radius: 20px; transition: background .2s;
        }
        .home-btn:hover { background: rgba(201,168,76,.15); }
        .logo-mark {
            width: 38px; height: 38px; background: var(--gold); border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-family: 'Playfair Display', serif; font-weight: 700; font-size: 16px; color: var(--ink);
        }
        .logo-text { font-family: 'Playfair Display', serif; font-weight: 600; font-size: 18px; }
        .logo-sub  { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .4px; margin-top: -3px; }

        /* ── HERO ── */
        .page-hero {
            background: linear-gradient(135deg, #1a2e1a 0%, #2a3a2a 55%, #1a1a2e 100%);
            color: var(--white); padding: 64px 40px 56px; text-align: center;
        }
        .hero-tag {
            display: inline-block; background: rgba(74,124,89,.25);
            border: 1px solid rgba(74,124,89,.45); color: #a8d5b5;
            font-size: 11px; font-weight: 600; letter-spacing: 1.2px;
            text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
            margin-bottom: 20px;
        }
        .page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(26px, 4vw, 40px);
            font-weight: 700; line-height: 1.2; margin-bottom: 16px;
        }
        .page-hero h1 span { color: #a8d5b5; }
        .page-hero p {
            max-width: 640px; margin: 0 auto 28px;
            font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.7;
        }
        .learn-more-pill {
            display: inline-block; background: rgba(74,124,89,.15);
            border: 1px solid rgba(74,124,89,.45); color: #a8d5b5;
            font-size: 11px; font-weight: 600; letter-spacing: 1.2px;
            text-transform: uppercase; padding: 7px 18px; border-radius: 20px;
            text-decoration: none; margin-bottom: 20px; transition: background .2s;
        }
        .learn-more-pill:hover { background: rgba(74,124,89,.28); }
        .info-pill {
            display: inline-flex; align-items: center; gap: 10px;
            background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
            border-radius: 40px; padding: 10px 22px; font-size: 13px;
            color: rgba(255,255,255,.8);
        }
        .info-pill strong { color: #a8d5b5; font-size: 15px; }

        /* ── LAYOUT ── */
        .page-wrap { max-width: 820px; margin: 48px auto 80px; padding: 0 20px; }

        /* ── SECTION CARD ── */
        .section-card {
            background: var(--white); border: 1px solid var(--border);
            border-radius: var(--radius); box-shadow: var(--shadow);
            margin-bottom: 24px; overflow: hidden;
        }
        .section-head {
            padding: 20px 28px 16px; border-bottom: 1px solid var(--border);
            display: flex; align-items: center; gap: 14px;
        }
        .section-letter {
            width: 34px; height: 34px; background: var(--sage); color: var(--white);
            border-radius: 8px; display: flex; align-items: center; justify-content: center;
            font-family: 'Playfair Display', serif; font-weight: 700; font-size: 15px;
            flex-shrink: 0;
        }
        .section-head-text h2 {
            font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 600;
        }
        .section-head-text p { font-size: 12px; color: var(--ink-light); margin-top: 2px; }
        .section-body { padding: 24px 28px; }

        /* ── FORM CONTROLS ── */
        .form-row {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 16px; margin-bottom: 16px;
        }
        .form-row.cols-1 { grid-template-columns: 1fr; }
        .form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
        .form-group { display: flex; flex-direction: column; gap: 6px; }
        label.field-label { font-size: 13px; font-weight: 600; color: var(--ink-mid); }
        label.field-label .req { color: var(--error); margin-left: 2px; }
        input[type="text"], input[type="email"], input[type="tel"], select, textarea {
            border: 1px solid var(--border); border-radius: 8px;
            padding: 10px 14px; font-size: 14px; font-family: inherit;
            background: var(--white); color: var(--ink);
            transition: border-color .15s, box-shadow .15s; width: 100%;
        }
        input:focus, select:focus, textarea:focus {
            outline: none; border-color: var(--sage);
            box-shadow: 0 0 0 3px rgba(74,124,89,.12);
        }
        textarea { resize: vertical; min-height: 100px; }
        input::placeholder, textarea::placeholder { color: rgba(26,26,46,.3); }

        /* ── CHECKBOX GRID ── */
        .check-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 8px; margin-top: 4px;
        }
        .check-item {
            display: flex; align-items: flex-start; gap: 10px;
            background: #f8f6f1; border: 1px solid var(--border);
            border-radius: 8px; padding: 10px 12px; cursor: pointer;
            transition: border-color .15s, background .15s;
        }
        .check-item:hover { border-color: var(--sage); background: var(--sage-light); }
        .check-item input[type="checkbox"] {
            width: 16px; height: 16px; margin-top: 2px; cursor: pointer; flex-shrink: 0;
            accent-color: var(--sage);
        }
        .check-item:has(input:checked) { border-color: var(--sage); background: var(--sage-light); }
        .check-item span { font-size: 13px; color: var(--ink-mid); line-height: 1.4; }

        /* ── OTHER TEXT FIELD ── */
        .other-wrap { margin-top: 10px; display: none; }

        /* ── AVAILABILITY WEEK GRID ── */
        .avail-weeks { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
        .avail-week {
            display: flex; align-items: center; gap: 0;
            border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
            background: #f8f6f1;
        }
        .avail-week-label {
            font-size: 12px; font-weight: 600; color: var(--ink-light);
            text-transform: uppercase; letter-spacing: .5px;
            padding: 0 14px; min-width: 90px; border-right: 1px solid var(--border);
            background: #f0ede6;
        }
        .avail-day-option {
            display: flex; align-items: center; gap: 8px;
            flex: 1; padding: 12px 16px; cursor: pointer;
            transition: background .15s, border-color .15s;
            border-right: 1px solid var(--border);
        }
        .avail-day-option:last-child { border-right: none; }
        .avail-day-option:hover { background: var(--sage-light); }
        .avail-day-option:has(input:checked) { background: var(--sage-light); }
        .avail-day-option input[type="checkbox"] {
            width: 16px; height: 16px; cursor: pointer; flex-shrink: 0;
            accent-color: var(--sage);
        }
        .avail-day-option .day-name {
            font-size: 13px; font-weight: 600; color: var(--ink);
        }
        .avail-day-option .day-date {
            font-size: 12px; color: var(--ink-light);
        }

        /* ── CONSENT BLOCK ── */
        .consent-block {
            background: var(--sage-light); border: 1px solid rgba(74,124,89,.25);
            border-radius: 10px; padding: 18px 20px; margin-bottom: 16px;
        }
        .consent-block p { font-size: 13px; color: var(--ink-mid); line-height: 1.65; margin-bottom: 14px; }
        .consent-block p:last-of-type { margin-bottom: 0; }
        .consent-row {
            display: flex; align-items: flex-start; gap: 10px;
            padding: 12px 0; border-top: 1px solid rgba(74,124,89,.2);
        }
        .consent-row input[type="checkbox"] {
            width: 18px; height: 18px; margin-top: 2px; cursor: pointer;
            flex-shrink: 0; accent-color: var(--sage);
        }
        .consent-row label { font-size: 13px; color: var(--ink); line-height: 1.55; cursor: pointer; }

        /* ── SUBMIT ── */
        .submit-row {
            display: flex; align-items: center; justify-content: space-between;
            gap: 16px; flex-wrap: wrap; margin-top: 8px;
        }
        .req { color: var(--error); }
        .submit-note { font-size: 12px; color: var(--ink-light); }
        .submit-btn {
            padding: 13px 36px; background: var(--sage); color: var(--white);
            border: none; border-radius: 8px; font-family: inherit;
            font-weight: 600; font-size: 15px; cursor: pointer;
            transition: opacity .15s, transform .1s;
        }
        .submit-btn:hover   { opacity: .85; }
        .submit-btn:active  { transform: scale(.98); }
        .submit-btn:disabled { opacity: .4; cursor: not-allowed; }

        /* ── ALERTS ── */
        .form-alert {
            display: none; border-radius: 8px; padding: 14px 18px;
            font-size: 14px; margin-bottom: 20px; align-items: flex-start; gap: 10px;
        }
        .form-alert.show { display: flex; }
        .form-alert.error   { background: var(--error-bg); color: var(--error); border: 1px solid rgba(192,57,43,.2); }
        .form-alert.success { background: var(--sage-light); color: var(--sage); border: 1px solid rgba(74,124,89,.2); }

        /* ── SUCCESS SCREEN ── */
        .success-screen { display: none; text-align: center; padding: 80px 20px; }
        .success-screen.show { display: block; }
        .success-icon {
            width: 72px; height: 72px; background: var(--sage-light); border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 24px; font-size: 30px;
        }
        .success-screen h2 { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 12px; }
        .success-screen p  { color: var(--ink-light); font-size: 15px; max-width: 480px; margin: 0 auto 8px; }
        .success-ref {
            display: inline-block; margin-top: 20px; background: var(--cream);
            border: 1px solid var(--border); border-radius: 8px;
            padding: 10px 20px; font-size: 13px; color: var(--ink-light); font-family: monospace;
        }
        .new-btn {
            display: inline-block; margin-top: 28px; padding: 11px 28px;
            border: 1.5px solid var(--border); background: var(--white);
            color: var(--ink); border-radius: 8px; font-family: inherit;
            font-weight: 600; cursor: pointer; font-size: 14px; transition: border-color .15s;
        }
        .new-btn:hover { border-color: var(--ink); }

        /* ── SPINNER ── */
        .spinner {
            display: inline-block; width: 15px; height: 15px;
            border: 2px solid rgba(255,255,255,.3); border-top-color: #fff;
            border-radius: 50%; animation: spin .6s linear infinite;
            vertical-align: middle; margin-right: 6px;
        }
        @keyframes spin { to { transform: rotate(360deg); } }

        /* ── RESPONSIVE ── */
        @media (max-width: 640px) {
            .site-header { padding: 0 16px; height: 58px; }
            .logo-sub { display: none; }
            .page-hero { padding: 48px 20px 40px; }
            .page-wrap { margin-top: 28px; padding: 0 12px; }
            .section-body { padding: 18px 16px; }
            .section-head { padding: 16px 16px 14px; }
            .form-row { grid-template-columns: 1fr; }
            .form-row.cols-3 { grid-template-columns: 1fr; }
            .check-grid { grid-template-columns: 1fr; }
            .submit-row { flex-direction: column; align-items: stretch; }
            .submit-btn { width: 100%; }
            .avail-week { flex-direction: column; }
            .avail-week-label { border-right: none; border-bottom: 1px solid var(--border); width: 100%; padding: 8px 14px; }
            .avail-day-option { border-right: none; border-bottom: 1px solid var(--border); }
            .avail-day-option:last-child { border-bottom: none; }
        }

/* === Extracted inline styles === */
.hidden { display: none !important; }
.header-actions { display: flex; gap: 10px; align-items: center; }
.mb16 { margin-bottom: 16px; }
.mt24 { margin-top: 24px; }
.coverage-hint { font-size: 12px; color: var(--ink-light); margin-bottom: 8px; }
.other-wrap.show { display: block; }

