:root {
    --plum-900: #4b3043;
    --plum-700: #76536a;
    --plum-500: #9a6d89;
    --mauve-300: #c9a1bb;
    --blush-200: #f1dce4;
    --blush-100: #faeef2;
    --peach-100: #f9eee8;
    --lilac-100: #f2edf7;
    --sage-100: #edf3ef;
    --rose-200: #ddbdcf;
    --paper: #fffdfb;
    --ink: #332d31;
    --muted: #6f676c;
    --line: rgba(91, 61, 80, .14);
    --shadow: 0 22px 65px rgba(63, 42, 55, .11);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

.section-shell {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.glass-panel {
    background: rgba(255, 253, 251, .78);
    border: 1px solid rgba(255, 255, 255, .72);
    box-shadow: var(--shadow);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.site-header {
    position: sticky;
    top: 14px;
    z-index: 20;
    width: min(1180px, calc(100% - 40px));
    min-height: 68px;
    margin: 14px auto 0;
    padding: 10px 12px 10px 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 18px;
    background: rgba(255, 253, 251, .82);
    box-shadow: 0 12px 34px rgba(65, 43, 57, .09);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.brand {
    display: inline-block;
    color: var(--plum-900);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-decoration: none;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 3vw, 34px);
}

.site-nav a {
    color: var(--muted);
    font-size: .92rem;
    font-weight: 650;
    text-decoration: none;
}

.site-nav a:hover {
    color: var(--plum-900);
}

.header-cta {
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--plum-900);
    color: white;
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    display: none;
    place-items: center;
    align-content: center;
    gap: 5px;
    border: 1px solid rgba(118, 83, 106, .18);
    border-radius: 12px;
    background: rgba(255, 255, 255, .55);
    color: var(--plum-900);
    cursor: pointer;
}

.menu-toggle span {
    width: 19px;
    height: 2px;
    display: block;
    border-radius: 2px;
    background: currentColor;
    transition: transform .22s ease, opacity .18s ease;
}

.menu-toggle:focus-visible {
    outline: 3px solid rgba(154, 109, 137, .28);
    outline-offset: 2px;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    min-height: min(770px, calc(100vh - 95px));
    padding-block: clamp(54px, 8vw, 110px);
    display: flex;
    align-items: center;
}

.hero-card {
    width: 100%;
    min-height: 600px;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
    align-items: stretch;
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 14%, rgba(240, 205, 219, .58), transparent 32%),
        radial-gradient(circle at 12% 88%, rgba(222, 205, 232, .45), transparent 33%),
        rgba(255, 251, 249, .81);
}

.hero-card::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: 34%;
    bottom: -105px;
    border-radius: 50%;
    background: rgba(235, 190, 208, .22);
    filter: blur(2px);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 1;
    padding: clamp(32px, 5vw, 66px);
    align-self: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--plum-700);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

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

h1,
h2 {
    color: var(--plum-900);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

h1 {
    margin-bottom: 25px;
    font-size: clamp(2.7rem, 5.6vw, 5.6rem);
    line-height: .98;
    letter-spacing: -.045em;
}

h1 em {
    color: var(--plum-500);
    font-weight: 400;
}

.hero-lead {
    max-width: 650px;
    margin-bottom: 14px;
    color: #4d474b;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero-promise {
    margin-bottom: 30px;
    color: var(--plum-700);
    font-weight: 700;
}

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

.button {
    display: inline-flex;
    min-height: 50px;
    padding: 12px 21px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 750;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--plum-900);
    color: white;
    box-shadow: 0 10px 25px rgba(75, 48, 67, .2);
}

.button-primary:hover {
    background: #382330;
}

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .5);
    color: var(--plum-900);
}

.hero-art {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(250, 233, 239, .48), rgba(245, 237, 247, .2)),
        rgba(255, 252, 249, .4);
    border-left: 1px solid rgba(154, 109, 137, .11);
}

.hero-art::before {
    content: "";
    position: absolute;
    inset: 8% 7%;
    z-index: 1;
    border: 1px solid rgba(154, 109, 137, .12);
    border-radius: 48% 52% 46% 54% / 54% 43% 57% 46%;
    background: rgba(255, 255, 255, .22);
}

.hero-art img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 2;
    object-fit: contain;
    object-position: center;
    opacity: .78;
    mix-blend-mode: multiply;
    transform: scale(.84);
}

.content-section {
    padding-block: clamp(72px, 9vw, 120px);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.03;
    letter-spacing: -.03em;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.08rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.benefit-card {
    grid-column: span 2;
    min-height: 250px;
    padding: 27px;
    border-radius: 22px;
    transition: transform .25s ease, background .25s ease;
}

.benefit-card:nth-child(1) {
    background: rgba(250, 238, 242, .82);
}

.benefit-card:nth-child(2) {
    background: rgba(242, 237, 247, .82);
}

.benefit-card:nth-child(3) {
    background: rgba(249, 238, 232, .82);
}

.benefit-card:nth-child(4) {
    background: rgba(237, 243, 239, .82);
}

.benefit-card:nth-child(5) {
    background: rgba(245, 231, 239, .84);
}

.benefit-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 253, 251, .9);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(117, 83, 105, .18);
    border-radius: 15px;
    background: rgba(255, 255, 255, .48);
    color: var(--plum-700);
}

.benefit-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card h3 {
    margin: 30px 0 10px;
    color: var(--plum-900);
    font-size: 1.18rem;
}

.benefit-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.process-section {
    border-block: 1px solid rgba(117, 83, 105, .1);
    background:
        linear-gradient(115deg, rgba(250, 238, 242, .58), rgba(242, 237, 247, .48)),
        rgba(255, 253, 251, .35);
}

.process-grid {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    list-style: none;
}

.process-card {
    grid-column: span 2;
    min-height: 250px;
    padding: 27px;
    border-radius: 22px;
    transition: transform .25s ease, background .25s ease;
}

.process-card:nth-child(1) {
    background: rgba(250, 238, 242, .84);
}

.process-card:nth-child(2) {
    background: rgba(242, 237, 247, .84);
}

.process-card:nth-child(3) {
    background: rgba(249, 238, 232, .84);
}

.process-card:nth-child(4) {
    grid-column: 2 / span 2;
    background: rgba(237, 243, 239, .84);
}

.process-card:nth-child(5) {
    background: rgba(245, 231, 239, .86);
}

.process-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 250, 251, .94);
}

.process-card h3 {
    margin: 30px 0 10px;
    color: var(--plum-900);
    font-size: 1.18rem;
}

.process-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 22px;
    align-items: stretch;
}

.event-card {
    min-height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 253, 251, .92), rgba(249, 236, 242, .78));
    transition: transform .25s ease, box-shadow .25s ease;
}

.event-card:nth-child(2n) {
    background:
        linear-gradient(145deg, rgba(255, 253, 251, .92), rgba(242, 237, 247, .8));
}

.event-card:nth-child(3n) {
    background:
        linear-gradient(145deg, rgba(255, 253, 251, .92), rgba(249, 238, 232, .8));
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 75px rgba(63, 42, 55, .15);
}

.event-card-header {
    min-height: 145px;
    padding: 27px 28px 23px;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 92% 0%, rgba(221, 189, 207, .5), transparent 45%),
        rgba(255, 255, 255, .28);
}

.event-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(117, 83, 105, .16);
    border-radius: 15px;
    background: rgba(255, 255, 255, .55);
    color: var(--plum-700);
}

.event-icon svg,
.event-details svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.event-icon svg {
    width: 29px;
    height: 29px;
}

.event-date {
    margin: 2px 0 7px;
    color: var(--plum-500);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .11em;
}

.event-card h3 {
    margin-bottom: 0;
    color: var(--plum-900);
    font-family: Georgia, serif;
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
    font-weight: 500;
    line-height: 1.12;
}

.event-details {
    margin: 0;
    padding: 18px 28px 0;
}

.event-details div {
    padding-block: 10px;
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 12px;
    align-items: start;
    border-bottom: 1px solid var(--line);
}

.event-details dt {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
}

.event-details dt svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--plum-500);
}

.event-details dd {
    margin: 0;
    color: #494247;
}

.event-description {
    margin: 20px 28px 10px;
    color: var(--muted);
    font-style: italic;
}

.event-price-row {
    margin: 12px 28px 20px;
    padding: 17px 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid var(--line);
}

.event-price-row span {
    color: var(--muted);
    font-size: .84rem;
    font-weight: 700;
}

.event-price-row strong {
    color: var(--plum-900);
    font-family: Georgia, serif;
    font-size: 1.8rem;
    font-weight: 500;
}

.availability {
    padding-inline: 28px;
}

.availability-title {
    margin-bottom: 13px;
    color: var(--plum-700);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.availability-row {
    margin-bottom: 14px;
}

.availability-row > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: .88rem;
}

.progress {
    height: 7px;
    margin-top: 6px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(91, 61, 80, .1);
}

.fill {
    height: 100%;
    display: block;
    border-radius: inherit;
}

.tone-green { color: #337647; }
.tone-orange { color: #a66524; }
.tone-red { color: #a83e42; }
.tone-bg-green { background: #75b783; }
.tone-bg-orange { background: #d99b58; }
.tone-bg-red { background: #c8666a; }

.event-button {
    width: auto;
    margin: auto 28px 28px;
}

.empty-state {
    padding: 48px;
    border-radius: 24px;
    text-align: center;
}

.empty-state h3 {
    color: var(--plum-900);
    font-family: Georgia, serif;
    font-size: 1.7rem;
}

.empty-state p {
    margin-bottom: 0;
    color: var(--muted);
}

.contact-section {
    padding-block: clamp(50px, 8vw, 105px);
}

.contact-panel {
    position: relative;
    padding: clamp(32px, 5vw, 64px);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(30px, 6vw, 75px);
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(circle at 5% 100%, rgba(201, 161, 187, .28), transparent 36%),
        radial-gradient(circle at 100% 0%, rgba(242, 222, 231, .76), transparent 42%),
        rgba(255, 252, 250, .82);
}

.contact-panel::after {
    content: "";
    width: 180px;
    height: 180px;
    position: absolute;
    right: -65px;
    bottom: -85px;
    border-radius: 50%;
    background: rgba(222, 205, 232, .34);
    pointer-events: none;
}

.contact-copy {
    position: relative;
    z-index: 1;
}

.contact-copy h2 {
    max-width: 650px;
    margin-bottom: 18px;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.03;
    letter-spacing: -.03em;
}

.contact-copy > p {
    max-width: 650px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 1.05rem;
}

.contact-copy .button {
    gap: 10px;
}

.contact-copy .button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-address {
    margin-left: 14px;
    color: var(--plum-700);
    font-size: .9rem;
    font-weight: 700;
}

.contact-assurances {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: center;
    gap: 16px;
}

.assurance-card {
    padding: 22px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 20px;
    background: rgba(255, 255, 255, .48);
    box-shadow: 0 14px 35px rgba(70, 47, 61, .07);
}

.assurance-card:nth-child(2) {
    background: rgba(242, 237, 247, .58);
}

.assurance-card h3 {
    margin: 3px 0 6px;
    color: var(--plum-900);
    font-size: 1.05rem;
}

.assurance-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: .92rem;
}

.site-footer {
    width: min(1180px, calc(100% - 40px));
    margin: 10px auto 28px;
}

.footer-panel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 8% 15%, rgba(241, 220, 228, .72), transparent 30%),
        radial-gradient(circle at 92% 80%, rgba(229, 213, 237, .58), transparent 32%),
        rgba(255, 253, 251, .79);
}

.footer-panel::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -78px;
    width: 210px;
    height: 210px;
    border: 38px solid rgba(201, 161, 187, .12);
    border-radius: 50%;
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 1;
    padding: clamp(34px, 5vw, 58px);
    display: grid;
    grid-template-columns: minmax(250px, 1.45fr) minmax(130px, .7fr) minmax(210px, 1fr) minmax(230px, 1fr);
    gap: clamp(28px, 4vw, 58px);
}

.footer-brand p {
    max-width: 340px;
    margin: 17px 0 20px;
    color: var(--muted);
    font-size: .95rem;
}

.footer-wordmark {
    color: var(--plum-900);
    font-size: 1.08rem;
    font-weight: 850;
    letter-spacing: .2em;
    text-decoration: none;
}

.footer-email {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    color: var(--plum-700);
    font-size: .9rem;
    font-weight: 750;
    text-decoration: none;
}

.footer-email svg,
.footer-note-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h2,
.footer-note h2 {
    margin: 0 0 8px;
    color: var(--plum-900);
    font-family: inherit;
    font-size: .79rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-column a {
    position: relative;
    color: var(--muted);
    font-size: .9rem;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-email:hover,
.footer-email:focus-visible {
    color: var(--plum-900);
}

.footer-column a:hover {
    transform: translateX(3px);
}

.footer-note {
    align-self: start;
    padding: 20px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, .76);
    border-radius: 20px;
    background: rgba(255, 255, 255, .44);
}

.footer-note-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--plum-700);
    border: 1px solid rgba(154, 109, 137, .18);
    border-radius: 13px;
    background: rgba(255, 255, 255, .56);
}

.footer-note h2 {
    margin: 2px 0 7px;
    letter-spacing: .04em;
    text-transform: none;
}

.footer-note p {
    margin: 0;
    color: var(--muted);
    font-size: .87rem;
    line-height: 1.55;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 18px clamp(34px, 5vw, 58px);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .8rem;
}

@media (max-width: 900px) {
    .site-header {
        position: sticky;
        grid-template-columns: 1fr auto;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: min(340px, calc(100vw - 24px));
        padding: 12px;
        display: grid;
        justify-content: stretch;
        gap: 4px;
        border: 1px solid rgba(255, 255, 255, .75);
        border-radius: 18px;
        background:
            radial-gradient(circle at 92% 12%, rgba(241, 220, 228, .7), transparent 42%),
            rgba(255, 253, 251, .94);
        box-shadow: 0 20px 48px rgba(65, 43, 57, .16);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-9px) scale(.98);
        transform-origin: top right;
        pointer-events: none;
        transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    }

    .site-nav a {
        padding: 11px 13px;
        border-radius: 11px;
        font-size: .94rem;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
        background: rgba(241, 220, 228, .58);
        outline: none;
    }

    .site-nav .nav-events {
        color: white;
        background: var(--plum-900);
    }

    .site-nav .nav-events:hover,
    .site-nav .nav-events:focus-visible {
        color: white;
        background: var(--plum-700);
    }

    .site-header.menu-open .site-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .menu-toggle {
        display: grid;
    }

    .hero {
        display: block;
    }

    .hero-card {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .hero-art {
        min-height: 410px;
        border-top: 1px solid rgba(154, 109, 137, .11);
        border-left: 0;
    }

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

    .benefit-card,
    .benefit-card:nth-child(4) {
        grid-column: auto;
    }

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

    .process-card,
    .process-card:nth-child(4) {
        grid-column: auto;
    }

    .contact-panel {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1.25fr .75fr .95fr;
    }

    .footer-note {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .section-shell,
    .site-header,
    .site-footer {
        width: min(100% - 24px, 1180px);
    }

    .site-header {
        top: 8px;
        margin-top: 8px;
        padding-left: 13px;
    }

    .brand {
        font-size: .75rem;
        letter-spacing: .1em;
    }

    .header-cta {
        padding: 8px 11px;
        font-size: .8rem;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding-block: 38px 70px;
    }

    .hero-copy {
        padding: 29px 23px;
        border-radius: 23px;
    }

    h1 {
        font-size: clamp(2.45rem, 14vw, 4rem);
    }

    .hero-card {
        border-radius: 23px;
    }

    .hero-art {
        min-height: 320px;
    }

    .benefit-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        min-height: auto;
    }

    .process-card {
        min-height: auto;
    }

    .contact-panel {
        padding: 29px 23px;
        border-radius: 23px;
    }

    .contact-address {
        display: block;
        margin: 13px 0 0;
    }

    .assurance-card {
        padding: 19px;
    }

    .site-footer {
        margin-bottom: 12px;
    }

    .footer-panel {
        border-radius: 23px;
    }

    .footer-main {
        padding: 31px 24px;
        grid-template-columns: 1fr 1fr;
        gap: 30px 22px;
    }

    .footer-brand,
    .footer-note {
        grid-column: 1 / -1;
    }

    .footer-column h2 {
        margin-bottom: 4px;
    }

    .footer-bottom {
        padding: 18px 24px 22px;
        flex-direction: column;
        gap: 5px;
    }
}

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

    .site-nav {
        width: calc(100vw - 24px);
    }
}

@media (max-width: 410px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-note {
        grid-column: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}
