/* ─────────────────────────────────────────────────────────────
   Waypoint Noven — Consumer Site
   Dark navy + gold. Self-contained (no dependency on the admin app).
   ───────────────────────────────────────────────────────────── */

:root {
    --navy-900: #10192c;
    --navy-800: #17233b;
    --navy-700: #1f2e4c;
    --navy-deep: #0a1020;

    --ink-100: #f5f8ff;
    --ink-80:  rgba(245,248,255,0.78);
    --ink-60:  rgba(245,248,255,0.58);
    --ink-40:  rgba(245,248,255,0.40);

    --gold:     #b89548;
    --gold-lt:  #d4af6a;
    --gold-pale: rgba(184,149,72,0.12);
    --gold-edge: rgba(184,149,72,0.28);

    --bad:  #ef4444;
    --good: #22c55e;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-ui: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;

    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;
    --r-xl: 20px;
    --r-pill: 999px;

    --page-bg:
        radial-gradient(1400px 700px at 15% -20%, rgba(138,164,214,0.10), transparent 60%),
        radial-gradient(1000px 600px at 110% 110%, rgba(184,149,72,0.05), transparent 60%),
        linear-gradient(180deg, #1b294a 0%, #18243d 45%, var(--navy-800) 100%);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--font-ui);
    background: var(--page-bg);
    color: var(--ink-100);
    -webkit-font-smoothing: antialiased;
    line-height: 1.55;
    min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ─────────────────────────────────────────────── */
.nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(16, 25, 44, 0.82);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
    font-family: var(--font-display); font-weight: 800;
    font-size: 20px; letter-spacing: 0.02em; color: #fff;
    display: inline-flex; align-items: center; gap: 10px;
}
.logo .mark { display: none; }
.logo small { font-size: 9px; letter-spacing: 3px; color: var(--ink-40); display: block; margin-top: -2px; }

.nav-links { display: flex; gap: 4px; font-size: 13px; color: var(--ink-80); }
.nav-links a { padding: 8px 14px; border-radius: var(--r-sm); transition: background 120ms, color 120ms; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-links a.is-active { color: var(--gold-lt); }

.nav-cta {
    background: linear-gradient(180deg, var(--gold-lt), var(--gold));
    color: #1a1200;
    padding: 10px 18px;
    border-radius: var(--r-md);
    font-size: 13px;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
    transition: filter 120ms;
}
.nav-cta:hover { filter: brightness(1.06); }

.nav-burger {
    display: none;
    width: 44px; height: 44px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    align-items: center; justify-content: center;
}

@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: inline-flex; }
}

/* ── MOBILE MENU OVERLAY ─────────────────────────────── */
.mobile-menu {
    display: none;
    position: fixed; inset: 0; z-index: 100;
    background: var(--navy-deep);
    padding: 80px 32px 32px;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 700;
    color: var(--ink-80);
    padding: 12px 0;
    letter-spacing: -0.01em;
}
.mobile-menu a.is-active { color: var(--gold-lt); }
.mobile-menu .nav-cta {
    margin-top: 20px;
    font-size: 14px;
    padding: 14px 22px;
}
.mobile-menu-close {
    position: absolute; top: 20px; right: 20px;
    width: 44px; height: 44px;
    border-radius: var(--r-sm);
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 120px 24px 140px;
    overflow: hidden;
    text-align: center;
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 800px 400px at 50% 20%, rgba(184,149,72,0.15), transparent 60%),
        radial-gradient(ellipse 600px 300px at 50% 100%, rgba(138,164,214,0.08), transparent 70%);
    pointer-events: none;
}
@media (max-width: 720px) { .hero { padding: 72px 24px 96px; } }
.hero-inner { max-width: 900px; margin: 0 auto; position: relative; }
.eyebrow {
    font-size: 11px; font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 24px;
}
.hero h1 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(44px, 7vw, 92px);
    line-height: 1; letter-spacing: -0.025em;
    margin: 0 0 28px;
    color: #fff;
}
.hero h1 em { color: var(--gold-lt); font-style: italic; font-weight: 800; }
.hero-sub {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 26px);
    color: var(--ink-80);
    line-height: 1.4;
    max-width: 680px;
    margin: 0 auto 40px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.hero-meta { color: var(--ink-60); font-size: 14px; letter-spacing: 0.04em; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 16px 28px;
    border-radius: var(--r-md);
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font-ui);
    text-decoration: none;
    transition: filter 120ms, background 120ms, border-color 120ms;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(180deg, var(--gold-lt), var(--gold));
    color: #1a1200;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.35),
        0 12px 32px rgba(184,149,72,0.25);
}
.btn-primary:hover { filter: brightness(1.06); }
.btn-ghost {
    background: rgba(255,255,255,0.04);
    color: #fff;
    border-color: rgba(255,255,255,0.14);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.24); }

/* ── SECTIONS ────────────────────────────────────────── */
section { padding: 96px 24px; }
@media (max-width: 720px) { section { padding: 64px 20px; } }
.sec-inner { max-width: 1100px; margin: 0 auto; }
.sec-eye {
    color: var(--gold-lt);
    font-size: 11px; letter-spacing: 2.4px; text-transform: uppercase;
    font-weight: 700; margin-bottom: 16px;
}
.sec-title {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(32px, 5vw, 52px);
    letter-spacing: -0.02em; line-height: 1.1;
    margin: 0 0 24px; color: #fff;
}
.sec-sub { color: var(--ink-80); font-size: 17px; max-width: 680px; }

/* ── MEET THE BROKER ─────────────────────────────────── */
.broker {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 56px; align-items: center;
}
@media (max-width: 900px) { .broker { grid-template-columns: 1fr; gap: 32px; } }
.broker-photo {
    aspect-ratio: 4/5;
    border-radius: var(--r-xl);
    overflow: hidden;
    background:
        radial-gradient(ellipse at 40% 30%, rgba(184,149,72,0.3), transparent 60%),
        linear-gradient(180deg, #2a3346, #0f1624);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.broker-body h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    color: var(--gold-lt);
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    font-weight: 700;
}
.broker-body p { color: var(--ink-80); font-size: 16px; margin: 0 0 16px; max-width: 560px; }
.broker-body .pull {
    color: #fff; font-family: var(--font-display);
    font-size: 20px; font-style: italic; font-weight: 600;
}
.broker-license {
    margin-top: 32px;
    padding: 20px 24px;
    border-left: 2px solid var(--gold);
    background: rgba(255,255,255,0.02);
    border-radius: 0 var(--r-md) var(--r-md) 0;
    font-size: 13px; color: var(--ink-80); line-height: 1.8;
}
.broker-license strong { color: #fff; font-weight: 600; }

/* ── BENEFIT GRID ────────────────────────────────────── */
.benefits-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.benefits-head p { color: var(--ink-80); font-size: 17px; }
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 720px) { .benefit-grid { grid-template-columns: 1fr; } }
.benefit {
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-lg);
    padding: 36px;
    transition: border-color 200ms, transform 200ms;
}
.benefit:hover { border-color: var(--gold-edge); transform: translateY(-2px); }
.benefit .tag {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--gold-lt);
    padding: 4px 10px;
    border: 1px solid var(--gold-edge);
    border-radius: var(--r-pill);
    margin-bottom: 20px;
    background: var(--gold-pale);
}
.benefit h3 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 24px; color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.benefit p { color: var(--ink-80); font-size: 14px; margin: 0 0 20px; }
.benefit .more { color: var(--gold-lt); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

/* ── CLOSING CTA ─────────────────────────────────────── */
.closing {
    text-align: center;
    background:
        radial-gradient(ellipse 900px 400px at 50% 50%, rgba(184,149,72,0.12), transparent 60%),
        linear-gradient(180deg, #0a1020, #060912);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 120px 24px;
}
.closing h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    margin: 0 0 16px; letter-spacing: -0.025em;
    color: #fff; font-weight: 700; line-height: 1.05;
}
.closing h2 em { color: var(--gold-lt); font-style: italic; font-weight: 700; }
.closing p { color: var(--ink-80); font-size: 17px; max-width: 560px; margin: 0 auto 36px; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
    background: #060912;
    color: var(--ink-60);
    padding: 56px 24px 32px;
    text-align: center;
}
.footer .logo { justify-content: center; margin-bottom: 20px; }
.footer .socials { display: flex; gap: 12px; justify-content: center; margin: 24px 0; }
.footer .socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink-80);
    font-size: 16px;
    transition: border-color 120ms, color 120ms;
}
.footer .socials a:hover { border-color: var(--gold-edge); color: var(--gold-lt); }
.footer-legal {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 11px;
    color: var(--ink-40);
    line-height: 1.7;
}

/* ── FORM (book.html) ───────────────────────────────── */
.form-page { padding: 80px 24px 120px; max-width: 640px; margin: 0 auto; }
.form-head { text-align: center; margin-bottom: 48px; }
.form-head h1 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(32px, 5vw, 52px);
    letter-spacing: -0.025em; line-height: 1.05;
    margin: 0 0 16px; color: #fff;
}
.form-head h1 em { color: var(--gold-lt); font-style: italic; font-weight: 800; }
.form-head p { color: var(--ink-80); font-size: 16px; max-width: 520px; margin: 0 auto; }

.form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-lg);
    padding: 36px;
}
@media (max-width: 520px) { .form-card { padding: 24px; } }

.field { margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; gap: 0; }
    .field-row .field { margin-bottom: 22px; } }
.field-row .field { margin-bottom: 0; }

.field label {
    display: block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--ink-60);
    margin-bottom: 8px;
}
.field .optional { color: var(--ink-40); text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 11px; margin-left: 6px; }
.field input, .field textarea, .field select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-md);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 15px;
    transition: border-color 120ms, background 120ms;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-40); }
.field input:focus, .field textarea:focus, .field select:focus {
    outline: none;
    border-color: var(--gold-lt);
    background: rgba(255,255,255,0.06);
}
.field-hint { color: var(--ink-60); font-size: 12px; margin-top: 8px; line-height: 1.5; }

.form-submit {
    width: 100%;
    padding: 18px 24px;
    font-size: 15px;
    margin-top: 16px;
}
.form-note {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    color: var(--ink-60);
    line-height: 1.6;
}
.form-note a { color: var(--gold-lt); }

.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
    background: rgba(34,197,94,0.05);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: var(--r-lg);
}
.form-success.is-visible { display: block; }
.form-success h2 {
    font-family: var(--font-display); font-weight: 700;
    font-size: 28px; color: #fff;
    margin: 0 0 12px; letter-spacing: -0.015em;
}
.form-success p { color: var(--ink-80); font-size: 16px; margin: 0 0 8px; }

.form-error {
    display: none;
    margin-top: 16px;
    padding: 14px 16px;
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: var(--r-md);
    font-size: 13px;
    color: #fca5a5;
}
.form-error.is-visible { display: block; }

/* ── FOOTER LICENSE BLOCK ────────────────────────────────
   Identifies the licensed brokerage entity in every footer.
   Compass mark on left (matches header .logo .mark technique
   so the design system stays unified), stacked text on right
   with a typographic hierarchy from eyebrow label down to
   small affiliations line. Subtle gold rule above the block
   separates it from the contact/links rows above. */
.footer-license-block {
    max-width: 720px;
    margin: 24px auto 0;
    padding-top: 28px;
    border-top: 1px solid var(--gold-edge);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
}
.license-mark { display: none; }
.license-content { display: flex; flex-direction: column; gap: 4px; }
.license-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--gold-lt);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.2;
}
.license-states {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.license-numbers {
    font-size: 12px;
    color: var(--ink-80);
    font-weight: 500;
    line-height: 1.5;
    margin-top: 2px;
}
.license-numbers > span { display: block; }
.license-sep { display: none; }
.license-affiliations {
    font-size: 11px;
    color: var(--ink-60);
    margin-top: 2px;
    line-height: 1.5;
}
@media (max-width: 560px) {
    .footer-license-block {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* ── TEAM GRID + CARDS (home + /team) ─────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.022));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: border-color 200ms, transform 200ms;
}
.team-card:hover { border-color: var(--gold-edge); transform: translateY(-2px); }
.team-card-photo {
    aspect-ratio: 4/3;
    background: linear-gradient(180deg, var(--navy-700), var(--navy-deep));
    overflow: hidden;
    position: relative;
}
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.team-card-photo-initials { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: clamp(48px, 6vw, 72px); color: var(--gold-lt); letter-spacing: 0.05em; font-weight: 600; pointer-events: none; }
.team-card-body { padding: 20px 24px 24px; }
.team-card-name { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: #fff; letter-spacing: -0.01em; margin: 0 0 4px; }
.team-card-role { font-size: 12px; color: var(--ink-60); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; }
.team-see-all { text-align: center; margin-top: 40px; }
.team-see-all a { color: var(--gold-lt); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

/* ── TEAM CARD: contact + license (Step 6 — extends home/team grid) ─ */
.team-card-contact { margin-top: 10px; display: flex; flex-direction: column; gap: 4px; font-size: 12px; color: var(--ink-80); }
.team-card-contact a { color: var(--gold-lt); text-decoration: none; transition: color 120ms; }
.team-card-contact a:hover { color: #fff; }
.team-card-license { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--gold-edge); display: flex; flex-direction: column; gap: 6px; font-size: 11px; }
.team-card-license-info { color: var(--ink-60); letter-spacing: 0.02em; }
.team-card-view-license { color: var(--gold-lt); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 10px; }
.team-card-view-license:hover { color: #fff; }

/* ── TEAM FILTERS (Step 6 — All / NM / UT button group above grid) ── */
.team-filters { display: flex; gap: 8px; justify-content: center; margin: 0 0 32px; flex-wrap: wrap; }
.team-filter { padding: 8px 18px; border-radius: var(--r-md); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); color: var(--ink-80); cursor: pointer; font-family: var(--font-ui); transition: background 120ms, border-color 120ms, color 120ms; }
.team-filter:hover { background: rgba(255,255,255,0.08); color: #fff; }
.team-filter.is-active { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }

/* ── TEAM PAGE STATES (Step 6 — loading / empty / error messaging) ── */
.team-loading, .team-empty, .team-error { text-align: center; padding: 60px 24px; color: var(--ink-60); font-size: 14px; line-height: 1.6; }
.team-empty a, .team-error a { color: var(--gold-lt); }

/* ── BIO PAGE (Step 6 — individual realtor pages at /team/{slug}) ─── */
.bio-hero { padding: 80px 24px 56px; text-align: center; }
.bio-hero-inner { max-width: 560px; margin: 0 auto; }
.bio-hero-photo { position: relative; width: 180px; height: 180px; margin: 0 auto 28px; border-radius: 50%; overflow: hidden; background: linear-gradient(180deg, var(--navy-700), var(--navy-deep)); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.bio-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio-hero-photo img[src*="william-lambert"] { object-position: center 20%; }
.bio-hero-photo-initials { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: clamp(36px, 4vw, 56px); color: var(--gold-lt); letter-spacing: 0.05em; font-weight: 600; pointer-events: none; }
.bio-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(36px, 5vw, 52px); letter-spacing: -0.02em; line-height: 1.05; margin: 8px 0 12px; color: #fff; }
.bio-hero-role { color: var(--gold-lt); font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.bio-hero-license { color: var(--ink-60); font-size: 12px; letter-spacing: 0.04em; }
.bio-license-img { margin: 0; padding: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg); }
.bio-license-img img { width: 100%; height: auto; border-radius: var(--r-md); display: block; }
.bio-license-img figcaption { margin-top: 12px; font-size: 12px; color: var(--ink-60); text-align: center; letter-spacing: 0.04em; }
.bio-section .sec-title { font-size: clamp(22px, 3vw, 32px); margin-bottom: 16px; }

/* ── SMOOTH SCROLL — site-wide, respects prefers-reduced-motion ──── */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ── CONTACT PAGE — two-column layout (Step 7) ──────── */
.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; max-width: 1040px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 820px) { .contact-layout { grid-template-columns: 1fr; gap: 24px; } }
.contact-info-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg); padding: 32px 28px; height: fit-content; }
.contact-info-card h2 { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #fff; margin: 0 0 24px; letter-spacing: -0.01em; }
.contact-info-block { margin-bottom: 22px; }
.contact-info-block:last-child { margin-bottom: 0; }
.contact-info-label { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink-60); margin-bottom: 6px; }
.contact-info-value { font-size: 16px; color: #fff; line-height: 1.5; }
.contact-info-value a { color: var(--gold-lt); text-decoration: none; transition: color 120ms; }
.contact-info-value a:hover { color: #fff; }
.contact-info-note { color: var(--ink-60); font-size: 13px; margin-top: 4px; }
