@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Work+Sans:wght@400;500;600&display=swap');

:root {
    --ink: #1a1a1a;
    --red: #C8102E;
    --red-dark: #94091F;
    --steel: #6b7078;
    --paper: #ffffff;
    --surface: #f7f4f3;
    --line: #e8e2e1;
    --radius: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}
h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--ink);
    margin: 0 0 0.5em;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

/* ---------- Header ---------- */
.site-header {
    background: var(--red);
    border-bottom: 3px solid var(--ink);
    position: sticky; top: 0; z-index: 100;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 92px; }
.logo { display: flex; align-items: center; }
.logo img { height: 84px; width: auto; border-radius: 4px; }
.main-nav ul { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; }
.main-nav a {
    color: rgba(255,255,255,0.85); font-family: 'Oswald', sans-serif; font-size: 14px;
    text-transform: uppercase; letter-spacing: 0.05em; padding: 10px 14px; border-radius: var(--radius);
}
.main-nav a:hover, .main-nav a.active { color: #fff; background: rgba(0,0,0,0.18); }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block; font-family: 'Oswald', sans-serif; text-transform: uppercase;
    letter-spacing: 0.05em; font-size: 14px; padding: 13px 28px; border-radius: var(--radius);
    border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline { border-color: #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--ink); }
.contact-info .btn-outline { border-color: var(--ink); color: var(--ink); }
.contact-info .btn-outline:hover { background: var(--ink); color: #fff; }
.hero .btn-primary { background: #fff; color: var(--red); }
.hero .btn-primary:hover { background: var(--surface); }

/* ---------- Hero ---------- */
.hero {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: #fff; padding: 90px 0; position: relative; overflow: hidden;
}
.hero::after {
    content: ""; position: absolute; right: -80px; bottom: -80px; width: 340px; height: 340px;
    border: 3px solid rgba(255,255,255,0.2); border-radius: 50%;
}
.hero-inner { max-width: 640px; position: relative; z-index: 1; }
.hero h1 { font-size: 44px; line-height: 1.1; color: #fff; }
.hero p { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; }

/* ---------- Quick contact bar ---------- */
.quick-contact-bar { background: var(--surface); border-bottom: 1px solid var(--line); padding: 18px 0; }
.quick-contact-inner { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.quick-contact-btn {
    display: flex; align-items: center; gap: 10px; padding: 13px 26px; border-radius: var(--radius);
    font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.04em; font-size: 14px;
    transition: transform 0.15s, box-shadow 0.15s;
}
.quick-contact-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.quick-contact-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,0.12); }
.quick-contact-call { background: var(--red); color: #fff; }
.quick-contact-whatsapp { background: #25D366; color: #fff; }
@media (max-width: 480px) { .quick-contact-inner { flex-direction: column; } .quick-contact-btn { justify-content: center; } }

/* ---------- Sections ---------- */
.section { padding: 70px 0; }
.section-alt { background: var(--surface); }
.section-title { font-size: 28px; margin-bottom: 32px; position: relative; padding-bottom: 14px; }
.section-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 48px; height: 4px; background: var(--red); }
.page-header { background: var(--red); padding: 48px 0; }
.page-header h1 { color: #fff; margin: 0; font-size: 32px; }

/* ---------- Grids / Cards ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.category-card {
    display: block; background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--red);
    padding: 26px; border-radius: var(--radius); transition: transform 0.15s, box-shadow 0.15s;
}
.category-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.category-card h3 { font-size: 18px; margin-bottom: 8px; }
.category-card p { font-size: 14px; color: var(--steel); margin: 0; }

.product-card {
    display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.product-card-link { display: block; flex: 1; }
.product-img { aspect-ratio: 4/3; background: var(--surface); overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--steel); font-size: 13px; text-align: center; padding: 12px; }
.product-img-placeholder.large { aspect-ratio: 4/3; }
.product-card h3 { font-size: 16px; margin: 14px 16px 4px; }
.product-cat { font-size: 12px; color: var(--steel); margin: 0 16px 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.product-price { font-family: 'Oswald', sans-serif; color: var(--red); font-weight: 600; margin: 0 16px 16px; }
.product-price.large { font-size: 22px; }
.btn-quote { margin: 4px 16px 16px; text-align: center; }

/* License-plate style badge - signature element */
.featured-badge, .plate-tag {
    display: inline-block; font-family: 'Oswald', sans-serif; background: #fff; border: 2px solid var(--ink);
    border-radius: 4px; padding: 3px 10px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
}

.cta-section { text-align: center; background: var(--ink); color: #fff; }
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.cta-section .btn-primary { background: var(--red); color: #fff; }
.cta-section .btn-primary:hover { background: var(--red-dark); }

/* ---------- About ---------- */
.check-list { list-style: none; padding: 0; }
.check-list li { padding-left: 28px; position: relative; margin-bottom: 10px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.cta-inline { display: flex; gap: 14px; margin-top: 32px; }
.cta-inline .btn-primary { background: var(--red); color: #fff; }
.cta-inline .btn-outline { border-color: var(--ink); color: var(--ink); }
.cta-inline .btn-outline:hover { background: var(--ink); color: #fff; }

/* ---------- Founder section ---------- */
.lead { font-size: 17px; color: var(--steel); font-style: italic; margin-top: -8px; }
.founder-section {
    display: grid; grid-template-columns: 200px 1fr; gap: 32px; align-items: center;
    margin: 8px 0 40px; padding: 0; position: relative;
}
.founder-photo { position: relative; }
.founder-photo img { width: 100%; border-radius: var(--radius); aspect-ratio: 3/4; object-fit: cover; border: 3px solid var(--red); }
.founder-label { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.12em; color: var(--red); font-size: 13px; margin: 0 0 6px; }
.founder-name { font-family: 'Oswald', sans-serif; font-size: 26px; text-transform: uppercase; margin: 0 0 4px; }
.founder-title { color: var(--steel); font-size: 14px; margin: 0; }
@media (max-width: 640px) { .founder-section { grid-template-columns: 1fr; text-align: center; } .founder-photo img { max-width: 220px; margin: 0 auto; } }

/* ---------- Service icon grid (about us) ---------- */
.service-icon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 28px 0 40px; }
.service-icon-card { background: var(--surface); border-radius: var(--radius); padding: 24px 20px; text-align: center; border-top: 3px solid var(--red); }
.service-icon { width: 48px; height: 48px; color: var(--red); margin: 0 auto 14px; }
.service-icon-card h3 { font-size: 15px; margin-bottom: 8px; }
.service-icon-card p { font-size: 13px; color: var(--steel); margin: 0; line-height: 1.5; }
@media (max-width: 640px) { .service-icon-grid { grid-template-columns: 1fr; } }

/* ---------- Mission callout ---------- */
.mission-callout { background: var(--ink); color: #fff; padding: 32px; border-radius: var(--radius); margin: 36px 0; position: relative; }
.mission-callout::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--red); border-radius: var(--radius) 0 0 var(--radius); }
.mission-callout h2 { color: #fff; }
.mission-callout p { color: rgba(255,255,255,0.85); margin: 0; }

/* ---------- Products layout ---------- */
.products-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; }
.filters h3 { font-size: 16px; }
.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-list li a { display: block; padding: 8px 0; color: var(--steel); border-bottom: 1px solid var(--line); font-size: 14px; }
.filter-list li a.active, .filter-list li a:hover { color: var(--red); }

.breadcrumb { font-size: 13px; color: var(--steel); margin-bottom: 24px; }
.breadcrumb a { color: var(--steel); text-decoration: underline; }

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.product-detail-img { border-radius: var(--radius); overflow: hidden; }
.product-detail-info h1 { font-size: 30px; }

/* ---------- Reviews scroll ---------- */
.reviews-scroll-wrap { overflow: hidden; position: relative; margin-bottom: 28px; }
.reviews-scroll-wrap::before, .reviews-scroll-wrap::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.reviews-scroll-wrap::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.reviews-scroll-wrap::after { right: 0; background: linear-gradient(270deg, var(--surface), transparent); }
.reviews-scroll-track {
    display: flex; gap: 20px; width: max-content;
    animation: reviews-scroll 50s linear infinite;
}
.reviews-scroll-track:hover { animation-play-state: paused; }
@keyframes reviews-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.review-card {
    flex: 0 0 auto; width: 320px; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--red);
    border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 14px;
}
.review-text { font-size: 14px; color: var(--ink); margin: 0; line-height: 1.6; }
.review-name { font-family: 'Oswald', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--red); margin: 0; }
a.review-name:hover { text-decoration: underline; }
@media (prefers-reduced-motion: reduce) {
    .reviews-scroll-track { animation: none; overflow-x: auto; }
}

/* ---------- Instagram carousel ---------- */
.insta-carousel {
    display: flex; gap: 20px; overflow-x: auto; padding-bottom: 12px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.insta-item {
    flex: 0 0 auto; width: 320px; scroll-snap-align: start;
    border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff;
}
.insta-item blockquote.instagram-media { width: 100% !important; min-width: 100% !important; }
.insta-carousel::-webkit-scrollbar { height: 8px; }
.insta-carousel::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

/* ---------- Gallery ---------- */
.gallery-item { aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; }
.contact-info p { margin: 6px 0; }
.contact-info .btn { margin-top: 16px; }
.enquiry-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--steel); }
.enquiry-form input, .enquiry-form textarea {
    display: block; width: 100%; margin-top: 6px; padding: 11px 12px; border: 1px solid var(--line);
    border-radius: var(--radius); font-family: 'Work Sans', sans-serif; font-size: 15px; background: #fff;
}
.enquiry-form input:focus, .enquiry-form textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; }
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #e4f3e6; border: 1px solid #a9d9b1; color: #1e5c2a; }
.alert-error { background: #fbe2e5; border: 1px solid #eeb0b8; color: #8f2c14; }
.alert-error ul { margin: 0; padding-left: 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--red); color: rgba(255,255,255,0.85); margin-top: 60px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; padding: 56px 24px 32px; }
.site-footer h3, .site-footer h4 { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.25); padding: 18px 0; font-size: 13px; text-align: center; color: rgba(255,255,255,0.75); }
.footer-credit { display: block; margin-top: 4px; font-size: 12px; color: rgba(255,255,255,0.6); }
.footer-credit a { color: rgba(255,255,255,0.85); text-decoration: underline; }
.footer-credit a:hover { color: #fff; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; background: #25D366; width: 56px; height: 56px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25); z-index: 200;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .products-layout, .product-detail, .contact-layout { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .hero h1 { font-size: 32px; }
    .nav-toggle { display: block; }
    #navMenu { display: none; flex-direction: column; position: absolute; top: 92px; left: 0; right: 0; background: var(--red); padding: 12px 24px; }
    #navMenu.open { display: flex; }
    .main-nav { position: relative; }
}
@media (max-width: 520px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; scroll-behavior: auto !important; }
}

/* Keyboard focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--red); outline-offset: 2px;
}
