:root {
    --fc-ink: #111418;
    --fc-ink-soft: #2a3036;
    --fc-muted: #66717a;
    --fc-line: #e3e7ea;
    --fc-paper: #f8faf9;
    --fc-white: #ffffff;
    --fc-teal: #0e766d;
    --fc-teal-soft: #e4f5f2;
    --fc-rose: #c92f53;
    --fc-rose-soft: #fff1f4;
    --fc-gold: #b98518;
    --fc-shadow: 0 18px 45px rgba(17, 20, 24, 0.11);
    --fc-radius: 8px;
    --fc-shell: 1180px;
    --fc-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--fc-paper);
    color: var(--fc-ink);
    font-family: var(--fc-font);
    font-size: 16px;
    line-height: 1.55;
}

body.admin-bar .site-header {
    top: 32px;
}

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

a {
    color: inherit;
    text-decoration: none;
}

p,
h1,
h2,
h3 {
    margin-top: 0;
}

p {
    color: var(--fc-muted);
}

h1,
h2,
h3 {
    line-height: 1.05;
}

h1 {
    max-width: 760px;
    font-size: clamp(2.4rem, 5vw, 5.35rem);
    letter-spacing: 0;
}

h2 {
    font-size: clamp(2rem, 3vw, 3.35rem);
    letter-spacing: 0;
}

h3 {
    font-size: 1.25rem;
    letter-spacing: 0;
}

.site-shell {
    width: min(calc(100% - 32px), var(--fc-shell));
    margin: 0 auto;
}

.narrow-shell {
    max-width: 820px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    z-index: 100000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 12px 16px;
    clip: auto;
    background: var(--fc-ink);
    color: var(--fc-white);
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid rgba(227, 231, 234, 0.78);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    display: inline-grid;
    flex: 0 0 54px;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: transparent;
    color: var(--fc-white);
    font-weight: 850;
}

.brand-mark img {
    width: 54px;
    height: 54px;
    min-width: 54px;
    object-fit: contain;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1rem;
}

.brand small {
    color: var(--fc-muted);
    font-size: 0.78rem;
}

.primary-nav {
    justify-self: end;
}

.menu {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    border-radius: var(--fc-radius);
    padding: 0 13px;
    color: var(--fc-ink-soft);
    font-weight: 750;
}

.menu a:hover,
.menu a:focus {
    background: var(--fc-teal-soft);
    color: var(--fc-teal);
}

.nav-cta,
.button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--fc-radius);
    padding: 0 18px;
    font-weight: 850;
    white-space: nowrap;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-cta,
.button-primary {
    background: var(--fc-rose);
    color: var(--fc-white);
    box-shadow: 0 12px 30px rgba(201, 47, 83, 0.22);
}

.button-secondary {
    border-color: var(--fc-line);
    background: var(--fc-white);
    color: var(--fc-ink);
}

.button-light {
    background: var(--fc-white);
    color: var(--fc-ink);
}

.nav-cta:hover,
.button:hover,
.nav-cta:focus,
.button:focus {
    transform: translateY(-1px);
    box-shadow: var(--fc-shadow);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--fc-line);
    border-radius: var(--fc-radius);
    background: var(--fc-white);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: var(--fc-ink);
}

.section {
    padding: 92px 0;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--fc-teal);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 40px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.72)),
        url("https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--fc-line);
    content: "";
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    gap: 44px;
    min-height: 650px;
}

.hero-copy {
    max-width: 780px;
}

.hero-lede {
    max-width: 650px;
    font-size: 1.18rem;
}

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

.stat-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 620px;
    margin: 40px 0 0;
    overflow: hidden;
    border: 1px solid var(--fc-line);
    border-radius: var(--fc-radius);
    background: var(--fc-line);
}

.stat-strip div {
    padding: 18px;
    background: rgba(255, 255, 255, 0.9);
}

.stat-strip dt {
    font-size: 1.65rem;
    font-weight: 900;
}

.stat-strip dd {
    margin: 4px 0 0;
    color: var(--fc-muted);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
    min-height: 580px;
}

.hero-product {
    position: absolute;
    display: block;
    overflow: hidden;
    border: 1px solid var(--fc-line);
    border-radius: var(--fc-radius);
    background: var(--fc-white);
    box-shadow: var(--fc-shadow);
}

.hero-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-product span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    border-radius: var(--fc-radius);
    background: var(--fc-ink);
    color: var(--fc-white);
    padding: 8px 10px;
    font-weight: 900;
}

.hero-product-1 {
    top: 12px;
    right: 52px;
    width: 66%;
    aspect-ratio: 1 / 1.1;
}

.hero-product-2 {
    bottom: 40px;
    left: 0;
    width: 54%;
    aspect-ratio: 1 / 1.05;
}

.hero-product-3 {
    right: 0;
    bottom: 0;
    width: 42%;
    aspect-ratio: 1 / 1.18;
}

.intro-band {
    padding: 44px 0;
    background: var(--fc-ink);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.intro-band h2,
.intro-band p:not(.eyebrow) {
    color: var(--fc-white);
}

.intro-band p:not(.eyebrow) {
    margin-bottom: 0;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.section-heading p:last-child {
    font-size: 1.06rem;
}

.deal-toolbar {
    display: grid;
    grid-template-columns: auto minmax(220px, 1fr) auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 22px;
    border: 1px solid var(--fc-line);
    border-radius: var(--fc-radius);
    background: var(--fc-white);
    padding: 12px;
}

.deal-toolbar label {
    color: var(--fc-ink);
    font-weight: 900;
}

.deal-toolbar input {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--fc-line);
    border-radius: var(--fc-radius);
    padding: 0 14px;
    color: var(--fc-ink);
    font: inherit;
}

.quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-filters button {
    min-height: 40px;
    border: 1px solid var(--fc-line);
    border-radius: var(--fc-radius);
    background: var(--fc-paper);
    color: var(--fc-ink);
    padding: 0 13px;
    font-weight: 850;
    cursor: pointer;
}

.quick-filters button:hover,
.quick-filters button:focus {
    border-color: var(--fc-teal);
    color: var(--fc-teal);
}

.deal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.deal-card,
.route-card,
.guide-card,
.trust-points article,
.post-card,
.faq-list details {
    border: 1px solid var(--fc-line);
    border-radius: var(--fc-radius);
    background: var(--fc-white);
}

.deal-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(17, 20, 24, 0.05);
}

.deal-card[hidden] {
    display: none;
}

.deal-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--fc-paper);
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.deal-card:hover .deal-image img {
    transform: scale(1.035);
}

.deal-image span {
    position: absolute;
    top: 12px;
    left: 12px;
    border-radius: var(--fc-radius);
    background: var(--fc-teal);
    color: var(--fc-white);
    padding: 7px 10px;
    font-size: 0.8rem;
    font-weight: 900;
}

.deal-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.deal-body > p:first-child,
.guide-card > p {
    margin-bottom: 8px;
    color: var(--fc-rose);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.deal-body h3 {
    margin-bottom: 10px;
}

.deal-body p {
    margin-bottom: 16px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 14px;
}

.price-row strong {
    font-size: 1.45rem;
}

.price-row span {
    color: var(--fc-muted);
    text-decoration: line-through;
}

.text-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    color: var(--fc-teal);
    font-weight: 900;
}

.text-link::after {
    content: ">";
}

.route-section {
    background: var(--fc-white);
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.route-card {
    overflow: hidden;
}

.route-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: var(--fc-paper);
}

.route-card div {
    padding: 22px;
}

.guide-section {
    background:
        linear-gradient(90deg, rgba(228, 245, 242, 0.82), rgba(255, 241, 244, 0.62)),
        var(--fc-paper);
}

.guide-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.guide-copy {
    position: sticky;
    top: 112px;
}

.guide-list {
    display: grid;
    gap: 14px;
}

.guide-card {
    padding: 22px;
}

.guide-card h3 {
    margin-bottom: 10px;
}

.guide-card span {
    color: var(--fc-muted);
}

.trust-section {
    background: var(--fc-ink);
}

.trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 34px;
}

.trust-section h2,
.trust-section h3 {
    color: var(--fc-white);
}

.trust-points {
    display: grid;
    gap: 14px;
}

.trust-points article {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    padding: 22px;
}

.trust-points p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 34px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    padding: 18px 20px;
}

.faq-list summary {
    color: var(--fc-ink);
    font-weight: 900;
    cursor: pointer;
}

.faq-list p {
    margin: 12px 0 0;
}

.final-cta {
    padding: 58px 0;
    background: var(--fc-rose);
}

.final-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
}

.final-cta h2,
.final-cta .eyebrow {
    color: var(--fc-white);
}

.final-cta h2 {
    margin-bottom: 0;
}

.site-footer {
    padding: 54px 0;
    border-top: 1px solid var(--fc-line);
    background: var(--fc-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr) minmax(0, 1fr);
    gap: 32px;
}

.footer-brand {
    margin-bottom: 18px;
}

.site-footer h2 {
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-links {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: var(--fc-teal);
    font-weight: 850;
}

.page-hero {
    padding-bottom: 48px;
    background: var(--fc-white);
}

.article-section,
.page-section {
    padding-top: 48px;
}

.article-content,
.post-card {
    font-size: 1.06rem;
}

.article-content > * {
    max-width: 760px;
}

.article-content img,
.article-featured {
    overflow: hidden;
    max-width: 100%;
    border-radius: var(--fc-radius);
}

.post-list {
    display: grid;
    gap: 18px;
}

.post-card {
    padding: 26px;
}

.post-thumb {
    display: block;
    overflow: hidden;
    margin: -26px -26px 22px;
    aspect-ratio: 16 / 8;
    background: var(--fc-paper);
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

@media (max-width: 980px) {
    .nav-shell {
        grid-template-columns: auto auto;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
    }

    .primary-nav,
    .nav-cta {
        display: none;
    }

    .primary-nav.is-open {
        display: block;
        grid-column: 1 / -1;
        justify-self: stretch;
        padding-bottom: 16px;
    }

    .primary-nav.is-open .menu {
        display: grid;
        gap: 4px;
    }

    .hero-grid,
    .intro-grid,
    .guide-grid,
    .trust-grid,
    .faq-grid,
    .final-cta-inner,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
    }

    .hero-visual {
        min-height: 470px;
    }

    .deal-grid,
    .route-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-copy {
        position: static;
    }

    .deal-toolbar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .site-shell {
        width: min(calc(100% - 24px), var(--fc-shell));
    }

    .section {
        padding: 68px 0;
    }

    .hero {
        padding-top: 42px;
    }

    .hero-visual {
        min-height: 380px;
    }

    .hero-product-1 {
        right: 0;
        width: 76%;
    }

    .hero-product-2 {
        width: 58%;
    }

    .hero-product-3 {
        width: 48%;
    }

    .stat-strip,
    .deal-grid,
    .route-grid {
        grid-template-columns: 1fr;
    }

    .quick-filters button,
    .button,
    .nav-cta {
        width: 100%;
    }

    .hero-actions {
        width: 100%;
    }

    .deal-body,
    .route-card div,
    .guide-card,
    .trust-points article,
    .post-card {
        padding: 18px;
    }
}
