@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600;700;800&display=swap');

:root {
    --text: #2d1b2e;
    --muted: #8b5a8e;
    --line: rgba(168, 85, 247, 0.18);
    --primary: #a855f7;
    --primary-deep: #7c3aed;
    --secondary: #ec4899;
    --success: #21785d;
    --danger: #b74358;
    --shadow-soft: 0 22px 48px rgba(121, 77, 147, 0.12);
    --shadow-strong: 0 30px 80px rgba(109, 55, 129, 0.16);
    --radius-m: 24px;
    --radius-l: 32px;
    --shell: min(1180px, calc(100vw - 2.4rem));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    line-height: 1.65;
    background:
        radial-gradient(circle at top left, rgba(252, 231, 243, 0.96), transparent 28%),
        radial-gradient(circle at top right, rgba(233, 213, 255, 0.82), transparent 30%),
        linear-gradient(180deg, #fdf7fc 0%, #fcf2fb 48%, #fffdfd 100%);
}

body::before,
body::after {
    content: '';
    position: fixed;
    z-index: -1;
    width: 22rem;
    height: 22rem;
    border-radius: 999px;
    filter: blur(42px);
    opacity: 0.45;
    pointer-events: none;
}

body::before {
    top: -8rem;
    left: -6rem;
    background: rgba(236, 72, 153, 0.22);
}

body::after {
    right: -8rem;
    bottom: -10rem;
    background: rgba(168, 85, 247, 0.22);
}

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

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

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

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

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    line-height: 1.06;
    letter-spacing: -0.03em;
}

p,
ul,
ol,
figure {
    margin: 0;
}

ul,
ol {
    padding: 0;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.eyebrow {
    margin-bottom: 1rem;
    color: var(--primary-deep);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.lead,
.rich-text,
.card__body p,
.contact-info__panel,
.legal-content__inner {
    color: var(--muted);
}

.lead {
    max-width: 40rem;
    font-size: 1.08rem;
}

.lead p + p,
.rich-text p + p,
.rich-text ul + p,
.rich-text p + ul {
    margin-top: 1rem;
}

.rich-text ul {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.rich-text ul li {
    position: relative;
    padding-left: 1.35rem;
}

.rich-text ul li::before {
    content: '';
    position: absolute;
    top: 0.7rem;
    left: 0;
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 0 0.28rem rgba(200, 96, 150, 0.12);
}

.button,
.site-header__cta,
.site-mobile-nav__cta,
.contact-form button,
.admin-auth__form button,
.admin-auth__secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 3.3rem;
    padding: 0.9rem 1.45rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.site-header__cta:hover,
.site-mobile-nav__cta:hover,
.contact-form button:hover,
.admin-auth__form button:hover,
.admin-auth__secondary:hover {
    transform: translateY(-2px);
}

.button--primary,
.site-header__cta,
.contact-form button,
.admin-auth__form button {
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 18px 36px rgba(140, 79, 121, 0.24);
}

.button--secondary,
.site-mobile-nav__cta,
.admin-auth__secondary {
    color: var(--text);
    border-color: rgba(143, 104, 127, 0.22);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 28px rgba(111, 77, 95, 0.1);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.35rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 0.65rem 0;
    backdrop-filter: blur(18px);
    background: rgba(255, 249, 252, 0.72);
    border-bottom: 1px solid rgba(158, 123, 143, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 3.25rem;
}

.site-brand,
.site-brand--footer {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.site-brand__logo {
    width: 2.35rem;
    height: 2.35rem;
    object-fit: contain;
}

.site-brand__text {
    font-family: 'Playfair Display', serif;
    font-size: 1.18rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

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

.site-nav__link {
    position: relative;
    padding: 0.25rem 0.1rem;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 600;
}

.site-nav__link::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -0.1rem;
    left: 0;
    height: 0.12rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.site-nav__link:hover,
.site-nav__link--active {
    color: var(--text);
}

.site-nav__link:hover::after,
.site-nav__link--active::after {
    transform: scaleX(1);
}

.site-mobile-nav {
    display: none;
    margin-left: auto;
    position: relative;
}

.site-mobile-nav summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 3rem;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(143, 104, 127, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    font-weight: 700;
    list-style: none;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(111, 77, 95, 0.1);
}

.site-mobile-nav summary::-webkit-details-marker {
    display: none;
}

.site-mobile-nav__toggle {
    display: inline-grid;
    gap: 0.25rem;
}

.site-mobile-nav__toggle span {
    display: block;
    width: 1.15rem;
    height: 0.12rem;
    border-radius: 999px;
    background: var(--text);
    transition: transform 180ms ease, opacity 180ms ease;
}

.site-mobile-nav__label {
    line-height: 1;
}

.site-mobile-nav[open] .site-mobile-nav__toggle span:nth-child(1) {
    transform: translateY(0.37rem) rotate(45deg);
}

.site-mobile-nav[open] .site-mobile-nav__toggle span:nth-child(2) {
    opacity: 0;
}

.site-mobile-nav[open] .site-mobile-nav__toggle span:nth-child(3) {
    transform: translateY(-0.37rem) rotate(-45deg);
}

.site-mobile-nav__panel {
    position: absolute;
    right: 0;
    top: calc(100% + 0.9rem);
    min-width: min(20rem, calc(100vw - 2.4rem));
    padding: 1rem;
    border: 1px solid rgba(143, 104, 127, 0.18);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-strong);
}

.site-mobile-nav__panel a {
    display: block;
    padding: 0.85rem 0.25rem;
    color: var(--muted);
    font-weight: 600;
}

.site-mobile-nav__link--active {
    color: var(--text) !important;
}

.site-mobile-nav__cta {
    width: 100%;
    margin-top: 0.65rem;
}

.hero-home,
.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(4.4rem, 8vw, 6rem) 0 clamp(3.2rem, 7vw, 5.5rem);
}

.hero-home {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 4rem);
    text-align: center;
}

.hero-home__container {
    position: relative;
    z-index: 1;
}

.hero-home__panel {
    position: relative;
    display: grid;
    justify-items: center;
    width: min(100%, 56rem);
    max-width: 56rem;
    margin-inline: auto;
    transform: translateY(-0.85rem);
}

.hero-home__grid,
.page-hero__grid,
.content-split__grid,
.contact-section__grid {
    display: grid;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.hero-home__content,
.page-hero__content,
.content-split__content {
    position: relative;
    z-index: 1;
}

.hero-home__headline {
    margin: 0 auto;
    text-align: center;
    line-height: 1.12;
    text-wrap: balance;
}

.hero-home__headline span {
    display: block;
}

.hero-home__headline span:last-child {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-home__summary {
    max-width: 42rem;
    margin: 1.25rem auto 0;
    color: var(--muted);
    font-size: clamp(1.1rem, 1.9vw, 1.3rem);
    text-align: center;
}

.hero-home__flower {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-home__flower-icon {
    display: inline-block;
    font-size: clamp(3rem, 5vw, 3.75rem);
}

.hero-home__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(168, 85, 247, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--primary-deep);
    font-weight: 700;
    box-shadow: 0 14px 34px rgba(109, 55, 129, 0.08);
}

.hero-home__badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.16), rgba(168, 85, 247, 0.16));
}

.hero-home__badge-icon img {
    width: 1.85rem;
    height: 1.85rem;
    object-fit: contain;
}

.hero-home h1,
.page-hero h1 {
    max-width: 23ch;
    font-size: clamp(0.8rem, 5vw, 3.4rem);
}

.hero-home__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-home__actions .button {
    min-height: 3.55rem;
    padding: 1rem 2rem;
}

.hero-home__scroll {
    position: absolute;
    left: 50%;
    bottom: 2.2rem;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-home__scroll-shell {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 1.5rem;
    height: 2.5rem;
    padding-top: 0.45rem;
    border: 2px solid rgba(168, 85, 247, 0.95);
    border-radius: 999px;
}

.hero-home__scroll-dot {
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 999px;
    background: var(--primary);
    animation: scroll-dot 2s ease-in-out infinite;
}

.hero-home__trust {
    margin-top: 1.5rem;
    color: var(--muted);
    font-weight: 500;
}

.hero-home__visual,
.page-hero__visual,
.content-split__visual {
    position: relative;
}

.hero-home__visual-frame {
    position: relative;
    max-width: 32rem;
    margin-left: auto;
}

.hero-home__visual-card {
    position: relative;
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(14px);
}

.hero-home__visual-bloom {
    position: absolute;
    right: -1.2rem;
    bottom: -1.4rem;
    width: 9rem;
    height: 9rem;
    border-radius: 999px;
    background:
        radial-gradient(circle at center, rgba(242, 170, 203, 0.95) 0%, rgba(184, 146, 244, 0.2) 55%, transparent 72%);
    filter: blur(14px);
    z-index: -1;
}

.hero-home__visual img,
.page-hero__visual img,
.content-split__visual img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-strong);
}

.about-page .page-hero__visual,
.about-page .content-split__visual {
    height: 900px;
}

.about-page .page-hero__visual img,
.about-page .content-split__visual img {
    height: 100%;
    aspect-ratio: auto;
}

.hero-home__visual-note {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    display: grid;
    gap: 0.2rem;
    max-width: 14rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 1.2rem;
    color: #fff;
    background: rgba(33, 18, 38, 0.64);
    backdrop-filter: blur(18px);
}

.hero-home__visual-note strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
}

.hero-home__glow {
    position: absolute;
    width: 30rem;
    height: 30rem;
    border-radius: 999px;
    filter: blur(38px);
    opacity: 0.4;
    animation: float-glow 8s ease-in-out infinite;
}

.hero-home__glow--one {
    top: -14rem;
    right: -8rem;
    background: rgba(234, 167, 204, 0.78);
}

.hero-home__glow--two {
    bottom: -14rem;
    left: -8rem;
    background: rgba(196, 180, 239, 0.72);
    animation-delay: -3s;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 42rem;
    margin-bottom: 2rem;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center p {
    color: var(--muted);
}

.section-heading h2,
.content-split__content h2,
.text-band__inner h2,
.legal-content__inner h2,
.contact-info__panel h2,
.contact-card h2 {
    font-size: clamp(2.15rem, 4vw, 3.3rem);
}

.cards-section,
.pricing-preview,
.contact-section,
.gallery-detail,
.legal-content {
    padding: clamp(3.4rem, 7vw, 5.5rem) 0;
}

.cards-section--portfolio,
.text-band--light,
.page-hero--compact,
.site-footer {
    background: linear-gradient(180deg, rgba(253, 246, 251, 0.7) 0%, rgba(255, 253, 253, 0.96) 100%);
}

.card-grid,
.portfolio-grid,
.admin-stats {
    display: grid;
    gap: 1.35rem;
}

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

.service-landing__grid,
.faq-grid {
    display: grid;
    gap: 1.35rem;
}

.service-landing__aside {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.service-landing__aside-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.service-landing__aside-list li {
    position: relative;
    padding-left: 1.4rem;
    color: var(--muted);
}

.service-landing__aside-list li::before {
    content: '';
    position: absolute;
    top: 0.72rem;
    left: 0;
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 0 0.28rem rgba(200, 96, 150, 0.12);
}

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

.card,
.pricing-card,
.contact-card,
.contact-info__panel,
.text-band__inner,
.legal-content__inner,
.content-panel {
    padding: clamp(1.45rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 251, 253, 0.88) 100%);
    box-shadow: var(--shadow-soft);
}

.card {
    overflow: hidden;
    padding: 0;
}

.card--service-text {
    border: 1px solid rgba(181, 118, 163, 0.18);
    background:
        radial-gradient(circle at top right, rgba(247, 215, 229, 0.7), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 249, 252, 0.94) 100%);
}

.card__media {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
}

.card__body {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
}

.card--service-text .card__body {
    height: 100%;
    align-content: start;
    gap: 1.1rem;
    padding: 1.7rem;
}

.card__body h2,
.card__body h3,
.portfolio-card h2,
.portfolio-card h3,
.pricing-card h2,
.pricing-card h3 {
    font-size: 1.7rem;
}

.check-list {
    list-style: none;
    display: grid;
    gap: 0.75rem;
}

.check-list li {
    position: relative;
    padding-left: 1.55rem;
    color: var(--muted);
}

.check-list li::before {
    content: '•';
    position: absolute;
    top: -0.06rem;
    left: 0;
    color: var(--primary);
    font-size: 1.3rem;
}

.text-band {
    padding: clamp(3rem, 6vw, 4.8rem) 0;
}

.text-band__inner,
.legal-content__inner {
    max-width: 54rem;
    margin-inline: auto;
}

.legal-document__body {
    display: grid;
    gap: 1rem;
}

.legal-document__body h2 {
    margin-top: 1.4rem;
    font-size: clamp(1.65rem, 3vw, 2.15rem);
}

.legal-document__body h2:first-child {
    margin-top: 0;
}

.legal-document__body p,
.legal-document__body li {
    color: var(--muted);
}

.legal-document__body p + p,
.legal-document__body p + ul,
.legal-document__body ul + p {
    margin-top: 0.95rem;
}

.legal-document__body ul {
    margin: 0.15rem 0 0;
    padding-left: 1.3rem;
    display: grid;
    gap: 0.75rem;
}

.faq-card {
    display: grid;
    gap: 0.75rem;
}

.faq-card h3 {
    font-size: 1.35rem;
}

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

.portfolio-card {
    position: relative;
    overflow: hidden;
    min-height: 24rem;
    border-radius: var(--radius-l);
    box-shadow: var(--shadow-soft);
    background: #f1e4ee;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms ease;
}

.portfolio-card:hover img {
    transform: scale(1.04);
}

.portfolio-card__overlay {
    position: absolute;
    inset: auto 0 0 0;
    display: grid;
    gap: 0.7rem;
    padding: 1.6rem;
    color: #fff;
    background: linear-gradient(180deg, transparent 0%, rgba(30, 18, 27, 0.1) 18%, rgba(30, 18, 27, 0.82) 100%);
}

.portfolio-card__overlay p {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}

.portfolio-card__overlay a {
    justify-self: start;
    font-weight: 700;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.portfolio-card--large {
    min-height: 28rem;
}

.pricing-card {
    display: grid;
    gap: 1rem;
}

.pricing-card--featured {
    border-color: rgba(181, 118, 163, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 238, 245, 0.96) 100%);
    transform: translateY(-0.25rem);
}

.pricing-card__price {
    color: var(--primary-deep);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-detail__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: dense;
}

.gallery-detail__item {
    grid-column: span 4;
    overflow: hidden;
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-soft);
    cursor: zoom-in;
}

.gallery-detail__item:nth-child(5n + 1) {
    grid-column: span 8;
}

.gallery-detail__item img {
    width: 100%;
    height: 100%;
    max-height: 36rem;
    object-fit: cover;
}

.gallery-detail__item figcaption {
    padding: 0.9rem 1rem 1.05rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-section__grid {
    align-items: start;
}

.contact-card,
.contact-info {
    display: grid;
    gap: 1.2rem;
}

.contact-form > div {
    margin-bottom: 1rem;
}

.contact-form label {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-weight: 700;
    color: var(--text);
}

.contact-form input:not([type='checkbox']),
.contact-form select,
.contact-form textarea,
.admin-auth__form input {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(143, 104, 127, 0.18);
    border-radius: 1rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.admin-auth__form input:focus {
    outline: 2px solid rgba(200, 96, 150, 0.22);
    outline-offset: 2px;
    border-color: rgba(200, 96, 150, 0.35);
}

.contact-form textarea {
    min-height: 10rem;
    resize: vertical;
}

.contact-form input[type='checkbox'] {
    width: 1.1rem;
    height: 1.1rem;
    margin: 0.2rem 0 0;
    accent-color: var(--primary);
}

.contact-form .form-check,
.contact-form .checkbox {
    display: flex;
    align-items: flex-start;
}

.contact-form__consent-row {
    margin-bottom: 1rem;
}

.contact-form__consent-control {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
}

.contact-form__consent-label,
.contact-form .form-check-label {
    margin: 0;
    font-weight: 600;
    line-height: 1.55;
    color: var(--muted);
    cursor: pointer;
}

.contact-form__consent-row .form-errors,
.contact-form__consent-row ul {
    margin-top: 0.55rem;
    padding-left: 1.85rem;
}

.contact-form__recaptcha {
    margin-bottom: 1rem;
}

.contact-form__recaptcha .g-recaptcha {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    border-radius: 1rem;
}

.contact-form ul {
    list-style: none;
    display: grid;
    gap: 0.35rem;
    margin-top: 0.45rem;
    color: var(--danger);
    font-size: 0.92rem;
}

.contact-info__panel h2 {
    margin-bottom: 0.9rem;
}

.footer-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    color: var(--muted);
}

.footer-list a:hover,
.site-footer__bottom a:hover {
    color: var(--primary-deep);
}

.alert,
.admin-auth__alert {
    padding: 0.95rem 1rem;
    border: 1px solid transparent;
    border-radius: 1rem;
    font-weight: 600;
}

.alert--success,
.admin-auth__alert--success {
    color: var(--success);
    border-color: rgba(33, 120, 93, 0.18);
    background: rgba(235, 249, 243, 0.95);
}

.alert--error,
.admin-auth__alert--error {
    color: var(--danger);
    border-color: rgba(183, 67, 88, 0.18);
    background: rgba(253, 240, 243, 0.95);
}

.cookie-banner {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    padding: 0 0 1.2rem;
    pointer-events: none;
}

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

.cookie-banner__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(143, 104, 127, 0.16);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-strong);
    pointer-events: auto;
}

.cookie-banner__content {
    display: grid;
    gap: 0.5rem;
    max-width: 46rem;
}

.cookie-banner__eyebrow {
    margin: 0;
    color: var(--primary-deep);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cookie-banner__text {
    color: var(--muted);
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: flex-end;
}

.cookie-banner__actions .button {
    min-height: 3rem;
    white-space: nowrap;
}

.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 55;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border: 1px solid rgba(143, 104, 127, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-deep);
    font-size: 1.45rem;
    font-weight: 700;
    box-shadow: 0 18px 34px rgba(111, 77, 95, 0.16);
    backdrop-filter: blur(18px);
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.back-to-top:hover {
    transform: translateY(-0.18rem);
    box-shadow: 0 22px 40px rgba(111, 77, 95, 0.2);
    color: var(--secondary);
}

.site-footer {
    padding: 3.5rem 0 2rem;
    border-top: 1px solid rgba(158, 123, 143, 0.12);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 1.5rem;
}

.site-footer__brand {
    display: grid;
    gap: 1rem;
}

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

.site-footer__socials {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.site-footer__social-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(168, 85, 247, 0.14);
    border-radius: 999px;
    color: var(--primary-deep);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 24px rgba(111, 77, 95, 0.1);
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
    transform: translateY(-2px);
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    box-shadow: 0 18px 34px rgba(168, 85, 247, 0.22);
}

.site-footer__social-link:focus-visible {
    outline: 2px solid rgba(200, 96, 150, 0.22);
    outline-offset: 3px;
}

.site-footer__social-link svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
}

.site-footer__social-fill {
    fill: currentColor;
    stroke: none;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.4rem;
    color: var(--muted);
    border-top: 1px solid rgba(158, 123, 143, 0.12);
}

.visual-placeholder {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-l);
    background: linear-gradient(135deg, rgba(248, 221, 233, 0.92), rgba(233, 220, 247, 0.88)), linear-gradient(180deg, #fff 0%, #f6edf4 100%);
    box-shadow: var(--shadow-soft);
}

.page-hero--compact .page-hero__content h1 {
    max-width: none;
}

.admin-auth-body {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(250, 214, 233, 0.9), transparent 24%), radial-gradient(circle at bottom right, rgba(225, 212, 248, 0.84), transparent 26%), linear-gradient(180deg, #fffafc 0%, #f9f0f7 100%);
}

.admin-auth {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 1.2rem;
}

.admin-auth__panel {
    width: min(32rem, 100%);
    display: grid;
    gap: 1.3rem;
    padding: clamp(1.6rem, 4vw, 2.2rem);
    border: 1px solid rgba(143, 104, 127, 0.2);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-strong);
}

.admin-auth__brand {
    justify-self: start;
    color: var(--primary-deep);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.admin-auth__header {
    display: grid;
    gap: 0.75rem;
}

.admin-auth__eyebrow {
    color: var(--primary-deep);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.admin-auth__header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

.admin-auth__header p {
    color: var(--muted);
}

.admin-auth__form,
.admin-auth__secondary-form {
    display: grid;
    gap: 0.9rem;
}

.admin-auth__form label {
    font-weight: 700;
}

.ea.page-content .content-header {
    margin-bottom: 1.35rem;
    padding: 1.35rem 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 250, 253, 0.9) 100%);
    box-shadow: var(--shadow-soft);
}

.ea.page-content .content-header .title {
    margin: 0;
    color: var(--text);
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 2.4vw, 2.7rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.ea.page-content .content-header .page-actions {
    gap: 0.7rem;
}

.ea.page-content .content-body {
    display: grid;
    gap: 1.2rem;
}

.ea .form-column .field-form_fieldset {
    margin-bottom: 1.1rem;
}

.ea .form-column .form-fieldset {
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 250, 253, 0.9) 100%);
    box-shadow: var(--shadow-soft);
}

.ea .form-column .form-fieldset-header {
    padding: 1.15rem 1.2rem 0.6rem;
}

.ea .form-column .form-fieldset-body {
    padding: 0.15rem 1.2rem 1rem;
}

.ea .form-column .form-fieldset-body.without-header {
    padding-top: 1rem;
}

.ea .form-column .form-fieldset-title-content {
    font-size: 1.05rem;
    font-weight: 700;
}

.ea .form-column .form-group {
    padding-bottom: 1rem;
}

.ea .form-column .form-widget textarea.form-control {
    min-height: 8.5rem;
}

.content-panel + .content-panel {
    margin-top: 1.2rem;
}

.content-panel h2 {
    margin-bottom: 0.8rem;
    font-size: 1.7rem;
}

.content-panel p,
.content-panel li {
    color: var(--muted);
}

.content-panel ol,
.content-panel ul {
    list-style-position: inside;
    display: grid;
    gap: 0.55rem;
}

.admin-stats {
    margin-top: 1.2rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-stats article {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(143, 104, 127, 0.12);
}

.admin-stats strong {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
}

.admin-stats span {
    color: var(--muted);
    font-size: 0.95rem;
}

.media-library-card {
    display: grid;
    grid-template-columns: minmax(12rem, 15rem) minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
    padding: 0.85rem;
    border: 1px solid rgba(143, 104, 127, 0.14);
    border-radius: 1.4rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 247, 250, 0.92) 100%);
    box-shadow: 0 14px 32px rgba(111, 77, 95, 0.08);
}

.media-library-card--compact {
    grid-template-columns: minmax(9rem, 11rem) minmax(0, 1fr);
}

.media-library-card__preview {
    overflow: hidden;
    border-radius: 1.15rem;
    background: rgba(247, 236, 243, 0.9);
    min-height: 12rem;
}

.media-library-card__preview--compact {
    min-height: 9rem;
}

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

.media-library-card__body {
    display: grid;
    gap: 0.85rem;
}

.media-library-card__top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.media-library-card__top strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.media-library-card__top p {
    color: var(--muted);
}

.media-library-card__badges {
    display: grid;
    gap: 0.55rem;
    justify-items: end;
}

.media-library-card__badge {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.media-library-card__badge--muted {
    color: var(--text);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(143, 104, 127, 0.18);
}

.media-library-card__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    margin: 0;
}

.media-library-card__meta div {
    padding: 0.75rem 0.85rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(143, 104, 127, 0.12);
}

.media-library-card__meta dt {
    margin-bottom: 0.18rem;
    color: var(--primary-deep);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.media-library-card__meta dd {
    margin: 0;
    color: var(--muted);
}

.gallery-preview,
.about-preview,
.contact-teaser {
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.gallery-preview__filters {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.gallery-preview__filter {
    min-height: 3rem;
    padding: 0.7rem 1.2rem;
    border: 1px solid rgba(168, 85, 247, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(109, 55, 129, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.gallery-preview__filter:hover,
.gallery-preview__filter.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    box-shadow: 0 18px 34px rgba(168, 85, 247, 0.22);
    transform: translateY(-2px);
}

.gallery-preview__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.gallery-preview__card {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 1.6rem;
    background: #f1e4ee;
    box-shadow: var(--shadow-soft);
    will-change: transform, opacity;
    transition: transform 240ms ease, box-shadow 240ms ease;
}

.gallery-preview__card[hidden] {
    display: none;
}

.gallery-preview__card:hover {
    transform: translateY(-0.3rem);
    box-shadow: var(--shadow-strong);
}

.gallery-preview__card img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 350ms ease;
}

.gallery-preview__card:hover img {
    transform: scale(1.08);
}

.gallery-preview__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.55rem;
    padding: 1.2rem;
    color: #fff;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 15%, rgba(22, 12, 24, 0.78) 100%);
    opacity: 0;
    transition: opacity 240ms ease;
}

.gallery-preview__card:hover .gallery-preview__overlay {
    opacity: 1;
}

.gallery-preview__overlay p {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.88;
}

.gallery-preview__overlay h3 {
    font-size: 1.45rem;
}

.gallery-preview__overlay a {
    align-self: flex-start;
    padding-bottom: 0.12rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
    font-weight: 700;
}

.about-preview__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

.about-preview__visual {
    height: 900px;
}

.about-preview__visual img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: var(--shadow-strong);
}

.about-preview__content {
    display: grid;
    gap: 1.35rem;
}

.about-preview__note,
.contact-teaser__card {
    padding: clamp(1.45rem, 3vw, 2rem);
    border: 1px solid rgba(168, 85, 247, 0.16);
    border-radius: 1.8rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.about-preview__note h3 {
    margin-bottom: 0.8rem;
    font-size: 1.65rem;
}

.contact-teaser__card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.5rem;
    align-items: center;
}

.contact-teaser__content {
    display: grid;
    gap: 0.95rem;
}

.contact-teaser__content > p:last-of-type {
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 600;
}

.contact-teaser__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-lightbox {
    width: min(92vw, 72rem);
    padding: 1.15rem;
    border: 0;
    border-radius: 2rem;
    background: rgba(16, 10, 18, 0.94);
    box-shadow: 0 32px 120px rgba(0, 0, 0, 0.48);
}

.gallery-lightbox::backdrop {
    background: rgba(16, 10, 18, 0.82);
    backdrop-filter: blur(6px);
}

.gallery-lightbox__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-left: auto;
    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 245, 250, 0.92) 100%);
    color: var(--primary-deep);
    font-size: 2rem;
    line-height: 1;
    box-shadow: 0 16px 30px rgba(111, 77, 95, 0.18);
    backdrop-filter: blur(14px);
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
    transform: translateY(-2px);
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    box-shadow: 0 22px 38px rgba(168, 85, 247, 0.24);
}

.gallery-lightbox__close:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.22);
    outline-offset: 3px;
}

.gallery-lightbox__frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.4rem;
}

.gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border: 1px solid rgba(168, 85, 247, 0.18);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 245, 250, 0.92) 100%);
    color: var(--primary-deep);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1;
    transform: translateY(-50%);
    box-shadow: 0 18px 34px rgba(111, 77, 95, 0.18);
    backdrop-filter: blur(14px);
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    box-shadow: 0 22px 38px rgba(168, 85, 247, 0.24);
    transform: translateY(-50%) scale(1.03);
}

.gallery-lightbox__nav:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.22);
    outline-offset: 3px;
}

.gallery-lightbox__nav--previous {
    left: 1rem;
}

.gallery-lightbox__nav--next {
    right: 1rem;
}

.gallery-lightbox__image {
    display: block;
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 1.3rem;
}

.gallery-lightbox__footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.82);
}

.gallery-lightbox__caption {
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.86);
}

.gallery-lightbox__counter {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes float-glow {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, 1rem, 0) scale(1.06);
    }
}

@keyframes scroll-dot {
    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(0.9rem);
        opacity: 0.5;
    }
}

@media (max-width: 980px) {
    .site-nav,
    .site-header__cta {
        display: none;
    }

    .site-mobile-nav {
        display: block;
    }

    .hero-home__grid,
    .page-hero__grid,
    .content-split__grid,
    .contact-section__grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .portfolio-grid,
    .site-footer__grid,
    .service-landing__grid,
    .faq-grid,
    .gallery-preview__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-preview__grid,
    .contact-teaser__card {
        grid-template-columns: 1fr;
    }

    .about-preview__visual {
        height: 42rem;
    }

    .gallery-detail__item,
    .gallery-detail__item:nth-child(5n + 1) {
        grid-column: span 6;
    }

    .gallery-lightbox__nav--previous {
        left: 0.7rem;
    }

    .gallery-lightbox__nav--next {
        right: 0.7rem;
    }

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

    .media-library-card,
    .media-library-card--compact {
        grid-template-columns: 1fr;
    }

    .media-library-card__preview,
    .media-library-card__preview--compact {
        min-height: 14rem;
    }

    .about-page .page-hero__visual,
    .about-page .content-split__visual {
        height: 42rem;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .shell {
        width: min(100vw - 1.5rem, 100%);
    }

    .site-header {
        padding: 0.8rem 0;
    }

    .site-brand__logo {
        width: 2.6rem;
        height: 2.6rem;
    }

    .site-brand__text {
        font-size: 1.22rem;
    }

    .hero-home {
        min-height: auto;
        padding: 3rem 0 4.75rem;
    }

    .hero-home__panel {
        transform: none;
    }

    .hero-home h1,
    .page-hero h1 {
        max-width: none;
        font-size: clamp(1.85rem, 10vw, 3rem);
        word-break: keep-all;
        overflow-wrap: normal;
        hyphens: none;
    }

    .hero-home__headline {
        max-width: none;
    }

    .hero-home__flower {
        margin-bottom: 0.9rem;
    }

    .hero-home__summary {
        margin-top: 1rem;
    }

    .hero-home__scroll {
        bottom: 1.1rem;
    }

    .hero-home__actions,
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-home__actions {
        align-items: center;
    }

    .card-grid,
    .portfolio-grid,
    .site-footer__grid,
    .service-landing__grid,
    .faq-grid,
    .admin-stats,
    .media-library-card__meta,
    .gallery-preview__grid {
        grid-template-columns: 1fr;
    }

    .gallery-detail__grid {
        grid-template-columns: 1fr;
    }

    .about-preview__visual {
        height: auto;
    }

    .about-preview__visual img {
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .gallery-detail__item,
    .gallery-detail__item:nth-child(5n + 1) {
        grid-column: auto;
    }

    .gallery-lightbox {
        width: min(96vw, 72rem);
        padding: 0.85rem;
    }

    .gallery-lightbox__nav {
        width: 2.8rem;
        height: 2.8rem;
        font-size: 1.65rem;
    }

    .gallery-lightbox__nav--previous {
        left: 0.45rem;
    }

    .gallery-lightbox__nav--next {
        right: 0.45rem;
    }

    .about-page .page-hero__visual,
    .about-page .content-split__visual {
        height: auto;
    }

    .about-page .page-hero__visual img,
    .about-page .content-split__visual img {
        aspect-ratio: 4 / 5;
        height: auto;
    }

    .gallery-lightbox__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
    }

    .pricing-card--featured {
        transform: none;
    }

    .cookie-banner {
        padding-bottom: 0.8rem;
    }

    .cookie-banner__inner,
    .cookie-banner__actions {
        gap: 0.75rem;
    }

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

    .back-to-top {
        right: 0.8rem;
        bottom: 0.8rem;
        width: 3rem;
        height: 3rem;
    }
}
