/* Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

::root {
    --primary-color: #2B5482;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.site-body {
    min-height: 100vh;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #0f172a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* Theme */
:root {
    --brand-red: #d91b2b;
    --brand-black: #020617;
    --text: #0f172a;
    --text-light: #475569;
    --muted: #64748b;
    --border: #e2e8f0;
    --bg-alt: #f8fafc;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --radius: 0.75rem;
    --radius-lg: 1.25rem;
}

h1,
h2,
h3,
h4,
.logo-title {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

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

/* Layout */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container--wide {
    max-width: 1400px;
}

/* Category Icons */
.category-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.category-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}

.category-icon-item:hover {
    transform: translateY(-3px);
    background: #ffffff;
    box-shadow: var(--shadow);
    border-color: var(--brand-red);
}

.category-icon-item i {
    font-size: 1.5rem;
    color: var(--brand-red);
    margin-bottom: 0.75rem;
}

.category-icon-item span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
}

.site-header--overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    gap: 1.5rem;
}

.header-inner--overlay {
    padding: 0.9rem 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.site-header--overlay .logo-mark {
    background: transparent;
}

.logo-title {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #6b7280;
}

.site-header--overlay .logo-title {
    color: #ffffff;
}

.site-header--overlay .logo-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4b5563;
}

@media (max-width: 768px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        z-index: 100;
        padding: 5rem 2rem;
        gap: 2rem;
    }

    .site-header--overlay .nav-links.active {
        background: var(--brand-black);
    }
}

.site-header--overlay .nav-links {
    color: rgba(255, 255, 255, 0.9);
}

.nav-link {
    transition: color 0.15s ease;
}

@media (max-width: 768px) {
    .nav-links.active .nav-link {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text);
    }

    .site-header--overlay .nav-links.active .nav-link {
        color: #ffffff;
    }
}

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

.site-header--overlay .nav-link:hover {
    color: #ffffff;
}

.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 110;
    color: var(--text);
    transition: transform 0.2s ease;
}

.site-header--overlay .mobile-nav-toggle {
    color: #ffffff;
}

@media (min-width: 769px) {
    .mobile-nav-toggle {
        display: none;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.625rem;
    padding: 0.55rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.14);
}

.btn-secondary {
    border-color: #d1d5db;
    color: #111827;
    background-color: #ffffff;
}

.btn-secondary:hover {
    background-color: #f9fafb;
}

.btn-primary {
    background-color: var(--brand-red);
    color: #ffffff;
    padding: 0.8rem 1.75rem;
    font-size: 1rem;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #c01523;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.btn-primary i {
    margin-right: 0.75rem;
    font-size: 1.1em;
}

/* Hero (vision style) */
.hero-banner {
    position: relative;
    min-height: 720px;
    display: grid;
    align-items: center;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-inner {
    position: relative;
    padding: 8rem 0 5rem;
    text-align: center;
    color: #ffffff;
}

.hero-kicker {
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-red);
    font-size: 0.85rem;
}

.hero-headline {
    margin: 0.7rem 0 0;
    font-size: 3rem;
    letter-spacing: -0.03em;
    line-height: 1.05;
    font-weight: 800;
}

.hero-description {
    margin-top: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    margin-top: 1.4rem;
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.14);
}

/* Split sections */
.split {
    background: #ffffff;
}

.split--alt {
    background: #f8fafc;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.split-grid--reverse {
    direction: rtl;
}

.split-grid--reverse>* {
    direction: ltr;
}

.split-media {
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.split-card {
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.split-card--full {
    padding: 5rem 0;
    border: none !important;
}

.split-media--store {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .20), rgba(0, 0, 0, .20)), var(--hero-bg);
}

.split-media--welcome {
    background-image: url('../hero/clogs.png');
}

.split-media--people {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .18)), var(--hero-bg);
    filter: saturate(1.05) contrast(1.05);
}

.split-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--border);
    background: #ffffff;
}

.split--alt .split-card {
    background: #ffffff;
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111827;
    opacity: 0.8;
}

.split-title {
    margin: 0.55rem 0 0;
    font-size: 2rem;
    letter-spacing: -0.02em;
}

.accent {
    color: var(--brand-red);
}

.split-text {
    margin-top: 0.85rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 40rem;
}

/* Products Grid */
.section--products {
    padding-bottom: 5rem;
}

.products-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    position: relative;
    aspect-ratio: 3 / 4;
    background: #f8fafc;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.8) 40%, transparent 100%);
    color: #ffffff;
    z-index: 2;
}

.product-type {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-red);
}

.product-price {
    margin-top: 0.35rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.product-sizes {
    margin-top: 1rem;
}

.size-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.size-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.size-tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Our Drive Features */
.drive-features {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.drive-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.drive-item i {
    font-size: 1.5rem;
    color: var(--brand-red);
}

.drive-item-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}

.drive-item-text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

.social-connect {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.social-connect-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 1rem;
}

.social-links-row {
    display: flex;
    gap: 1.5rem;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.social-link-item:hover {
    color: var(--brand-red);
}

.social-link-item i {
    font-size: 1.2rem;
}

/* Brand Features Bar */
.features-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.features-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--brand-red);
    font-size: 1.25rem;
}

/* Sections + gallery */
.section {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    background: #ffffff;
}

.section--alt {
    background: #f8fafc;
}

.section-head {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

.section-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    max-width: 46rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 1rem;
    border: 1px solid var(--border);
    min-height: 180px;
    background: #0b1220;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.10);
}

.gallery-item--1 {
    background-image: linear-gradient(0deg, rgba(225, 29, 46, .35), rgba(0, 0, 0, .35)), var(--hero-bg);
}

.gallery-item--2 {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .15)), var(--hero-bg);
}

.gallery-item--3 {
    background-image: linear-gradient(0deg, rgba(225, 29, 46, .25), rgba(0, 0, 0, .35)), var(--hero-bg);
}

.gallery-item--4 {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .35), rgba(225, 29, 46, .15)), var(--hero-bg);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--brand-red);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
}

/* Newsletter Section */
.newsletter {
    background: var(--bg-alt);
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.newsletter-form {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-family: inherit;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--brand-red);
}

/* Locator CTA */
.locator {
    position: relative;
    background: var(--brand-red);
    padding: 3.5rem 0;
}

.locator-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.22), transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(0, 0, 0, 0.25), transparent 45%);
    opacity: 0.9;
}

.locator-inner {
    position: relative;
    display: flex;
    justify-content: center;
}

.locator-card {
    width: min(900px, 100%);
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.28);
    padding: 1.8rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    box-shadow: var(--shadow);
}

.locator-title {
    color: #ffffff;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
}


/* Sections */
.section {
    padding: 2.75rem 0;
    border-top: 1px solid #e5e7eb;
    background-color: #ffffff;
}

.section-alt {
    background-color: #f9fafb;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.section-text {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #4b5563;
    max-width: 42rem;
}

/* Footer */
.site-footer {
    background: var(--brand-black);
    color: #ffffff;
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-about {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.95rem;
    max-width: 20rem;
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.footer-social-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-col-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-info-text {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Responsive */
@media (min-width: 769px) {
    .nav-links {
        display: inline-flex;
    }
}

@media (min-width: 768px) {
    .split-grid {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .split-card {
        border-left: none;
        border-right: 1px solid var(--border);
    }

    .split-grid--reverse .split-card {
        border-right: none;
        border-left: 1px solid var(--border);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

    .hero-headline {
        font-size: 3.6rem;
    }
}

@media (max-width: 640px) {
    .locator-card {
        flex-direction: column;
        align-items: flex-start;
    }
}