/* ── Variables ── */
:root {
    --orange: #E8500A;
    --orange-dark: #C84200;
    --orange-tint: #FDE8D8;
    --dark: #1E1E1E;
    --dark-gray: #3A3A3A;
    --mid-gray: #6B6B6B;
    --light-gray: #E8E8E8;
    --off-white: #F7F7F7;
    --white: #FFFFFF;

    --font: 'Segoe UI', Arial, sans-serif;
    --radius: 6px;
    --max-width: 1100px;
}

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

body {
    font-family: var(--font);
    color: var(--dark-gray);
    background: var(--white);
    line-height: 1.6;
}

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

a {
    color: var(--orange);
    text-decoration: none;
}

a:hover {
    color: var(--orange-dark);
}

/* ── Layout ── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 72px 0;
}

section.alt {
    background: var(--off-white);
}

/* ── Nav ── */
nav {
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
}

.nav-logo span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--mid-gray);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
}

/* ── Hero ── */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)), url('images/homepage.jpg') center/cover no-repeat;
    padding: 96px 24px;
    text-align: center;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--orange);
}

.hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: clamp(15px, 2vw, 18px);
    max-width: 540px;
    margin: 0 auto 36px;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-dark);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--white);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--dark-gray);
    color: var(--white);
}

.btn-outline-orange {
    background: transparent;
    color: var(--orange);
    border: 1.5px solid var(--orange);
}

.btn-outline-orange:hover {
    background: var(--orange);
    color: var(--white);
}

/* ── Section headings ── */
.section-heading {
    text-align: center;
    margin-bottom: 52px;
}

.section-heading h2 {
    font-size: clamp(22px, 3vw, 32px);
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-heading p {
    color: var(--mid-gray);
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto;
}

.section-heading .underline {
    width: 40px;
    height: 3px;
    background: var(--orange);
    margin: 14px auto 0;
    border-radius: 2px;
}

/* ── Cards ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: border-color 0.2s;
    color: inherit;
    display: block;
    text-decoration: none;
}

.card:hover {
    border-color: var(--orange);
}

.card:hover h3 {
    color: var(--orange);
}

.card-icon {
    width: 42px;
    height: 42px;
    background: var(--off-white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    transition: color 0.2s;
}

.card p {
    font-size: 13px;
    color: var(--mid-gray);
    line-height: 1.6;
}

.card.coming-soon {
    border-style: dashed;
    opacity: 0.8;
}

.card.coming-soon:hover {
    border-color: var(--mid-gray);
}

.card.coming-soon:hover h3 {
    color: var(--dark);
}

/* ── About strip ── */
.about-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-strip h2 {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.about-strip p {
    color: var(--mid-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
}

.about-stat {
    border-left: 3px solid var(--orange);
    padding-left: 14px;
}

.about-stat .num {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat .label {
    font-size: 12px;
    color: var(--mid-gray);
}

.about-visual {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.about-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

/* ── Why strip ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
}

.why-item {
    border-top: 3px solid var(--orange);
    padding-top: 20px;
}

.why-item .number {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 8px;
}

.why-item p {
    font-size: 13px;
    color: var(--mid-gray);
}

/* ── CTA banner ── */
.cta-banner {
    background: var(--off-white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    padding: 72px 24px;
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(20px, 3vw, 30px);
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-banner p {
    color: var(--mid-gray);
    margin-bottom: 32px;
    font-size: 16px;
}

/* ── Contact ── */
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-row-icon {
    width: 40px;
    height: 40px;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-row-icon svg {
    width: 17px;
    height: 17px;
    stroke: var(--orange);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-row-text p {
    font-size: 12px;
    color: var(--mid-gray);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-row-text a,
.contact-row-text span {
    font-size: 15px;
    color: var(--dark);
    font-weight: 500;
}

/* ── Services page ── */
.service-block {
    padding: 48px 0;
}

.service-block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.service-block-header h2 {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.service-block p {
    color: var(--mid-gray);
    font-size: 15px;
    max-width: 720px;
    line-height: 1.8;
}

.service-list {
    margin-top: 16px;
    padding-left: 20px;
    color: var(--mid-gray);
    font-size: 14px;
    line-height: 2.2;
}

.brand-list {
    color: var(--dark-gray);
    font-size: 14px;
    margin-top: 8px;
    line-height: 2;
}

.service-divider {
    border: none;
    border-top: 1px solid var(--light-gray);
    margin: 0;
}

.coming-soon-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    background: var(--orange-tint);
    color: var(--orange-dark);
    border: 1px solid var(--orange);
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── Footer ── */
footer {
    background: var(--dark);
    border-top: 3px solid var(--orange);
    color: #888;
    padding: 48px 24px;
    text-align: center;
}

footer .footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

footer .footer-logo {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

footer .footer-logo span {
    color: var(--orange);
}

footer p {
    font-size: 13px;
    margin-bottom: 4px;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    list-style: none;
}

footer .footer-links a {
    color: #888;
    font-size: 13px;
}

footer .footer-links a:hover {
    color: var(--orange);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--light-gray);
        padding: 8px 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 12px 24px;
    }

    .nav-toggle {
        display: flex;
    }

    .about-strip {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    section {
        padding: 52px 0;
    }
}