:root {
    --ink: #151914;
    --ink-soft: #343b32;
    --muted: #6d756a;
    --paper: #f6f4ed;
    --surface: #fffefa;
    --surface-soft: #ecefe5;
    --leaf: #4f7d35;
    --leaf-bright: #6d9d4f;
    --leaf-dark: #29451f;
    --sage: #dce7d2;
    --gold: #e7bd6c;
    --gold-soft: #f3e4bf;
    --line: #d9dbd2;
    --shadow-sm: 0 8px 24px rgba(25, 39, 22, .07);
    --shadow-lg: 0 28px 70px rgba(25, 39, 22, .13);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, Aptos, "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html {
    color-scheme: light;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

body::before {
    content: "";
    position: fixed;
    z-index: -1;
    top: 160px;
    right: -120px;
    width: 360px;
    height: 360px;
    border: 70px solid rgba(79, 125, 53, .055);
    border-radius: 50%;
    pointer-events: none;
}

::selection { color: #fff; background: var(--leaf); }
a { color: var(--leaf-dark); text-decoration-thickness: 1px; text-underline-offset: 4px; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(79, 125, 53, .28);
    outline-offset: 3px;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.04em; line-height: 1.02; }
h1 { max-width: 820px; margin: 18px 0 24px; font-size: clamp(48px, 7.2vw, 88px); }
h1 em { color: var(--leaf); font-weight: 400; }
h2 { margin-bottom: 14px; font-size: clamp(30px, 3.2vw, 46px); }
h3 { margin-bottom: 8px; font-size: 18px; line-height: 1.3; }

.site-header {
    position: sticky;
    z-index: 20;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 152px;
    padding: 8px max(24px, calc((100% - 1240px) / 2));
    border-bottom: 1px solid rgba(41, 69, 31, .13);
    background: rgba(255, 254, 250, .94);
    box-shadow: 0 5px 24px rgba(25, 39, 22, .035);
}

@supports (backdrop-filter: blur(12px)) {
    .site-header { background: rgba(255, 254, 250, .87); backdrop-filter: blur(12px); }
}

.brand {
    position: relative;
    display: block;
    flex: 0 0 356px;
    width: 356px;
    height: 150px;
    overflow: hidden;
    color: var(--ink);
    text-decoration: none;
}

.brand-art {
    position: relative;
    display: block;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.brand-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand.small { width: 300px; height: 126px; }
.brand.small .brand-art { height: 126px; }
.site-header nav { display: flex; align-items: center; gap: 7px; }

.site-header nav > a,
.nav-form button {
    min-height: 42px;
    padding: 10px 13px;
    border: 0;
    border-radius: 9px;
    color: var(--ink-soft);
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}

.site-header nav > a:hover,
.nav-form button:hover { color: var(--leaf-dark); background: var(--surface-soft); }
.nav-form { margin: 0; }

.site-header .nav-cta {
    margin-left: 5px;
    padding-inline: 18px;
    color: #fff;
    background: var(--leaf-dark);
}

.site-header .nav-cta:hover { color: #fff; background: var(--leaf); transform: translateY(-1px); }
.site-main { width: min(1240px, calc(100% - 48px)); min-height: calc(100vh - 280px); margin: 0 auto 104px; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--leaf);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.lead { max-width: 660px; color: var(--ink-soft); font-size: clamp(18px, 2vw, 21px); line-height: 1.65; }

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(370px, .92fr);
    align-items: center;
    gap: clamp(44px, 7vw, 92px);
    padding: clamp(62px, 8vw, 104px) 0 88px;
}

.hero::after {
    content: "";
    position: absolute;
    right: 38%;
    bottom: 55px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 20px -9px 0 var(--leaf), 42px 4px 0 var(--gold-soft);
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 12px 23px;
    border: 1px solid var(--leaf-dark);
    border-radius: 11px;
    color: #fff;
    background: var(--leaf-dark);
    box-shadow: 0 8px 18px rgba(41, 69, 31, .14);
    font-size: 15px;
    font-weight: 780;
    text-decoration: none;
    transition: border-color .18s ease, color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.button:hover {
    border-color: var(--leaf);
    background: var(--leaf);
    box-shadow: 0 11px 24px rgba(41, 69, 31, .2);
    transform: translateY(-2px);
}

.button.secondary { color: var(--leaf-dark); background: transparent; box-shadow: none; }
.button.secondary:hover { color: #fff; }
.button.wide { width: 100%; }
.button.small { min-height: 40px; padding: 8px 16px; font-size: 13px; }
.button:disabled { cursor: not-allowed; opacity: .42; box-shadow: none; transform: none; }

.trust-row { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 38px; color: var(--muted); font-size: 12px; font-weight: 700; }
.trust-row span { display: inline-flex; align-items: center; }
.trust-row span::before {
    content: "✓";
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    border-radius: 50%;
    color: var(--leaf-dark);
    background: var(--sage);
    font-size: 11px;
}

.menu-card {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 4vw, 43px);
    border: 1px solid #38502e;
    border-radius: var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-sm);
    color: #fff;
    background: #21321f;
    box-shadow: var(--shadow-lg);
}

.menu-card::before {
    content: "03";
    position: absolute;
    top: -37px;
    right: -9px;
    color: rgba(255, 255, 255, .045);
    font-family: var(--serif);
    font-size: 170px;
    line-height: 1;
}

.menu-card::after {
    content: "";
    position: absolute;
    right: -46px;
    bottom: -61px;
    width: 150px;
    height: 150px;
    border: 36px solid rgba(231, 189, 108, .13);
    border-radius: 50%;
}

.menu-label { position: relative; z-index: 1; color: var(--gold); font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.menu-card h2 { position: relative; z-index: 1; max-width: 360px; margin: 11px 0 29px; font-size: clamp(34px, 4vw, 48px); }

.dish { position: relative; z-index: 1; display: flex; align-items: center; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, .14); }
.dish b {
    display: grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    border: 1px solid rgba(231, 189, 108, .65);
    border-radius: 50%;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 600;
}

.dish span { display: flex; flex-direction: column; }
.dish strong { line-height: 1.3; }
.dish small { margin-top: 4px; color: #bfc9bb; }
.menu-note { position: relative; z-index: 1; margin: 22px 0 0; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .14); color: #bfc9bb; font-size: 12px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.steps article {
    position: relative;
    min-height: 245px;
    padding: 31px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 254, 250, .72);
    box-shadow: var(--shadow-sm);
}

.steps article::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -28px;
    width: 70px;
    height: 70px;
    border: 16px solid var(--surface-soft);
    border-radius: 50%;
}

.steps article > span {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    margin-bottom: 38px;
    border: 1px solid #b9c9ae;
    border-radius: 50%;
    color: var(--leaf-dark);
    background: var(--sage);
    font-family: var(--serif);
    font-size: 17px;
    font-style: italic;
}

.steps h3 { font-size: 20px; }
.steps p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.panel { padding: clamp(25px, 3.4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }

.promise { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 58px; margin-top: 28px; border-color: #bdccb1; background: var(--sage); box-shadow: none; }
.promise .eyebrow { color: var(--leaf-dark); }
.promise h2 { max-width: 560px; margin-bottom: 0; }
.promise p { margin-bottom: 0; color: #44513f; }

.content-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, .84fr);
    align-items: center;
    gap: clamp(48px, 8vw, 108px);
    padding: clamp(64px, 8vw, 104px) 0 72px;
}

.content-hero h1 { max-width: 790px; margin: 17px 0 23px; font-size: clamp(52px, 6.8vw, 82px); }
.content-hero .lead { margin-bottom: 0; }

.chef-panel {
    display: grid;
    place-items: center;
    min-height: 390px;
    padding: 45px;
    overflow: hidden;
    border: 1px solid #bdccb1;
    border-radius: var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-sm);
    background: var(--sage);
}

.chef-panel img { width: min(230px, 75%); max-height: 300px; object-fit: contain; }
.content-section { margin: 12px 0 30px; padding: clamp(30px, 4vw, 50px) 0; }

.content-heading { align-items: end; margin-bottom: 28px; }
.content-heading > div { max-width: 710px; }
.content-heading > p { max-width: 440px; margin-bottom: 4px; color: var(--muted); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.process-step,
.principle-card {
    padding: 29px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.process-step > span,
.principle-card > span { color: var(--leaf); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.process-step h3,
.principle-card h3 { margin: 33px 0 11px; font-size: 21px; }
.process-step p,
.principle-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.detail-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 26px 0; }
.detail-split h2 { margin-top: 11px; }
.check-list { display: grid; gap: 0; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 14px 0 14px 31px; border-top: 1px solid var(--line); color: var(--ink-soft); }
.check-list li::before { content: "✓"; position: absolute; left: 2px; color: var(--leaf); font-weight: 900; }
.credit-callout { color: #fff; border-color: #38502e; background: var(--leaf-dark); }
.credit-callout .eyebrow,
.credit-callout .text-link { color: var(--gold); }
.credit-callout p { max-width: 590px; color: #d1dacd; }

.page-cta { display: flex; align-items: center; justify-content: space-between; gap: 36px; margin: 34px 0 0; padding: 38px 0; border-top: 1px solid var(--line); }
.page-cta h2 { max-width: 720px; margin: 8px 0 0; }
.page-cta .button { flex: 0 0 auto; }

.about-hero { grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); }
.quote-panel { padding: clamp(36px, 5vw, 58px); border: 1px solid #38502e; border-radius: var(--radius-sm) var(--radius-lg) var(--radius-sm) var(--radius-lg); color: #fff; background: var(--leaf-dark); box-shadow: var(--shadow-lg); }
.quote-panel p { margin: 0 0 28px; color: #fff; font-family: var(--serif); font-size: clamp(35px, 4vw, 50px); line-height: 1.08; }
.quote-panel span { color: var(--gold); font-size: 12px; font-weight: 750; }
.about-story { align-items: start; padding: 45px 0; border-block: 1px solid var(--line); }
.about-story h2 { max-width: 580px; margin-bottom: 0; }
.about-story p { color: var(--ink-soft); font-size: 17px; line-height: 1.75; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.about-memory { margin-top: 34px; }

.auth-card { position: relative; width: min(540px, 100%); margin: clamp(58px, 8vw, 90px) auto; border-top: 5px solid var(--leaf); box-shadow: var(--shadow-lg); }
.auth-card::after { content: ""; position: absolute; right: 28px; top: 28px; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 19px 0 0 var(--sage); }
.auth-card h1 { margin-top: 17px; font-size: clamp(46px, 7vw, 62px); }
.auth-card > p { color: var(--muted); }
form { margin-top: 25px; }
label { display: flex; flex-direction: column; gap: 8px; color: var(--ink-soft); font-size: 13px; font-weight: 760; }
label + label { margin-top: 18px; }

input, select, textarea {
    width: 100%;
    min-height: 49px;
    padding: 12px 14px;
    border: 1px solid #cbd0c6;
    border-radius: var(--radius-sm);
    outline: 0;
    color: var(--ink);
    background: #fff;
    font-weight: 500;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

textarea { min-height: 100px; resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: #aab4a3; }
input:focus, select:focus, textarea:focus { border-color: var(--leaf); background: #fff; box-shadow: 0 0 0 4px rgba(79, 125, 53, .12); }
label small, .fineprint { color: var(--muted); font-size: 11px; font-weight: 500; }
form .button { margin-top: 23px; }
.centre { text-align: center; }
.muted { color: var(--muted); }

.flash { width: min(760px, 100%); margin: 24px auto -8px; padding: 14px 17px; border: 1px solid transparent; border-radius: var(--radius-sm); font-size: 14px; font-weight: 720; }
.flash.success { color: #24502e; border-color: #bbd0ab; background: #e4efdb; }
.flash.error { color: #842f21; border-color: #e3b7aa; background: #fae2da; }
.flash.info { color: #315566; border-color: #bdd1da; background: #e3f0f5; }

.page-heading { max-width: 820px; margin: clamp(60px, 7vw, 88px) 0 40px; }
.page-heading h1 { margin-bottom: 18px; font-size: clamp(48px, 6.5vw, 76px); }
.page-heading p { max-width: 690px; margin-bottom: 0; color: var(--muted); font-size: 18px; }

.dashboard-head { display: flex; align-items: center; justify-content: space-between; gap: 52px; padding: clamp(58px, 7vw, 88px) 0 48px; }
.dashboard-head h1 { max-width: 790px; margin-bottom: 17px; font-size: clamp(48px, 6.7vw, 78px); }
.dashboard-head p { margin-bottom: 0; color: var(--muted); }

.credit-orb { display: grid; place-items: center; flex: 0 0 202px; aspect-ratio: 1; border: 1px solid #38562b; border-radius: 50%; color: #fff; background: var(--leaf-dark); box-shadow: inset 0 0 0 9px rgba(255, 255, 255, .06), var(--shadow-lg); }
.credit-orb strong { align-self: end; font-family: var(--serif); font-size: 66px; font-weight: 500; line-height: 1; }
.credit-orb span { margin-top: -18px; color: #d5dfd1; }
.credit-orb a { align-self: start; color: var(--gold); font-size: 12px; font-weight: 800; }

.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.quick-card { position: relative; min-height: 255px; padding: 29px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); background: var(--surface); box-shadow: var(--shadow-sm); text-decoration: none; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.quick-card::after { content: "↗"; position: absolute; right: 24px; bottom: 20px; color: var(--leaf); font-size: 24px; }
.quick-card:hover { border-color: #aebfa2; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.quick-card.accent { color: #fff; border-color: var(--leaf-dark); background: var(--leaf-dark); }
.quick-card.accent::after { color: var(--gold); }
.quick-card > span { color: inherit; opacity: .7; font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.quick-card h2 { margin-top: 45px; font-size: 32px; }
.quick-card p { max-width: 300px; margin-bottom: 0; opacity: .76; font-size: 14px; }

.section-title { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 22px; }
.section-title h2 { margin: 7px 0 0; }
.section-title > a { font-size: 13px; font-weight: 800; }
.empty { padding: 44px 28px; border: 1px dashed #bfc5ba; border-radius: 14px; background: #fafaf6; text-align: center; }
.empty p { color: var(--muted); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 23px; }
.form-grid label + label { margin-top: 0; }
.form-grid .full { grid-column: 1 / -1; }
.check { display: flex; flex-direction: row; align-items: center; align-self: center; min-height: 49px; }
.check input { width: 20px; min-height: 20px; height: 20px; accent-color: var(--leaf); }
.account-security { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; margin-top: 26px; border-color: #bdccb1; background: var(--surface-soft); }
.account-security form { margin-top: 0; }

.balance-strip { display: flex; justify-content: space-between; gap: 20px; margin: 20px 0 28px; padding: 17px 21px; border: 1px solid #3b592f; border-radius: var(--radius-sm); color: #fff; background: var(--leaf-dark); }
.pack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 28px 0 32px; }
.pack-card { position: relative; margin: 0; padding: 30px 23px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.pack-card.popular { border: 2px solid var(--leaf); box-shadow: var(--shadow-lg); transform: translateY(-7px); }
.pack-card > strong { display: block; color: var(--leaf-dark); font-family: var(--serif); font-size: 62px; font-weight: 500; line-height: 1; }
.pack-card h2 { margin: 9px 0 25px; font-size: 25px; }
.pack-card small { color: var(--muted); }
.pack-price { margin-bottom: 0; font-size: 18px; font-weight: 850; }
.badge { position: absolute; top: 16px; right: 16px; padding: 5px 9px; border-radius: 6px; color: var(--leaf-dark); background: var(--gold); font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.notice { margin: 0 0 28px; padding: 14px 17px; border-left: 4px solid var(--gold); background: var(--gold-soft); }

.report-builder { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(48px, 7vw, 88px); padding: clamp(66px, 8vw, 104px) 0; }
.report-builder h1 { font-size: clamp(52px, 7vw, 82px); }
.report-builder > div > p { max-width: 650px; color: var(--muted); font-size: 18px; }
.location-card { margin: 0; border-top: 5px solid var(--leaf); box-shadow: var(--shadow-lg); }
.credit-mini { display: flex; justify-content: space-between; margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.location-card .text-link { display: block; margin-top: 15px; text-align: center; font-size: 13px; font-weight: 800; }

.flow { display: flex; align-items: center; gap: 9px; margin-top: 36px; color: var(--ink-soft); font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.flow span { padding: 8px 10px; border: 1px solid #c8cec3; border-radius: 7px; background: var(--surface); }
.flow i { width: 17px; height: 1px; background: #aeb4a9; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
table { width: 100%; border-collapse: collapse; background: var(--surface); font-size: 13px; }
th, td { padding: 15px 13px; border-bottom: 1px solid #e5e7df; text-align: left; vertical-align: top; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: #f7f8f3; }
th { color: var(--muted); background: #f3f5ef; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.status { display: inline-block; padding: 4px 8px; border-radius: 6px; background: #e7e8e2; font-size: 9px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.status.completed { color: #24502e; background: #dcebcf; }
.status.queued, .status.pending { color: #68531b; background: #f5e7b8; }
.status.failed { color: #842f21; background: #f4d5cb; }

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 25px; }
.stat-grid article { padding: 27px; border: 1px solid #38542d; border-radius: var(--radius); color: #fff; background: var(--leaf-dark); }
.stat-grid article:nth-child(even) { color: var(--ink); border-color: var(--line); background: var(--surface); }
.stat-grid span { display: block; opacity: .72; font-size: 10px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.stat-grid strong { display: block; margin-top: 14px; font-family: var(--serif); font-size: 42px; font-weight: 500; }

.inline-adjust { display: flex; min-width: 270px; gap: 6px; margin: 0; }
.inline-adjust input { min-width: 75px; min-height: 37px; padding: 7px 9px; }
.inline-adjust input[name="delta"] { width: 72px; }
.inline-adjust button { min-height: 37px; padding: 7px 11px; border: 0; border-radius: 7px; color: #fff; background: var(--leaf-dark); font-weight: 800; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.mini-list > div { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line); }
.mini-list span { display: flex; flex-direction: column; }
.mini-list small { color: var(--muted); }
.narrow { max-width: 700px; margin: 78px auto; }

footer { display: grid; grid-template-columns: 310px auto 1fr auto; align-items: center; gap: 34px; padding: 31px max(24px, calc((100% - 1240px) / 2)); border-top: 1px solid rgba(255, 255, 255, .1); color: #bdc8b8; background: #1c2b1b; }
footer .brand img { filter: brightness(0) invert(1); opacity: .93; }
footer p, footer small { margin: 0; }
footer p { font-size: 13px; }
footer small { font-size: 11px; }
.footer-nav { display: flex; gap: 17px; }
.footer-nav a { color: #eef2eb; font-size: 12px; font-weight: 750; text-decoration: none; }
.footer-nav a:hover { color: var(--gold); }

@media (max-width: 1020px) {
    .site-header { padding-inline: 22px; }
    .site-main { width: min(100% - 40px, 1240px); }
    .hero, .report-builder, .promise, .account-security, .content-hero { grid-template-columns: 1fr; }
    .hero { gap: 48px; padding-top: 58px; }
    .hero > div { max-width: 780px; }
    .hero::after { display: none; }
    .menu-card { max-width: 720px; }
    .quick-grid { grid-template-columns: 1fr; }
    .quick-card { min-height: 205px; }
    .quick-card h2 { margin-top: 30px; }
    .pack-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .pack-card.popular { transform: none; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 740px) {
    body::before { display: none; }
    .site-header { position: static; min-height: 113px; padding: 6px 14px; }
    .brand { flex-basis: 260px; width: 260px; height: 109px; }
    .brand .brand-art { height: 109px; }
    .site-header nav { gap: 3px; }
    .site-header nav > a, .nav-form button { min-height: 38px; padding: 8px 10px; font-size: 12px; }
    .site-header nav > a.nav-public,
    .site-header nav > a.nav-auth-secondary { display: none; }
    .site-header .nav-cta { margin-left: 0; padding-inline: 12px; }
    .site-main { width: min(100% - 28px, 1240px); margin-bottom: 70px; }
    h1 { font-size: clamp(44px, 13vw, 60px); }
    .hero { gap: 34px; padding: 48px 0 54px; }
    .lead { font-size: 17px; }
    .steps, .form-grid, .pack-grid, .stat-grid, .split, .process-grid, .principles-grid, .detail-split { grid-template-columns: 1fr; }
    .steps article { min-height: auto; }
    .steps article > span { margin-bottom: 24px; }
    .panel, .menu-card { padding: 25px; border-radius: 16px; }
    .dashboard-head { align-items: flex-start; flex-direction: column; }
    .credit-orb { flex-basis: 174px; width: 174px; }
    .report-builder { gap: 38px; padding: 54px 0; }
    .content-hero { gap: 34px; padding: 50px 0 45px; }
    .chef-panel { min-height: 300px; }
    .content-heading, .page-cta { align-items: flex-start; flex-direction: column; }
    .page-cta .button { width: 100%; }
    .about-story { padding: 32px 0; }
    .flow { align-items: stretch; flex-direction: column; }
    .flow i { width: 1px; height: 11px; margin-left: 25px; }
    footer { grid-template-columns: 1fr; gap: 12px; padding: 28px 20px; text-align: center; }
    footer .brand { margin: 0 auto; }
    .footer-nav { justify-content: center; }
}

@media (max-width: 430px) {
    .brand { flex-basis: 235px; width: 235px; height: 99px; }
    .brand .brand-art { height: 99px; }
    .site-header nav > a.nav-public,
    .site-header nav > a.nav-auth-secondary { display: none; }
    .site-header .nav-cta { padding-inline: 11px; }
    .trust-row { flex-direction: column; }
    .actions .button { width: 100%; }
    .page-heading { margin-top: 50px; }
    .section-title { align-items: flex-start; flex-direction: column; }
    .inline-adjust { min-width: 250px; }
}

@media (max-width: 350px) {
    .site-header .nav-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
