/* v 260507.0014 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
    color: #222;
}

/* =========================
   HEADER
========================= */

.site-header {
    background: rgba(255,255,255,0.94);

    position: sticky;
    top: 0;
    z-index: 1000;

    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(0,0,0,0.05);

    transition:
        background 0.25s ease,
        padding 0.25s ease,
        box-shadow 0.25s ease;
}

.header-inner {
    max-width: 1400px;

    margin: auto;

    padding: 16px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    height: 72px;
    width: auto;

    transition: height 0.25s ease;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    text-decoration: none;

    color: #1f2a56;

    font-weight: 700;
    font-size: 0.96rem;
    letter-spacing: 0.4px;

    position: relative;

    transition: color 0.2s ease;
}

.main-nav a::after {
    content: '';

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #f4a137;

    transition: width 0.25s ease;
}

.main-nav a:hover {
    color: #f4a137;
}

.main-nav a:hover::after {
    width: 100%;
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    height: 82vh;

    background:
        linear-gradient(
            rgba(0,0,0,0.35),
            rgba(0,0,0,0.35)
        ),
        url('/assets/images/hero.jpg');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1400px;
    margin: auto;
    padding: 40px;

    color: white;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
    margin-bottom: 24px;
    max-width: 700px;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 36px;
}

.hero-button {
    display: inline-block;

    background: #f4a137;
    color: white;

    text-decoration: none;
    padding: 16px 30px;
    border-radius: 6px;

    font-weight: 700;

    transition: 0.2s;
}

.hero-button:hover {
    background: #da8d2c;
}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: #1f2a56;
    color: white;
    padding: 40px;
}

.footer-inner {
    max-width: 1400px;
    margin: auto;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .header-inner {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .site-logo {
        height: 60px;
    }

    .hero {
        height: 70vh;
    }

}

/* v 260507.0106 */

.intro-section {
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.intro-section h2 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1;
    color: #1f2a56;
}

.intro-section p {
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.categories-section {
    background: #f5f5f5;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.category-card {
    background: white;
    color: #1f2a56;
    padding: 34px;
    border-radius: 18px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(0,0,0,0.07);
    border-left: 6px solid #f4a137;
}

@media (max-width: 1000px) {

    .intro-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

}

/* v 260507.0121 */

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-credit {
    opacity: 0.85;
    font-size: 0.95rem;
}

.footer-credit a {
    color: #f4a137;
    text-decoration: none;
    font-weight: 700;
}

.footer-credit a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

}

/* v 260507.0125 */

.section-inner {
    max-width: 1400px;
    margin: auto;
    padding: 90px 40px;
}

.section-heading {
    margin-bottom: 50px;
}

.section-heading.light {
    color: white;
}

.section-eyebrow {
    color: #f4a137;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #1f2a56;
}

.section-heading.light h2 {
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-button.secondary {
    background: transparent;
    border: 2px solid white;
}

.hero-button.secondary:hover {
    background: white;
    color: #1f2a56;
}

.intro-section {
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.intro-section h2 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1;
    color: #1f2a56;
}

.intro-section p {
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.quick-links-section {
    background: white;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.quick-link-card {
    background: #f7f7f7;
    padding: 36px;
    border-radius: 18px;
    text-decoration: none;
    color: #222;
    transition: 0.25s;
}

.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.quick-link-card h3 {
    color: #1f2a56;
    margin-bottom: 14px;
}

.categories-section {
    background: #f5f5f5;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.category-card {
    background: white;
    color: #1f2a56;
    padding: 34px;
    border-radius: 18px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(0,0,0,0.07);
    border-left: 6px solid #f4a137;
}

.store-grid,
.promo-grid {
    display: grid;
    gap: 28px;
}

.store-grid {
    grid-template-columns: repeat(3, 1fr);
}

.promo-grid {
    grid-template-columns: repeat(2, 1fr);
}

.store-card,
.promo-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.store-card img,
.promo-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.store-content,
.promo-content {
    padding: 28px;
}

.store-content h3,
.promo-content h3 {
    color: #1f2a56;
    margin-bottom: 14px;
}

.promotions-section {
    background: #1f2a56;
}

.centre-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.centre-info-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #1f2a56;
    margin-bottom: 24px;
}

.centre-info-section p {
    line-height: 1.8;
    margin-bottom: 24px;
}

.text-link {
    color: #f4a137;
    text-decoration: none;
    font-weight: 700;
}

.info-image {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-credit {
    opacity: 0.85;
    font-size: 0.95rem;
}

.footer-credit a {
    color: #f4a137;
    text-decoration: none;
    font-weight: 700;
}

.footer-credit a:hover {
    text-decoration: underline;
}

@media (max-width: 1100px) {

    .quick-links-grid,
    .store-grid,
    .promo-grid,
    .centre-info-grid,
    .intro-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 700px) {

    .section-inner {
        padding: 70px 24px;
    }

    .quick-link-card {
        padding: 28px;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

}

/* v 260507.0133 */

.site-footer {
    position: relative;
}

.footer-version {
    position: absolute;
    left: 0;
    bottom: 0;

    width: 120px;
    height: 22px;

    font-size: 0.72rem;
    line-height: 22px;
    padding-left: 10px;

    color: rgba(255,255,255,0.55);
    opacity: 0;

    transition: opacity 0.25s ease;
    cursor: default;
}

.footer-version:hover {
    opacity: 1;
}

.footer-version::selection {
    background: transparent;
}

/* v 260507.0140 */

h1,
h2,
h3,
.main-nav a,
.hero-button,
.section-eyebrow {
    font-family: 'Montserrat', sans-serif;
}

/* v 260507.0141 */

.hero {
    overflow: hidden;
}

.hero::before {
    content: '';

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at right,
            rgba(244,161,55,0.16),
            transparent 40%
        );

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-weight: 800;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.15rem;
}