:root {
    --green-900: #0b2617;
    --green-800: #0e4d28;
    --green-700: #16643a;
    --gold-500: #c8a100;
    --gold-400: #dec469;
    --cream-100: #f7f3ea;
    --white: #ffffff;
    --ink-900: #101717;
    --ink-700: #4f5d59;
    --ink-500: #76827d;
    --border-soft: rgba(14, 77, 40, 0.08);
    --shadow-soft: 0 28px 60px rgba(11, 38, 23, 0.12);
    --shadow-card: 0 20px 40px rgba(7, 26, 15, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --container: min(1180px, calc(100vw - 48px));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink-900);
    background: var(--white);
    line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

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

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    padding: 18px 0;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(12, 33, 20, 0.09);
    backdrop-filter: blur(14px);
    padding: 14px 0;
}

.nav-shell,
.footer-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-shell {
    padding: 18px 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.is-scrolled .nav-shell {
    padding: 0;
    background: transparent;
}

.brand-logo {
    height: 48px;
    width: auto;
}

.desktop-nav,
.footer-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a,
.footer-links a {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: color 0.25s ease;
}

.site-header .desktop-nav a {
    color: rgba(255, 255, 255, 0.92);
}

.site-header.is-scrolled .desktop-nav a {
    color: var(--green-800);
}

.desktop-nav a:hover,
.footer-links a:hover {
    color: var(--gold-500);
}

.desktop-nav a.is-active,
.mobile-nav a.is-active {
    color: var(--gold-500);
}

.desktop-nav a.is-active {
    text-shadow: 0 0 18px rgba(200, 161, 0, 0.18);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.button-gold {
    background: linear-gradient(135deg, #d8b850, var(--gold-500));
    color: var(--green-900);
    box-shadow: 0 16px 30px rgba(200, 161, 0, 0.26);
}

.button-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--white);
    backdrop-filter: blur(14px);
}

.button-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.button-icon,
.inline-icon,
.service-icon svg,
.principle-icon svg,
.contact-icon svg,
.menu-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.menu-toggle {
    display: none;
    background: transparent;
    color: var(--white);
    border: 0;
    padding: 8px;
    cursor: pointer;
}

.site-header.is-scrolled .menu-toggle {
    color: var(--green-800);
}

.menu-close {
    display: none;
}

.site-header.menu-open .menu-open {
    display: none;
}

.site-header.menu-open .menu-close {
    display: block;
}

.mobile-nav {
    display: none;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f2e1d;
}

.hero-media,
.hero-media img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(10, 73, 39, 0.92) 0%, rgba(10, 73, 39, 0.72) 42%, rgba(10, 73, 39, 0.18) 100%),
        radial-gradient(circle at top left, rgba(222, 196, 105, 0.14), transparent 35%);
}

.hero::after,
.pattern-light::before,
.pattern-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(30deg, rgba(200, 161, 0, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(200, 161, 0, 0.05) 87.5%, rgba(200, 161, 0, 0.05)),
        linear-gradient(150deg, rgba(200, 161, 0, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(200, 161, 0, 0.05) 87.5%, rgba(200, 161, 0, 0.05)),
        linear-gradient(90deg, rgba(200, 161, 0, 0.04) 2%, transparent 2.5%, transparent 97%, rgba(200, 161, 0, 0.04) 97.5%, rgba(200, 161, 0, 0.04));
    background-size: 52px 90px;
    opacity: 0.55;
}

.pattern-light,
.pattern-dark {
    position: relative;
    overflow: hidden;
}

.pattern-dark::before {
    background-image:
        linear-gradient(30deg, rgba(255, 255, 255, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.04) 87.5%, rgba(255, 255, 255, 0.04)),
        linear-gradient(150deg, rgba(255, 255, 255, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.04) 87.5%, rgba(255, 255, 255, 0.04));
}

.hero-content,
.section,
.site-footer {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: end;
    padding: 154px 0 46px;
}

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

.eyebrow {
    margin: 0 0 20px;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.eyebrow.gold {
    color: var(--gold-500);
}

h1,
h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    line-height: 0.97;
}

h1 {
    font-size: clamp(3rem, 5.5vw, 5.1rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--white);
    max-width: 10.4ch;
    line-height: 0.92;
}

h1 span {
    display: block;
}

h1 em {
    color: var(--gold-500);
    font-style: italic;
}

h2 {
    font-size: clamp(2.4rem, 4.8vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--green-800);
    margin-bottom: 24px;
}

h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
    letter-spacing: -0.03em;
}

.section-dark h2 {
    color: var(--white);
}

.section-slogan {
    display: inline-block;
    margin: -8px 0 24px;
    padding: 8px 14px;
    border-left: 3px solid var(--gold-500);
    background: rgba(200, 161, 0, 0.08);
    color: var(--green-800);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.35;
}

.centered .section-slogan {
    border-left: 0;
    border-bottom: 3px solid var(--gold-500);
}

.section-dark .section-slogan {
    background: rgba(222, 196, 105, 0.12);
    color: var(--gold-500);
}

.hero-text,
.lead,
.section-heading p,
.service-card p,
.principle-item p,
.contact-copy p,
.footer-copy {
    color: var(--ink-700);
    font-size: 1.06rem;
}

.section-heading .section-slogan,
.contact-copy .section-slogan {
    color: var(--green-800);
    font-size: 0.92rem;
}

.section-dark .section-slogan,
.section-dark .contact-copy .section-slogan {
    color: var(--gold-500);
}

.hero-text {
    color: rgba(241, 244, 242, 0.88);
    max-width: 640px;
    margin: 22px 0 34px;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.65;
}

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

.hero-stats {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 14px;
    align-self: end;
    padding-bottom: 10px;
}

.stat-card {
    min-width: 0;
    width: 140px;
    padding: 16px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(14px);
}

.stat-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--white);
    font-size: 1.55rem;
    letter-spacing: -0.04em;
}

.stat-card span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.section {
    padding: 100px 0;
}

.section-light {
    background: linear-gradient(180deg, #fbfbf8, var(--cream-100));
}

.section-dark {
    background:
        radial-gradient(circle at top left, rgba(222, 196, 105, 0.11), transparent 28%),
        linear-gradient(135deg, var(--green-900), var(--green-800));
}

.centered {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

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

.service-card,
.contact-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow-soft);
}

.service-card {
    padding: 30px 28px;
    border-radius: var(--radius-xl);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 48px rgba(7, 26, 15, 0.16);
}

.service-icon,
.principle-icon,
.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.service-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 24px;
    color: var(--white);
}

.service-icon.green {
    background: var(--green-800);
}

.service-icon.gold {
    background: var(--gold-500);
}

.service-card h3,
.contact-card h3,
.principle-item h3,
.faq-card h3 {
    margin: 0 0 12px;
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--green-800);
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--gold-500);
    font-weight: 800;
}

.split-layout,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px;
    align-items: center;
}

.about-section {
    overflow: hidden;
}

.about-premium {
    display: grid;
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
    gap: 64px;
    align-items: center;
}

.media-stack {
    position: relative;
    padding: 22px;
}

.about-media {
    align-self: stretch;
    min-height: 100%;
}

.media-frame {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 42px;
    box-shadow: 0 34px 70px rgba(11, 38, 23, 0.2);
}

.about-image-frame {
    height: 100%;
    min-height: 620px;
    border-radius: 34px;
}

.about-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 35, 19, 0.02) 35%, rgba(7, 35, 19, 0.62) 100%);
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-note {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 3;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 46px rgba(7, 26, 15, 0.22);
    backdrop-filter: blur(14px);
}

.about-image-note span,
.about-image-note strong {
    display: block;
}

.about-image-note span {
    margin-bottom: 6px;
    color: var(--gold-500);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about-image-note strong {
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1.25;
}

.media-accent {
    position: absolute;
    border-radius: 42px;
}

.media-accent-gold {
    right: -8px;
    bottom: -8px;
    width: 36%;
    height: 44%;
    background: linear-gradient(145deg, #e2cb80, var(--gold-500));
}

.media-accent-outline {
    top: -4px;
    left: -4px;
    width: 28%;
    height: 34%;
    border: 10px solid rgba(14, 77, 40, 0.1);
}

.lead {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.75;
}

.about-content {
    display: grid;
    gap: 28px;
    padding: 44px 0;
}

.about-heading h2 {
    max-width: 10ch;
}

.about-copy {
    display: grid;
    gap: 15px;
    max-width: 760px;
}

.about-lead {
    padding: 24px 26px;
    border-left: 4px solid var(--gold-500);
    background: linear-gradient(135deg, rgba(200, 161, 0, 0.09), rgba(14, 77, 40, 0.04));
    color: var(--green-800);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.7;
}

.about-copy p {
    margin: 0;
    color: var(--ink-700);
    line-height: 1.8;
}

.about-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.about-panel {
    padding: 24px;
    border-top: 3px solid var(--gold-500);
    background: linear-gradient(180deg, #fff, #fbfcfa);
    border-right: 1px solid rgba(14, 77, 40, 0.08);
    border-bottom: 1px solid rgba(14, 77, 40, 0.08);
    border-left: 1px solid rgba(14, 77, 40, 0.08);
    box-shadow: 0 18px 42px rgba(11, 38, 23, 0.09);
}

.about-panel-wide {
    grid-column: 1 / -1;
}

.about-panel h3 {
    margin: 0 0 14px;
    color: var(--green-800);
    font-size: 1.1rem;
}

.about-list {
    margin: 0;
    padding-left: 18px;
    color: var(--ink-700);
}

.about-list li + li {
    margin-top: 10px;
}

.about-copy-closing {
    padding-top: 4px;
}

.principles {
    display: grid;
    gap: 24px;
}

.principle-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
}

.principle-icon {
    width: 52px;
    height: 52px;
    color: var(--gold-500);
    background: rgba(200, 161, 0, 0.1);
}

.contact-copy .subtle,
.contact-copy .lead,
.contact-item span,
.contact-item p {
    color: rgba(255, 255, 255, 0.72);
}

.contact-list {
    display: grid;
    gap: 22px;
    margin-top: 42px;
}

.contact-item {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 18px;
    align-items: center;
}

.contact-icon {
    width: 58px;
    height: 58px;
    color: var(--gold-500);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item span {
    display: block;
    margin-bottom: 4px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-item a,
.contact-item p {
    margin: 0;
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 700;
}

.contact-card {
    padding: 34px;
    border-radius: 40px;
}

.alert {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 0.96rem;
    font-weight: 700;
}

.alert-success {
    background: rgba(14, 77, 40, 0.08);
    color: var(--green-800);
}

.alert-error {
    background: rgba(168, 36, 36, 0.09);
    color: #9a2222;
}

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

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.field-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.field label {
    font-size: 0.8rem;
    color: var(--ink-500);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid #dde6df;
    background: #f7faf7;
    border-radius: 16px;
    padding: 14px 16px;
    color: var(--green-900);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(200, 161, 0, 0.65);
    box-shadow: 0 0 0 4px rgba(200, 161, 0, 0.12);
    background: var(--white);
}

.field textarea {
    resize: vertical;
    min-height: 140px;
}

.field-error {
    color: #ab2b2b;
    font-weight: 700;
}

.site-footer {
    background: #07110c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 28px 0;
}

.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.legal-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.legal-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 13, 9, 0.72);
    backdrop-filter: blur(8px);
}

.legal-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: min(86vh, 900px);
    overflow: auto;
    padding: 34px 32px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(6, 18, 11, 0.28);
}

.legal-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(14, 77, 40, 0.08);
    color: var(--green-800);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.legal-modal__eyebrow {
    margin: 0 0 10px;
    color: var(--gold-500);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.legal-modal__updated {
    margin: 10px 0 18px;
    color: var(--ink-500);
    font-size: 0.9rem;
    font-weight: 700;
}

.legal-modal__intro {
    margin: 0 0 22px;
    color: var(--ink-700);
    line-height: 1.75;
}

.legal-modal__content {
    display: grid;
    gap: 18px;
}

.legal-modal__section {
    padding: 18px 20px;
    border-radius: 20px;
    background: #f8fbf8;
    border: 1px solid rgba(14, 77, 40, 0.08);
}

.legal-modal__section h3 {
    margin: 0 0 8px;
}

.legal-modal__section p {
    margin: 0;
    color: var(--ink-700);
}

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

.faq-card {
    padding: 28px 26px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(14, 77, 40, 0.08);
    box-shadow: 0 18px 42px rgba(11, 38, 23, 0.08);
}

.faq-card p {
    margin: 0;
    color: var(--ink-700);
}

.footer-brand img {
    height: 42px;
    width: auto;
    opacity: 0.8;
}

.footer-links a,
.footer-copy {
    color: rgba(255, 255, 255, 0.48);
}

.footer-copy {
    margin: 0;
    font-size: 0.92rem;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .location-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }

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

    .about-premium {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-content {
        padding: 0;
    }

    .about-image-frame {
        min-height: 520px;
    }

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

    .hero-stats {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 760px) {
    :root {
        --container: min(100vw - 28px, 1180px);
    }

    .site-header {
        padding: 14px 0;
    }

    .nav-shell {
        padding: 14px 18px;
    }

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

    .menu-toggle {
        display: inline-flex;
    }

    .site-header.menu-open .mobile-nav {
        display: grid;
    }

    .mobile-nav {
        gap: 14px;
        padding: 18px 22px 22px;
        margin: 10px auto 0;
        width: var(--container);
        background: rgba(255, 255, 255, 0.98);
        border-radius: 28px;
        box-shadow: var(--shadow-soft);
    }

    .mobile-nav a {
        color: var(--green-800);
        font-weight: 800;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(14, 77, 40, 0.08);
    }

    .mobile-nav a.is-active {
        color: var(--gold-500);
        border-bottom-color: rgba(200, 161, 0, 0.35);
    }

    .mobile-nav .mobile-cta {
        margin-top: 6px;
        border-bottom: 0;
    }

    .hero-content {
        padding-top: 126px;
    }

    h1 {
        max-width: 10.4ch;
    }

    .service-grid,
    .form-grid,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .footer-shell,
    .footer-links {
        flex-direction: column;
        text-align: center;
    }

    .contact-card,
    .service-card {
        padding: 28px 22px;
    }

    .about-media {
        padding: 14px;
    }

    .about-image-frame {
        min-height: 390px;
        border-radius: 26px;
    }

    .about-image-note {
        right: 16px;
        bottom: 16px;
        left: 16px;
        padding: 16px 18px;
    }

    .about-lead,
    .about-panel {
        padding: 22px 20px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .legal-modal {
        padding: 14px;
    }

    .legal-modal__dialog {
        padding: 28px 20px 22px;
        border-radius: 24px;
    }
}
