/* ============================================================================
   FINACCORD ADVISORY — Premium Financial Advisory Design System
   Color Philosophy: Navy authority + Gold trust + Clean white clarity
   Typography: Editorial luxury meets corporate precision
   ============================================================================ */

/* ---------- FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
    /* Core Palette */
    --navy: #0B1426;
    --navy-light: #142038;
    --navy-mid: #1A2B4A;
    --gold: #C8A054;
    --gold-light: #D4B36E;
    --gold-muted: rgba(200, 160, 84, 0.15);
    --gold-border: rgba(200, 160, 84, 0.3);
    --white: #FFFFFF;
    --off-white: #F8F6F1;
    --cream: #F2EDE4;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-300: #D1D1D1;
    --gray-500: #8A8A8A;
    --gray-700: #4A4A4A;
    --gray-900: #1A1A1A;
    --green: #1B7A4E;
    --green-light: #E8F5EE;
    --red: #C0392B;
    --red-light: #FDECEA;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    /* Spacing */
    --section-pad: clamp(3rem, 8vw, 6rem);
    --container-max: 1200px;
    --container-narrow: 800px;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(11, 20, 38, 0.06);
    --shadow-md: 0 4px 16px rgba(11, 20, 38, 0.08);
    --shadow-lg: 0 8px 32px rgba(11, 20, 38, 0.12);
    --shadow-gold: 0 4px 20px rgba(200, 160, 84, 0.15);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s var(--ease);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--gray-500); }
.text-center { text-align: center; }

.label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ---------- LAYOUT ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--section-pad) 0;
}

.section--navy {
    background: var(--navy);
    color: var(--white);
}

.section--cream {
    background: var(--off-white);
}

.section--gold-accent {
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

/* ---------- GEOMETRIC PATTERN (African-inspired) ---------- */
.geo-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(60deg, var(--gold) 0px, transparent 1px, transparent 12px),
        repeating-linear-gradient(-60deg, var(--gold) 0px, transparent 1px, transparent 12px),
        repeating-linear-gradient(0deg, var(--gold) 0px, transparent 1px, transparent 12px);
    background-size: 24px 42px;
}

.geo-pattern--light {
    opacity: 0.03;
}

/* ---------- NAVIGATION ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(11, 20, 38, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 160, 84, 0.15);
    transition: var(--transition);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav__logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav__logo-text span {
    color: var(--gold);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.nav__link:hover,
.nav__link--active {
    color: var(--gold);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
}

.nav__cta:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-toggle__btn {
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border-radius: 16px;
    transition: var(--transition);
}

.lang-toggle__btn--active {
    background: var(--gold);
    color: var(--navy);
}

/* Mobile Nav */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav__hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav__mobile {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    border-bottom: 1px solid var(--gold-border);
    padding: 1.5rem;
    z-index: 999;
}

.nav__mobile.active {
    display: block;
}

.nav__mobile a {
    display: block;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__hamburger { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
    padding-top: 72px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 160, 84, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(200, 160, 84, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: clamp(2rem, 6vw, 5rem) 0;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--gold-muted);
    border: 1px solid var(--gold-border);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
}

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

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__trust-item {
    display: flex;
    flex-direction: column;
}

.hero__trust-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.hero__trust-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.03em;
}

/* Hero side visual */
.hero__visual {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 500px;
    opacity: 0.12;
    pointer-events: none;
}

.hero__visual svg {
    width: 100%;
    height: auto;
}

/* Markets strip */
.markets-strip {
    background: var(--navy-light);
    border-top: 1px solid rgba(200, 160, 84, 0.1);
    border-bottom: 1px solid rgba(200, 160, 84, 0.1);
    padding: 1rem 0;
    overflow: hidden;
}

.markets-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.markets-strip__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

.markets-strip__flags {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.market-flag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.market-flag__emoji {
    font-size: 1.3rem;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--gold);
    color: var(--navy);
}

.btn--primary:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn--outline-dark {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--gray-300);
}

.btn--outline-dark:hover {
    border-color: var(--gold);
    color: var(--gold);
}

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

.btn--dark:hover {
    background: var(--navy-light);
}

.btn--whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn--whatsapp:hover {
    background: #20BD5A;
}

.btn--sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.78rem;
}

.btn--full {
    width: 100%;
}

.btn--icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
    max-width: 640px;
    margin-bottom: 3rem;
}

.section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header .label {
    display: block;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.7;
}

.section--navy .section-header p {
    color: rgba(255, 255, 255, 0.55);
}

/* ---------- DIVIDER ---------- */
.gold-divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem 0;
}

.gold-divider--center {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- ABOUT / CREDENTIALS ---------- */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.credential-card {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.credential-card:hover {
    border-color: var(--gold-border);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.credential-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: var(--gold-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.credential-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.credential-card__desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Credential cards inside dark sections */
.section--navy .credential-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}
.section--navy .credential-card:hover {
    border-color: var(--gold-border);
    background: rgba(200, 160, 84, 0.05);
}
.section--navy .credential-card__icon {
    background: rgba(200, 160, 84, 0.15);
}
.section--navy .credential-card__title {
    color: var(--gold);
}
.section--navy .credential-card__desc {
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- SERVICES ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--gold-border);
    box-shadow: var(--shadow-md);
}

.service-card__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ---------- HOW IT WORKS ---------- */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.process-step {
    position: relative;
    padding: 2rem;
    text-align: center;
}

.process-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
}

.section--navy .process-step__number {
    background: var(--gold);
    color: var(--navy);
}

.process-step h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.section--navy .process-step p {
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- SOCIAL PROOF / OUTCOMES ---------- */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.outcome-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.outcome-card__metric {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.outcome-card__label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.outcome-card__desc {
    font-size: 0.83rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ---------- INDUSTRIES ---------- */
.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
}

.industry-tag:hover {
    border-color: var(--gold);
    background: var(--gold-muted);
    color: var(--navy);
}

/* ---------- PRICING / PACKAGES ---------- */
.pricing-note {
    max-width: 600px;
    margin: 0 auto 2rem;
    padding: 1.5rem 2rem;
    background: var(--gold-muted);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-700);
}

.pricing-note strong {
    color: var(--navy);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.package-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.package-card--featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.package-card--featured::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    white-space: nowrap;
}

.package-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.package-card__desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.package-card__features {
    margin-bottom: 2rem;
}

.package-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.88rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-100);
}

.package-card__features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ---------- BOOKING CALENDAR ---------- */
.booking-section {
    background: var(--off-white);
    position: relative;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .booking-container { grid-template-columns: 1fr; }
}

.booking-panel {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.booking-panel h3 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-panel h3 .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
}

/* Calendar grid */
.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cal-header h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
}

.cal-nav {
    display: flex;
    gap: 0.5rem;
}

.cal-nav button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
}

.cal-nav button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 0.5rem;
}

.cal-day-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
}

.cal-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    color: var(--gray-700);
}

.cal-date:hover:not(.cal-date--disabled) {
    background: var(--gold-muted);
    color: var(--navy);
}

.cal-date--selected {
    background: var(--navy) !important;
    color: var(--gold) !important;
    font-weight: 700;
}

.cal-date--today {
    border: 1px solid var(--gold);
}

.cal-date--disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.cal-date--empty {
    visibility: hidden;
}

/* Time slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.time-slot {
    padding: 0.6rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.time-slot:hover:not(.time-slot--taken) {
    border-color: var(--gold);
    background: var(--gold-muted);
}

.time-slot--selected {
    background: var(--navy) !important;
    color: var(--gold) !important;
    border-color: var(--navy) !important;
    font-weight: 700;
}

.time-slot--taken {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
    background: var(--gray-100);
}

/* Form inputs */
.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--gray-900);
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-muted);
}

.form-textarea {
    min-height: 80px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .form-row { grid-template-columns: 1fr; }
}

/* ---------- CONTACT ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--gold-border);
    background: rgba(200, 160, 84, 0.05);
}

.contact-card__icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.contact-card h4 {
    font-family: var(--font-display);
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.contact-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.contact-card a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.4);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(200, 160, 84, 0.1);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.footer__brand p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 0.75rem;
}

.footer h5 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer a {
    display: block;
    padding: 0.3rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer a:hover {
    color: var(--gold);
}

.footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    gap: 1rem;
}

.footer__bottom-links {
    display: flex;
    gap: 1.5rem;
}

/* ---------- ADMIN DASHBOARD ---------- */
.admin-header {
    background: var(--navy);
    color: var(--white);
    padding: 1.5rem 0;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-stat {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-align: center;
}

.admin-stat__number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
}

.admin-stat__label {
    font-size: 0.78rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: 0.75rem 1rem;
    background: var(--gray-100);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    border-bottom: 2px solid var(--gray-200);
}

.admin-table td {
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--gray-100);
}

.admin-table tr:hover {
    background: var(--gold-muted);
}

.status-badge {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 100px;
}

.status-badge--pending { background: #FEF3C7; color: #92400E; }
.status-badge--confirmed { background: var(--green-light); color: var(--green); }
.status-badge--cancelled { background: var(--red-light); color: var(--red); }

/* ---------- TOAST NOTIFICATIONS ---------- */
.toast-container {
    position: fixed;
    top: 84px;
    right: 1rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    padding: 1rem 1.5rem;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: toast-in 0.3s var(--ease);
    max-width: 360px;
    border-left: 3px solid var(--gold);
}

.toast--success { border-left-color: var(--green); }
.toast--error { border-left-color: var(--red); }

@keyframes toast-in {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

/* ---------- LOADING ---------- */
.spinner {
    width: 24px;
    height: 24px;
    border: 2px solid var(--gray-200);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* ---------- ANIMATIONS ---------- */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.stagger > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

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

.d-none { display: none !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
    .hero__content { padding: 3rem 0; }
    .hero h1 { font-size: 2.2rem; }
    .hero__trust { gap: 1.5rem; }
    .hero__visual { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .packages-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .time-slots { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .process-steps { grid-template-columns: 1fr; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
}

/* ---------- PRINT ---------- */
@media print {
    .nav, .footer, .btn, .booking-section { display: none; }
    body { font-size: 12pt; }
    .hero { min-height: auto; padding: 2rem 0; }
}

/* ---------- NAV DROPDOWN ---------- */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-trigger {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    letter-spacing: 0.02em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    font-family: var(--font-body);
    padding: 0;
}

.nav__dropdown-trigger:hover {
    color: var(--gold);
}

.nav__dropdown-trigger::after {
    content: '▾';
    font-size: 0.7rem;
    opacity: 0.6;
}

.nav__dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    min-width: 220px;
    z-index: 2000;
    display: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown-menu:hover {
    display: block;
}

.nav__dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav__dropdown-menu a:hover {
    color: var(--gold);
    background: rgba(200,160,84,0.08);
}

.nav__dropdown-menu .dropdown-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0.4rem 0;
}

.nav__dropdown-menu .dropdown-label {
    display: block;
    padding: 0.4rem 1rem 0.2rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
    background: var(--navy-light);
    border-bottom: 1px solid rgba(200,160,84,0.12);
    padding: 0.65rem 0;
}

.trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
}

.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.trust-bar__item strong {
    color: var(--gold);
    font-weight: 700;
}

.trust-bar__sep {
    color: rgba(200,160,84,0.3);
    font-size: 0.85rem;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--gold-border);
    box-shadow: var(--shadow-gold);
}

.testimonial-card__quote {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.4;
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.testimonial-card__text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-card__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.testimonial-card__name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
}

.testimonial-card__role {
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* Testimonials on dark sections */
.section--navy .testimonial-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}
.section--navy .testimonial-card:hover {
    border-color: var(--gold-border);
}
.section--navy .testimonial-card__text {
    color: rgba(255,255,255,0.75);
}
.section--navy .testimonial-card__name {
    color: var(--white);
}
.section--navy .testimonial-card__role {
    color: rgba(255,255,255,0.45);
}

/* ---------- NEWSLETTER / LEAD CAPTURE ---------- */
.newsletter-signup {
    background: rgba(200,160,84,0.06);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
}

.newsletter-signup h5 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.newsletter-signup p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 180px;
    padding: 0.6rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: var(--white);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--gold);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.3);
}

.newsletter-form button {
    padding: 0.6rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20BD5A;
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

@media (max-width: 480px) {
    .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 46px; height: 46px; }
}

/* ---------- SECTION--LIGHT (for SF page rhythm) ---------- */
.section--light {
    background: var(--off-white);
}

.section--light-warm {
    background: var(--cream);
}

/* ---------- FULL FOOTER (consistent across pages) ---------- */
.footer__grid--5col {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
}

@media (max-width: 1024px) {
    .footer__grid--5col { grid-template-columns: 2fr 1fr 1fr 1fr; }
    .footer__newsletter { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .footer__grid--5col { grid-template-columns: 1fr 1fr; }
}

/* ---------- INLINE CTA BANNER ---------- */
.cta-banner {
    background: var(--gold-muted);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-banner__text {
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 500;
}

.cta-banner__text strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
}

/* ---------- SECTION BRIDGE CALLOUT ---------- */
.bridge-callout {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.bridge-callout .geo-pattern { opacity: 0.04; }

.bridge-callout__inner {
    position: relative;
    z-index: 2;
}

.bridge-callout h3 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.bridge-callout p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- TEAM PROFILES ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--gold-border);
    box-shadow: var(--shadow-gold);
}

.team-card__image {
    height: 200px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card__initials {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.6;
}

.team-card__body {
    padding: 1.25rem 1.5rem;
}

.team-card__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.15rem;
}

.team-card__title {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.team-card__quals {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-bottom: 0.6rem;
}

.team-card__bio {
    font-size: 0.83rem;
    color: var(--gray-700);
    line-height: 1.55;
}

/* ---------- CAPABILITY FILTER TABS (SF page) ---------- */
.capability-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.capability-filter {
    padding: 0.5rem 1.1rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 1px solid rgba(201,168,76,0.3);
    background: transparent;
    color: rgba(201,168,76,0.7);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.capability-filter:hover,
.capability-filter.active {
    background: rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.6);
    color: #C9A84C;
}

/* ---------- PROCESS TIMELINE (How It Works) ---------- */
.process-step__timeline {
    font-size: 0.73rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* ---------- OUTCOMES ATTRIBUTION ---------- */
.outcomes-attribution {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.78rem;
    color: var(--gray-500);
    font-style: italic;
}

/* ---------- BOOKING TRUST ---------- */
.booking-trust {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-top: 1.25rem;
    font-size: 0.82rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.booking-trust p + p {
    margin-top: 0.4rem;
}

.booking-alt-contact {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    font-size: 0.82rem;
    color: var(--gray-500);
}

.booking-alt-contact a {
    color: var(--navy);
    font-weight: 600;
    margin: 0 0.4rem;
}

.booking-alt-contact a:hover {
    color: var(--gold);
}

/* ---------- PORTFOLIO / PROOF OF WORK ---------- */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.portfolio-filter {
    padding: 0.5rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-700);
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.portfolio-filter:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.portfolio-filter--active {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

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

.portfolio-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-card:hover {
    border-color: var(--gold-border);
    box-shadow: 0 8px 32px rgba(11, 20, 38, 0.12);
    transform: translateY(-3px);
}

.portfolio-card__image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.portfolio-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.portfolio-card:hover .portfolio-card__image img {
    transform: scale(1.05);
}

.portfolio-card__overlay {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
}

.portfolio-card__badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
}

.portfolio-card__body {
    padding: 1.5rem;
}

.portfolio-card__body h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.portfolio-card__body p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.portfolio-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.portfolio-card__tags span {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

/* ---------- FALLBACK: Ensure content visible even if JS is slow ---------- */
@media (prefers-reduced-motion: reduce) {
    .fade-up, .stagger > * { opacity: 1 !important; transform: none !important; }
}
/* Auto-reveal after 2s if JS hasn't triggered (safety net) */
@keyframes force-visible {
    to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: force-visible 0.01s 2s forwards; }
.stagger > * { animation: force-visible 0.01s 2.5s forwards; }
