:root {
    --bg-main: #0d0f12;          /* Obsidian / Dark Charcoal */
    --bg-card: #16191e;          /* Elevated Charcoal Card */
    --bg-card-hover: #1e222a;    /* Card Hover State */
    --amber-primary: #f59e0b;    /* Warm Amber Gold */
    --amber-glow: #d97706;       /* Deep Gold */
    --bronze-accent: #b45309;    /* Metallic Bronze */
    --text-main: #f3f4f6;        /* High-contrast Crisp White */
    --text-muted: #9ca3af;       /* Cool Slate Grey */
    --border-subtle: #262b35;    /* Subtle Metallic Border */
    --border-accent: #f59e0b33;  /* Translucent Amber Border */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

main {
    min-height: 55vh;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    padding: 10px 16px;
    background: var(--amber-primary);
    color: #050608;
    font-weight: 800;
    text-decoration: none;
    border-radius: 4px;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Accessibility Focus Outline */
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--amber-primary);
    outline-offset: 4px;
}

/* Top Announcement Strip */
.top-bar {
    background-color: #050608;
    border-bottom: 1px solid var(--border-subtle);
    padding: 10px 5%;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-info {
    color: var(--text-muted);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-info span strong {
    color: var(--amber-primary);
}

.top-bar-phone a {
    color: var(--amber-primary);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Header & Navigation */
header {
    background-color: rgba(13, 15, 18, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.brand-logo span {
    color: var(--amber-primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: clamp(12px, 1.4vw, 20px);
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

nav a:hover, nav a[aria-current="page"] {
    color: var(--amber-primary);
}

nav a[aria-current="page"]:not(.btn-call-nav) {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.btn-call-nav {
    background: linear-gradient(135deg, var(--amber-primary), var(--amber-glow));
    color: #0d0f12 !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25);
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-call-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Mobile Toggle Button */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    font-size: 1.5rem;
    padding: 5px 12px;
    border-radius: 4px;
    cursor: pointer;
}

/* Layout Utilities & Headings */
.section-space { padding: 80px 5%; }
.max-w { max-width: 1280px; margin: 0 auto; }

.section-muted {
    background: #0a0c0f;
    border-block: 1px solid var(--border-subtle);
}

.eyebrow {
    color: var(--amber-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
    align-items: stretch;
}

.content-grid.two-column {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
    gap: 44px;
    align-items: start;
}

.content-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: clamp(26px, 4vw, 42px);
}

.content-panel h2,
.content-panel h3 {
    font-family: var(--font-heading);
    line-height: 1.25;
}

.content-panel h2 {
    font-size: clamp(1.55rem, 3vw, 2rem);
    margin: 8px 0 18px;
}

.content-panel h3 {
    margin-bottom: 10px;
}

.content-panel p + p {
    margin-top: 16px;
}

.muted-copy {
    color: var(--text-muted);
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 30px;
}

.feature-card .feature-number {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border: 1px solid var(--border-accent);
    border-radius: 50%;
    color: var(--amber-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    background: rgba(245, 158, 11, 0.08);
}

.feature-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted);
}

.info-list {
    list-style: none;
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.info-list li {
    color: var(--text-muted);
    padding-left: 24px;
    position: relative;
}

.info-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber-primary);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.notice {
    margin-top: 28px;
    padding: 18px 20px;
    border-left: 3px solid var(--amber-primary);
    background: rgba(245, 158, 11, 0.07);
    color: var(--text-muted);
}

.text-link {
    color: var(--amber-primary);
    font-weight: 700;
    text-underline-offset: 4px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.contact-list {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

.contact-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
}

.contact-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    border: 1px solid var(--border-accent);
    color: var(--amber-primary);
    font-weight: 800;
    background: rgba(245, 158, 11, 0.08);
}

.contact-item strong {
    display: block;
    color: var(--text-main);
    margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
    color: var(--text-muted);
}

.legal-card {
    max-width: 920px;
    margin-inline: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: clamp(26px, 5vw, 48px);
    border-radius: 8px;
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-card h2 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 1.4rem;
    margin: 32px 0 12px;
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card p + p,
.legal-card ul + p {
    margin-top: 14px;
}

.legal-card ul {
    margin: 12px 0 0 22px;
}

.legal-card a {
    color: var(--amber-primary);
}

.page-header {
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 40%),
                linear-gradient(to bottom, rgba(13, 15, 18, 0.8), rgba(13, 15, 18, 1));
    padding: 80px 5% 60px;
    border-bottom: 1px solid var(--border-subtle);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-header h1 span {
    color: var(--amber-primary);
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.section-header-left {
    margin-bottom: 40px;
}

.section-header-left span {
    color: var(--amber-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

.section-header-left h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 8px;
}

/* Common Buttons */
.btn-amber {
    background: linear-gradient(135deg, var(--amber-primary), var(--amber-glow));
    color: #0d0f12;
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-amber:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 26px rgba(245, 158, 11, 0.5);
}

.btn-ghost {
    border: 1px solid var(--border-subtle);
    background: rgba(22, 25, 30, 0.8);
    color: var(--text-main);
    padding: 16px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: all 0.2s;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: var(--amber-primary);
    color: var(--amber-primary);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 30px;
}

.card-dark {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 35px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-dark:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.card-dark.featured {
    border: 1px solid var(--amber-glow);
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.04) 0%, var(--bg-card) 100%);
}

.card-bullets {
    list-style: none;
    margin: 20px 0 30px;
}

.card-bullets li {
    color: var(--text-muted);
    font-size: 0.92rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.card-bullets li::before {
    content: "◆";
    color: var(--amber-primary);
    font-size: 0.7rem;
    margin-top: 4px;
}

/* Call To Action Banner */
.banner-contact {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), transparent), var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: 8px;
    padding: 50px 30px;
    text-align: center;
}

.banner-contact h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.banner-contact p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: #050608;
    border-top: 1px solid var(--border-subtle);
    padding: 80px 5% 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover, .footer-col a[aria-current="page"] { color: var(--amber-primary); }

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-disclaimer {
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    color: #7f8793;
    font-size: 0.78rem;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .mobile-nav-toggle { display: block; }
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border-subtle);
        padding: 20px 5%;
        box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    }
    nav.active { display: block; }
    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .page-header h1 { font-size: 2.2rem; }
}

@media (max-width: 576px) {
    .section-space { padding: 60px 6%; }
    .page-header { padding: 60px 6% 48px; }
    .page-header h1 { font-size: 2rem; }
    .page-header p { font-size: 1rem; }
    .hero { padding: 76px 6% 84px !important; }
    .hero .max-w { gap: 36px !important; }
    .hero h1 { font-size: 2.2rem !important; }
    .card-dark, .feature-card { padding: 24px; }
    .btn-amber, .btn-ghost { width: 100%; text-align: center; }
    .footer-top { grid-template-columns: 1fr; }
    .top-bar { flex-direction: column; text-align: center; }
    .top-bar-info { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
