:root {
    --primary-blue: #1E5FAB;
    --yellow-accent: #FFD100;
    --dark-navy: #0a1628;
    --dark-card: #12233d;
    --dark-border: rgba(30, 95, 171, 0.3);
    --text-primary: #e8eef4;
    --text-muted: #8fa4bd;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-navy);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0.75rem 2rem;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dark-border);
    transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }
.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.nav-logo img { height: 50px; width: auto; }
.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(30, 95, 171, 0.2);
}
.nav-links a.active {
    color: var(--yellow-accent);
    background: rgba(30, 95, 171, 0.3);
}

/* Main */
main { padding-top: 90px; }

/* Hero */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #0d2440 50%, var(--dark-navy) 100%);
    border-bottom: 2px solid var(--primary-blue);
}
.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}
.hero h1 span { color: var(--yellow-accent); }
.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
.brand-section {
    padding: 4rem 2rem;
    scroll-margin-top: 90px;
}
.brand-section:nth-child(even) { background: rgba(18, 35, 61, 0.5); }
.section-container { max-width: 1400px; margin: 0 auto; }
.section-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-blue);
}
.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: 0.03em;
    color: var(--text-primary);
}
.section-header h2 span { color: var(--yellow-accent); }
.brand-logo {
    max-height: 80px;
    width: auto;
    max-width: 100%;
}
.coming-soon-wrapper {
    position: relative;
    display: inline-block;
}
.coming-soon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    max-height: 60px;
    opacity: 0.9;
}
.coming-soon-text {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-style: italic;
    padding: 2rem 0;
}
.sub-section { margin-bottom: 3rem; }
.sub-section:last-child { margin-bottom: 0; }
.sub-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 4px solid var(--yellow-accent);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}
.product-card {
    background: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--dark-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(30, 95, 171, 0.25);
    border-color: var(--primary-blue);
}
.product-image {
    aspect-ratio: 1;
    background: #EFEFEF;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.product-card:hover .product-image img { transform: scale(1.05); }
.product-info { padding: 1rem; }
.product-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
.product-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.product-meta strong {
    color: var(--primary-blue);
}
.colour-swatches {
    display: flex;
    gap: 0.35rem;
    align-items: center;
    flex-wrap: wrap;
}
.colour-swatches strong {
    margin-right: 0.25rem;
}
.swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
}
.swatch.black { background: #1a1a1a; }
.swatch.navy { background: #1a2744; }
.swatch.grey { background: #6b6b6b; }
.swatch.charcoal { background: #36454f; }
.swatch.graphite { background: #4a4a4a; }
.swatch.royal-blue { background: #4169e1; }

/* Modal */
.modal-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-backdrop.active { opacity: 1; visibility: visible; }
.modal {
    background: var(--dark-card);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    border: 1px solid var(--primary-blue);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
}
.modal-backdrop.active .modal { transform: scale(1); }
.modal-close {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 40px; height: 40px;
    border: none;
    background: rgba(10, 22, 40, 0.8);
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 10;
}
.modal-close:hover { background: var(--primary-blue); }
.modal-image { background: #EFEFEF; aspect-ratio: 1; }
.modal-image img { width: 100%; height: 100%; object-fit: contain; }
.modal-content { padding: 1.5rem; }
.modal-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}
.modal-details { display: flex; flex-direction: column; gap: 0.5rem; }
.modal-detail { display: flex; gap: 0.5rem; }
.modal-detail .label {
    font-weight: 600;
    color: var(--primary-blue);
    min-width: 80px;
}
.modal-detail .value {
    color: var(--text-muted);
    display: flex;
    gap: 0.35rem;
    align-items: center;
}
.modal-detail .value .swatch {
    width: 20px;
    height: 20px;
}
.modal-description {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--dark-navy) 0%, #050d18 100%);
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 2px solid var(--primary-blue);
}
.footer-content { max-width: 600px; margin: 0 auto; }
.footer-logo { height: 60px; margin-bottom: 1.5rem; }
.footer-contact { margin-bottom: 1rem; }
.footer-contact a {
    color: var(--yellow-accent);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
}
.footer-contact a:hover { color: var(--text-primary); }
.footer-website { color: var(--text-muted); font-size: 1rem; }
.footer-website a { color: var(--primary-blue); text-decoration: none; }
.footer-website a:hover { color: var(--yellow-accent); }

.footer-credits {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.credit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.credit-logo {
    height: 24px;
    vertical-align: middle;
    transition: opacity 0.2s;
}
.credit-item a:hover .credit-logo { opacity: 0.8; }

/* Responsive */
@media (max-width: 768px) {
    .nav { padding: 0.5rem 1rem; }
    .nav-inner { flex-direction: column; gap: 0.75rem; }
    .nav-logo img { height: 40px; }
    .nav-links { justify-content: center; gap: 0.25rem; }
    .nav-links a { font-size: 0.75rem; padding: 0.4rem 0.6rem; }
    main { padding-top: 120px; }
    .brand-section { padding: 2rem 1rem; scroll-margin-top: 120px; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
}

/* Print */
@media print {
    .nav { position: static; background: white; border-bottom: 2px solid #1E5FAB; padding: 1rem; }
    .nav-links a { color: #333; }
    main { padding-top: 0; }
    body { background: white; color: #333; }
    .brand-section { background: white !important; page-break-inside: avoid; }
    .product-card { background: white; border: 1px solid #ddd; break-inside: avoid; }
    .product-info h4 { color: #333; }
    .hero { background: white; border-bottom: 2px solid #1E5FAB; }
    .hero h1, .section-header h2 { color: #1E5FAB; }
    .hero h1 span, .section-header h2 span { color: #FFD100; }
    footer { background: white; border-top: 2px solid #1E5FAB; }
    .modal-backdrop { display: none !important; }
}
