/* REDESIGN.CSS - Clean Light Theme */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    max-width: 100%;
}

:root {
    --bg-body: #ffffff;
    --bg-light: #f5f3f0;
    --bg-dark: #1a1a1a;
    --royal: #1a1a1a;
    /* primary dark charcoal */
    --royal-2: #2d2d2d;
    --color-primary: #1a1a1a;
    /* Primary Dark */
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --accent: #b8956a;
    /* Accent Bronze */
    --accent-hover: #d4af77;
    --border-light: #e5e3e0;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'IBM Plex Sans', sans-serif;
    --max-width: 1240px;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Global Reset Overrides */
body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.text-accent {
    color: var(--accent) !important;
}

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

.bg-dark {
    background-color: var(--bg-dark);
    color: white;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-padding {
    padding: 100px 0;
}

/* Typography utilities */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

/* Spacing utilities */
.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.p-0 {
    padding: 0;
}

/* Display utilities */
.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

/* Responsive images */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* --- 5. FOOTER --- */
/* --- 5. FOOTER --- */
.footer-clean {
    background: linear-gradient(180deg, var(--royal), #03101f);
    padding: 80px 0 30px;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand .logo {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.footer-links h4,
.newsletter-widget h4 {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: white;
    outline: none;
}

.newsletter-form .btn-subscribe {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.newsletter-form .btn-subscribe:hover {
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* ═══════════════════════════════════════════════════════════
   0. AUTHORITY STRIP
═══════════════════════════════════════════════════════════ */
.authority-strip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111111;
    border-bottom: 1px solid rgba(184, 149, 106, 0.22);
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity   0.35s ease;
}

.authority-strip.strip-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* subtle bronze shimmer line across the bottom */
.authority-strip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(184, 149, 106, 0.5) 30%,
        rgba(212, 175, 119, 0.8) 50%,
        rgba(184, 149, 106, 0.5) 70%,
        transparent 100%);
}

.authority-strip-text {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(212, 175, 119, 0.9);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.authority-sep {
    color: rgba(184, 149, 106, 0.35);
    font-size: 0.55rem;
}

.authority-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
    flex-shrink: 0;
    animation: dot-pulse 3s ease-in-out infinite;
}

.authority-dot:last-child {
    animation-delay: 1.5s;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50%       { opacity: 0.85; transform: scale(1.4); }
}

/* ═══════════════════════════════════════════════════════════
   1. PRIMARY NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar-premium {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Premium dark glass */
    background: rgba(16, 16, 16, 0.78);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 14px 0;
    transition:
        background   0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding      0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow   0.4s cubic-bezier(0.4, 0, 0.2, 1),
        top          0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.4s ease;
}

/* Thin bronze accent line at very bottom of navbar */
.navbar-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(184, 149, 106, 0.28) 40%,
        rgba(184, 149, 106, 0.28) 60%,
        transparent 100%);
    transition: opacity 0.4s ease;
}

.navbar-premium.scrolled::after { opacity: 0; }

.navbar-premium.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    box-shadow:
        0 1px 0 rgba(0, 0, 0, 0.04),
        0 4px 32px rgba(0, 0, 0, 0.07);
    padding: 10px 0;
}

.nav-inner-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* ── Logo ── */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    outline: none;
}

.nav-logo-mark {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(140deg, var(--accent) 0%, var(--accent-hover) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(184, 149, 106, 0.3);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease;
}

/* subtle inner highlight */
.nav-logo-mark::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(255,255,255,0.18) 0%, transparent 60%);
    pointer-events: none;
}

.nav-logo:hover .nav-logo-mark {
    transform: translateY(-3px) rotate(-2deg);
    box-shadow: 0 8px 24px rgba(184, 149, 106, 0.5);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.nav-logo-name {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.015em;
    white-space: nowrap;
    line-height: 1.2;
    transition: color 0.35s ease;
}

.nav-logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(184, 149, 106, 0.75);
    white-space: nowrap;
    transition: color 0.35s ease;
}

.navbar-premium.scrolled .nav-logo-name { color: var(--text-main); }
.navbar-premium.scrolled .nav-logo-sub  { color: var(--accent); }

/* ── Nav list ── */
.nav-primary {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    border-radius: 8px;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.012em;
    transition: color 0.22s ease, background 0.22s ease;
}

/* Sweep underline */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-link.active {
    color: #fff;
    font-weight: 600;
}

.navbar-premium.scrolled .nav-link {
    color: #555;
}

.navbar-premium.scrolled .nav-link:hover,
.navbar-premium.scrolled .nav-link.active {
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.05);
}

.nav-chevron {
    font-size: 0.58rem;
    opacity: 0.7;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.has-dropdown.open .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* ── Dropdown panel ── */
.has-dropdown { position: relative; }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.97);
    width: 292px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    box-shadow:
        0 4px 6px rgba(0,0,0,0.04),
        0 12px 32px rgba(0,0,0,0.12),
        0 32px 60px rgba(0,0,0,0.06);
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

/* Caret */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #fff;
    border-left: 1px solid rgba(0,0,0,0.07);
    border-top:  1px solid rgba(0,0,0,0.07);
    border-radius: 2px 0 0 0;
}

/* Invisible bridge that fills the gap between trigger and panel so
   the pointer never leaves the <li> while crossing the gap */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

.has-dropdown.open .nav-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0) scale(1);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-main);
    transition: background 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-item:hover {
    background: var(--bg-light);
    transform: translateX(3px);
}

.nav-dropdown-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(184, 149, 106, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.18s ease;
}

.nav-dropdown-item:hover .nav-dropdown-icon {
    background: rgba(184, 149, 106, 0.2);
}

.nav-dropdown-icon i {
    font-size: 0.82rem;
    color: var(--accent);
}

.nav-dropdown-item span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-dropdown-item strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.2;
}

.nav-dropdown-item small {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    line-height: 1.3;
}

/* Divider between dropdown groups */
.nav-dropdown-divider {
    height: 1px;
    background: var(--border-light);
    margin: 5px 8px;
}

/* ── CTA button ── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 24px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.025em;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease,
                background 0.3s ease;
    box-shadow: 0 2px 12px rgba(184, 149, 106, 0.3);
}

/* Shimmer sweep on hover */
.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.28) 50%,
        transparent 60%);
    transform: skewX(-15deg);
    transition: left 0.55s ease;
}

.nav-cta:hover::before { left: 130%; }

.nav-cta i {
    font-size: 0.68rem;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(184, 149, 106, 0.48);
    color: #fff;
}

.nav-cta:hover i { transform: translateX(4px); }

/* ── Animated Hamburger ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.nav-hamburger:hover {
    background: rgba(255, 255, 255, 0.12);
}

.navbar-premium.scrolled .nav-hamburger {
    background: rgba(0, 0, 0, 0.04);
    border-color: var(--border-light);
}

.navbar-premium.scrolled .nav-hamburger:hover {
    background: rgba(0, 0, 0, 0.08);
}

.hamburger-bar {
    display: block;
    width: 18px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 2px;
    transition:
        transform  0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity    0.25s ease,
        background 0.25s ease,
        margin     0.35s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 3px 0;
}

.navbar-premium.scrolled .hamburger-bar { background: var(--text-main); }

/* Animate to X when overlay is open */
.nav-hamburger.is-open .hamburger-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.nav-hamburger.is-open .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger.is-open .hamburger-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════
   2. MOBILE OVERLAY
═══════════════════════════════════════════════════════════ */
.mobile-overlay-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1099;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-overlay-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, 92vw);
    height: 100dvh;
    background: #fff;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    padding: 28px 28px 44px;
    transform: translateX(105%);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    box-shadow:
        -2px 0 0 rgba(184, 149, 106, 0.12),
        -16px 0 60px rgba(0, 0, 0, 0.18),
        -40px 0 80px rgba(0, 0, 0, 0.06);
}

.mobile-overlay.active {
    transform: translateX(0);
}

.mobile-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    flex-shrink: 0;
}

.mobile-overlay-brand {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.015em;
}

.mobile-overlay-brand span {
    color: var(--accent);
}

.mobile-overlay-close {
    background: none;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.25s ease;
}

.mobile-overlay-close:hover {
    background: var(--bg-light);
    color: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    border-radius: 11px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-link:hover {
    background: rgba(184, 149, 106, 0.08);
    color: var(--accent);
    padding-left: 20px;
}

.mobile-accordion-trigger i {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.mobile-accordion.open .mobile-accordion-trigger i {
    transform: rotate(180deg);
}

.mobile-sub-links {
    list-style: none;
    padding: 0 0 0 14px;
    margin: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

.mobile-accordion.open .mobile-sub-links {
    max-height: 300px;
}

.mobile-sub-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 9px;
    transition: background 0.18s ease, color 0.18s ease;
    position: relative;
}

.mobile-sub-links li a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.45;
    flex-shrink: 0;
    transition: opacity 0.18s ease;
}

.mobile-sub-links li a:hover {
    background: rgba(184, 149, 106, 0.08);
    color: var(--accent);
}

.mobile-sub-links li a:hover::before {
    opacity: 1;
}

.mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 4px 18px rgba(184, 149, 106, 0.3);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease;
}

.mobile-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(184, 149, 106, 0.5);
    color: #fff;
}

/* ── Responsive breakpoints ── */
@media (max-width: 1024px) {
    .nav-primary {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .authority-strip {
        display: none;
    }

    .navbar-premium {
        top: 0;
    }
}

/* --- 3. HERO SPLIT --- */
.hero-clean {
    padding-top: 160px;
    padding-bottom: 80px;
    background: linear-gradient(69deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.88) 100%), url('../images/hero-banner.PNG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
    color: white;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text .eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 700;
    /* Original bold branding */
    color: white;
    /* Ensure contrast on dark bg */
}

.hero-text p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-outline {
    border: 2px solid var(--text-white);
    color: var(--text-white);
    padding: 10px 26px;
    border-radius: 4px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--text-main);
    color: white;
}

.hero-image-container {
    background-color: var(--bg-dark);
    width: 600px;
    height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 2px solid var(--accent);
    padding: 10px;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    margin-bottom: -25px;
}

/* ═══════════════════════════════════════════════════════════
   HERO CINEMATIC CAROUSEL
═══════════════════════════════════════════════════════════ */

/* Container */
.hero-cinematic {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #0a0a0a;
    /* Pull back up to sit behind the fixed navbar for true full-screen */
    margin-top: -101px;
}

/* Track */
.hc-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual slide */
.hc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.1s ease;
    z-index: 1;
}

.hc-slide.is-active {
    opacity: 1;
    pointer-events: all;
    z-index: 2;
}

/* Ken Burns background — anchored to the right so the subject stays visible */
.hc-bg {
    position: absolute;
    inset: -6%;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    will-change: transform;
}

.hc-slide.is-active .hc-bg {
    animation: hcKenBurns 9s ease-in-out forwards;
}

@keyframes hcKenBurns {
    0%   { transform: scale(1)    translate(0,    0); }
    100% { transform: scale(1.09) translate(-1.5%, 1%); }
}

/* Directional gradient — dark left (text area), fades to clear right (image area) */
.hc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(6, 6, 6, 0.94) 0%,
        rgba(6, 6, 6, 0.88) 28%,
        rgba(6, 6, 6, 0.58) 50%,
        rgba(6, 6, 6, 0.14) 72%,
        rgba(6, 6, 6, 0.0)  100%
    );
    z-index: 1;
}

/* Content block */
.hc-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 130px;
    padding-bottom: 120px;
    max-width: 780px;
}

/* ── Text entrance animations ── */
.hc-eyebrow,
.hc-title,
.hc-desc,
.hc-actions {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0s, transform 0s;
}

.hc-slide.is-active .hc-eyebrow {
    opacity: 1; transform: none;
    transition: opacity 0.7s ease 0.35s,
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}
.hc-slide.is-active .hc-title {
    opacity: 1; transform: none;
    transition: opacity 0.7s ease 0.55s,
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.55s;
}
.hc-slide.is-active .hc-desc {
    opacity: 1; transform: none;
    transition: opacity 0.7s ease 0.75s,
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.75s;
}
.hc-slide.is-active .hc-actions {
    opacity: 1; transform: none;
    transition: opacity 0.7s ease 0.95s,
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.95s;
}

/* Eyebrow with leading line */
.hc-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hc-eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1.5px;
    background: var(--accent);
    flex-shrink: 0;
}

/* Headline */
.hc-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5.2vw, 4.4rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 22px;
    letter-spacing: -0.015em;
}

/* Description */
.hc-desc {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 40px;
    max-width: 520px;
}

/* CTA row */
.hc-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* Primary button */
.hc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.025em;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 20px rgba(184, 149, 106, 0.38);
    overflow: hidden;
    position: relative;
    transition: background 0.3s ease,
                transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease;
}

.hc-btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.26) 50%, transparent 60%);
    transform: skewX(-15deg);
    transition: left 0.55s ease;
}

.hc-btn-primary:hover::before { left: 130%; }

.hc-btn-primary i { font-size: 0.7rem; transition: transform 0.28s ease; }

.hc-btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(184, 149, 106, 0.52);
    color: #fff;
}

.hc-btn-primary:hover i { transform: translateX(4px); }

/* Ghost button */
.hc-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
    letter-spacing: 0.02em;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.hc-btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(184, 149, 106, 0.1);
}

/* ── Arrow buttons ── */
.hc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease,
                border-color 0.25s ease,
                transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hc-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.08);
}

.hc-prev { left: 32px; }
.hc-next { right: 32px; }

/* ── Dot indicators ── */
.hc-indicators {
    position: absolute;
    bottom: 62px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    align-items: center;
}

.hc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease,
                width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                border-radius 0.35s ease;
}

.hc-dot.is-active {
    background: var(--accent);
    width: 28px;
    border-radius: 4px;
}

/* ── Progress line ── */
.hc-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 10;
}

.hc-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    width: 0%;
}

/* ── Scroll cue ── */
.hc-scroll-cue {
    position: absolute;
    bottom: 36px;
    right: 44px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: hcScrollBob 2.4s ease-in-out infinite;
    pointer-events: none;
}

.hc-scroll-cue i { font-size: 0.65rem; }

@keyframes hcScrollBob {
    0%, 100% { transform: translateY(0);   opacity: 0.4; }
    50%       { transform: translateY(6px); opacity: 0.85; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero-cinematic { margin-top: -75px; }
    .hc-content { padding-top: 110px; padding-bottom: 130px; }
    .hc-prev { left: 16px; }
    .hc-next { right: 16px; }
    .hc-arrow { width: 42px; height: 42px; }
    .hc-scroll-cue { display: none; }
    .hc-indicators { bottom: 50px; }
}

@media (max-width: 480px) {
    .hero-cinematic { margin-top: -65px; }
    .hc-actions { flex-direction: column; align-items: flex-start; }
    .hc-btn-primary,
    .hc-btn-ghost { width: 100%; justify-content: center; }
    .hc-content { padding-top: 90px; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT HERO — SPLIT AUTHORITY LAYOUT
═══════════════════════════════════════════════════════════ */

/* Section wrapper */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Pulls back behind the fixed navbar */
    margin-top: -101px;
    padding-top: 101px;
}

/* Dark charcoal upper half → cream lower half */
.about-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        175deg,
        #111111 0%,
        #1a1a1a 42%,
        #2a2319 62%,
        #f5f3f0 100%
    );
    z-index: 0;
}

/* Subtle grain texture over the bg */
.about-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.6;
}

/* Content row */
.about-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ── Left column ── */
.about-hero-text {
    padding-right: 48px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Eyebrow */
.about-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(20px);
    animation: aboutFadeUp 0.7s ease 0.2s forwards;
}

.about-eyebrow-line {
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--accent);
    flex-shrink: 0;
}

/* Authority headline */
.about-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 26px;
    opacity: 0;
    transform: translateY(24px);
    animation: aboutFadeUp 0.7s ease 0.4s forwards;
}

/* Mission statement */
.about-mission {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.4vw, 1.05rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 36px;
    max-width: 480px;
    opacity: 0;
    transform: translateY(20px);
    animation: aboutFadeUp 0.7s ease 0.58s forwards;
}

/* Credential badges row */
.about-badges {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(184, 149, 106, 0.18);
    border-radius: 14px;
    width: fit-content;
    opacity: 0;
    transform: translateY(20px);
    animation: aboutFadeUp 0.7s ease 0.72s forwards;
}

.about-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 22px;
}

.about-badge-num {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
}

.about-badge-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.about-badge-divider {
    width: 1px;
    height: 36px;
    background: rgba(184, 149, 106, 0.22);
    flex-shrink: 0;
}

/* CTA row */
.about-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: aboutFadeUp 0.7s ease 0.88s forwards;
}

/* Primary CTA */
.about-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(184, 149, 106, 0.35);
    transition: background 0.3s ease,
                transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease;
}

.about-cta-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.26) 50%, transparent 60%);
    transform: skewX(-15deg);
    transition: left 0.5s ease;
}

.about-cta-primary:hover::before { left: 130%; }

.about-cta-primary i { font-size: 0.72rem; transition: transform 0.28s ease; }

.about-cta-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(184, 149, 106, 0.5);
    color: #fff;
}

.about-cta-primary:hover i { transform: translateX(4px); }

/* Ghost CTA */
.about-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    letter-spacing: 0.02em;
    transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.about-cta-ghost i { font-size: 0.7rem; }

.about-cta-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(184, 149, 106, 0.08);
}

/* ── Right column: portrait ── */
.about-hero-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    min-height: 520px;
    opacity: 0;
    animation: aboutFadeIn 1s ease 0.5s forwards;
}

.about-portrait-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 580px;
}

.about-portrait {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 0 0 200px 0;
    display: block;
}

/* Left-edge fade: portrait bleeds into the dark background */
.about-portrait-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #1a1a1a 0%,
        rgba(26, 26, 26, 0.5) 22%,
        transparent 52%
    );
    border-radius: inherit;
    pointer-events: none;
}

/* ── Scroll cue ── */
.about-scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--font-body);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    animation: aboutScrollBob 2.6s ease-in-out infinite;
    pointer-events: all;
    transition: color 0.3s ease;
}

.about-scroll-cue i { font-size: 0.62rem; }
.about-scroll-cue:hover { color: var(--accent); }

/* ── Keyframes ── */
@keyframes aboutFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes aboutFadeIn {
    to { opacity: 1; }
}

@keyframes aboutScrollBob {
    0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.35; }
    50%       { transform: translateX(-50%) translateY(7px); opacity: 0.75; }
}

/* ── Responsive: tablet ── */
@media (max-width: 960px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
        padding-top: 60px;
        padding-bottom: 60px;
        gap: 40px;
    }

    .about-hero-text {
        padding-right: 0;
        order: 2;
    }

    .about-hero-image {
        order: 1;
        min-height: 340px;
    }

    .about-portrait-wrap {
        max-width: 320px;
        height: 380px;
        margin: 0 auto;
    }

    .about-portrait-fade {
        background: linear-gradient(
            to bottom,
            transparent 55%,
            rgba(17, 17, 17, 0.6) 80%,
            #111111 100%
        );
    }

    .about-headline { font-size: 2.2rem; }
    .about-badges { flex-wrap: wrap; justify-content: center; }
}

/* ── Responsive: mobile ── */
@media (max-width: 480px) {
    .about-hero { margin-top: -65px; padding-top: 65px; }
    .about-portrait-wrap { max-width: 260px; height: 300px; }
    .about-hero-actions { flex-direction: column; }
    .about-cta-primary,
    .about-cta-ghost { width: 100%; justify-content: center; }
    .about-badges { padding: 14px 16px; }
    .about-badge { padding: 0 14px; }
}

/* ═══════════════════════════════════════════════════════════
   BIOGRAPHY SECTION
═══════════════════════════════════════════════════════════ */

.bio-section {
    background: #faf9f7;
    padding: 110px 0 100px;
    position: relative;
}

/* Thin top border to separate from hero gradient */
.bio-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(184, 149, 106, 0.3) 30%,
        rgba(212, 175, 119, 0.5) 50%,
        rgba(184, 149, 106, 0.3) 70%,
        transparent 100%);
}

/* Two-column grid: image 45% | text 55% */
.bio-grid {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 80px;
    align-items: start;
}

/* ── Image column ── */
.bio-image-col {
    position: relative;
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.85s ease 0.1s,
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.bio-image-col.revealed {
    opacity: 1;
    transform: translateX(0);
}

.bio-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 4px 20px 4px 20px; /* asymmetric — modern editorial */
    aspect-ratio: 3 / 4;
    background: var(--bg-dark);
    box-shadow:
        0 2px 0 rgba(184, 149, 106, 0.4),
        0 24px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.08);
}

.bio-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bio-image-frame:hover .bio-photo {
    transform: scale(1.04);
}

/* Bronze left-edge accent bar */
.bio-image-accent {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--accent) 20%,
        var(--accent-hover) 50%,
        var(--accent) 80%,
        transparent
    );
    border-radius: 0 2px 2px 0;
}

.bio-image-caption {
    margin-top: 14px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    opacity: 0.7;
}

/* ── Text column ── */
.bio-text-col {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.85s ease 0.25s,
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

.bio-text-col.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Eyebrow */
.bio-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.bio-eyebrow-line {
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--accent);
    flex-shrink: 0;
}

/* Heading */
.bio-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 18px;
}

/* Bronze accent rule */
.bio-heading-rule {
    width: 52px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    border-radius: 2px;
    margin-bottom: 30px;
}

/* Rich text body */
.bio-content {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.85;
    color: #555;
    max-width: 560px;
}

/* Auto-spacing between CMS paragraphs */
.bio-content p { margin-bottom: 1.35em; }
.bio-content p:last-child { margin-bottom: 0; }

/* Styled blockquote (auto-applies if CKEditor outputs one) */
.bio-content blockquote {
    margin: 2em 0;
    padding: 20px 24px;
    border-left: 3px solid var(--accent);
    background: rgba(184, 149, 106, 0.06);
    border-radius: 0 10px 10px 0;
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.6vw, 1.25rem);
    font-style: italic;
    color: var(--text-main);
    line-height: 1.55;
}

.bio-content blockquote p { margin-bottom: 0; }

.bio-content strong { color: var(--text-main); font-weight: 600; }
ul, .bio-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.35em;
}
.bio-content li { margin-bottom: 0.5em; }

/* ── Responsive: tablet ── */
@media (max-width: 960px) {
    .bio-section { padding: 80px 0 70px; }
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .bio-image-col {
        max-width: 340px;
        margin: 0 auto;
        transform: translateY(20px);
        transition-property: opacity, transform;
    }
    .bio-image-col.revealed { transform: translateY(0); }
    .bio-text-col {
        transform: translateY(20px);
        transition-property: opacity, transform;
    }
    .bio-text-col.revealed { transform: translateY(0); }
    .bio-content { max-width: 100%; }
}

/* ── Responsive: mobile ── */
@media (max-width: 480px) {
    .bio-section { padding: 60px 0 56px; }
    .bio-image-col { max-width: 260px; }
    .bio-heading { font-size: 1.8rem; }
    .bio-content { font-size: 0.975rem; }
}

/* --- 3. STATS STRIP --- */
.stats-strip {
    background: linear-gradient(180deg, var(--royal), #03101f);
    padding: 60px 0;
    color: white;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

/* --- 4. SERVICES GRID --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}

/* --- Service Cards — Option B: Light Editorial --- */
.service-card {
    background: #fff;
    padding: 36px 28px 30px;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    border-bottom: 3px solid transparent;
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out,
                box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card.animate-in:nth-child(1) { transition-delay: 0s; }
.service-card.animate-in:nth-child(2) { transition-delay: 0.1s; }
.service-card.animate-in:nth-child(3) { transition-delay: 0.2s; }
.service-card.animate-in:nth-child(4) { transition-delay: 0.3s; }
.service-card.animate-in:nth-child(n+5) { transition-delay: 0.4s; }

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(184, 149, 106, 0.14);
    border-bottom-color: var(--accent);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border: 1.5px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.4rem;
    color: var(--accent);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

.service-card p.muted {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card .btn-link-card {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 18px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1.5px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}

.service-card .btn-link-card:hover {
    color: var(--text-main);
    border-bottom-color: var(--accent);
    gap: 9px;
}

.stat-item h3 {
    color: var(--accent);
    font-size: 3rem;
    font-weight: 400;
    /* Serif font */
    margin: 0;
    font-family: var(--font-heading);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* --- 4. CLEAN CARDS --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

/* ── About Framework polish (Option A) ── */
.about-fw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.about-fw-eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 1.5px;
    background: var(--accent);
    flex-shrink: 0;
}

.about-fw-rule {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    border-radius: 2px;
    margin: 0 auto 24px;
}

.about-fw-body {
    font-size: 1.075rem;
    line-height: 1.85;
    color: #4a4540;
    max-width: 620px;
    margin: 0 auto 32px;
}

.about-fw-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--accent);
    text-decoration: none;
    border: 1.5px solid var(--accent);
    padding: 10px 24px;
    border-radius: 3px;
    transition: background 0.25s ease, color 0.25s ease;
}

.about-fw-cta i {
    transition: transform 0.25s ease;
}

.about-fw-cta:hover {
    background: var(--accent);
    color: #fff;
}

.about-fw-cta:hover i {
    transform: translateX(4px);
}

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

.card-clean {
    background: white;
    padding: 40px 30px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    /* Less rounded */
    transition: all 0.3s ease;
    text-align: center;
    /* Or left based on design */
}

.card-clean:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    color: var(--text-main);
    transition: all 0.3s;
}

.card-clean:hover .card-icon {
    background: var(--accent);
    color: white;
}

.card-clean h3 {
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 700;
}

/* --- FOOTER CLEAN --- */
.footer-clean {
    background-color: var(--bg-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Or flex-start */
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h2 {
    color: white;
    margin-bottom: 20px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {

    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-container {
        height: 400px;
        order: -1;
    }

    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Heartbeat Pulse for Headlines */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.03);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.03);
    }

    70% {
        transform: scale(1);
    }
}

.typing-target {
    display: inline-block;
    animation: heartbeat 3s ease-in-out infinite;
    transform-origin: center center;
}

/* --- PROGRAMS PAGE --- */
.programs-hero {
    background: var(--bg-dark);
    color: white;
    padding: 160px 0 80px;
    text-align: center;
}

.programs-hero h1 {
    color: white;
    margin-bottom: 20px;
}

.program-card-original {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Softer shadow than original but similar vibe */
    transition: transform 0.3s, box-shadow 0.3s;
    height: auto;
    /* allow expansion */
    border: none;
    display: flex;
    flex-direction: column;
}

.program-card-original:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.program-thumbnail {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.program-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.program-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.program-badge {
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-badge.exclusive {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.program-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.program-price {
    color: #667eea;
    /* Keeping original purple/blue if requested, or switch to gold? User said "original design". I'll keep the accent provided or close to valid css */
    color: var(--accent);
    /* Switching to gold to match theme unless user complains */
    font-weight: 700;
    font-size: 1.25rem;
}

/* Slide Down Section */
.program-details-slide {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease;
    background: #f9f9f9;
    padding: 0 25px;
}

.program-details-slide.active {
    max-height: 500px;
    /* Arbitrary large height */
    padding: 20px 25px;
    border-top: 1px solid var(--border-light);
}

/* Reveal Animations */
.reveal-fade,
.reveal-bottom {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-fade.revealed,
.reveal-bottom.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- NEW PROGRAMS SECTION STYLES --- */
.programs-section {
    background-color: var(--bg-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.program-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.program-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.program-header i {
    font-size: 2rem;
    color: var(--accent);
}

.program-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-heading);
}

.program-teaser {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.program-details {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, margin-bottom 0.3s ease;
    overflow: hidden;
    margin-bottom: 0;
}

.program-card:hover .program-details {
    max-height: 200px;
    /* Adjust as needed */
    opacity: 1;
    margin-bottom: 20px;
}

.program-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-main);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.program-card:hover .program-details li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered text reveal */
.program-card:hover .program-details li:nth-child(1) {
    transition-delay: 0.1s;
}

.program-card:hover .program-details li:nth-child(2) {
    transition-delay: 0.2s;
}

.program-card:hover .program-details li:nth-child(3) {
    transition-delay: 0.3s;
}

.program-details li i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* --- Program badges & featured accent --- */
.program-card--featured {
    border-top: 3px solid var(--accent);
}

.program-card--featured::before {
    content: 'Featured';
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(184, 149, 106, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(184, 149, 106, 0.3);
}

.program-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.prog-badge {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 3px 10px;
    border-radius: 20px;
}

.prog-badge--price {
    color: var(--accent);
    background: rgba(184, 149, 106, 0.08);
    border-color: rgba(184, 149, 106, 0.3);
}

.prog-badge--free {
    color: #2e7d32;
    background: rgba(46, 125, 50, 0.07);
    border-color: rgba(46, 125, 50, 0.25);
}

.programs-view-all {
    text-align: center;
    margin-top: 48px;
}

.btn-enroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    padding: 13px 26px;
    border-radius: 4px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    margin-top: auto;
}

.btn-enroll:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

/* --- ABOUT SECTION BACKGROUND --- */
#about {
    position: relative;
    background-color: transparent;
    overflow: hidden;
    z-index: 1;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/gold-backgroudn.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    filter: blur(8px);
    z-index: -1;
    transform: scale(1.1);
    /* Prevent blur edges */
    opacity: 0.15;
    /* Subtle texture */
}


/* Hero Responsiveness */
@media (max-width: 900px) {
    .hero-clean {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-image-container {
        width: 280px;
        height: 280px;
        order: -1;
        margin-bottom: 30px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
        margin: 0 auto 30px;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-clean {
        padding-top: 110px;
        background-attachment: scroll !important;
        width: 100%;
        overflow: hidden;
    }

    .hero-split {
        width: 100%;
        gap: 20px;
    }

    .hero-image-container {
        width: 260px;
        height: 260px;
        max-width: 80vw;
        max-height: 80vw;
        margin-left: auto;
        margin-right: auto;
    }

    #about::before {
        background-attachment: scroll !important;
    }
}

/* --- CONTACT SECTION --- */
.contact-section {
    background: var(--bg-light);
}

.contact-container {
    max-width: 1000px;
}

.contact-header {
    margin-bottom: 48px;
}

.contact-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

/* Left info panel */
.contact-info {
    background: var(--bg-dark);
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}

.contact-info-list li i {
    color: var(--accent);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-info-list li a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-list li a:hover {
    color: var(--accent-hover);
}

.contact-info-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin: 0;
    margin-top: auto;
}

/* Right form panel */
.contact-form {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact-field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.02em;
}

.contact-req {
    color: var(--accent);
}

.contact-optional {
    color: var(--text-muted);
    font-weight: 400;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--border-light);
    border-radius: 4px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-main);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    width: 100%;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(184,149,106,0.12);
}

.contact-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    align-self: flex-start;
    min-width: 180px;
}

/* Feedback banner */
.contact-feedback {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-feedback--success {
    background: rgba(46,125,50,0.08);
    color: #1b5e20;
    border: 1px solid rgba(46,125,50,0.25);
}

.contact-feedback--error {
    background: rgba(198,40,40,0.07);
    color: #b71c1c;
    border: 1px solid rgba(198,40,40,0.2);
}

@media (max-width: 820px) {
    .contact-card {
        grid-template-columns: 1fr;
    }
    .contact-info {
        padding: 32px 28px;
    }
    .contact-form {
        padding: 32px 28px;
    }
}

@media (max-width: 560px) {
    .contact-row {
        grid-template-columns: 1fr;
    }
    .contact-submit {
        width: 100%;
        justify-content: center;
    }
}

/* --- BOOKING MODAL & FORMS --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.modal-content-clean {
    background: #ffffff;
    width: 90%;
    max-width: 600px;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    animation: modalSlideUp 0.3s ease-out forwards;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent);
}

.modal-content-clean .btn-cta {
    background-color: var(--royal);
    color: white;
    border: none;
    width: 100%;
}

.modal-content-clean .btn-cta:hover {
    background-color: var(--royal-2);
    color: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-control,
.input-clean {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.form-control:focus,
.input-clean:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 184, 31, 0.1);
}

.form-control::placeholder {
    color: #bbb;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--royal);
    font-size: 0.9rem;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.btn-primary {
    background: var(--royal);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background: var(--royal-2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Improve form spacing */
.form-group {
    margin-bottom: 25px;
}

/* Style select dropdown better */
select.form-control {
    background-color: white;
    border: 1px solid var(--border-light);
    cursor: pointer;
}

/* Add focus states for accessibility */
.form-control:focus,
.input-clean:focus,
select.form-control:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-color: transparent;
}

/* Style required field indicators */
.form-group label::after {
    content: " *";
    color: #ff4757;
    font-weight: bold;
}

/* Add padding to body to prevent content hiding under fixed headers */
body {
    padding-top: 101px;
    /* authority-strip (36px) + navbar (~65px) */
}

@media (max-width: 768px) {
    body {
        padding-top: 75px;
        /* navbar only, no authority strip */
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 65px;
    }
}

/* Add close animation */
.nav-menu {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Improve form spacing */
.form-group {
    margin-bottom: 25px;
}

/* Style select dropdown better */
select.form-control {
    background-color: white;
    border: 1px solid var(--border-light);
    cursor: pointer;
}

/* Add focus states for accessibility */
.form-control:focus,
.input-clean:focus,
select.form-control:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-color: transparent;
}

/* Style required field indicators */
.form-group label::after {
    content: " *";
    color: #ff4757;
    font-weight: bold;
}

/* Reduce animation complexity on mobile */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Optimize hero background */
.hero-clean {
    background-attachment: scroll;
    /* Change from fixed for mobile */
}

@media (min-width: 1024px) {
    .hero-clean {
        background-attachment: fixed;
    }
}

/* Add focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* Improve contrast for social icons */
.social-icons a:focus {
    background: var(--accent);
    color: var(--bg-dark);
    transform: scale(1.1);
}

/* Add skip to content link (hidden until focused) */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 9999;
}

.skip-to-content:focus {
    top: 10px;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* Loading state for buttons */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}