/* ============================================================================
   AAB Membership Portal — corporate stylesheet
   Strict grayscale. Public Sans. Conservative, professional, restrained.
   ============================================================================ */

:root {
    /* Surfaces */
    --surface:        #ffffff;
    --surface-alt:    #fafbfc;
    --surface-muted:  #f5f6f7;
    --surface-strong: #eef0f2;
    --field:          #f4f5f7;        /* page background on auth screens */

    /* Borders */
    --border:         #e4e6eb;
    --border-soft:    #eef0f2;
    --border-strong:  #d1d5db;

    /* Text */
    --text:           #111418;
    --text-secondary: #4b5563;
    --text-muted:     #6b7280;
    --text-subtle:    #9ca3af;

    /* Accents — strict grayscale per spec */
    --accent:         #111418;
    --accent-hover:   #1f2328;
    --accent-press:   #050608;
    --accent-fg:      #ffffff;

    /* Status indicator (still neutral) */
    --status-bg:      #ecfdf5;
    --status-fg:      #065f46;
    --status-dot:     #10b981;

    /* Danger */
    --danger-bg:      #fef2f2;
    --danger-fg:      #991b1b;
    --danger-border:  #fecaca;

    /* Typography */
    --font-sans: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

    /* Shadows (subtle, corporate) */
    --shadow-xs: 0 1px 2px 0 rgba(17, 20, 24, .04);
    --shadow-sm: 0 1px 3px 0 rgba(17, 20, 24, .06), 0 1px 2px -1px rgba(17, 20, 24, .04);
    --shadow-md: 0 4px 6px -1px rgba(17, 20, 24, .06), 0 2px 4px -2px rgba(17, 20, 24, .04);
    --shadow-lg: 0 10px 15px -3px rgba(17, 20, 24, .06), 0 4px 6px -4px rgba(17, 20, 24, .04);
    --shadow-card: 0 1px 0 rgba(17, 20, 24, .03), 0 8px 24px -12px rgba(17, 20, 24, .12);

    /* Radii */
    --r-xs: 4px;
    --r-sm: 6px;
    --r-md: 8px;
    --r-lg: 12px;

    /* Layout */
    --container: 1200px;
    --nav-h: 64px;
}

/* ----- reset / base --------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }

body {
    margin: 0;
    background: var(--surface);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

a { color: var(--text); text-decoration: none; }
a:hover { color: var(--text-secondary); }

::selection { background: var(--accent); color: var(--accent-fg); }

/* ----- shell ---------------------------------------------------------- */

.portal {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* ----- top nav -------------------------------------------------------- */

.nav {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
}
.brand:hover { color: var(--text); }

.brand-mark {
    width: 36px; height: 36px;
    border-radius: var(--r-sm);
    background: var(--surface) center/72% no-repeat;
    background-image: url('/logo/logo.jpeg');
    border: 1px solid var(--border);
    flex-shrink: 0;
    filter: grayscale(1);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .name {
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: -0.005em;
    color: var(--text);
}
.brand-text .sub {
    font-weight: 400;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.nav-links {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    padding: 8px 12px;
    font-size: 14px;
    color: var(--text-secondary);
    border-radius: var(--r-sm);
    font-weight: 500;
}
.nav-links a:hover { background: var(--surface-muted); color: var(--text); }

/* ----- buttons -------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--r-sm);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 120ms ease, color 120ms ease, border-color 120ms ease, box-shadow 120ms ease, transform 80ms ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(17, 20, 24, .12), 0 0 0 1px var(--accent);
}
.btn:active { transform: translateY(0.5px); }

.btn-primary {
    background: var(--accent);
    color: var(--accent-fg);
    border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); color: var(--accent-fg); border-color: var(--accent-hover); }
.btn-primary:active { background: var(--accent-press); }

.btn-secondary {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border-strong);
}
.btn-secondary:hover { background: var(--surface-muted); color: var(--text); }

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}
.btn-ghost:hover { background: var(--surface-muted); color: var(--text); }

.btn-lg { padding: 13px 22px; font-size: 15px; }
.btn-sm { padding: 7px 12px; font-size: 13px; }
.btn-block { width: 100%; }

/* ----- main + footer -------------------------------------------------- */

main.main { flex: 1; }

.footer {
    border-top: 1px solid var(--border);
    background: var(--surface);
    padding: 24px;
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
}
.footer-inner a { color: var(--text-secondary); }
.footer-inner a:hover { color: var(--text); }

/* ============================================================================
   AUTH SHELL — login / reset / change-password use this
   ============================================================================ */

.auth-shell {
    background: var(--field);
    min-height: calc(100vh - var(--nav-h));
    padding: 48px 24px 64px;
    display: grid;
    place-items: center;
}

.auth-card {
    width: 100%;
    max-width: 432px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-card);
    padding: 36px 36px 32px;
}

.auth-mark {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: var(--surface) center/72% no-repeat;
    background-image: url('/logo/logo.jpeg');
    border: 1px solid var(--border);
    margin: 0 auto 20px;
    filter: grayscale(1);
    box-shadow: var(--shadow-xs);
}

.auth-title {
    text-align: center;
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
}
.auth-sub {
    text-align: center;
    margin: 0 0 28px;
    font-size: 14.5px;
    color: var(--text-muted);
}
.auth-sub a { color: var(--text); font-weight: 500; }
.auth-sub a:hover { text-decoration: underline; }

.auth-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-meta {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}
.auth-meta a { color: var(--text); font-weight: 500; }
.auth-meta a:hover { text-decoration: underline; }

.auth-foot {
    text-align: center;
    margin-top: 22px;
    font-size: 12.5px;
    color: var(--text-subtle);
}

/* ----- forms ---------------------------------------------------------- */

.form { display: flex; flex-direction: column; gap: 16px; }

.field { display: flex; flex-direction: column; gap: 6px; }

.field label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.field label .hint {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 12px;
}
.field label a {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text);
}
.field label a:hover { text-decoration: underline; }

.field input[type="email"],
.field input[type="text"],
.field input[type="password"],
.field input[type="tel"] {
    appearance: none;
    width: 100%;
    padding: 10px 12px;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border-strong);
    border-radius: var(--r-sm);
    font-family: inherit;
    font-size: 14.5px;
    line-height: 1.4;
    box-shadow: var(--shadow-xs);
    transition: border-color 120ms ease, box-shadow 120ms ease, background 120ms ease;
}
.field input:hover { border-color: var(--text-subtle); }
.field input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(17, 20, 24, .10);
    background: var(--surface);
}
.field input::placeholder { color: var(--text-subtle); }

.field .err {
    font-size: 12.5px;
    color: var(--danger-fg);
}

/* ----- alerts --------------------------------------------------------- */

.alert {
    padding: 11px 14px;
    border-radius: var(--r-sm);
    border: 1px solid;
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.alert::before {
    content: "";
    flex-shrink: 0;
    width: 16px; height: 16px;
    margin-top: 2px;
    background: currentColor;
    -webkit-mask: var(--icon) center/contain no-repeat;
            mask: var(--icon) center/contain no-repeat;
}
.alert.alert-danger {
    background: var(--danger-bg);
    color: var(--danger-fg);
    border-color: var(--danger-border);
    --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><line x1='12' y1='8' x2='12' y2='12'/><line x1='12' y1='16' x2='12.01' y2='16'/></svg>");
}
.alert.alert-warn {
    background: #fffbeb;
    color: #92400e;
    border-color: #fde68a;
    --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M10.29 3.86 1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0Z'/><line x1='12' y1='9' x2='12' y2='13'/><line x1='12' y1='17' x2='12.01' y2='17'/></svg>");
}
.alert.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
    --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>");
}

/* ============================================================================
   LANDING PAGE
   ============================================================================ */

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.hero {
    padding: clamp(56px, 9vw, 112px) 0 clamp(48px, 7vw, 88px);
    background:
        radial-gradient(1100px 540px at 50% -10%, rgba(17,20,24,.05), transparent 60%),
        var(--surface);
    border-bottom: 1px solid var(--border-soft);
}

.hero-inner { display: grid; grid-template-columns: 1.4fr .9fr; gap: 64px; align-items: center; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-secondary);
    box-shadow: var(--shadow-xs);
    margin-bottom: 24px;
}
.hero-eyebrow .dot {
    width: 6px; height: 6px;
    border-radius: 999px;
    background: var(--status-dot);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, .15);
}

.hero h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--text);
}

.hero p.lede {
    margin: 0 0 28px;
    font-size: clamp(16px, 1.4vw, 18.5px);
    line-height: 1.55;
    color: var(--text-secondary);
    max-width: 56ch;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-aside {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
}
.hero-aside h3 {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.hero-aside dl {
    margin: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 16px;
    font-size: 14px;
}
.hero-aside dt { color: var(--text-muted); font-weight: 500; }
.hero-aside dd { margin: 0; color: var(--text); font-weight: 500; }
.hero-aside .row {
    display: contents;
}
.hero-aside hr {
    grid-column: 1 / -1;
    border: 0;
    border-top: 1px solid var(--border-soft);
    margin: 4px 0;
}

/* ----- section common ------------------------------------------------- */

section.block { padding: clamp(56px, 7vw, 96px) 0; }
section.block + section.block { border-top: 1px solid var(--border-soft); }

.block-head { max-width: 720px; margin: 0 0 40px; }
.block-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 12px;
}
.block-head h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 2.6vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--text);
}
.block-head p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-secondary);
}

/* ----- feature grid --------------------------------------------------- */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
}
.feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
    border-color: var(--border-strong);
}
.feature-icon {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    display: grid; place-items: center;
    margin-bottom: 18px;
    color: var(--text);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.005em;
    color: var(--text);
}
.feature p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--text-secondary);
}

/* ----- stat strip ----------------------------------------------------- */

.stat-strip {
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-strip > div {
    padding: 22px 24px;
    border-right: 1px solid var(--border);
}
.stat-strip > div:last-child { border-right: 0; }
.stat-strip dt {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0 0 4px;
}
.stat-strip dd {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.01em;
}

/* ----- CTA banner ----------------------------------------------------- */

.cta-banner {
    background: var(--surface-muted);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cta-banner h2 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
}
.cta-banner p { margin: 0; color: var(--text-secondary); font-size: 14.5px; }

/* ----- enter animation ------------------------------------------------ */

@media (prefers-reduced-motion: no-preference) {
    .fade-up { opacity: 0; transform: translateY(8px); animation: fadeUp .55s ease-out forwards; }
    .d1 { animation-delay: .04s; }
    .d2 { animation-delay: .12s; }
    .d3 { animation-delay: .20s; }
    .d4 { animation-delay: .28s; }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 920px) {
    .hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .feature-grid { grid-template-columns: 1fr; }
    .stat-strip { grid-template-columns: repeat(2, 1fr); }
    .stat-strip > div:nth-child(2) { border-right: 0; }
    .stat-strip > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .cta-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
    .nav-inner { padding: 0 16px; }
    .brand-text .sub { display: none; }
    .nav-links a:not(.btn) { display: none; }
    .container { padding: 0 16px; }
    .auth-shell { padding: 32px 16px 56px; }
    .auth-card { padding: 28px 22px 24px; }
    .stat-strip { grid-template-columns: 1fr; }
    .stat-strip > div { border-right: 0; border-bottom: 1px solid var(--border); }
    .stat-strip > div:last-child { border-bottom: 0; }
    .footer-inner { flex-direction: column; gap: 8px; align-items: flex-start; text-align: left; }
}

/* ============================================================================
   PUBLIC MEMBER SEARCH
   ============================================================================ */

.search-hero {
    padding: 56px 0 32px;
    background: var(--surface-alt);
    border-bottom: 1px solid var(--border-soft);
}
.search-hero h1 {
    margin: 8px 0 12px;
    font-size: clamp(28px, 4.2vw, 40px);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text);
}
.search-hero p.lede {
    margin: 0;
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 640px;
}

.member-search {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.member-search__filters {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 16px;
    padding: 18px;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
}
.member-search__field { display: flex; flex-direction: column; gap: 6px; }
.member-search__field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.member-search__field input,
.member-search__field select {
    width: 100%;
    padding: 11px 13px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    font: inherit;
    color: var(--text);
    transition: border-color 120ms ease, box-shadow 120ms ease;
    appearance: none;
}
.member-search__field input:focus,
.member-search__field select:focus {
    outline: none;
    border-color: var(--text);
    box-shadow: 0 0 0 3px rgba(17, 20, 24, .08);
}
.member-search__field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%236b7280' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 5 6 8 9 5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.member-search__meta {
    font-size: 14px;
    color: var(--text-muted);
}

.member-search__results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.member-search__page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.member-search__page:empty { display: none; }

.member-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 20px;
    transition: border-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}
.member-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.member-card__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.member-card__name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.005em;
    color: var(--text);
}
.member-card__number {
    font-size: 12px;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.member-card__meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 14px;
    margin: 0;
}
.member-card__meta dt {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}
.member-card__meta dd {
    margin: 2px 0 0;
    font-size: 14px;
    color: var(--text);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid transparent;
}
.badge--good {
    background: var(--status-bg);
    color: var(--status-fg);
    border-color: rgba(6, 95, 70, .14);
}
.badge--bad {
    background: var(--danger-bg);
    color: var(--danger-fg);
    border-color: var(--danger-border);
}

.member-search__more {
    display: grid;
    place-content: center;
    padding: 24px 0 8px;
}
.member-search__end {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.member-search__empty {
    grid-column: 1 / -1;
    color: var(--text-muted);
    text-align: center;
    padding: 32px 0;
}

@media (max-width: 920px) {
    .member-search__filters { grid-template-columns: 1fr 1fr; }
    .member-search__field--grow { grid-column: 1 / -1; }
    .member-search__page { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .member-search__filters { grid-template-columns: 1fr; }
    .member-search__page { grid-template-columns: 1fr; }
}

/* ----- a11y helper ----- */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

/* ----- homepage search CTA ----- */
.search-cta {
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 36px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: center;
}
.search-cta__copy .block-eyebrow { margin-bottom: 8px; }
.search-cta__copy h2 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
}
.search-cta__copy p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14.5px;
}
.search-cta__form {
    display: flex;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 8px;
    box-shadow: var(--shadow-xs);
}
.search-cta__form input[type="search"] {
    flex: 1;
    min-width: 0;
    padding: 11px 13px;
    border: 0;
    background: transparent;
    font: inherit;
    color: var(--text);
    outline: none;
}
.search-cta__form input[type="search"]::placeholder { color: var(--text-subtle); }
.search-cta__form .btn { white-space: nowrap; }

@media (max-width: 720px) {
    .search-cta { grid-template-columns: 1fr; padding: 28px; }
    .search-cta__form { flex-direction: column; }
    .search-cta__form .btn { width: 100%; }
}
