/* ========================================
   All Star Sports — Custom Styles
   Charcoal + Coral | Clean Minimalist
   ======================================== */

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

:root {
    --charcoal-900: #1a1a1a;
    --charcoal-800: #2d2d2d;
    --charcoal-700: #3d3d3d;
    --charcoal-600: #555555;
    --charcoal-500: #6e6e6e;
    --charcoal-400: #8a8a8a;
    --charcoal-300: #b0b0b0;
    --charcoal-200: #d4d4d4;
    --charcoal-100: #ebebeb;
    --charcoal-50: #f5f5f5;

    --coral-600: #c45a3c;
    --coral-500: #e07a5f;
    --coral-400: #e8957f;
    --coral-300: #f0b09f;
    --coral-200: #f7ccc0;
    --coral-100: #fbe6e0;
    --coral-50: #fdf3f0;

    --white: #ffffff;
    --off-white: #fafafa;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--charcoal-800);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

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

.section--dark {
    background: var(--charcoal-900);
    color: var(--white);
}

.section__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral-500);
    margin-bottom: 16px;
}

.section__eyebrow--light {
    color: var(--coral-400);
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--charcoal-900);
    margin-bottom: 24px;
}

.section__title--light {
    color: var(--white);
}

.text-coral {
    color: var(--coral-500);
}

.divider-line {
    width: 100%;
    padding: 0 24px;
}

.divider-line svg {
    display: block;
    margin: 0 auto;
    max-width: 1200px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    border-radius: 0;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    text-transform: none;
}

.btn--primary {
    background: var(--coral-500);
    color: var(--white);
    border-color: var(--coral-500);
}

.btn--primary:hover {
    background: var(--coral-600);
    border-color: var(--coral-600);
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--charcoal-800);
    border-color: var(--charcoal-200);
}

.btn--ghost:hover {
    border-color: var(--coral-500);
    color: var(--coral-500);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 0.9375rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--charcoal-100);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--charcoal-900);
}

.nav__logo-accent {
    color: var(--coral-500);
    font-weight: 600;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--charcoal-600);
    transition: color 0.25s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--coral-500);
    transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
    color: var(--charcoal-900);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    padding: 10px 20px;
    border: 1.5px solid var(--charcoal-200);
    border-radius: 0;
    transition: all 0.25s ease;
}

.nav__link--cta:hover {
    border-color: var(--coral-500);
    color: var(--coral-500);
}

.nav__link--cta::after {
    display: none;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--charcoal-800);
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--charcoal-800);
    transition: color 0.25s ease;
}

.mobile-menu__link:hover {
    color: var(--coral-500);
}

.mobile-menu__link--cta {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1.5px solid var(--charcoal-200);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 72px 0 0;
    background: var(--white);
    overflow: hidden;
}

.hero__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
    align-items: center;
    min-height: calc(100vh - 72px);
}

.hero__content {
    padding: 60px 60px 60px 0;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--coral-500);
    margin-bottom: 28px;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--charcoal-900);
    margin-bottom: 28px;
}

.hero__headline-accent {
    font-style: italic;
    color: var(--coral-500);
}

.hero__subheadline {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--charcoal-600);
    margin-bottom: 40px;
    max-width: 440px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__trust-item {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--charcoal-500);
    letter-spacing: 0.02em;
}

.hero__trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--charcoal-300);
    flex-shrink: 0;
}

.hero__image {
    position: relative;
    height: 85vh;
    max-height: 860px;
}

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

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 1.5px solid var(--coral-200);
    pointer-events: none;
}

/* --- About --- */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.about__tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral-500);
    display: flex;
    align-items: center;
    gap: 16px;
}

.about__tag-line {
    width: 40px;
    height: 1px;
    background: var(--coral-500);
}

.about__content {
    max-width: 520px;
}

.about__body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--charcoal-600);
    margin-bottom: 20px;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--charcoal-100);
}

.stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 500;
    color: var(--charcoal-900);
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--charcoal-500);
    letter-spacing: 0.02em;
}

/* --- Products --- */
.products__header {
    text-align: center;
    margin-bottom: 72px;
}

.products__header .section__eyebrow {
    margin-bottom: 12px;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    group: product;
    cursor: pointer;
}

.product-card__img-wrap {
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.product-card__img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-card__img-wrap img {
    transform: scale(1.04);
}

.product-card__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--charcoal-900);
    margin-bottom: 8px;
}

.product-card__desc {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--charcoal-500);
    line-height: 1.6;
}

/* --- Services --- */
.services__header {
    text-align: center;
    margin-bottom: 72px;
}

.services__header .section__eyebrow {
    margin-bottom: 12px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--charcoal-700);
}

.service-card {
    background: var(--charcoal-800);
    padding: 48px 40px;
    transition: background 0.35s ease;
}

.service-card:hover {
    background: var(--charcoal-700);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--charcoal-600);
    margin-bottom: 28px;
    color: var(--coral-400);
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--charcoal-400);
}

/* --- Location --- */
.location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.location__info {
    max-width: 480px;
}

.location__details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 48px 0;
}

.location__detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.location__detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--charcoal-200);
    flex-shrink: 0;
    color: var(--coral-500);
}

.location__detail-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--charcoal-400);
    margin-bottom: 4px;
}

.location__detail-value {
    font-size: 1rem;
    font-weight: 400;
    color: var(--charcoal-800);
    line-height: 1.6;
}

.location__detail-value a {
    color: var(--charcoal-800);
    transition: color 0.25s ease;
}

.location__detail-value a:hover {
    color: var(--coral-500);
}

.location__map {
    height: 480px;
    border: 1px solid var(--charcoal-100);
    overflow: hidden;
}

.location__map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.3);
}

/* --- Contact --- */
.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__text {
    max-width: 440px;
}

.contact__desc {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--charcoal-500);
}

.contact__form {
    max-width: 480px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group {
    margin-bottom: 24px;
}

.form__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal-500);
    margin-bottom: 10px;
}

.form__input {
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--charcoal-900);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--charcoal-200);
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.form__input::placeholder {
    color: var(--charcoal-300);
}

.form__input:focus {
    border-bottom-color: var(--coral-500);
}

.form__select {
    cursor: pointer;
    color: var(--charcoal-400);
}

.form__select option[value=""][disabled] {
    color: var(--charcoal-400);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__success {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: var(--coral-50);
    border: 1px solid var(--coral-200);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--charcoal-800);
}

.form__success.visible {
    display: flex;
}

.form__success svg {
    color: var(--coral-500);
    flex-shrink: 0;
}

/* --- Footer --- */
.footer {
    background: var(--charcoal-900);
    color: var(--white);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 64px;
}

.footer__logo {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--white);
    display: inline-block;
    margin-bottom: 16px;
}

.footer__logo-accent {
    color: var(--coral-500);
    font-weight: 600;
}

.footer__tagline {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--charcoal-400);
    max-width: 280px;
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal-300);
    margin-bottom: 24px;
}

.footer__links ul,
.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__links a,
.footer__contact a {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--charcoal-400);
    transition: color 0.25s ease;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--coral-400);
}

.footer__contact li {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--charcoal-400);
    line-height: 1.7;
}

.footer__bottom {
    border-top: 1px solid var(--charcoal-700);
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer__bottom p {
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--charcoal-500);
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero__split {
        grid-template-columns: 1fr;
        padding: 0 32px;
    }

    .hero__content {
        padding: 48px 0 48px;
        text-align: center;
    }

    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__image {
        height: 50vh;
        max-height: 500px;
    }

    .hero__image-accent {
        display: none;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__stats {
        margin-top: 40px;
    }

    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .location__map {
        height: 360px;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .nav__links {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding-top: 72px;
    }

    .hero__split {
        padding: 0 24px;
    }

    .hero__content {
        padding: 40px 0 32px;
    }

    .hero__headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .products__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .product-card__img-wrap img {
        height: 280px;
    }

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

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 64px 0;
    }

    .hero__trust-item {
        font-size: 0.75rem;
    }

    .about__stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat {
        text-align: center;
    }
}
