/* ===== Brandenbed Living Spaces: Public Marketing Site ===== */
/* Editorial layout (serif display type, hero/ticker/gallery/process template) built on the
   actual brand palette used across the admin panel and onboarding form: navy #0D1B2E and
   gold #C9A227 (see public.css --navy / --gold), on white/light-grey rather than warm cream.
   Builds on brand tokens (--gold, --text-muted, --border, --radius, etc.) defined in
   public.css, without touching that file, so the admin panel (which never loads this
   stylesheet) is unaffected. */

:root {
    /* --ink/--cream-deep are the same brand navy/grey as public.css's
       --navy/--bg, now sourced from tokens.css so there's one canonical
       value instead of two names for the same color. */
    --ink: var(--bb-navy-900, #0D1B2E);
    --ink-soft: var(--bb-navy-700, #1E3050);
    --ink-line: rgba(13,27,46,0.7);
    --cream: #FFFFFF;
    --cream-deep: #F3F4F6;
    --hairline: rgba(13,27,46,0.12);
    --hairline-on-dark: rgba(255,255,255,0.14);
    --serif: 'Cormorant Garamond', serif;
}

* { box-sizing: border-box; }

/* ---- Keyboard focus ---- */
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ---- Respect reduced-motion preference ---- */
@media (prefers-reduced-motion: reduce) {
    .ticker-track { animation: none; }
    .gallery-item img, .feature-card, .num-row, .btn { transition: none !important; }
}

/* ---- Scroll-reveal: fade + rise into view, once, on first intersection.
   Applied via the small IntersectionObserver in site_footer.php. Kept in
   the same fast ease-out family as the rest of the site's transitions
   rather than a slower "cinematic" easing. An optional inline
   `style="--reveal-delay:Nms"` staggers a group of siblings. ---- */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s var(--bb-ease-out, cubic-bezier(0.16, 1, 0.3, 1)), transform 0.6s var(--bb-ease-out, cubic-bezier(0.16, 1, 0.3, 1));
    transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

img { max-width: 100%; display: block; }

body { background: var(--cream); color: var(--ink); }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

em, .italic { font-style: italic; }

/* ---- Logo wordmark ---- */
.logo-img {
    border-radius: 50%;
    border: 1.5px solid var(--gold-border);
    background: var(--cream);
    padding: 7px;
    box-sizing: border-box;
}
.logo-text strong { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; letter-spacing: 0; }
.logo-text span { font-style: italic; letter-spacing: 0.06em; }

/* ---- Header / Nav ---- */
.nav-header { position: sticky; top: 0; z-index: 100; background: var(--ink) !important; box-shadow: none !important; border-bottom: 1px solid var(--hairline-on-dark); }

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-nav a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 0.5rem 0.9rem;
    border-radius: 3px;
    transition: background 0.15s, color 0.15s;
}

.main-nav a:hover { background: rgba(255,255,255,0.08); color: var(--cream); }
.main-nav a.active { color: var(--cream); background: rgba(255,255,255,0.08); }

.main-nav a.nav-cta {
    margin-left: 0.5rem;
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    border-radius: 2px;
}
.main-nav a.nav-cta:hover { background: var(--gold-light); color: var(--ink); }

.main-nav a.nav-admin {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 0.25rem;
    border: 1px solid rgba(255,255,255,0.18);
}
.main-nav a.nav-admin:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--cream);
    cursor: pointer;
    padding: 0.4rem;
}

@media (max-width: 860px) {
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--ink);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 1rem 1rem;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.15s, transform 0.15s;
        box-shadow: 0 8px 16px rgba(0,0,0,0.35);
    }
    .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .main-nav a { padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--hairline-on-dark); border-radius: 0; }
    .main-nav a.nav-cta { margin: 0.5rem 0 0; text-align: center; border-radius: 2px; }
}

/* .site-header shrinks from 64px to 56px tall at this same breakpoint
   (public.css) — the dropdown above assumes the full 64px, which left
   an ~8px gap between the header and the open mobile nav on phones. */
@media (max-width: 768px) {
    .main-nav { top: 56px; }
}

/* ---- Hero ---- */
.hero {
    background: var(--ink);
    color: var(--cream);
    padding: 6rem 1.5rem 3.5rem;
    position: relative;
    overflow: hidden;
}

.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) {
    /* Skip the video download on small screens: the poster frame (already
       the video's first paint) carries the same look at a fraction of the weight. */
    .hero-video { display: none; }
    .hero-media { background: url('../img/hero/hero-poster.jpg') center / cover no-repeat; }
}
.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(13,27,46,0.86) 0%, rgba(30,48,80,0.8) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at 85% 15%, rgba(201,162,39,0.16), transparent 55%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.6rem, 7vw, 5.2rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.hero h1 em { color: var(--gold-light); font-style: italic; }

.hero p.lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.68);
    max-width: 560px;
    margin: 0 auto 2.4rem;
}

.hero-actions {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

/* Hero content fades/rises in once on page load, staggered — the only
   entrance animation that can't be scroll-triggered since it's already
   in view. Uses the same easing/distance as .reveal for a consistent feel. */
@keyframes heroRise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: none; }
}
.hero-eyebrow, .hero h1, .hero p.lead, .hero-actions {
    animation: heroRise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-eyebrow  { animation-delay: 0.05s; }
.hero h1       { animation-delay: 0.15s; }
.hero p.lead   { animation-delay: 0.3s; }
.hero-actions  { animation-delay: 0.42s; }

@media (prefers-reduced-motion: reduce) {
    .hero-eyebrow, .hero h1, .hero p.lead, .hero-actions { animation: none; }
}

.hero-scroll {
    position: absolute;
    right: 2rem;
    bottom: 1.75rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}
.hero-scroll span {
    writing-mode: vertical-rl;
    color: rgba(255,255,255,0.45);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.hero-scroll .hero-scroll-line { width: 1px; height: 36px; background: rgba(255,255,255,0.3); }
@media (max-width: 700px) { .hero-scroll { display: none; } }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 1.7rem;
    border-radius: 2px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: transform 0.15s var(--bb-ease-out, ease-out), box-shadow 0.15s var(--bb-ease-out, ease-out), background 0.15s var(--bb-ease-out, ease-out), color 0.15s var(--bb-ease-out, ease-out);
    border: 1px solid transparent;
    cursor: pointer;
}
/* Press feedback: instant-feeling confirmation the click registered. */
.btn:active { transform: scale(0.97); transition-duration: 0.1s; }

.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201,162,39,0.28); }
.btn-gold:active { transform: scale(0.97); }

.btn-outline { background: transparent; border-color: rgba(255,255,255,0.3); color: var(--cream); }
.btn-outline:hover { background: rgba(255,255,255,0.08); }

.btn-navy { background: var(--ink); color: var(--cream); }
.btn-navy:hover { background: var(--ink-soft); }

.btn-dark-outline { background: transparent; border-color: var(--hairline); color: var(--ink); }
.btn-dark-outline:hover { background: rgba(13,27,46,0.05); }

/* ---- Marquee ticker ---- */
.ticker {
    background: var(--ink);
    border-top: 1px solid var(--hairline-on-dark);
    overflow: hidden;
    padding: 1.1rem 0;
    position: relative;
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 32s linear infinite;
}
.ticker-track span {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    white-space: nowrap;
    padding: 0 1.75rem;
    display: inline-flex;
    align-items: center;
    gap: 1.75rem;
}
.ticker-track span::after { content: '·'; color: var(--gold); margin-left: 1.75rem; }
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---- Stats strip ---- */
.stats-strip {
    background: var(--ink);
    border-top: 1px solid var(--hairline-on-dark);
}
.stats-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1180px;
}
.stat-item {
    text-align: center;
    padding: 2.6rem 1rem;
    border-left: 1px solid var(--hairline-on-dark);
}
.stat-item:first-child { border-left: none; }
.stat-item strong {
    display: block;
    font-family: var(--serif);
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: -0.01em;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-item span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
@media (max-width: 700px) {
    .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(3) { border-left: none; }
}

/* ---- Generic section ---- */
.section { padding: 5.5rem 1.5rem; }
.section-tight { padding: 3rem 1.5rem; }
.section-alt { background: var(--cream-deep); }

.section-head {
    max-width: 640px;
    margin: 0 auto 3.5rem;
    text-align: center;
}
.section-eyebrow {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
    display: block;
}
.section-head h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-bottom: 0.9rem;
}
.section-head h2 em { color: var(--gold-dark); }
.section-head p { color: var(--text-muted); font-size: 1rem; }

/* ---- Checklist row ---- */
.checklist-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.75rem;
    max-width: 720px;
    margin: 0 auto 3rem;
}
.checklist-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
}
.checklist-item svg { color: var(--gold-dark); flex-shrink: 0; }

/* ---- Feature card grid ---- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
    background: var(--bg-2);
    border: 1px solid var(--hairline);
    border-radius: 3px;
    padding: 2rem 1.75rem;
    transition: box-shadow 0.2s var(--bb-ease-out, ease-out), transform 0.2s var(--bb-ease-out, ease-out);
}
.feature-card:hover { box-shadow: 0 16px 32px rgba(13,27,46,0.08); transform: translateY(-3px); }
.feature-icon {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--gold-bg);
    border: 1px solid var(--gold-border);
    color: var(--gold-dark);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.1rem;
    transition: transform 0.25s var(--bb-ease-out, ease-out);
}
.feature-card:hover .feature-icon { transform: scale(1.08) rotate(-4deg); }
.feature-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--ink); }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ---- Numbered list (services / values) ---- */
.num-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--hairline); }
.num-row {
    display: flex;
    align-items: baseline;
    gap: 1.75rem;
    padding: 1.9rem 0.25rem;
    border-bottom: 1px solid var(--hairline);
    transition: padding-left 0.2s var(--bb-ease-out, ease-out);
}
.num-row:hover { padding-left: 0.75rem; }
.num-index {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--gold-dark);
    width: 2.4rem;
    flex-shrink: 0;
}
.num-body { flex: 1; }
.num-body h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--ink);
    margin-bottom: 0.35rem;
}
.num-body p { color: var(--text-muted); font-size: 0.92rem; max-width: 560px; }
.num-row-arrow {
    font-size: 1.2rem;
    color: var(--gold-dark);
    flex-shrink: 0;
    opacity: 0;
    transform: translate(-4px, 0);
    transition: opacity 0.2s, transform 0.2s;
}
.num-row:hover .num-row-arrow { opacity: 1; transform: translate(0, 0); }

/* ---- Process steps ---- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }
.process-step { text-align: center; }
.process-num {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 0.75rem;
}
.process-step h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.86rem; color: var(--text-muted); }

/* ---- Photo gallery ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
    max-width: 1180px;
    margin: 0 auto;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    cursor: default;
}
.gallery-item.span-2 { grid-column: span 2; }
.gallery-item.span-row2 { grid-row: span 2; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13,27,46,0) 40%, rgba(13,27,46,0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem 1.1rem;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag {
    color: var(--gold-light);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}
.gallery-title { color: var(--cream); font-size: 0.95rem; font-weight: 600; }
.gallery-plus {
    position: absolute;
    top: 12px; right: 12px;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--cream);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-plus { opacity: 1; transform: scale(1); }
@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .gallery-item.span-2 { grid-column: span 2; }
}
@media (max-width: 560px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-item.span-2 { grid-column: span 1; }
}

/* ---- Ethos / quote section ---- */
.ethos-section {
    background: var(--ink);
    color: var(--cream);
    text-align: center;
    padding: 6rem 1.5rem;
}
.ethos-section .section-eyebrow { color: var(--gold-light); }
.ethos-quote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.6rem, 3.6vw, 2.6rem);
    line-height: 1.35;
    max-width: 820px;
    margin: 0 auto 1.75rem;
}
.ethos-attribution {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ---- CTA band ---- */
.cta-band {
    background: var(--ink);
    color: var(--cream);
    text-align: center;
    padding: 5.5rem 1.5rem;
}
.cta-band h2 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.9rem;
}
.cta-band h2 em { color: var(--gold-light); }
.cta-band p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }

/* ---- About page ---- */
.about-hero {
    position: relative;
    background: linear-gradient(160deg, rgba(13,27,46,0.88) 0%, rgba(30,48,80,0.82) 100%), url('../img/hero/about-interior.jpg') center 30% / cover no-repeat;
    color: var(--cream);
    padding: 6rem 1.5rem;
    text-align: center;
}
/* Owners page reuses the same background photo as About, so it gets a
   warmer gold-leaning gradient tint instead — enough to read as a
   distinct page without needing a second hero photograph. */
.about-hero--owners {
    background: linear-gradient(160deg, rgba(13,27,46,0.90) 0%, rgba(76,58,15,0.72) 100%), url('../img/hero/about-interior.jpg') center 30% / cover no-repeat;
}
.about-hero h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    margin-bottom: 0.9rem;
}
.about-hero h1 em { color: var(--gold-light); }
.about-hero p { color: rgba(255,255,255,0.72); max-width: 600px; margin: 0 auto; }

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--hairline);
    border: 1px solid var(--hairline);
}
@media (max-width: 700px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
    background: var(--cream);
    padding: 2rem 2rem 2rem 2.5rem;
    position: relative;
    transition: background 0.2s var(--bb-ease-out, ease-out);
}
.value-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s var(--bb-ease-out, ease-out);
}
.value-card:hover { background: var(--cream-deep); }
.value-card:hover::before { transform: scaleY(1); transform-origin: top; }
.value-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ---- FAQ accordion ---- */
.faq-list { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1.4rem 0.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 600;
    color: var(--ink);
    font-size: 1rem;
    transition: color 0.15s var(--bb-ease-out, ease-out);
}
.faq-item summary:hover { color: var(--gold-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    font-size: 1.3rem;
    color: var(--gold-dark);
    transition: transform 0.2s var(--bb-ease-out, ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-muted); font-size: 0.92rem; padding: 0 0.25rem 1.4rem; max-width: 620px; }

/* ---- Contact page ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    max-width: 1050px;
    margin: 0 auto;
    align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card, .contact-form-card {
    background: var(--bg-2);
    border: 1px solid var(--hairline);
    border-radius: 3px;
    padding: 1.85rem;
}
.contact-info-item { display: flex; gap: 0.85rem; margin-bottom: 1.4rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item .icon {
    width: 38px; height: 38px; flex-shrink: 0;
    background: transparent; border: 1px solid var(--gold-border); color: var(--gold-dark);
    border-radius: 2px; display: flex; align-items: center; justify-content: center;
}
.contact-info-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.contact-info-item p, .contact-info-item a { font-size: 0.86rem; color: var(--text-muted); text-decoration: none; }
.contact-info-item a:hover { color: var(--gold-dark); }

.form-row { margin-bottom: 1.1rem; }
.form-row label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.form-row input, .form-row select, .form-row textarea {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--border-dark);
    border-radius: 2px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.15s var(--bb-ease-out, ease-out), box-shadow 0.15s var(--bb-ease-out, ease-out);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ---- Footer ---- */
.site-footer {
    background: var(--ink);
    color: rgba(255,255,255,0.65);
    padding: 5rem 1.5rem 0;
}
.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; } }
@media (max-width: 520px) { .footer-inner { grid-template-columns: 1fr; gap: 2.25rem; } }

.footer-brand p { margin-top: 1.1rem; font-size: 0.85rem; line-height: 1.65; max-width: 300px; color: rgba(255,255,255,0.5); }
.footer-col h4 { color: rgba(255,255,255,0.9); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.1rem; }
.footer-col a, .footer-col .footer-text { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 0.75rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid var(--hairline-on-dark);
    padding: 1.6rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.15s; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-legal-links { display: flex; gap: 1.5rem; }
