/* ── Reset & Base ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #1a1a2e;
    background: #FFFBF0;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: #0A1F44; color: #F5E6C8;
    padding: .5rem 1rem; border-radius: 0 0 8px 8px; z-index: 9999;
    font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ── Custom Properties ───────────────────────────────── */
:root {
    --navy:    #0A1F44;
    --navy-mid:#152C54;
    --gold:    #D4A017;
    --gold-lt: #F0C75E;
    --cream:   #FFFBF0;
    --cream2:  #FFF8E8;
    --warm-white:#FFFFFF;
    --text:    #1a1a2e;
    --text-mid:#3a3a5c;
    --text-light:#6b6b8a;
    --radius:  16px;
    --radius-sm: 10px;
    --shadow-sm: 0 2px 8px rgba(10,31,68,.08);
    --shadow-md: 0 8px 30px rgba(10,31,68,.12);
    --shadow-lg: 0 16px 60px rgba(10,31,68,.16);
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Typography ──────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--navy);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .85rem 1.75rem;
    border-radius: 50px;
    font-weight: 600; font-size: .95rem;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(212,160,23,.35);
}
.btn-primary:hover { background: var(--gold-lt); box-shadow: 0 8px 30px rgba(212,160,23,.5); }
.btn-secondary {
    background: rgba(255,255,255,.15);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.4);
    backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255,255,255,.25); }
.btn-nav {
    background: var(--gold);
    color: var(--navy);
    padding: .6rem 1.4rem;
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 600;
}
.btn-nav:hover { background: var(--gold-lt); }
.btn-gold {
    background: var(--gold);
    color: var(--navy);
    box-shadow: var(--shadow-md);
}
.btn-gold:hover { background: var(--gold-lt); box-shadow: var(--shadow-lg); }
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); }
.btn-full { width: 100%; justify-content: center; padding: 1rem; }

/* ── Section Tags ────────────────────────────────────── */
.section-tag {
    display: inline-block;
    font-size: .75rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .75rem;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 600px;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin: 0 auto; }

/* ── Navbar ──────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,251,240,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10,31,68,.08);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex; align-items: center; gap: .6rem;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.15rem; color: var(--navy);
}
.logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.logo-accent { color: var(--gold); }
.nav-links {
    display: flex; align-items: center; gap: 2rem;
    font-size: .9rem; font-weight: 500;
}
.nav-links a:not(.btn-nav):hover { color: var(--gold); transition: color var(--transition); }
.nav-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    width: 28px; padding: 4px 0;
}
.hamburger, .hamburger::before, .hamburger::after {
    display: block; width: 100%; height: 2px;
    background: var(--navy); border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after {
    content: ''; position: absolute; left: 0;
}
.hamburger::before { top: -8px; }
.hamburger::after  { top: 8px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { transform: translateY(-8px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,31,68,.88) 0%, rgba(10,31,68,.72) 50%, rgba(10,31,68,.55) 100%);
}
.hero-container {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: center;
}
.hero-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(16px);
}
.hero-badge {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(212,160,23,.2);
    border: 1px solid rgba(212,160,23,.4);
    color: var(--gold-lt);
    font-size: .8rem; font-weight: 600;
    padding: .4rem .9rem; border-radius: 50px;
    margin-bottom: 1.5rem;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-heading {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}
.hero-heading em { color: var(--gold-lt); font-style: italic; }
.hero-sub {
    color: rgba(255,255,255,.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
    display: flex; flex-direction: column; gap: 1rem;
}
.stat-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(12px);
    display: flex; align-items: center; gap: 1rem;
    transition: transform var(--transition), background var(--transition);
}
.stat-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.15); }
.stat-icon {
    width: 44px; height: 44px;
    background: rgba(212,160,23,.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.stat-icon svg { width: 22px; height: 22px; color: var(--gold-lt); }
.stat-number {
    display: block;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.4rem; color: #fff;
}
.stat-label {
    font-size: .8rem; color: rgba(255,255,255,.65);
    font-weight: 500;
}

/* ── Products ────────────────────────────────────────── */
.section { padding: 6rem 0; }
.products { background: var(--cream); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.product-card {
    background: var(--warm-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.product-img-wrap { overflow: hidden; height: 200px; }
.product-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }
.product-body { padding: 1.5rem; }
.product-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, rgba(212,160,23,.15), rgba(212,160,23,.05));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
}
.product-icon svg { width: 24px; height: 24px; color: var(--gold); }
.product-title {
    font-size: 1.2rem; margin-bottom: .5rem;
}
.product-desc {
    font-size: .925rem; color: var(--text-mid);
    line-height: 1.65;
}

/* ── About ───────────────────────────────────────────── */
.about { background: var(--warm-white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 450px; object-fit: cover; }
.about-img-float {
    position: absolute;
    bottom: -40px; right: -30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--warm-white);
}
.about-img-float img { width: 260px; height: 195px; object-fit: cover; display: block; }
.about-badge {
    position: absolute;
    top: -20px; left: -20px;
    background: var(--navy);
    color: var(--gold-lt);
    font-size: .8rem; font-weight: 600;
    padding: .75rem 1.25rem;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; gap: .5rem;
    box-shadow: var(--shadow-md);
}
.about-badge svg { width: 16px; height: 16px; }
.about-text {
    color: var(--text-mid);
    margin-bottom: 1.25rem;
    font-size: 1.025rem;
}
.about-features {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: .75rem 1.5rem;
    margin: 1.75rem 0 2rem;
}
.about-features li {
    display: flex; align-items: center; gap: .6rem;
    font-size: .925rem; font-weight: 500; color: var(--text);
}
.about-features svg {
    width: 18px; height: 18px; flex-shrink: 0; color: var(--gold);
}

/* ── Testimonials ────────────────────────────────────── */
.testimonials { background: var(--cream); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testimonial-card {
    background: var(--warm-white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-quote {
    width: 32px; height: 32px; color: var(--gold);
    opacity: .4; margin-bottom: 1rem; flex-shrink: 0;
}
.testimonial-text {
    font-size: 1rem; color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex: 1;
}
.testimonial-author {
    display: flex; align-items: center; gap: .75rem;
}
.testimonial-avatar { width: 40px; height: 40px; flex-shrink: 0; }
.testimonial-name {
    display: block;
    font-weight: 600; font-size: .9rem; color: var(--navy);
}
.testimonial-location {
    display: block;
    font-size: .8rem; color: var(--text-light);
}

/* ── CTA Banner ──────────────────────────────────────── */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute; inset: 0; z-index: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-scrim {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(10,31,68,.92) 0%, rgba(21,44,84,.85) 100%);
}
.cta-content {
    position: relative; z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #fff;
    margin-bottom: 1rem;
}
.cta-text {
    color: rgba(255,255,255,.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Contact ─────────────────────────────────────────── */
.contact { background: var(--warm-white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-desc {
    color: var(--text-mid);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-item dt {
    display: flex; align-items: center; gap: .5rem;
    font-size: .8rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--navy);
    margin-bottom: .35rem;
}
.contact-item dt svg { width: 16px; height: 16px; color: var(--gold); }
.contact-item dd {
    color: var(--text-mid);
    font-size: .95rem; line-height: 1.7;
}
.contact-item dd a {
    color: var(--navy);
    border-bottom: 1px solid rgba(10,31,68,.2);
    transition: color var(--transition), border-color var(--transition);
}
.contact-item dd a:hover { color: var(--gold); border-color: var(--gold); }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }

/* ── Contact Form ────────────────────────────────────── */
.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}
.form-title {
    font-size: 1.5rem; margin-bottom: .35rem;
}
.form-subtitle {
    color: var(--text-light);
    font-size: .9rem;
    margin-bottom: 1.75rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: .85rem; font-weight: 600;
    color: var(--navy);
    margin-bottom: .4rem;
}
.required { color: #c0392b; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid rgba(10,31,68,.15);
    border-radius: var(--radius-sm);
    font-family: inherit; font-size: .95rem;
    color: var(--text);
    background: var(--warm-white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,160,23,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: flex; align-items: center; gap: .75rem;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(39,174,96,.1);
    border: 1px solid rgba(39,174,96,.25);
    border-radius: var(--radius-sm);
    color: #1a7a42;
    font-size: .925rem;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; color: #27ae60; }

/* ── Footer ──────────────────────────────────────────── */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,.7);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}
.footer .logo { color: #fff; margin-bottom: 1rem; }
.footer-tagline { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer h4 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: .8rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
    font-size: .9rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-lt); }
.footer address { font-style: normal; font-size: .9rem; line-height: 1.7; margin-bottom: .75rem; }
.footer p { font-size: .9rem; }
.footer a {
    color: rgba(255,255,255,.7);
    transition: color var(--transition);
}
.footer a:hover { color: var(--gold-lt); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.5rem 0;
}
.footer-bottom-inner {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .825rem; color: rgba(255,255,255,.45);
}

/* ── Scroll Reveal (progressive enhancement) ─────────── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: row; flex-wrap: wrap; margin-top: 1rem; }
    .stat-card { flex: 1; min-width: 140px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-images { max-width: 500px; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(255,251,240,.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid rgba(10,31,68,.08);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: transform var(--transition), opacity var(--transition);
        pointer-events: none;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-toggle { display: flex; }
    .hero { padding: 7rem 0 3rem; min-height: auto; }
    .hero-card { padding: 1.75rem; }
    .hero-heading { font-size: clamp(1.6rem, 6vw, 2.25rem); }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .products-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-img-float { right: 0; bottom: -30px; }
    .about-img-main img { height: 320px; }
    .about-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-inner { flex-direction: column; gap: .5rem; text-align: center; }
    .contact-form-wrap { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .section { padding: 4rem 0; }
    .hero-stats { flex-direction: column; }
    .stat-card { flex-direction: row; }
}
