:root {
    --background: 264 42% 22%;
    --foreground: 45 40% 92%;
    --card: 264 38% 28%;
    --card-foreground: 45 40% 92%;
    --primary: 42 60% 62%;
    --primary-foreground: 264 42% 16%;
    --secondary: 264 30% 35%;
    --muted: 264 30% 32%;
    --muted-foreground: 264 20% 72%;
    --border: 264 25% 38%;
    --radius: .75rem;
    --font-heading: "Playfair Display", serif;
    --font-body: "DM Sans", sans-serif;
    --shadow-soft: 0 24px 80px rgb(0 0 0 / .18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--font-body);
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, hsl(var(--background)) 0%, hsl(264 42% 19%) 48%, hsl(var(--background)) 100%);
    z-index: -1;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -5rem;
    z-index: 20;
    padding: .6rem 1rem;
    border-radius: 999px;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    transition: top .2s ease;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid hsl(var(--border) / .45);
    background: hsl(var(--background) / .86);
    backdrop-filter: blur(18px);
}

.nav-shell {
    width: min(1180px, calc(100% - 2rem));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 1px solid hsl(var(--primary) / .34);
    background: hsl(var(--card) / .6);
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-name {
    display: block;
    color: hsl(var(--foreground));
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.1;
    white-space: nowrap;
}

.brand-subtitle {
    display: block;
    margin-top: .18rem;
    color: hsl(var(--primary) / .8);
    font-size: .625rem;
    line-height: 1;
    letter-spacing: .15em;
    text-transform: uppercase;
    white-space: nowrap;
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1.55rem;
}

.desktop-nav a,
.mobile-menu a {
    color: hsl(var(--foreground) / .78);
    font-size: 1rem;
    transition: color .2s ease;
}

.mega-nav-item {
    position: relative;
    padding: 1.7rem 0;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: min(720px, calc(100vw - 2rem));
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
    border: 1px solid hsl(var(--border) / .65);
    border-radius: var(--radius);
    background: hsl(var(--card) / .98);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, .6rem);
    transition: opacity .18s ease, transform .18s ease;
}

.mega-nav-item:hover .mega-menu,
.mega-nav-item:focus-within .mega-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.mega-menu-image {
    min-height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.mega-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-menu-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--background) / .82), transparent);
}

.mega-menu-image div {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
}

.mega-menu-image strong,
.mega-menu-image span {
    display: block;
}

.mega-menu-image strong {
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.mega-menu-image span {
    margin-top: .25rem;
    color: hsl(var(--foreground) / .72);
    font-size: .86rem;
}

.mega-menu-content {
    display: grid;
    gap: .55rem;
}

.mega-menu-content a {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .85rem;
    border: 1px solid hsl(var(--border) / .42);
    border-radius: var(--radius);
    background: hsl(var(--background) / .28);
}

.mega-menu-content a:hover {
    border-color: hsl(var(--primary) / .42);
    background: hsl(var(--primary) / .1);
}

.mega-menu-content svg {
    width: 20px;
    height: 20px;
    color: hsl(var(--primary));
    flex: 0 0 auto;
}

.mega-menu-content strong,
.mega-menu-content small {
    display: block;
}

.mega-menu-content strong {
    color: hsl(var(--foreground));
    font-size: .95rem;
}

.mega-menu-content small {
    margin-top: .15rem;
    color: hsl(var(--foreground) / .6);
    font-size: .78rem;
    line-height: 1.35;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-menu a:hover,
.mobile-menu a.is-active {
    color: hsl(var(--primary));
}

.header-cta,
.primary-button,
.secondary-button,
.ghost-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.header-cta {
    padding: .65rem 1.05rem;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-size: .88rem;
    font-weight: 600;
}

.primary-button {
    padding: .85rem 1.35rem;
    background: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    font-weight: 700;
    line-height: 1.2;
}

.secondary-button,
.ghost-button {
    padding: .85rem 1.25rem;
    border-color: hsl(var(--foreground) / .2);
    background: transparent;
    color: hsl(var(--foreground));
    font-weight: 600;
}

.primary-button:hover,
.header-cta:hover,
.secondary-button:hover,
.ghost-button:hover {
    transform: translateY(-1px);
}

.primary-button:hover,
.header-cta:hover {
    background: hsl(var(--primary) / .92);
}

.secondary-button:hover,
.ghost-button:hover {
    background: hsl(var(--foreground) / .08);
    border-color: hsl(var(--foreground) / .32);
}

.primary-button.full,
.secondary-button.full {
    width: 100%;
}

.primary-button.small {
    min-height: 40px;
    padding: .65rem 1rem;
}

.primary-button svg,
.secondary-button svg,
.header-cta svg,
.ghost-button svg,
.text-link svg,
.card-link svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    margin-left: auto;
    display: none;
    place-items: center;
    border: 1px solid hsl(var(--border) / .6);
    border-radius: 999px;
    background: hsl(var(--card) / .6);
    color: hsl(var(--foreground));
}

.mobile-menu {
    display: none;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto 1rem;
    padding: 1rem;
    border: 1px solid hsl(var(--border) / .55);
    border-radius: var(--radius);
    background: hsl(var(--card) / .95);
}

main {
    overflow: hidden;
}

.hero,
.subhero,
.section,
.trust-band,
.content-layout,
.contact-layout,
.article-page {
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
}

.hero {
    min-height: auto;
    padding: 3.8rem 0 2.4rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
    gap: 4rem;
    align-items: center;
}

.hero-copy,
.subhero-copy {
    min-width: 0;
}

.eyebrow {
    margin: 0 0 .9rem;
    color: hsl(var(--primary));
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1.05;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 500;
}

.hero h1 span {
    display: block;
}

.accent {
    color: hsl(var(--primary));
}

.italic {
    font-style: italic;
}

.hero-baseline {
    max-width: 34rem;
    margin: 1.25rem 0 0;
    color: hsl(var(--foreground) / .75);
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 2rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: min(100%, 520px);
    margin-top: 2.4rem;
}

.hero-metrics div {
    border-left: 1px solid hsl(var(--border));
    padding-left: 1rem;
}

.hero-metrics strong {
    display: block;
    color: hsl(var(--primary));
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1;
}

.hero-metrics span {
    display: block;
    margin-top: .35rem;
    color: hsl(var(--foreground) / .56);
    font-size: .78rem;
}

.hero-promises strong {
    font-size: 1.25rem;
}

.hero-visual,
.subhero-image {
    position: relative;
    border: 1px solid hsl(var(--border) / .55);
    border-radius: 1.5rem;
    background: hsl(var(--card) / .45);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.visual-glow {
    display: none;
}

.hero-visual img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.quick-consultations {
    padding-top: 1.8rem;
}

.hero-visual::after,
.subhero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsl(var(--background) / .62), transparent 55%);
    pointer-events: none;
}

.floating-note {
    position: absolute;
    left: 1.1rem;
    bottom: 1.1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .65rem .85rem;
    border: 1px solid hsl(var(--primary) / .3);
    border-radius: 999px;
    background: hsl(var(--background) / .82);
    color: hsl(var(--foreground));
    font-size: .82rem;
    backdrop-filter: blur(12px);
}

.section {
    padding: 5rem 0 0;
}

.page-bottom-space {
    padding-bottom: 6rem;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-heading h2,
.subhero h1,
.article-header h1 {
    font-size: 3.2rem;
    font-weight: 500;
}

.section-heading p:not(.eyebrow),
.subhero-copy p:not(.eyebrow),
.article-header p {
    color: hsl(var(--foreground) / .7);
    font-size: 1rem;
}

.split-heading {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
}

.feature-grid,
.offer-grid,
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.feature-card,
.offer-card,
.article-card,
.contact-card,
.contact-form,
.sidebar-panel,
.content-block,
.notice-card,
.faq-list details {
    border: 1px solid hsl(var(--border) / .55);
    border-radius: var(--radius);
    background: hsl(var(--card) / .48);
    box-shadow: 0 12px 40px rgb(0 0 0 / .09);
}

.feature-card,
.article-card {
    min-height: 245px;
    padding: 1.4rem;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.feature-card:hover,
.article-card:hover {
    transform: translateY(-3px);
    border-color: hsl(var(--primary) / .45);
    background: hsl(var(--card) / .72);
}

.icon-badge {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: hsl(var(--primary) / .16);
    color: hsl(var(--primary));
}

.icon-badge svg,
.trust-band svg,
.floating-note svg,
.check-list svg,
.offer-card li svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.feature-card h3,
.offer-card h3,
.article-card h3,
.article-card h2,
.contact-card h2,
.contact-form h2,
.sidebar-panel h2 {
    margin-top: 1rem;
    color: hsl(var(--foreground));
    font-size: 1.55rem;
    font-weight: 600;
}

.feature-card p,
.offer-card p,
.article-card p,
.contact-card p,
.sidebar-panel p,
.notice-card p {
    color: hsl(var(--foreground) / .66);
    font-size: .94rem;
}

.card-link,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: auto;
    color: hsl(var(--primary));
    font-size: .9rem;
    font-weight: 700;
}

.trust-band {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-block: 1px solid hsl(var(--border) / .55);
    background: hsl(var(--card) / .28);
}

.trust-band div {
    padding: 1.4rem;
    border-right: 1px solid hsl(var(--border) / .4);
}

.trust-band div:last-child {
    border-right: 0;
}

.trust-band svg {
    color: hsl(var(--primary));
}

.trust-band strong,
.trust-band span {
    display: block;
}

.trust-band strong {
    margin-top: .55rem;
    font-family: var(--font-heading);
    font-size: 1.12rem;
}

.trust-band span {
    margin-top: .2rem;
    color: hsl(var(--foreground) / .62);
    font-size: .86rem;
}

.compare-section {
    position: relative;
}

.offer-card {
    min-height: 360px;
    padding: 1.45rem;
    display: flex;
    flex-direction: column;
}

.offer-label,
.article-card span,
.category-cloud span {
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    border: 1px solid hsl(var(--primary) / .28);
    border-radius: 999px;
    background: hsl(var(--primary) / .14);
    color: hsl(var(--primary));
    padding: .35rem .7rem;
    font-size: .72rem;
    line-height: 1;
}

.offer-card ul,
.check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.25rem;
}

.offer-card li,
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    margin-top: .7rem;
    color: hsl(var(--foreground) / .72);
    font-size: .9rem;
}

.offer-card li svg,
.check-list svg {
    color: hsl(var(--primary));
}

.offer-card .primary-button {
    margin-top: auto;
}

.article-card small {
    margin-top: auto;
    color: hsl(var(--foreground) / .45);
}

.subhero {
    padding: 5rem 0 3rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 3rem;
    align-items: center;
}

.subhero.compact {
    grid-template-columns: minmax(0, 1fr);
    max-width: 900px;
    text-align: center;
}

.subhero.compact .subhero-copy {
    margin-inline: auto;
}

.subhero-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.category-cloud {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .65rem;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 1.2rem;
    align-items: start;
    padding-top: 2rem;
}

.rich-content {
    display: grid;
    gap: 1rem;
}

.content-block {
    padding: 1.6rem;
}

.content-block h2,
.article-body h2 {
    color: hsl(var(--foreground));
    font-size: 2rem;
    font-weight: 500;
}

.content-block p,
.article-body p {
    color: hsl(var(--foreground) / .72);
}

.sidebar-panel {
    position: sticky;
    top: 96px;
    padding: 1.4rem;
}

.faq-section {
    padding-bottom: 5rem;
}

.faq-list {
    display: grid;
    gap: .75rem;
}

.faq-list details {
    padding: 1rem 1.2rem;
}

.faq-list summary {
    cursor: pointer;
    color: hsl(var(--foreground));
    font-weight: 700;
}

.faq-list p {
    margin-bottom: 0;
    color: hsl(var(--foreground) / .68);
}

.article-page {
    max-width: 1180px;
    padding: 5rem 0;
}

.article-header {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
}

.article-header .text-link {
    margin: 0 auto 1.4rem;
}

.article-header h1 {
    margin-bottom: 1rem;
}

.article-header small {
    color: hsl(var(--foreground) / .5);
}

.article-body {
    margin-top: 2.5rem;
    border: 1px solid hsl(var(--border) / .55);
    border-radius: var(--radius);
    background: hsl(var(--card) / .45);
    padding: 2rem;
}

.article-insight-grid,
.guide-focus {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.article-insight-grid {
    margin-top: 2rem;
}

.article-insight-grid div,
.guide-focus-card {
    border: 1px solid hsl(var(--border) / .55);
    border-radius: var(--radius);
    background: hsl(var(--card) / .48);
    padding: 1.2rem;
}

.article-insight-grid span {
    display: block;
    color: hsl(var(--primary));
    font-size: .72rem;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.article-insight-grid strong {
    display: block;
    margin-top: .45rem;
    color: hsl(var(--foreground) / .86);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.25;
}

.guide-focus {
    padding-top: 2rem;
}

.guide-focus-card svg {
    width: 24px;
    height: 24px;
    color: hsl(var(--primary));
}

.guide-focus-card h2 {
    margin-top: .9rem;
    font-size: 1.45rem;
    font-weight: 600;
}

.guide-focus-card p {
    color: hsl(var(--foreground) / .68);
    font-size: .95rem;
}

.article-body section + section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid hsl(var(--border) / .45);
}

.lead-paragraph {
    color: hsl(var(--foreground) / .82) !important;
    font-size: 1.08rem;
}

.article-body.legal-html {
    color: hsl(var(--foreground) / .72);
    font-size: 1rem;
    line-height: 1.75;
}

.article-body.legal-html h2 {
    margin: 2.2rem 0 .85rem;
    font-size: 1.75rem;
}

.article-body.legal-html h2:first-child {
    margin-top: 0;
}

.article-body.legal-html h3 {
    margin: 1.6rem 0 .7rem;
    color: hsl(var(--foreground));
    font-size: 1.22rem;
    font-weight: 600;
}

.article-body.legal-html p {
    margin: 0 0 1rem;
}

.article-body.legal-html ul,
.article-body.legal-html ol {
    margin: .75rem 0 1.25rem;
    padding-left: 1.25rem;
}

.article-body.legal-html li + li {
    margin-top: .45rem;
}

.article-body.legal-html a {
    color: hsl(var(--primary));
    font-weight: 600;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 1.2rem;
    padding: 1rem 0 5rem;
}

.contact-card,
.contact-form {
    padding: 1.5rem;
}

.notice-card {
    margin-top: 1.5rem;
    padding: 1rem;
    background: hsl(var(--primary) / .1);
    border-color: hsl(var(--primary) / .25);
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: .35rem;
    color: hsl(var(--foreground) / .78);
    font-size: .9rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background: hsl(var(--background) / .7);
    color: hsl(var(--foreground));
    padding: .85rem 1rem;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 170px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary) / .14);
}

.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-success,
.form-errors {
    border-radius: var(--radius);
    padding: .9rem 1rem;
}

.form-success {
    background: hsl(145 45% 28% / .45);
    color: hsl(135 60% 88%);
}

.form-errors {
    background: hsl(0 50% 35% / .42);
    color: hsl(0 80% 92%);
}

.form-errors p {
    margin: .1rem 0;
}

.sitemap-list {
    display: grid;
    gap: .7rem;
    margin-top: 2rem;
}

.sitemap-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid hsl(var(--border) / .55);
    border-radius: var(--radius);
    background: hsl(var(--card) / .48);
    padding: .9rem 1rem;
    color: hsl(var(--foreground) / .84);
}

.sitemap-list svg {
    width: 18px;
    color: hsl(var(--primary));
}

.site-footer {
    border-top: 1px solid hsl(var(--border) / .55);
    background: hsl(264 42% 18% / .65);
}

.footer-inner,
.footer-bottom {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.footer-inner {
    padding: 2.4rem 0;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 2rem;
}

.footer-brand p,
.footer-bottom p {
    color: hsl(var(--foreground) / .48);
    font-size: .86rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1.35fr;
    gap: 1.4rem;
}

.footer-columns nav {
    display: grid;
    align-content: start;
    gap: .55rem;
}

.footer-columns h3 {
    margin: 0 0 .35rem;
    color: hsl(var(--primary));
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
}

.footer-columns a {
    color: hsl(var(--foreground) / .6);
    font-size: .86rem;
}

.footer-columns a:hover,
.footer-bottom a:hover {
    color: hsl(var(--primary));
}

.footer-bottom {
    padding: 1rem 0 1.4rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid hsl(var(--border) / .35);
}

.footer-bottom a {
    color: hsl(var(--foreground) / .56);
    font-size: .86rem;
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 30;
    width: min(760px, calc(100% - 2rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    background: hsl(var(--card) / .96);
    padding: 1rem;
    box-shadow: var(--shadow-soft);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner strong {
    display: block;
    margin-bottom: .15rem;
}

.cookie-banner p {
    margin: 0;
    color: hsl(var(--foreground) / .66);
    font-size: .86rem;
}

.cookie-actions {
    display: flex;
    gap: .6rem;
    flex: 0 0 auto;
}

@media (max-width: 1020px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .mobile-menu.is-open {
        display: grid;
        gap: .8rem;
    }

    .hero,
    .subhero,
    .content-layout,
    .contact-layout,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        gap: 2.4rem;
        padding-top: 3.5rem;
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .hero-visual img {
        height: 420px;
    }

    .feature-grid,
    .offer-grid,
    .article-grid,
    .article-grid.wide,
    .article-insight-grid,
    .guide-focus {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .trust-band div:nth-child(2) {
        border-right: 0;
    }

    .sidebar-panel {
        position: static;
    }

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

@media (max-width: 700px) {
    .nav-shell,
    .hero,
    .subhero,
    .section,
    .trust-band,
    .content-layout,
    .contact-layout,
    .article-page,
    .footer-inner,
    .footer-bottom,
    .mobile-menu {
        width: min(100% - 1rem, 1180px);
    }

    .brand-name {
        font-size: .92rem;
    }

    .brand-subtitle {
        display: none;
    }

    .hero {
        padding-top: 2.6rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-heading h2,
    .subhero h1,
    .article-header h1 {
        font-size: 2.4rem;
    }

    .hero-actions,
    .split-heading,
    .footer-bottom,
    .cookie-banner {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .primary-button,
    .hero-actions .secondary-button {
        width: 100%;
    }

    .hero-metrics,
    .feature-grid,
    .offer-grid,
    .article-grid,
    .article-grid.wide,
    .article-insight-grid,
    .guide-focus,
    .footer-columns,
    .trust-band {
        grid-template-columns: 1fr;
    }

    .hero-visual img,
    .subhero-image img {
        height: 320px;
    }

    .trust-band div {
        border-right: 0;
        border-bottom: 1px solid hsl(var(--border) / .35);
    }

    .trust-band div:last-child {
        border-bottom: 0;
    }

    .content-block,
    .article-body,
    .contact-card,
    .contact-form {
        padding: 1.1rem;
    }

    .cookie-banner {
        left: .5rem;
        right: .5rem;
        width: auto;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions button {
        width: 100%;
    }
}
