/* ── Variables ───────────────────────────────────────────────────────────── */

:root {
    --bg:        #000000;
    --strip:     #000000;
    --orange:    #E8781C;
    --orange-dk: #C0601A;
    --white:     #FFFFFF;
    --dim:       rgba(255, 255, 255, 0.55);
    --dimmer:    rgba(255, 255, 255, 0.3);

    --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;

    --radius: 6px;
    --section-pad: 4.5rem 1.5rem;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
    background: var(--bg);
}

/* all structural sections share the base dark */
.site-header,
.about,
.site-footer {
    background: var(--bg);
}

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

a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* ── Site Header ─────────────────────────────────────────────────────────── */

.site-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-header__brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--white);
}

.site-header__logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.site-header__name {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.3;
}

.site-header__tagline {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 400;
    display: block;
    margin-top: 0.2em;
}

.site-header__nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.site-header__nav a {
    color: var(--dim);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.site-header__nav a:hover {
    color: var(--white);
}

/* ── Hero ────────────────────────────────────────────────────────────────── */

.hero {
    line-height: 0;
}

.hero__image {
    width: 100%;
    height: auto;
    display: block;
}

/* ── About ───────────────────────────────────────────────────────────────── */

.about {
    padding: var(--section-pad);
    text-align: left;
}

.about__inner {
    max-width: 750px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.about__heading {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.about__body {
    color: var(--dim);
    font-size: 1.0625rem;
    line-height: 1.85;
}

.about__body + .about__body {
    margin-top: 1rem;
}


/* ── Features ────────────────────────────────────────────────────────────── */

.features {
    background-image: repeating-linear-gradient(
        90deg,
        #4A240D 0px,
        #4A240D 2px,
        #743C0E 2px,
        #743C0E 4px
    );
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3.5rem 1.5rem;
}

.features__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.feature__icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.feature__title {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.4rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.feature__desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */

.site-footer {
    background: var(--bg);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3rem 1.5rem;
    text-align: center;
}

.site-footer__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.site-footer__location {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dimmer);
}

.site-footer__copy {
    font-size: 0.75rem;
    color: var(--dimmer);
    letter-spacing: 0.04em;
}

/* ── Social Links ────────────────────────────────────────────────────────── */

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--orange);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease;
}

.social-link:hover {
    color: var(--white);
}

.social-link__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.social-link:hover .social-link__icon {
    opacity: 1;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 600px) {
    .site-header__nav {
        display: none;
    }

    .site-header__logo {
        width: 56px;
        height: 56px;
    }

    .site-header__name {
        font-size: 1rem;
    }

    .about,
    .features {
        padding: 3rem 1.25rem;
    }

    .about__heading {
        font-size: 1.5rem;
    }
}
