/* ========================================
   Annie 88 Express — Style System
   Deep Navy + Warm Gold | Confident Corporate
   ======================================== */

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-950: #0a1628;
    --navy-900: #0f2140;
    --navy-800: #152d56;
    --navy-700: #1a3668;
    --navy-600: #1e4080;
    --navy-500: #2554a0;
    
    --gold-50: #fdf8e8;
    --gold-100: #f9edc4;
    --gold-200: #f2d88e;
    --gold-300: #eabf56;
    --gold-400: #c8a45e;
    --gold-500: #b8944e;
    --gold-600: #9a7a3e;
    --gold-700: #7d6232;
    
    --neutral-50: #f8f9fa;
    --neutral-100: #f1f3f5;
    --neutral-200: #e9ecef;
    --neutral-300: #dee2e6;
    --neutral-400: #ced4da;
    --neutral-500: #adb5bd;
    --neutral-600: #868e96;
    --neutral-700: #495057;
    --neutral-800: #343a40;
    --neutral-900: #212529;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.10);
    --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.14);
    --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.18);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--neutral-800);
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Skip Link ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--navy-950);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 16px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold-400);
    color: var(--navy-950);
    border-color: var(--gold-400);
}

.btn--gold:hover {
    background: var(--gold-300);
    border-color: var(--gold-300);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 164, 94, 0.35);
}

.btn--outline-light {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn--outline-navy {
    background: transparent;
    color: var(--navy-800);
    border-color: var(--navy-700);
}

.btn--outline-navy:hover {
    background: var(--navy-800);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn--wide {
    width: 100%;
    justify-content: center;
}

/* ── Section Header ── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header__eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 12px;
    padding: 6px 16px;
    background: var(--gold-50);
    border: 1px solid var(--gold-100);
    border-radius: 100px;
}

.section-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--navy-950);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-header__desc {
    font-size: 1.0625rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.97);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

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

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.navbar__logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold-400);
    color: var(--navy-950);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    letter-spacing: -0.02em;
}

.navbar__logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition);
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-400);
    transition: width var(--transition);
}

.navbar__link:hover {
    color: #ffffff;
}

.navbar__link:hover::after {
    width: 100%;
}

.navbar__cta {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.navbar__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all var(--transition);
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-line:nth-child(2) {
    opacity: 0;
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy-950);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/8922189/pexels-photo-8922189.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
    transform: scale(1.05);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(15, 33, 64, 0.85) 40%,
        rgba(21, 46, 86, 0.75) 100%
    );
}

.hero__container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
}

.hero__content {
    max-width: 560px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(200, 164, 94, 0.12);
    border: 1px solid rgba(200, 164, 94, 0.3);
    border-radius: 100px;
    color: var(--gold-300);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__headline em {
    font-style: normal;
    color: var(--gold-300);
}

.hero__subheadline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ── Stat Cards ── */
.hero__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    transition: all var(--transition);
}

.stat-card:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.16);
}

.stat-card--gold {
    background: linear-gradient(135deg, rgba(200, 164, 94, 0.2), rgba(200, 164, 94, 0.08));
    border-color: rgba(200, 164, 94, 0.3);
}

.stat-card--gold .stat-card__value {
    color: var(--gold-300);
}

.stat-card--navy {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
}

.stat-card--accent {
    background: linear-gradient(135deg, rgba(45, 84, 160, 0.3), rgba(45, 84, 160, 0.1));
    border-color: rgba(45, 84, 160, 0.4);
}

.stat-card--accent .stat-card__value {
    color: var(--gold-200);
}

.stat-card__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-300);
}

.stat-card__value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-card__label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    font-weight: 500;
}

/* ── Features ── */
.features {
    padding: 100px 0;
    background: var(--neutral-50);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.feature-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-200);
}

.feature-card__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 400/260;
}

.feature-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-card__img img {
    transform: scale(1.06);
}

.feature-card__body {
    padding: 28px 32px 32px;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-950);
    color: var(--gold-400);
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
}

.feature-card__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy-950);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.feature-card__text {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

.features__cta {
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
}

.features__cta p {
    font-size: 1.0625rem;
    color: var(--neutral-600);
    margin-bottom: 20px;
}

/* ── About ── */
.about {
    padding: 100px 0;
    background: #ffffff;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__media {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid #ffffff;
}

.about__img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__content {
    max-width: 480px;
}

.about__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--navy-950);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about__body {
    font-size: 1rem;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--neutral-800);
}

.highlight-item svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

/* ── Location ── */
.location {
    padding: 100px 0 80px;
    background: var(--neutral-50);
}

.location__content {
    max-width: 680px;
    margin: 0 auto 48px;
    text-align: center;
}

.location__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--navy-950);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.location__desc {
    font-size: 1.0625rem;
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: 40px;
}

.location__info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.location-info {
    display: flex;
    gap: 16px;
    padding: 28px;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-200);
    text-align: left;
    transition: all var(--transition);
}

.location-info:hover {
    border-color: var(--gold-200);
    box-shadow: var(--shadow-md);
}

.location-info__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-950);
    color: var(--gold-400);
    border-radius: var(--radius-sm);
}

.location-info__label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--neutral-500);
    margin-bottom: 6px;
}

.location-info__value {
    font-size: 0.9375rem;
    color: var(--neutral-800);
    line-height: 1.6;
    font-weight: 500;
}

.location-info__link {
    color: var(--navy-700);
    transition: color var(--transition);
}

.location-info__link:hover {
    color: var(--gold-600);
}

.location__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ── CTA ── */
.cta {
    padding: 100px 0;
    background: var(--navy-950);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 164, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta__body {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 40px;
}

.cta__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

/* ── Footer ── */
.footer {
    background: var(--navy-950);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 64px 0 32px;
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer__logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold-400);
    color: var(--navy-950);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
}

.footer__logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffffff;
}

.footer__tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 320px;
}

.footer__heading {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-400);
    margin-bottom: 16px;
}

.footer__text {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer__link:hover {
    color: var(--gold-300);
}

.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ── Scroll Animations ── */
[data-animate] {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (prefers-reduced-motion: no-preference) {
    [data-animate] {
        opacity: 0;
        transform: translateY(24px);
    }
    
    [data-animate].is-visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    [data-animate="1"] { transition-delay: 0.1s; }
    [data-animate="2"] { transition-delay: 0.2s; }
    [data-animate="3"] { transition-delay: 0.3s; }
    [data-animate="4"] { transition-delay: 0.4s; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero__cards {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1;
        min-width: 200px;
    }
    
    .about__grid {
        gap: 48px;
    }
    
    .about__img-float {
        right: -20px;
        bottom: -24px;
    }
}

@media (max-width: 768px) {
    .navbar__toggle {
        display: flex;
    }
    
    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--navy-950);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right var(--transition);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
    }
    
    .navbar__menu.is-open {
        right: 0;
    }
    
    .navbar__link {
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.85);
    }
    
    .navbar__cta {
        margin-top: 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero__headline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .hero__cards {
        flex-direction: column;
    }
    
    .stat-card {
        min-width: auto;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about__img-float {
        position: relative;
        bottom: auto;
        right: auto;
        width: 70%;
        margin-top: -40px;
        margin-left: auto;
    }
    
    .location__info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about__highlights {
        grid-template-columns: 1fr;
    }
    
    .features__cta {
        padding: 28px 20px;
    }
}
