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

:root {
    --navy: #0f1c3f;
    --navy-light: #1a2d5a;
    --gold: #c8a44e;
    --gold-light: #dbb965;
    --surface-light: #f8f6f1;
    --surface-dark: #0f1c3f;
    --text-dark: #1a1a1a;
    --text-muted: #6b6b6b;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-dark);
    background: var(--surface-light);
    overflow-x: hidden;
}

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

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

/* ===== Typography ===== */
.font-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

/* ===== Navigation ===== */
.nav {
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    background: rgba(15, 28, 63, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav-logo {
    color: #fff;
    transition: color var(--transition);
}

.nav.scrolled .nav-logo {
    color: #fff;
}

.nav-logo-mark {
    color: var(--gold);
}

.nav-logo-text {
    color: #fff;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
    position: relative;
}

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

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== Buttons ===== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(200, 164, 78, 0.3);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    border-radius: 10px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(200, 164, 78, 0.35);
}

.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: transparent;
    color: #fff;
    font-weight: 500;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.25);
    transition: all var(--transition);
    cursor: pointer;
}

.btn-ghost-light:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.08);
}

.btn-primary-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: transparent;
    color: var(--navy);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--navy);
    transition: all var(--transition);
    cursor: pointer;
}

.btn-primary-outline:hover {
    background: var(--navy);
    color: #fff;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-link {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: color var(--transition);
}

.mobile-menu-link:hover {
    color: var(--gold);
}

/* ===== Hero ===== */
.hero {
    background: var(--navy);
    position: relative;
}

.hero-bg-pattern {
    background-image: radial-gradient(circle at 20% 80%, rgba(200,164,78,0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(200,164,78,0.08) 0%, transparent 50%);
}

.hero-gradient {
    background: linear-gradient(180deg, rgba(15,28,63,0.3) 0%, rgba(15,28,63,1) 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(200,164,78,0.1);
    border: 1px solid rgba(200,164,78,0.25);
    padding: 0.5rem 1rem;
    border-radius: 100px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-badge-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.hero-headline {
    color: #fff;
}

.hero-subtitle {
    color: rgba(255,255,255,0.55);
}

.hero-ctas {
    gap: 1rem;
}

/* Floating Cards */
.hero-visual {
    position: relative;
    width: 100%;
    height: 480px;
}

.hero-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    min-width: 160px;
}

.hero-card-1 {
    top: 0;
    right: 10%;
}

.hero-card-2 {
    top: 35%;
    right: 0;
}

.hero-card-3 {
    bottom: 25%;
    left: 5%;
}

.hero-card-4 {
    bottom: 0;
    right: 20%;
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(200,164,78,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.hero-card-number {
    color: var(--navy);
}

.hero-card-label {
    margin-top: 0.25rem;
}

/* Float Animations */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes floatMedium {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
}

@keyframes floatFast {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.card-float-slow { animation: floatSlow 5s ease-in-out infinite; }
.card-float-medium { animation: floatMedium 4s ease-in-out infinite 0.5s; }
.card-float-fast { animation: floatFast 3.5s ease-in-out infinite 1s; }

/* Scroll Indicator */
.scroll-indicator {
    color: rgba(255,255,255,0.4);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(8px); opacity: 1; }
}

/* ===== Sections ===== */
.section {
    padding: 7rem 0;
}

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

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

.section-header {
    max-width: 640px;
    margin: 0 auto;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-eyebrow-light {
    color: var(--gold);
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-title-light {
    color: #fff;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== Product Cards ===== */
.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.04);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.product-card-img-wrap {
    overflow: hidden;
    aspect-ratio: 3/2;
}

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

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

.product-card-body {
    padding: 1.5rem;
}

.product-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(200,164,78,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    margin-bottom: 1rem;
}

.product-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.product-card-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===== About ===== */
.about-image-wrap {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-accent-bar {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 6px;
    background: var(--gold);
    border-radius: 3px;
}

.about-stat-card {
    position: absolute;
    bottom: 24px;
    right: -16px;
    background: #fff;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.about-stat-number {
    color: var(--navy);
}

.about-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-text {
    font-size: 1.0625rem;
}

.about-features {
    gap: 1.25rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(200,164,78,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-text {
    font-size: 0.9375rem;
}

/* ===== Info Card ===== */
.info-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.info-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(200,164,78,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-title {
    color: var(--navy);
}

.info-card-body {
    flex: 1;
}

.info-row {
    display: flex;
    gap: 1rem;
}

.info-row-icon {
    width: 40px;
    height: 40px;
    background: var(--surface-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--navy);
}

.info-row-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.info-row-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

.info-link {
    color: var(--navy);
    transition: color var(--transition);
}

.info-link:hover {
    color: var(--gold);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem 1.5rem;
    font-size: 0.9375rem;
}

.hours-closed {
    color: var(--text-muted);
    font-weight: 500;
}

.hours-closed-value {
    color: var(--gold);
    font-weight: 600;
}

.info-card-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* ===== Map Card ===== */
.map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-card-inner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    aspect-ratio: 4/3;
}

.map-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,28,63,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.map-pin {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.map-card-text {
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    background-image: radial-gradient(circle at 30% 50%, rgba(200,164,78,0.2) 0%, transparent 60%),
                      radial-gradient(circle at 70% 50%, rgba(200,164,78,0.1) 0%, transparent 60%);
}

.cta-headline {
    color: #fff;
}

.cta-desc {
    color: rgba(255,255,255,0.5);
}

/* ===== Footer ===== */
.footer {
    background: #0a1429;
    padding: 0;
}

.footer-logo {
    color: #fff;
}

.footer-logo-mark {
    color: var(--gold);
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-heading {
    margin-bottom: 0.75rem;
}

.footer-link {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
    display: inline;
}

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

.footer-links {
    list-style: none;
}

.footer-bottom {
    font-size: 0.8125rem;
}

/* ===== Responsive ===== */
@media (max-width: 1023px) {
    .hero-visual {
        display: none;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 5rem 0;
    }

    .info-card {
        padding: 1.75rem;
    }

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

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
