/* =====================================================
   ARCH DENTAL + AESTHETICS — REFERRING DOCTORS
   Premium, conversion-focused, medically-trustworthy UI
   ===================================================== */

/* -----------------------------
   1. Design Tokens — matched to arch-dental.ca
------------------------------ */
:root {
    /* Brand neutrals (sampled from the live site) */
    --ink-900: #18190E;          /* near-black olive — heading color */
    --ink-800: #1C2022;
    --ink-700: #333333;          /* body text */
    --ink-500: #686767;          /* muted */
    --ink-400: #8C8C8C;
    --ink-300: #BFBFBF;

    --bg-page: #ffffff;
    --bg-soft: #F1F0F0;          /* soft cream/sand */
    --bg-tinted: #F8F7F5;
    --bg-deep: #2C3338;          /* charcoal — used in footer/dark sections */

    /* Brand accents */
    --sage-700: #8AA56C;
    --sage-600: #A4BD85;         /* sage/olive green — primary accent */
    --sage-500: #B5CC9A;
    --sage-100: #EEF3E5;

    --beige-500: #D3C0B7;        /* warm beige — secondary accent */
    --beige-300: #E5D8D1;
    --beige-100: #F5EFEC;

    --black: #000000;
    --white: #ffffff;

    /* Lines */
    --line: #E5E5E5;
    --line-strong: #D0D0D0;

    /* Status */
    --success: #4F7A3A;
    --success-bg: #EEF3E5;
    --error: red;
    --error-bg: #FDECEA;

    /* Backwards-compat aliases (so legacy rules keep working) */
    --navy-900: #18190E;
    --navy-800: #1C2022;
    --navy-700: #2C3338;
    --navy-600: #4A4F52;
    --teal-600: #A4BD85;
    --teal-500: #B5CC9A;
    --teal-100: #EEF3E5;
    --gold-500: #D3C0B7;
    --gold-400: #E5D8D1;

    /* Type — matched to live site */
    --font-display: "Noto Serif Ethiopic", "Noto Serif", "Times New Roman", Georgia, serif;
    --font-sans: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-button: "Roboto", "Lato", -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing & Radius — site uses very square corners */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 6px;
    --radius-pill: 2px;

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(24, 25, 14, 0.05);
    --shadow-sm: 0 4px 14px rgba(24, 25, 14, 0.06);
    --shadow-md: 0 10px 30px rgba(24, 25, 14, 0.08);
    --shadow-lg: 0 20px 50px rgba(24, 25, 14, 0.12);

    /* Motion */
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* -----------------------------
   2. Base & Reset
------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-700);
    background: var(--bg-page);
}

img,
svg {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: var(--ink-900);
    font-weight: 500;
    letter-spacing: 0;
    margin: 0 0 0.6em;
    line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1rem; font-family: var(--font-sans); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-900); }

p { margin: 0 0 1em; }

a {
    color: var(--navy-700);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}
a:hover { color: var(--teal-600); }
a:focus-visible {
    outline: 2px solid var(--teal-500);
    outline-offset: 3px;
    border-radius: 3px;
}

ul { padding-left: 1.1em; }

.container {
    width: min(100% - 40px, 1180px);
    margin-inline: auto;
}

.eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--sage-700);
    margin: 0 0 1rem;
    font-family: var(--font-sans);
}
.eyebrow-accent { color: var(--sage-700); }
.eyebrow-light  { color: var(--beige-500); }

.req {
    color: var(--error);
    margin-left: 2px;
}

/* -----------------------------
   3. Buttons
------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55em;
    padding: 0.95em 2em;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font-button);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s var(--ease), background 0.25s var(--ease),
        color 0.25s var(--ease), border-color 0.25s var(--ease);
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase;
}
.btn-sm { padding: 0.7em 1.4em; font-size: 0.85rem; }
.btn-lg { padding: 1.1em 2.4em; font-size: 1.05rem; }

.btn-primary {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}
.btn-primary:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--black);
    transform: translateY(-1px);
}
.btn-primary:focus-visible {
    outline: 3px solid var(--sage-600);
    outline-offset: 3px;
}

.btn[disabled] {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: var(--shadow-xs) !important;
}

.btn-spinner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    display: none;
    animation: spin 0.7s linear infinite;
}
.is-loading .btn-spinner { display: inline-block; }
.is-loading .btn-label { opacity: 0.75; }

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* -----------------------------
   4. Header
------------------------------ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(150%) blur(10px);
    -webkit-backdrop-filter: saturate(150%) blur(10px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    color: var(--navy-900);
}
.brand-mark {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}
.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-500);
    margin-top: 4px;
}
.brand-mark.light { color: #fff; }
.brand-sub.light { color: rgba(255, 255, 255, 0.65); }

.primary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
}
.primary-nav a {
    font-size: 0.92rem;
    color: var(--ink-900);
    font-weight: 500;
    position: relative;
    padding: 6px 0;
}
.primary-nav a[aria-current="page"] {
    color: var(--teal-600);
}
.primary-nav a[aria-current="page"]::after {
    content: "";
    position: absolute;
    inset: auto 0 -2px 0;
    height: 2px;
    background: var(--teal-600);
    border-radius: 2px;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--navy-900);
    border-radius: 2px;
    transition: transform 0.25s var(--ease), opacity 0.2s;
}

@media (max-width: 980px) {
    .primary-nav { display: none; }
    .nav-toggle { display: flex; }

    .primary-nav.open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 16px 20px;
        box-shadow: var(--shadow-md);
    }
    .primary-nav.open ul {
        flex-direction: column;
        gap: 14px;
    }
}

/* -----------------------------
   5. Hero
------------------------------ */
.hero {
    position: relative;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
    padding: clamp(60px, 9vw, 120px) 0 clamp(60px, 8vw, 100px);
    overflow: hidden;
    isolation: isolate;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(74, 155, 156, 0.12), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(13, 31, 60, 0.08), transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(201, 168, 122, 0.08), transparent 50%);
}
.hero-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(20, 33, 61, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(20, 33, 61, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
}

.hero-inner {
    max-width: 880px;
    text-align: center;
}

.hero h1 {
    margin-top: 0.4rem;
}

.hero-lede {
    font-size: clamp(1.05rem, 1.4vw, 1.18rem);
    color: var(--ink-700);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-pillars {
    list-style: none;
    padding: 0;
    margin: 0 0 2.4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
}
.hero-pillars li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line);
    font-size: 0.88rem;
    color: var(--ink-700);
    font-weight: 500;
    box-shadow: var(--shadow-xs);
}
.pillar-icon {
    width: 22px;
    height: 22px;
    color: var(--teal-600);
}
.pillar-icon svg { width: 100%; height: 100%; }

/* -----------------------------
   6. Intro Copy
------------------------------ */
.intro {
    padding: clamp(60px, 8vw, 100px) 0;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
}
.intro p { color: var(--ink-700); font-size: 1.02rem; }

.intro-card {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-xs);
}
.intro-card h3 {
    margin-top: 0;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--teal-600);
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}
.check-list li {
    position: relative;
    padding: 10px 0 10px 30px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-900);
    font-weight: 500;
    font-size: 0.96rem;
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--teal-100);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c7a7b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 880px) {
    .intro-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* -----------------------------
   7. Form Section
------------------------------ */
.form-section {
    background: var(--bg-soft);
    padding: clamp(60px, 9vw, 110px) 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}
.section-sub {
    color: var(--ink-500);
    font-size: 0.98rem;
}

.referral-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 4vw, 56px);
    box-shadow: var(--shadow-md);
    max-width: 920px;
    margin: 0 auto;
}

.referral-form fieldset {
    border: 0;
    padding: 0;
    margin: 0 0 36px;
}
.referral-form fieldset:last-of-type { margin-bottom: 24px; }

.referral-form legend {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--teal-600);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    width: 100%;
}
.legend-sub {
    margin: -12px 0 18px;
    color: var(--ink-500);
    font-size: 0.92rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}
.grid-2 > .field-full,
.field-full {
    grid-column: 1 / -1;
    width: 100%;
}
.field-full textarea,
.field-full input {
    width: 100%;
}
@media (max-width: 720px) {
    .grid-2 { grid-template-columns: 1fr; }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label,
.referral-form .checkbox > span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink-900);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea,
.field select {
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 0.98rem;
    color: var(--ink-700);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder {
    color: var(--ink-400);
}
.field input:hover,
.field textarea:hover { border-color: var(--ink-500); }

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--sage-600);
    box-shadow: 0 0 0 4px rgba(164, 189, 133, 0.20);
}

.field textarea { resize: vertical; min-height: 130px; }

.field.has-error input,
.field.has-error textarea {
    border-color: var(--error);
    box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.1);
}

.field-error,
.form-error {
    display: none;
    margin: 4px 0 0;
    color: var(--error);
    font-size: 0.83rem;
    font-weight: 500;
}
.field.has-error .field-error,
.has-error > .field-error { display: block; }

.field.has-error input,
.field.has-error textarea,
.field.has-error select {
    border-color: var(--error);
    box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.1);
}

/* Doctor radio cards */
.radio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 720px) {
    .radio-grid { grid-template-columns: 1fr; }
}

.radio-card {
    cursor: pointer;
    position: relative;
}
.radio-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.radio-card-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1.5px solid var(--line-strong);
    border-radius: var(--radius-md);
    background: #fff;
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease),
        box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.radio-card:hover .radio-card-inner {
    border-color: var(--teal-500);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}
.radio-card input:focus-visible + .radio-card-inner {
    outline: 3px solid var(--teal-500);
    outline-offset: 2px;
}
.radio-card input:checked + .radio-card-inner {
    border-color: var(--teal-600);
    background: var(--teal-100);
    box-shadow: 0 0 0 4px rgba(74, 155, 156, 0.12);
}

.radio-avatar {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy-900);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.radio-meta { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.radio-title { font-weight: 600; color: var(--navy-900); font-size: 1rem; }
.radio-sub { font-size: 0.85rem; color: var(--ink-500); }

.radio-tick {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid var(--line-strong);
    color: transparent;
    display: grid;
    place-items: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.radio-tick svg { width: 14px; height: 14px; }
.radio-card input:checked + .radio-card-inner .radio-tick {
    background: var(--teal-600);
    border-color: var(--teal-600);
    color: #fff;
}

/* Upload */
.upload-wrap { display: flex; flex-direction: column; gap: 12px; }

.upload-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    padding: 36px 24px;
    border: 1.5px dashed var(--line-strong);
    border-radius: var(--radius-md);
    background: var(--bg-soft);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.upload-zone:hover {
    border-color: var(--teal-500);
    background: #fbfdfd;
}
.upload-zone.is-drag {
    border-color: var(--teal-600);
    background: var(--teal-100);
    transform: scale(1.005);
}
.upload-zone input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    clip: rect(0 0 0 0);
}
.upload-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--teal-600);
    display: grid;
    place-items: center;
    margin-bottom: 6px;
    box-shadow: var(--shadow-xs);
}
.upload-icon svg { width: 22px; height: 22px; }
.upload-text {
    font-size: 0.98rem;
    color: var(--ink-900);
}
.upload-text strong { color: var(--teal-600); }
.upload-hint {
    font-size: 0.82rem;
    color: var(--ink-500);
}

.upload-helper {
    font-size: 0.85rem;
    color: var(--ink-500);
    margin: 0;
}

.file-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.file-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--ink-900);
}
.file-list .file-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}
.file-list .file-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.file-list .file-size { color: var(--ink-500); font-size: 0.8rem; }
.file-list button {
    background: transparent;
    border: 0;
    color: var(--ink-400);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
}
.file-list button:hover { color: var(--error); background: var(--error-bg); }

/* Consent / Checkbox */
.consent { margin-bottom: 30px; }
.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 16px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: border-color 0.2s;
}
.checkbox:hover { border-color: var(--teal-500); }
.checkbox input {
    margin: 4px 0 0;
    width: 18px;
    height: 18px;
    accent-color: var(--teal-600);
    flex-shrink: 0;
    cursor: pointer;
}
.checkbox > span {
    font-size: 0.92rem;
    color: var(--ink-700);
    font-weight: 400;
    line-height: 1.5;
}

/* Honeypot */
.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Submit area */
.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding-top: 12px;
}
.form-actions .btn { min-width: 220px; }
.form-meta {
    color: var(--ink-500);
    font-size: 0.82rem;
    margin: 0;
    max-width: 460px;
}

.form-status {
    margin-top: 22px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    display: none;
}
.form-status.is-success {
    display: block;
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid rgba(31, 143, 95, 0.25);
}
.form-status.is-error {
    display: block;
    background: var(--error-bg);
    color: var(--error);
    border: 1px solid rgba(192, 57, 43, 0.2);
}

/* -----------------------------
   8. CTA Section
------------------------------ */
.cta-section {
    position: relative;
    background: var(--bg-deep);
    color: rgba(255, 255, 255, 0.86);
    padding: clamp(64px, 9vw, 110px) 0;
    overflow: hidden;
    isolation: isolate;
}
.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(74, 155, 156, 0.18), transparent 55%),
        radial-gradient(ellipse at 0% 100%, rgba(201, 168, 122, 0.12), transparent 50%);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: center;
}
@media (max-width: 880px) {
    .cta-inner { grid-template-columns: 1fr; gap: 40px; }
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 16px;
}
.cta-message p { color: rgba(255, 255, 255, 0.78); font-size: 1.04rem; }

.cta-contact {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(6px);
}
.cta-contact h3 {
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-400);
    margin-bottom: 18px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-list li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.86);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-label {
    color: var(--gold-400);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 2px;
}
.contact-list a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 1px;
}
.contact-list a:hover {
    color: var(--gold-400);
    border-bottom-color: var(--gold-400);
}

/* -----------------------------
   9. Footer
------------------------------ */
.site-footer {
    background: #081628;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 64px;
    font-size: 0.92rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
}
@media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.footer-brand p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 320px;
}

.site-footer h4 {
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
}
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-footer a {
    color: rgba(255, 255, 255, 0.7);
}
.site-footer a:hover { color: var(--gold-400); }

.site-footer address {
    font-style: normal;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.84rem;
}
.legal-links {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* -----------------------------
   10. Reduced motion
------------------------------ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

body .CareCruFadeIn, body .CareCruModal {
    display: none !important;
}
header.lp_header {
    padding: 20px 0;
    background-color: #000;
}
.header_logo img {
    width: 100%;
    max-width: 200px;
}
.logo img {
    width: auto;
}
body .form-error, body .error {
    font-weight: 600;
    color: red;
    font-size: 12px;
    left: 0;
    display: block;
    text-align: left;
}