/* ── RESET (from reset.css) ─────────────────────── */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

ul, ol { list-style: none; }

a { text-decoration: none; }

button { cursor: pointer; background: none; border: none; }


/* ── TOKENS ──────────────────────────────────────── */

:root {
    --header-h: 68px;
    --measure: 640px;
    --measure-wide: 780px;
    --red: #BE0F17;
    --petrol: #2A4C69;
    --yellow: #FFEA00;
    --ink: #141414;
}


/* ── BASE ────────────────────────────────────────── */

html { scroll-padding-top: calc(var(--header-h) + 12px); }

body {
    font-family: 'DM Sans', -apple-system, Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    text-align: left;
}

/* Display type does the heavy lifting — big, tight, condensed */
h1, h2, h3 {
    font-family: 'Bebas Neue', 'DM Sans', sans-serif;
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: 0.01em;
    text-align: left;
    margin: 0 0 0.3em;
}

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

p, table { text-align: left; margin: 0 0 1em; }
ul, ol { padding-left: 1.2em; margin: 0 0 1em; }
ul { list-style: disc; }
ol { list-style: decimal; }

a { color: #0645AD; text-decoration: none; }
a:hover { text-decoration: underline; }


/* ════════════════════════════════════════════════
   NAVBAR — nav-container namespace
   Black bar, white brand + links, red hover.
   ════════════════════════════════════════════════ */

.nav-container {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 1.5rem 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    background: #000;
}

.nav-brand-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
    color: #fff;
    transition: color 0.2s;
}
.nav-brand-group:hover { color: var(--red); text-decoration: none; }

.nav-logo { height: 28px; width: auto; display: block; flex-shrink: 0; }

.nav-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.03em;
}

.nav-links {
    display: flex;
    align-items: stretch;
    height: 100%;
    gap: 0.25rem;
    list-style: none;
}

.nav-links li { display: flex; align-items: stretch; }

.nav-links a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 0.75rem;
    border-radius: 3px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.15s;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    transform: translateY(10px);
}
.nav-links a:hover { color: var(--yellow); text-decoration: none; }

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* CTA button — red, white on hover (used in nav and hero) */
.cta-button {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.55rem 1.1rem;
    border-radius: 3px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.cta-button:hover { background: #fff; color: var(--red); text-decoration: none; }

.menu-toggle { display: none; }

.menu-icon {
    display: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    border-radius: 3px;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: border-color 0.2s;
}
.menu-icon:hover { border-color: var(--red); }

.menu-icon span,
.menu-icon span::before,
.menu-icon span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu-icon span         { top: 50%; margin-top: -1px; }
.menu-icon span::before { content: ''; top: -7px; }
.menu-icon span::after  { content: ''; bottom: -7px; top: auto; }

.menu-toggle:checked ~ .nav-right .menu-icon span          { background: transparent !important; }
.menu-toggle:checked ~ .nav-right .menu-icon span::before  { transform: translateX(-50%) translateY(7px) rotate(45deg); }
.menu-toggle:checked ~ .nav-right .menu-icon span::after   { transform: translateX(-50%) translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
    .menu-icon { display: flex; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        height: auto;
        gap: 0;
        padding: 0.5rem 0;
        z-index: 999;
        background: #000;
        border-top: 2px solid var(--red);
        border-bottom: 1px solid #2a2a2a;
        box-shadow: 0 16px 48px rgba(0,0,0,0.4);
        animation: navMenuDown 0.2s ease forwards;
    }

    .nav-links li { width: 100%; border-bottom: 1px solid #2a2a2a; }
    .nav-links li:last-child { border-bottom: none; }

    .nav-links a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 0;
        font-size: 0.95rem;
        text-transform: none;
        letter-spacing: 0.03em;
        font-weight: 500;
        transform: none;
    }

    .menu-toggle:checked ~ .nav-links { display: flex; }
}

@keyframes navMenuDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ════════════════════════════════════════════════
   PAGE LAYOUT
   ════════════════════════════════════════════════ */

main {
    padding-top: calc(var(--header-h) + 32px);
    max-width: var(--measure);
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 80px;
}

@media (min-width: 900px) {
    body { font-size: 18px; }
    main { max-width: var(--measure-wide); }
}


/* ── HERO ────────────────────────────────────────── */

.hero { padding: 8px 0 44px; }
.hero .kicker {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #666;
    margin-bottom: 0.9em;
}
.hero h1 {
    font-size: clamp(3rem, 15vw, 6.5rem);
    letter-spacing: 0.005em;
    margin-bottom: 0.15em;
	font-color: ;
}
.hero h1 span { display: block; }
.hero .lede {
    font-size: 1.15em;
    max-width: 42ch;
    margin-top: 1.1em;
}
.hero .price-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15em;
    margin: 1.1em 0 0.6em;
}
.hero .price-row .amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.6rem, 9vw, 4rem);
    line-height: 1;
}
.hero .price-row .unit {
    font-size: 1em;
    font-weight: 700;
    color: #666;
}


/* ── SECTIONS / SHARED COMPONENTS ───────────────── */

section { padding: 36px 0; border-top: 1px solid #e2e2e2; }
section:first-of-type { border-top: none; }
section h2 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    margin-bottom: 0.5em;
}

table { border-collapse: collapse; width: 100%; }
th, td { border: 1px solid #ccc; padding: 6px 8px; text-align: left; }

/* Routines: big display numerals set the rhythm */
.routine {
    display: grid;
    grid-template-columns: 2rem 1fr;
    column-gap: 14px;
    align-items: center;
    margin-bottom: 0.9em;
}
.routine .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2em;
    line-height: 1;
    color: #b0b0b0;
}
.routine .body strong { font-size: 1.05em; }

@media (max-width: 480px) {
    .routine { grid-template-columns: 1.6rem 1fr; column-gap: 10px; }
    .routine .num { font-size: 1.6em; }
}

.sample-block { display: flex; gap: 16px; align-items: flex-start; flex-wrap: wrap; }
.sample-block img { display: block; border: 1px solid #e2e2e2; }


/* FOOTER */

.bs-ft {
    font-family: 'DM Sans', sans-serif;
    background: var(--ink);
    color: #f2efe9;
}

.bs-ft__top {
    display: grid;
    grid-template-columns: minmax(0, 2fr) repeat(4, minmax(0, 1fr));
    gap: 0;
}

.bs-ft__col {
    padding: 3rem 2.5rem;
    border-right: 1px solid #2a2a2a;
    position: relative;
}
.bs-ft__col:last-child { border-right: none; }

.bs-ft__logo-group {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 1.1rem;
    color: #fff;
}
.bs-ft__logo { height: 24px; width: auto; display: block; flex-shrink: 0; }

.bs-ft__name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    color: #fff;
}

.bs-ft__bio { font-size: 0.85rem; line-height: 1.65; max-width: 300px; color: #cfcac2; }
.bs-ft__bio a { color: var(--red); text-decoration: none; }
.bs-ft__bio a:hover { color: var(--yellow); text-decoration: none; }

.bs-ft__heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    display: block;
    color: #fff;
}

.bs-ft__description { font-size: 0.78rem; color: #9a958d; display: block; margin-bottom: 1.1rem; }

.bs-ft__list { list-style: none; padding-left: 0; margin-bottom: 0; }
.bs-ft__item { margin-bottom: 0.5rem; }

.bs-ft__link {
    font-size: 0.85rem;
    color: #ded9d1;
    text-decoration: none;
    display: inline-block;
    line-height: 1.4;
    transition: color 0.2s;
}
.bs-ft__link:hover { color: var(--yellow); text-decoration: none; }

.bs-ft__bottom {
    border-top: 1px solid #2a2a2a;
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.bs-ft__copy { font-size: 0.75rem; color: #9a958d; }
.bs-ft__copy a { color: #ded9d1; text-decoration: none; }
.bs-ft__copy a:hover { color: var(--yellow); text-decoration: none; }

.bs-ft__nav { display: flex; align-items: center; list-style: none; gap: 0; padding-left: 0; }
.bs-ft__nav-item { display: flex; align-items: center; }
.bs-ft__nav-item + .bs-ft__nav-item::before {
    content: '';
    display: block;
    width: 1px; height: 0.8em;
    margin: 0 0.9rem;
    background: #2a2a2a;
    flex-shrink: 0;
}
.bs-ft__nav-link { font-size: 0.75rem; color: #9a958d; text-decoration: none; transition: color 0.2s; }
.bs-ft__nav-link:hover { color: var(--yellow); text-decoration: none; }

/* Marching-ants highlight — same trick as newnewindex.html,
   dashed yellow border animating around one footer column */
.bs-ft__col--highlight::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 4px;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(90deg, var(--yellow) 0 8px, transparent 8px 16px),
        repeating-linear-gradient(90deg, var(--yellow) 0 8px, transparent 8px 16px),
        repeating-linear-gradient(0deg, var(--yellow) 0 8px, transparent 8px 16px),
        repeating-linear-gradient(0deg, var(--yellow) 0 8px, transparent 8px 16px);
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    background-size: 16px 2px, 16px 2px, 2px 16px, 2px 16px;
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    animation: bs-ft-marching-ants 1s linear infinite;
}

@keyframes bs-ft-marching-ants {
    to {
        background-position: 16px 0, -16px 100%, 0 -16px, 100% 16px;
    }
}

@media (max-width: 700px) {
    .bs-ft__top { grid-template-columns: 1fr; }
    .bs-ft__col {
        border-right: none;
        border-bottom: 1px solid #2a2a2a;
        padding: 1.75rem 1.5rem;
    }
    .bs-ft__col:last-child { border-bottom: none; }
    .bs-ft__bio { max-width: 100%; }
    .bs-ft__bottom { flex-direction: column; align-items: flex-start; padding: 1.25rem 1.5rem; gap: 0.6rem; }
    .bs-ft__nav { flex-wrap: wrap; gap: 0.75rem; }
    .bs-ft__nav-item + .bs-ft__nav-item::before { display: none; }
}