/* ==========================================================================
   Bright Properties — design system
   Vibrant gold-on-black brand identity (from the Bright Properties mark),
   dark gradient hero with a rotating photo carousel, bold condensed
   headings, gold accent, clean card grids, alternating light/dark
   sections, bold CTA banner, dark footer. A handful of secondary accent
   colors (teal / coral / sky / violet) add variety to badges and icons
   without diluting the gold identity.
   ========================================================================== */

:root {
    --ink: #0b0c10;
    --ink-soft: #16181f;
    --ink-softer: #1f222b;
    --paper: #ffffff;
    --paper-soft: #faf6ec;
    --border: #ece4d2;
    --border-dark: rgba(255, 255, 255, .1);
    --text-muted: #6b6a63;
    --text-on-dark-muted: #b8ad8f;

    --gold: #f2a900;
    --gold-dark: #c6820a;
    --gold-darker: #8f5e07;
    --gold-light: #ffd666;
    --gold-soft: rgba(242, 169, 0, .13);

    --teal: #0f9d9d;
    --coral: #ff6b4a;
    --emerald: #12a150;
    --sky: #2e9be6;
    --violet: #8b5cf6;
    --rose: #ef4770;

    --accent-teal: var(--teal);
    --accent-coral: var(--coral);
    --accent-emerald: var(--emerald);
    --accent-sky: var(--sky);
    --accent-violet: var(--violet);
    --accent-rose: var(--rose);
    --accent-gold: var(--gold);

    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 1px 2px rgba(16, 12, 4, .05), 0 8px 24px rgba(16, 12, 4, .08);
    --shadow-lg: 0 20px 50px rgba(11, 12, 16, .28);
    --container: 1200px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; scroll-behavior: smooth; }

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 16px; }

p { margin: 0 0 16px; color: var(--text-muted); }

a { color: inherit; text-decoration: none; }

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

::selection { background: var(--gold); color: var(--ink); }

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
    white-space: nowrap;
}

.btn-primary { background: var(--gold); color: var(--ink); box-shadow: 0 8px 20px rgba(242, 169, 0, .35); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-1px); }

.btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .4); }
.btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }

.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline-dark:hover { border-color: var(--ink); }

.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(11, 12, 16, .94);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--border-dark);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 20px; }

.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark { height: 38px; width: 38px; object-fit: contain; }
.brand-name { font-weight: 800; font-size: 1.18rem; letter-spacing: -.01em; color: #fff; }
.brand-name span { color: var(--gold); }

.main-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.main-nav > a {
    color: rgba(255, 255, 255, .78);
    font-weight: 600;
    font-size: .93rem;
    padding: 10px 14px;
    border-radius: 999px;
    transition: color .15s ease, background .15s ease;
}
.main-nav > a:hover, .main-nav > a.active { color: #fff; background: rgba(255, 255, 255, .08); }
.main-nav > a.active { color: var(--gold); }

.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
    display: flex; align-items: center; gap: 5px;
    background: none; border: none; cursor: pointer;
    color: rgba(255, 255, 255, .78); font-weight: 600; font-size: .93rem;
    padding: 10px 14px; border-radius: 999px; font-family: inherit;
}
.nav-dropdown-trigger:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.nav-dropdown-trigger.active { color: var(--gold); }
.nav-dropdown-trigger .chev { font-size: .65rem; opacity: .7; }

.nav-dropdown-panel {
    position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
    background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg);
    min-width: 300px; padding: 10px; opacity: 0; pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
    display: grid; gap: 2px;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }

.nav-dropdown-panel a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px; color: var(--ink); }
.nav-dropdown-panel a:hover { background: var(--paper-soft); }
.nav-dropdown-panel a strong { display: block; font-size: .9rem; }
.nav-dropdown-panel a small { display: block; color: var(--text-muted); font-size: .78rem; font-weight: 400; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border-dark);
    background: rgba(255, 255, 255, .06); cursor: pointer;
}
.nav-toggle i { display: block; height: 2px; width: 18px; margin: 0 auto; background: #fff; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.is-open i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open i:nth-child(2) { opacity: 0; }
.nav-toggle.is-open i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
    .nav-toggle { display: flex; }
    .header-actions .btn-sm { display: none; }
    .main-nav {
        position: fixed; inset: 78px 0 0 0; margin: 0; flex-direction: column; align-items: stretch;
        background: var(--ink); padding: 18px; gap: 2px; overflow-y: auto;
        transform: translateX(100%); transition: transform .25s ease; height: calc(100vh - 78px);
    }
    .main-nav.is-open { transform: translateX(0); }
    .main-nav > a { padding: 14px 10px; border-bottom: 1px solid var(--border-dark); border-radius: 0; }
    .nav-dropdown { width: 100%; }
    .nav-dropdown-trigger { width: 100%; justify-content: space-between; padding: 14px 10px; border-bottom: 1px solid var(--border-dark); border-radius: 0; }
    .nav-dropdown-panel {
        position: static; transform: none; opacity: 1; pointer-events: auto; box-shadow: none;
        background: var(--ink-soft); display: none; min-width: 0; margin-bottom: 6px;
    }
    .nav-dropdown.is-open .nav-dropdown-panel { display: grid; }
    .nav-dropdown-panel a { color: #fff; }
    .nav-dropdown-panel a:hover { background: rgba(255, 255, 255, .06); }
    .nav-dropdown-panel a small { color: var(--text-on-dark-muted); }
    .nav-dropdown .chev { transition: transform .2s ease; }
    .nav-dropdown.is-open .chev { transform: rotate(180deg); }
}

/* ---------- Hero carousel (home) ---------- */

.hero-carousel {
    position: relative; min-height: 640px; display: flex; align-items: flex-end;
    overflow: hidden; color: #fff; background: var(--ink);
}
.hero-carousel .carousel-track, .hero-carousel .carousel-slide { position: absolute; inset: 0; height: 100%; }
.hero-carousel .carousel-track { display: block; }
.hero-carousel .carousel-slide {
    background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease;
}
.hero-carousel .carousel-slide.is-active { opacity: 1; }
.hero-carousel::before {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(11,12,16,.55) 0%, rgba(11,12,16,.35) 35%, rgba(11,12,16,.88) 100%);
}
.hero-carousel::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(11,12,16,.85) 0%, rgba(11,12,16,.15) 62%, transparent 100%);
}
.hero-carousel-content { position: relative; z-index: 2; padding: 160px 0 72px; width: 100%; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: .78rem;
    letter-spacing: .12em; text-transform: uppercase; color: var(--gold-light);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold); display: inline-block; }

.hero-tagline { font-weight: 700; color: var(--gold-light); margin: 10px 0 6px; font-size: 1.05rem; }

.hero-carousel h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); max-width: 760px; margin: 4px 0 18px; }
.hero-carousel .lead { color: rgba(255,255,255,.82); max-width: 600px; font-size: 1.1rem; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0 30px; }

.hero-points { display: flex; flex-wrap: wrap; gap: 22px; }
.hero-point { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: rgba(255,255,255,.85); font-weight: 600; }
.hero-point .check {
    display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px;
    border-radius: 50%; background: var(--gold); color: var(--ink); font-size: .7rem; flex-shrink: 0;
}

.carousel-dots { position: absolute; z-index: 3; right: 24px; bottom: 28px; display: flex; gap: 8px; }
.carousel-dots button {
    width: 30px; height: 4px; border-radius: 3px; border: none; background: rgba(255,255,255,.35);
    cursor: pointer; padding: 0; transition: background .2s ease, width .2s ease;
}
.carousel-dots button.is-active { background: var(--gold); width: 42px; }

.carousel-arrow {
    position: absolute; z-index: 3; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3);
    background: rgba(11,12,16,.4); color: #fff; display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.1rem; backdrop-filter: blur(4px);
}
.carousel-arrow:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.carousel-arrow.prev { left: 20px; }
.carousel-arrow.next { right: 20px; }
@media (max-width: 720px) { .carousel-arrow { display: none; } }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
    position: relative; padding: 150px 0 64px; color: #fff; background: var(--ink) center/cover no-repeat;
    background-blend-mode: normal;
}
.page-hero::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11,12,16,.78) 0%, rgba(11,12,16,.62) 45%, rgba(11,12,16,.92) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero.no-image { background-image: none !important; }

.breadcrumb { font-size: .85rem; color: var(--text-on-dark-muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--text-on-dark-muted); }
.breadcrumb a:hover { color: #fff; }

.page-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); max-width: 760px; }
.page-hero .lead { color: rgba(255,255,255,.82); max-width: 620px; font-size: 1.05rem; margin-bottom: 0; }

/* ---------- Sections ---------- */

section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-soft { background: var(--paper-soft); }
.section-dark { background: var(--ink); color: #fff; }
.section-dark p { color: var(--text-on-dark-muted); }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head.left { text-align: left; margin: 0 0 44px; max-width: 640px; }
.section-head h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); margin-top: 8px; }
.section-head .lead { color: var(--text-muted); }

.section-foot { text-align: center; margin-top: 40px; }

/* ---------- Grid / cards ---------- */

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 30px; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.card-icon {
    display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
    border-radius: 12px; background: var(--gold-soft); color: var(--gold-dark); margin-bottom: 18px;
}
.card-icon svg { width: 22px; height: 22px; }
.card-icon.icon-lg { width: 60px; height: 60px; border-radius: 16px; }
.card-icon.icon-lg svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: .93rem; }

.accent-teal .card-icon    { background: rgba(15,157,157,.12); color: var(--teal); }
.accent-coral .card-icon   { background: rgba(255,107,74,.12); color: var(--coral); }
.accent-emerald .card-icon { background: rgba(18,161,80,.12); color: var(--emerald); }
.accent-sky .card-icon     { background: rgba(46,155,230,.12); color: var(--sky); }
.accent-violet .card-icon  { background: rgba(139,92,246,.12); color: var(--violet); }
.accent-rose .card-icon    { background: rgba(239,71,112,.12); color: var(--rose); }
.accent-gold .card-icon    { background: var(--gold-soft); color: var(--gold-dark); }

/* ---------- Badges ---------- */

.badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 13px; border-radius: 999px;
    font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.badge-gold { background: var(--gold); color: var(--ink); }
.badge-dark { background: rgba(11,12,16,.85); color: #fff; }
.badge-outline { background: rgba(255,255,255,.9); color: var(--ink); border: 1px solid var(--border); }
.badge-teal { background: var(--teal); color: #fff; }
.badge-coral { background: var(--coral); color: #fff; }

/* ---------- Property cards ---------- */

.property-card {
    background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
    border: 1px solid var(--border); transition: transform .18s ease, box-shadow .18s ease; display: flex; flex-direction: column;
}
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.property-card-media { position: relative; aspect-ratio: 4 / 3; background: var(--ink); overflow: hidden; }
.property-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.property-card:hover .property-card-media img { transform: scale(1.06); }
.property-card-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 8px; z-index: 2; }
.property-card-price {
    position: absolute; bottom: 14px; left: 14px; z-index: 2; background: rgba(11,12,16,.82); color: #fff;
    padding: 8px 14px; border-radius: 10px; font-weight: 800; font-size: .95rem; backdrop-filter: blur(3px);
}
.property-card-price span { display: block; font-size: .68rem; font-weight: 600; color: var(--text-on-dark-muted); text-transform: uppercase; letter-spacing: .05em; }
.property-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.property-card-body h3 { margin: 0; font-size: 1.2rem; }
.property-card-loc { display: flex; align-items: center; gap: 6px; color: var(--text-muted); font-size: .86rem; font-weight: 600; }
.property-card-loc svg { width: 15px; height: 15px; color: var(--gold-dark); flex-shrink: 0; }
.property-card-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: var(--text-muted); font-weight: 600; padding-top: 8px; border-top: 1px solid var(--border); margin-top: 4px; }
.property-card-cta { margin-top: auto; padding-top: 10px; font-weight: 700; color: var(--gold-dark); display: inline-flex; align-items: center; gap: 6px; }

.category-tile {
    border: 1px dashed var(--border); border-radius: var(--radius); padding: 34px 26px; text-align: center;
    background: var(--paper-soft);
}
.category-tile .card-icon { margin: 0 auto 16px; }
.category-tile p { font-size: .9rem; }

/* ---------- Payment plan table ---------- */

.payment-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.payment-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 460px; }
.payment-table thead th {
    background: var(--ink); color: var(--gold-light); text-align: left; padding: 14px 20px;
    font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 700;
}
.payment-table thead th:last-child { text-align: right; }
.payment-table tbody td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-weight: 600; font-size: .93rem; }
.payment-table tbody td:last-child { text-align: right; color: var(--gold-darker); font-weight: 800; }
.payment-table tbody tr:nth-child(even) { background: var(--paper-soft); }
.payment-table tbody tr:last-child td { border-bottom: none; }

/* ---------- Amenities ---------- */

.amenity-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 640px) { .amenity-list { grid-template-columns: 1fr; } }
.amenity-item { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; }
.amenity-item .card-icon { margin: 0; width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; }
.amenity-item .card-icon svg { width: 18px; height: 18px; }
.amenity-item span { font-weight: 700; font-size: .9rem; }

/* ---------- Gallery carousel (property detail) ---------- */

.gallery { display: grid; gap: 12px; }
.gallery-main { position: relative; aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; background: var(--ink); box-shadow: var(--shadow-lg); }
.gallery-main .carousel-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity .5s ease; }
.gallery-main .carousel-slide.is-active { opacity: 1; }
.gallery-counter { position: absolute; z-index: 3; bottom: 16px; right: 18px; background: rgba(11,12,16,.7); color: #fff; font-size: .78rem; font-weight: 700; padding: 6px 12px; border-radius: 999px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(76px, 1fr)); gap: 10px; max-width: 460px; }
.gallery-thumbs button { aspect-ratio: 1; border-radius: 10px; overflow: hidden; border: 2px solid transparent; padding: 0; cursor: pointer; background: var(--ink); }
.gallery-thumbs button img { width: 100%; height: 100%; object-fit: cover; opacity: .6; transition: opacity .2s ease; }
.gallery-thumbs button.is-active { border-color: var(--gold); }
.gallery-thumbs button.is-active img, .gallery-thumbs button:hover img { opacity: 1; }

/* ---------- Video section ---------- */

.video-section { position: relative; }
.video-frame {
    position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9; background: var(--ink);
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-caption { text-align: center; color: var(--text-on-dark-muted); font-size: .82rem; margin: 16px auto 0; max-width: 520px; }
.section-dark .video-caption { color: var(--text-on-dark-muted); }
body:not(.on-dark) .video-caption { color: var(--text-muted); }

/* ---------- Contact map ---------- */

.map-frame {
    position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
    aspect-ratio: 21 / 9; background: var(--ink); margin-top: 28px;
}
.map-frame iframe { width: 100%; height: 100%; display: block; }
@media (max-width: 640px) { .map-frame { aspect-ratio: 4 / 3; } }

/* ---------- Stats ---------- */

.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 780px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
.stat-item .card-icon { margin: 0 auto 14px; }
.stat-number { font-size: 2.1rem; font-weight: 800; color: var(--gold); margin: 0; letter-spacing: -.02em; }
.stat-label { color: var(--text-on-dark-muted); font-size: .88rem; margin: 4px 0 0; font-weight: 600; }
.section-light .stat-number { color: var(--gold-darker); }
.section-light .stat-label { color: var(--text-muted); }

/* ---------- Feature row (two-column layouts) ---------- */

.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .feature-row { grid-template-columns: 1fr; } }
.feature-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.feature-media-stack { display: grid; gap: 20px; }

.module-list { display: grid; gap: 16px; margin-top: 22px; }
.module-item { border-left: 3px solid var(--gold); padding: 4px 0 4px 16px; }
.module-item h4 { margin: 0 0 4px; font-size: .98rem; }
.module-item p { margin: 0; font-size: .88rem; }

.placeholder { border: 1px dashed var(--border); border-radius: var(--radius); padding: 48px 24px; text-align: center; color: var(--text-muted); }
.placeholder-icon { display: inline-flex; width: 60px; height: 60px; border-radius: 16px; align-items: center; justify-content: center; margin-bottom: 16px; }
.placeholder-icon svg { width: 26px; height: 26px; }

/* ---------- News / media cards ---------- */

.news-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease; display: flex; flex-direction: column; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.news-card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--ink); }
.news-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-card-media img { transform: scale(1.06); }
.news-card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-card-meta { display: flex; align-items: center; gap: 10px; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--gold-dark); }
.news-card-meta .dot-sep { color: var(--border); }
.news-card-body h3 { margin: 0; font-size: 1.08rem; }
.news-card-body p { font-size: .89rem; margin: 0; flex: 1; }
.news-card-cta { font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }

.article-hero-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); margin: -108px auto 0; max-width: 920px; position: relative; z-index: 2; aspect-ratio: 16/8; }
.article-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.article-body { max-width: 720px; margin: 0 auto; }
.article-body p { color: var(--ink); opacity: .82; font-size: 1.03rem; line-height: 1.75; }
.article-meta { display: flex; gap: 14px; align-items: center; color: var(--text-muted); font-size: .85rem; font-weight: 600; margin-bottom: 8px; }

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

.cta-banner {
    background: linear-gradient(135deg, var(--ink) 0%, #23180a 100%);
    border-radius: 28px; padding: 64px 48px; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(242,169,0,.28), transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(242,169,0,.18), transparent 45%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 10px; }
.cta-banner p { color: var(--text-on-dark-muted); max-width: 480px; margin: 0 auto 28px; }
.cta-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.cta-form input { flex: 1; min-width: 220px; padding: 13px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: #fff; font-size: .93rem; }
.cta-form input::placeholder { color: rgba(255,255,255,.55); }
@media (max-width: 640px) { .cta-banner { padding: 44px 24px; } }

/* ---------- Contact ---------- */

.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 16px; margin-top: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: grid; gap: 6px; }
.form-field label { font-size: .85rem; font-weight: 700; color: var(--ink); }
.form-field input, .form-field textarea {
    padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border); font-size: .93rem;
    font-family: inherit; color: var(--ink); background: var(--paper-soft); resize: vertical;
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; background: #fff; }
.field-error { color: var(--rose); font-size: .8rem; font-weight: 600; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }
.contact-submit { justify-content: center; margin-top: 4px; }
.btn-arrow { transition: transform .15s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.form-alert { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: 12px; margin-bottom: 18px; font-size: .9rem; }
.form-alert-success { background: rgba(18,161,80,.1); color: #0b5c30; }
.form-alert-error { background: rgba(239,71,112,.1); color: #8c1230; }
.form-alert-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .8rem; background: currentColor; color: #fff !important; }
.form-alert strong { display: block; }

.contact-illustration { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.contact-illustration img { aspect-ratio: 4/3; object-fit: cover; }
.contact-illustration p { position: absolute; bottom: 14px; left: 16px; color: #fff; font-weight: 700; margin: 0; background: rgba(11,12,16,.65); padding: 8px 14px; border-radius: 10px; font-size: .85rem; }

.contact-info-card { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 30px; }
.contact-info-brand { color: var(--gold); font-weight: 800; font-size: 1.15rem; margin-bottom: 2px; }
.contact-info-tagline { color: var(--text-on-dark-muted); font-size: .88rem; margin-bottom: 22px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-info-icon { font-size: 1.2rem; flex-shrink: 0; }
.contact-info-label { color: var(--text-on-dark-muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 3px; font-weight: 700; }
.contact-info-value { margin: 0; font-weight: 600; font-size: .93rem; }
.contact-info-grid { display: grid; gap: 18px; padding-top: 6px; border-top: 1px solid var(--border-dark); }
.contact-info-mini .contact-info-icon { margin-bottom: 6px; display: block; }

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); color: #fff; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 56px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-name { font-size: 1.25rem; }
.footer-tagline { color: var(--gold-light); font-weight: 700; margin: 12px 0 8px; }
.footer-brand p { color: var(--text-on-dark-muted); font-size: .9rem; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-on-dark-muted); font-size: .92rem; margin-bottom: 12px; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    border-top: 1px solid var(--border-dark); padding: 22px 0; font-size: .82rem; color: var(--text-on-dark-muted);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--gold); color: var(--ink); }
.footer-social svg { width: 16px; height: 16px; }

.whatsapp-chat-btn {
    position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 58px; height: 58px; border-radius: 50%;
    background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 26px rgba(37,211,102,.45); transition: transform .15s ease;
}
.whatsapp-chat-btn:hover { transform: scale(1.08); }

/* ---------- Misc utility ---------- */

.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.center-actions { justify-content: center; }

@media (max-width: 720px) {
    .hero-carousel { min-height: 560px; }
    .hero-carousel-content { padding: 128px 0 56px; }
    section { padding: 60px 0; }
    .article-hero-media { margin-top: -64px; }
}
