:root {
    --navy: #0b1d3a;
    --navy-dark: #061224;
    --red: #d90429;
    --red-dark: #b00322;
    --gold: #f4b942;
    --white: #ffffff;
    --gray-100: #f4f6f9;
    --gray-200: #e5e9f0;
    --gray-600: #5c667a;
    --gray-900: #1a2233;
    --font-display: "Oswald", sans-serif;
    --font-body: "Inter", sans-serif;
    --shadow: 0 18px 40px rgba(11, 29, 58, 0.12);
    --radius: 12px;
    --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}

.top-bar {
    background: var(--navy-dark);
    color: var(--white);
    font-size: 0.875rem;
}

.top-bar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0;
}

.top-bar a { color: var(--gold); font-weight: 600; }

.alert-banner {
    background: var(--red);
    color: var(--white);
    text-align: center;
    font-weight: 600;
    padding: 0.65rem 0;
}

.site-notice {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.site-notice__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 18, 36, 0.72);
}

.site-notice__dialog {
    position: relative;
    width: min(92vw, 560px);
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem 1.5rem 1.35rem;
    box-shadow: 0 22px 50px rgba(6, 18, 36, 0.28);
    z-index: 1;
}

.site-notice__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 999px;
    background: var(--gray-100);
    color: var(--navy);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.site-notice__dialog h2 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(1.7rem, 4vw, 2.25rem);
    line-height: 1;
    margin: 0 0 0.9rem;
}

.site-notice__message {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
}

.site-notice.is-hidden {
    display: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-height: 84px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.brand img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand__text strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand__text small {
    color: var(--gray-600);
    font-size: 0.8rem;
}

.site-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-width: 0;
}

.site-nav > ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.15rem 0.85rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav > ul > li > a {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--navy);
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.site-nav > ul > li > a:hover,
.site-nav > ul > li > a.is-active {
    color: var(--red);
    border-bottom-color: var(--red);
}

.site-nav .has-submenu {
    position: relative;
}

.site-nav .has-submenu > a::after {
    content: "▾";
    margin-left: 0.2rem;
    font-size: 0.72rem;
    opacity: 0.75;
}

.site-nav__submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 961px) {
    .site-nav__submenu {
        position: absolute;
        top: calc(100% + 0.15rem);
        left: 0;
        min-width: 12rem;
        padding: 0.4rem 0;
        background: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        z-index: 30;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(0.35rem);
        transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
    }

    .site-nav .has-submenu:hover > .site-nav__submenu,
    .site-nav .has-submenu:focus-within > .site-nav__submenu {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

.site-nav__submenu a {
    display: block;
    padding: 0.55rem 0.9rem;
    border-bottom: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
}

.site-nav__submenu a:hover,
.site-nav__submenu a.is-active {
    background: var(--gray-100);
    color: var(--red);
}

.site-nav__cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    margin-left: 0.75rem;
    padding: 0.48rem 1rem;
    border: 2px solid var(--red);
    border-radius: 6px;
    color: var(--red);
    background: var(--white);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.site-nav__cta:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn--primary {
    background: var(--red);
    color: var(--white);
}

.btn--primary:hover { background: var(--red-dark); }

.btn--ghost {
    border-color: rgba(255, 255, 255, 0.75);
    color: var(--white);
}

.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }

.btn--light {
    background: var(--white);
    color: var(--navy);
}

.btn--ghost-light {
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--white);
}

.btn--sm { padding: 0.65rem 1rem; font-size: 0.875rem; }

.hero {
    position: relative;
    min-height: 78vh;
    display: grid;
    align-items: center;
    background: var(--navy-dark) center/cover no-repeat;
    background-image: none;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: -2%;
    background: var(--navy-dark) center/cover no-repeat;
    background-image: var(--hero-image);
    transform: scale(1.05);
    animation: home-hero-float 10s ease-in-out infinite alternate;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(217, 4, 41, 0.22), transparent 34%),
        linear-gradient(120deg, rgba(6, 18, 36, 0.82), rgba(11, 29, 58, 0.48));
    animation: home-hero-glow 8s ease-in-out infinite alternate;
}

.hero__content {
    position: relative;
    color: var(--white);
    padding: 5rem 0 4rem;
    max-width: 760px;
}

.eyebrow {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
    font-size: 0.85rem;
    margin: 0 0 0.75rem;
}

.eyebrow--light { color: rgba(255, 255, 255, 0.85); }

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 0.95;
    margin: 0 0 1rem;
    text-transform: uppercase;
}

.hero__lead {
    font-size: 1.15rem;
    max-width: 620px;
    margin: 0 0 1.75rem;
    color: rgba(255, 255, 255, 0.92);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.stats-strip {
    background: var(--navy);
    color: var(--white);
    padding: 1.35rem 0;
}

.stats-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stats-strip__item {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.stats-strip__item:hover {
    opacity: 0.85;
}

.stats-strip strong {
    display: block;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stats-strip span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
}

.section { padding: 4.5rem 0; }

.section--muted { background: var(--gray-100); }

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-heading h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.05;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.feature-card__image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.feature-card__body {
    padding: 1.25rem 1.35rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1;
}

.feature-card h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
    margin: 0;
    font-size: 1.35rem;
}

.text-link {
    color: var(--red);
    font-weight: 700;
    margin-top: auto;
}

.cta-band {
    background: linear-gradient(135deg, var(--red), #8f0219);
    color: var(--white);
    padding: 3.5rem 0;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-band h2 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 0.35rem 0 0.75rem;
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.split-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.split-panel h2 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 0 0 0.75rem;
}

.split-panel__image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.menu-pdf-viewer iframe {
    width: 100%;
    min-height: 520px;
    height: 70vh;
    max-height: 720px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--white);
}

.menu-pdf-fallback {
    margin: 0.75rem 0 0;
    text-align: center;
    font-size: 0.92rem;
}

.menu-pdf-fallback a {
    color: var(--navy);
    font-weight: 600;
}

.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.88);
    padding-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-bottom: 2rem;
}

.site-footer h3,
.site-footer h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li { margin-bottom: 0.45rem; }

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 0 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 0.85rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.footer-legal a:not(:last-child)::after {
    content: "|";
    margin: 0 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

.footer-legal a:hover {
    color: var(--white);
}

.legal-content h2 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1.35rem;
    margin: 2rem 0 0.75rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content ul {
    padding-left: 1.25rem;
}

.legal-content li {
    margin-bottom: 0.4rem;
}

.page-hero {
    position: relative;
    min-height: 42vh;
    display: grid;
    align-items: end;
    background: var(--navy-dark) center/cover no-repeat;
    background-image: var(--hero-image);
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 18, 36, 0.55), rgba(6, 18, 36, 0.92));
}

.page-hero__content {
    position: relative;
    color: var(--white);
    padding: 4rem 0 2.5rem;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

@keyframes home-hero-float {
    0% {
        transform: scale(1.05) translate3d(0, 0, 0);
    }
    100% {
        transform: scale(1.14) translate3d(0, -12px, 0);
    }
}

@keyframes home-hero-glow {
    0% {
        opacity: 0.84;
    }
    100% {
        opacity: 1;
    }
}

.content-block h2,
.content-block h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
    line-height: 1.1;
}

.content-block h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 0 0 1rem;
}

.content-block h3 {
    font-size: 1.35rem;
    margin: 1.5rem 0 0.75rem;
}

.content-block p,
.content-block li {
    color: var(--gray-600);
}

.content-block--narrow {
    max-width: 760px;
}

.content-list {
    padding-left: 1.2rem;
    line-height: 1.7;
}

.content-list li { margin-bottom: 0.45rem; }

.kitchen-highlights {
    margin: 1.25rem 0;
    padding-left: 1.2rem;
    color: var(--gray-600);
}

.kitchen-highlights li { margin-bottom: 0.45rem; }

.specials-card {
    margin-top: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--red);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
    box-shadow: var(--shadow);
}

.specials-card h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
    margin: 0 0 0.75rem;
    color: var(--navy);
}

.specials-card__body p:last-child { margin-bottom: 0; }

.table-scroll {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.data-table th,
.data-table td {
    border: 1px solid var(--gray-200);
    padding: 0.75rem 0.85rem;
    text-align: left;
    vertical-align: top;
    font-size: 0.92rem;
}

.data-table thead th {
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.data-table tbody th {
    background: var(--gray-100);
    color: var(--navy);
    white-space: nowrap;
}

.pricing-subtitle {
    font-family: var(--font-display);
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.pricing-subtitle span {
    text-transform: none;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--gray-600);
    font-size: 1rem;
}

.pricing-note { margin-top: 0; }

.legacy-table-wrap {
    overflow-x: auto;
}

.legacy-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    background: var(--white);
}

.legacy-table-wrap td,
.legacy-table-wrap th {
    border: 1px solid var(--gray-200);
    padding: 0.65rem 0.75rem;
    vertical-align: top;
}

.legacy-table-wrap .league-schedule tr:first-child td {
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.92rem;
}

.legacy-table-wrap .league-schedule tr:first-child b {
    color: inherit;
    font-weight: 600;
}

.embed-form {
    margin-top: 1.5rem;
    min-height: 420px;
}

.contact-map iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-map--wide iframe {
    min-height: 420px;
}

.contact-sidebar h2 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1.15rem;
    margin: 1.5rem 0 0.5rem;
}

.contact-sidebar h2:first-child {
    margin-top: 0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1.2rem;
    margin: 0 0 0.85rem;
    line-height: 1.15;
}

.info-card .content-list {
    margin-bottom: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.blog-card__image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.blog-card__body {
    padding: 1.2rem 1.35rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

.blog-card__meta {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.blog-card h2 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.15;
}

.blog-featured {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.post-body {
    line-height: 1.75;
    color: var(--gray-600);
}

.muted { color: var(--gray-600); }

.pricing-block {
    background: var(--white);
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--gray-200);
}

.pricing-block .pricing-subtitle {
    margin-top: 2rem;
}

.pricing-block .pricing-subtitle:first-of-type {
    margin-top: 0;
}

.table-head-note {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.85;
}

.data-table td {
    line-height: 1.5;
    min-width: 11rem;
}

.data-table__special td,
.data-table__special th {
    background: var(--gray-100);
}

.pricing-wizard {
    margin-top: 0;
    margin-bottom: 0;
    padding: 1.35rem;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.pricing-wizard__intro {
    margin-bottom: 1.25rem;
}

.pricing-wizard__intro h2 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin: 0 0 0.35rem;
    line-height: 1.05;
}

.pricing-wizard__intro .muted {
    margin: 0;
    font-size: 0.95rem;
}

.pricing-wizard__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 1rem;
    align-items: start;
}

.wizard-card {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1rem;
}

.wizard-form {
    display: grid;
    gap: 0.85rem;
}

.wizard-step label,
.wizard-label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--navy);
    font-size: 0.85rem;
}

.wizard-step input,
.wizard-step select {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font: inherit;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--gray-900);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wizard-step input:focus,
.wizard-step select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.12);
}

.wizard-step input[type="number"] {
    max-width: none;
}

.wizard-step--split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.wizard-step--split > div {
    min-width: 0;
}

.wizard-step--hidden { display: none !important; }

.wizard-options {
    display: grid;
    gap: 0.5rem;
}

.wizard-option {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.75rem 0.85rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.wizard-option:hover {
    border-color: rgba(217, 4, 41, 0.45);
}

.wizard-option.is-selected {
    border-color: var(--red);
    background: rgba(217, 4, 41, 0.06);
    box-shadow: 0 0 0 1px rgba(217, 4, 41, 0.25);
}

.wizard-option input[type="radio"] {
    width: 1.15rem;
    height: 1.15rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
    accent-color: var(--red);
}

.wizard-option span {
    line-height: 1.4;
    color: var(--gray-900);
    font-weight: 500;
    font-size: 0.92rem;
}

.wizard-result {
    background: linear-gradient(165deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 6.5rem;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.wizard-result__label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
}

.wizard-result__amount {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    line-height: 1;
    margin: 0.35rem 0 0.75rem;
    color: var(--gold);
}

.wizard-result__details {
    flex: 1;
}

.wizard-result__details ul {
    margin: 0;
    padding-left: 1rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
    font-size: 0.82rem;
}

.wizard-result__details li {
    margin-bottom: 0.35rem;
}

.wizard-result__details p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.wizard-result__note {
    margin: 0.75rem 0 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.75rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.62);
}

.pricing-wizard__disclaimer {
    margin: 1rem 0 0;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    background: rgba(11, 29, 58, 0.06);
    border-left: 4px solid var(--navy);
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--gray-600);
}

.pricing-wizard__disclaimer strong {
    color: var(--navy);
}

.cta-callout {
    margin-top: 2rem;
    padding: 1.35rem;
    border-radius: var(--radius);
    background: var(--gray-100);
    border-left: 4px solid var(--red);
}

@media (max-width: 1100px) {
    .card-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-nav > ul {
        flex-wrap: wrap;
    }

    .site-nav ul {
        gap: 0.15rem 0.55rem;
    }

    .site-nav > ul > li > a {
        font-size: 0.85rem;
    }

    .brand__text strong {
        font-size: 1.15rem;
    }
}

@media (max-width: 960px) {
    .stats-strip__grid,
    .card-grid,
    .card-grid--4,
    .info-cards,
    .footer-grid,
    .split-panel,
    .cta-band__inner {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .wizard-step--split,
    .pricing-wizard__layout {
        grid-template-columns: 1fr;
    }

    .wizard-result {
        position: static;
    }

    .pricing-wizard {
        padding: 1rem;
        max-width: none;
    }

    .cta-band__inner { align-items: flex-start; }

    .nav-toggle { display: flex; }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--gray-200);
        padding: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .site-nav.is-open { display: flex; }

    .site-nav > ul {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 1rem;
        gap: 0;
    }

    .site-nav ul {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 1rem;
        gap: 0;
    }

    .site-nav > ul > li > a {
        display: block;
        padding: 0.65rem 0;
        font-size: 1rem;
        white-space: normal;
    }

    .site-nav .has-submenu > a::after {
        content: none;
    }

    .site-nav__submenu {
        display: none;
        position: static;
        min-width: 0;
        margin: 0 0 0.35rem;
        padding: 0 0 0 0.85rem;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .site-nav .has-submenu.is-open > .site-nav__submenu {
        display: block;
    }

    .site-nav__cta {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .site-header {
        position: sticky;
    }
}
