:root {
    --red: #d41e2a;
    --red-bright: #e02430;
    --red-hover: #a81620;
    --crimson: #b41822;
    --ink: #1a1212;
    --ink-soft: #3d2f2f;
    --body: #3f3333;
    --muted: #6b5c5c;
    --bg: #ffffff;
    --bg-soft: #faf7f7;
    --line: #eadfdf;
    --radius: 10px;
    --radius-pill: 999px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 24px -8px rgba(80, 20, 20, 0.18);
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --header-h: auto;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5.5rem;
}

body {
    font-family: var(--font);
    color: var(--body);
    background: var(--bg-soft);
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: var(--red);
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -100px;
    background: var(--ink);
    color: #fff;
    padding: 0.75rem 1rem;
    z-index: 300;
    border-radius: 6px;
}

.skip-link:focus {
    top: 1rem;
}

/* Utility bar removed; crimson accents live in CTAs / trust bar */

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 5%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 0;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    overflow: visible;
    /* Keep letterforms clear of sticky viewport edge */
    padding-block: 0.1rem;
}

.logo img {
    display: block;
    height: 56px;
    width: auto;
    max-height: 56px;
    max-width: min(280px, 62vw);
    object-fit: contain;
    object-position: left center;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;
}

.site-nav a {
    text-decoration: none;
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.84rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--red);
}

.header-cta {
    white-space: nowrap;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 1.15rem;
    height: 2px;
    margin-inline: auto;
    background: var(--ink-soft);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-pill {
    border-radius: var(--radius-pill);
    padding: 0.85rem 1.45rem;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--red-bright);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--red-hover);
    transform: translateY(-1px);
}

/* Hero */
.hero {
    background: var(--bg);
    padding: 1.75rem 5% 1.5rem;
}

.hero-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.75rem;
    align-items: start;
}

.hero-visual {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: stretch;
    min-height: 0;
    overflow: visible;
}

.hero-frame {
    margin: 0;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow);
    background: #111;
}

.hero-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.eyebrow {
    color: var(--red);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.hero-copy h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.15;
    color: var(--ink);
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.hero-sub {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    max-width: 34rem;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 1.75rem;
    display: grid;
    gap: 0.55rem;
}

.hero-bullets li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--body);
    font-weight: 500;
}

.hero-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
}

.hero-call {
    color: var(--ink-soft);
    text-decoration: none;
    font-weight: 500;
}

.hero-call strong {
    color: var(--red);
}

/* Trust bar */
.trust-bar {
    background: var(--crimson);
    color: #f8eaea;
    padding: 1.35rem 5%;
}

.trust-bar-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.trust-item {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.trust-icon {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 50%;
    background: var(--red-bright);
    flex-shrink: 0;
    position: relative;
}

.trust-icon::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.38rem;
    height: 0.68rem;
    border-style: solid;
    border-color: #ffffff;
    border-width: 0 0.16rem 0.16rem 0;
    box-sizing: border-box;
    /* Optical center: rotated border-check sits low/right of its box */
    transform: translate(-50%, -62%) rotate(45deg);
}

.trust-icon svg {
    display: none;
}

.trust-item strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
}

.trust-item span {
    display: block;
    color: #c4b0b0;
    font-size: 0.85rem;
}

/* Sections */
.section {
    padding: 4.5rem 5%;
    max-width: 1120px;
    margin: 0 auto;
}

.section-intro {
    max-width: 40rem;
    margin-bottom: 2.5rem;
}

.section-intro.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-intro h2,
.about-copy h2,
.contact-intro h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--ink);
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.section-intro p,
.about-copy p,
.contact-intro > p {
    color: var(--muted);
}

/* How it works */
.how-it-works {
    background: transparent;
}

.steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.step-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    margin-bottom: 1rem;
}

.step-card h3 {
    color: var(--ink);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* Fueling Stations lineup */
.services,
.stations {
    max-width: none;
    width: 100%;
    background: var(--bg);
    border-block: 1px solid var(--line);
}

.stations .section-intro,
.stations .station-grid {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.station-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.station-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

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

.station-card:focus-visible {
    outline: 3px solid var(--brand, #d41e2a);
    outline-offset: 3px;
}

.station-card-top {
    height: 10px;
}

.station-photo {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111;
}

.station-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.station-adventurer .station-card-top {
    background: linear-gradient(90deg, #e02430, #a81620);
}

.station-worker .station-card-top {
    background: linear-gradient(90deg, #1565c0, #0d47a1);
}

.station-defender .station-card-top {
    background: linear-gradient(90deg, #2e7d32, #1b5e20);
}

.station-card-body {
    padding: 1.4rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.55rem;
}

.station-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
}

.station-adventurer .station-label { color: #d41e2a; }
.station-worker .station-label { color: #1565c0; }
.station-defender .station-label { color: #2e7d32; }

.station-card h3 {
    color: var(--ink);
    font-size: 1.35rem;
    margin: 0;
}

.station-tagline {
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 0.98rem;
    margin: 0;
}

.station-targets {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0.15rem 0 0.25rem;
}

.station-menu {
    list-style: none;
    margin: 0.25rem 0 0.5rem;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.station-menu li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--body);
    font-size: 0.92rem;
    font-weight: 500;
}

.station-menu li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
}

.station-adventurer .station-menu li::before { background: #d41e2a; }
.station-worker .station-menu li::before { background: #1565c0; }
.station-defender .station-menu li::before { background: #2e7d32; }

.station-note-shared {
    max-width: 1120px;
    margin: 1.5rem auto 0;
    text-align: center;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.95rem;
    font-weight: 600;
}

.station-note {
    margin-top: auto;
    margin-bottom: 0.35rem;
    padding: 0.7rem 0.8rem;
    border-radius: 8px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.86rem;
    font-weight: 600;
}

.station-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: var(--radius-pill);
    padding: 0.7rem 1rem;
    color: #fff;
}

.station-adventurer .station-link { background: #d41e2a; }
.station-adventurer .station-link:hover { background: #a81620; }
.station-worker .station-link { background: #1565c0; }
.station-worker .station-link:hover { background: #0d47a1; }
.station-defender .station-link { background: #2e7d32; }
.station-defender .station-link:hover { background: #1b5e20; }

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b5c5c' d='M1.4 0.6L6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.4rem;
}

.form-group select:focus {
    outline: none;
    border-color: var(--red-bright);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.15);
}

/* About */
.about {
    max-width: none;
    padding-inline: 5%;
}

.about-panel {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.about-copy {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.about-copy p + p {
    margin-top: 0.85rem;
}

.badge-row {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.badge {
    background: #fef2f2;
    color: var(--red-hover);
    border: 1px solid #fecaca;
    border-radius: var(--radius-pill);
    padding: 0.4rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
}

.about-cta-box {
    background: linear-gradient(160deg, var(--crimson), var(--ink));
    color: #f0e4e4;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-lg);
}

.about-cta-box h3 {
    color: #fff;
    font-size: 1.4rem;
}

.about-cta-box p {
    color: #c4b0b0;
}

.about-phone {
    color: #fecaca;
    font-weight: 700;
    text-decoration: none;
    margin-top: 0.35rem;
    text-align: center;
    display: block;
    width: 100%;
}

/* Contact */
.contact {
    max-width: none;
    width: 100%;
    padding-inline: 5%;
    padding-bottom: 5rem;
    box-sizing: border-box;
}

.contact-shell {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1.5rem;
    background: linear-gradient(145deg, var(--crimson) 0%, var(--ink) 100%);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    box-sizing: border-box;
    min-width: 0;
    justify-items: stretch;
}

.contact-intro,
.contact-form {
    min-width: 0;
    width: 100%;
}

.contact-intro h2 {
    color: #fff;
}

.contact-intro > p {
    color: #c4b0b0;
    margin-bottom: 1.5rem;
}

.contact-direct {
    display: grid;
    gap: 0.75rem;
}

.contact-direct a {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.95rem 1rem;
    color: inherit;
    min-width: 0;
}

.contact-direct span {
    color: #c4b0b0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.contact-direct strong {
    color: #fff;
    font-size: 1.05rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-form {
    background: var(--bg);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    min-width: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
    min-width: 0;
}

.form-group label {
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink-soft);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font: inherit;
    font-size: 16px;
    padding: 0.8rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background-color: #fff;
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--red-bright);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.15);
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.btn-submit {
    width: 100%;
    margin-top: 0.25rem;
}

.form-status {
    margin-top: 0.85rem;
    font-weight: 600;
}

.form-status.is-success {
    color: #15803d;
}

.form-status.is-error {
    color: var(--red-hover);
}

/* Footer */
.site-footer {
    background: #000;
    color: #c4b0b0;
    padding: 1rem;
}

.footer-inner {
    margin: 0;
    max-width: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-logo {
    display: block;
    flex-shrink: 0;
    line-height: 0;
    align-self: flex-end;
}

.footer-logo img {
    display: block;
    width: auto;
    height: 88px;
    max-width: min(180px, 45vw);
    object-fit: contain;
    object-position: left bottom;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.85rem;
    text-align: right;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    align-items: flex-end;
}

.footer-links a {
    color: #f0e4e4;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    color: #fecaca;
}

.footer-copy {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 0.88rem;
}

@media (max-width: 900px) {
    .hero-grid,
    .steps,
    .service-grid,
    .station-grid,
    .about-panel,
    .contact-shell,
    .trust-bar-inner {
        grid-template-columns: 1fr;
    }

    .trust-bar-inner {
        grid-template-columns: 1fr 1fr;
    }

    .contact-intro {
        text-align: center;
    }

    .contact-direct {
        max-width: 28rem;
        margin-inline: auto;
        width: 100%;
    }

    .contact-direct a {
        text-align: left;
    }
}

@media (max-width: 520px) {
    .hero-visual {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .section {
        padding: 3rem 4%;
    }

    .contact {
        padding-inline: 4%;
        padding-bottom: 3.5rem;
    }

    .contact-shell {
        padding: 1rem;
        border-radius: 12px;
        gap: 1rem;
    }

    .contact-form {
        padding: 1.1rem;
    }

    .contact-intro h2 {
        font-size: 1.55rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .footer-logo {
        align-self: center;
    }

    .footer-logo img {
        object-position: center bottom;
    }

    .footer-meta,
    .footer-links {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0.7rem 4%;
        gap: 0.75rem;
    }

    .logo img {
        height: 44px;
        max-height: 44px;
        max-width: min(210px, 55vw);
    }

    .nav-toggle {
        display: flex;
        margin-left: auto;
        flex-shrink: 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-call {
        text-align: center;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 4% 1.25rem;
        background: #fff;
        border-bottom: 1px solid var(--line);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .site-nav li a,
    .header-cta {
        display: block;
        padding: 0.85rem 0;
        border-bottom: 1px solid var(--line);
        text-align: left;
        border-radius: 0;
    }

    .header-cta {
        margin-top: 0.75rem;
        text-align: center;
        border-bottom: none;
        border-radius: var(--radius-pill);
    }

    .form-row,
    .trust-bar-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 1.25rem 4% 1.25rem;
    }

    .contact-shell {
        padding: 1.15rem;
    }

    .station-grid {
        gap: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}
