/*
Theme Name: HYGGE Massage Studio
Author: Codex
Version: 1.0.0
Text Domain: hygge
*/

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

:root {
    --bg: #0c0a08;
    --bg-2: #16110d;
    --panel: #201813;
    --cream: #f3eadc;
    --paper: #eee5d8;
    --paper-2: #f7f1e8;
    --text: #251d17;
    --muted: #b9aa98;
    --muted-dark: #665b50;
    --accent: #c89a5c;
    --accent-2: #e3c28d;
    --line: rgba(255, 255, 255, 0.1);
    --line-dark: rgba(37, 29, 23, 0.14);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    --radius: 8px;
    --wrap: min(1180px, calc(100% - 32px));
}

* {
    box-sizing: border-box;
}

html {
    max-width: 100%;
    overflow-x: hidden;
    background: var(--bg);
    scroll-behavior: smooth;
}

body {
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
    color: var(--cream);
    background: var(--bg);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
}

body.menu-open {
    overflow: hidden;
}

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

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

svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 2px solid var(--accent-2);
    outline-offset: 4px;
}

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

.skip-link:focus {
    z-index: 100;
    width: auto;
    height: auto;
    left: 1rem;
    top: 1rem;
    padding: 0.75rem 1rem;
    clip: auto;
    color: var(--text);
    background: var(--paper);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    min-height: 72px;
    padding: 0.65rem 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 10, 8, 0.82);
    backdrop-filter: blur(18px);
}

.site-header::after {
    content: "";
    position: fixed;
    top: 14px;
    right: auto;
    left: 148px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(243, 234, 220, 0.34);
    border-radius: 999px;
    pointer-events: none;
    background:
        linear-gradient(var(--cream), var(--cream)) center 15px / 18px 1px no-repeat,
        linear-gradient(var(--cream), var(--cream)) center 22px / 18px 1px no-repeat,
        linear-gradient(var(--cream), var(--cream)) center 29px / 18px 1px no-repeat,
        rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 116px;
}

.brand img {
    width: 116px;
    height: 54px;
    object-fit: contain;
    object-position: left center;
}

.menu-toggle {
    position: fixed;
    top: 14px;
    right: auto;
    left: 148px;
    z-index: 2;
    margin-left: auto;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(243, 234, 220, 0.34);
    border-radius: 999px;
    color: var(--cream);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
    cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 1px;
    margin: 2px 0;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.primary-nav {
    position: fixed;
    inset: 124px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(22, 17, 13, 0.98);
    box-shadow: var(--shadow);
}

body.menu-open .primary-nav {
    display: flex;
}

.primary-nav a {
    padding: 0.85rem 0.9rem;
    border-radius: 6px;
    color: var(--cream);
    font-size: 0.92rem;
    font-weight: 600;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
    color: var(--accent-2);
    background: rgba(255, 255, 255, 0.05);
}

.header-actions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.18rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}

.language-link {
    display: inline-flex;
    min-width: 32px;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.language-link.is-active {
    color: var(--text);
    background: var(--accent-2);
}

.header-cta,
.btn,
.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta {
    min-height: 40px;
    padding: 0.68rem 0.9rem;
    color: var(--text);
    background: var(--accent-2);
    font-size: 0.82rem;
}

.btn {
    min-height: 48px;
    padding: 0.85rem 1.15rem;
    font-size: 0.92rem;
}

.btn:hover,
.card-link:hover,
.header-cta:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--text);
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.btn-outline,
.card-link {
    color: var(--cream);
    border: 1px solid rgba(243, 234, 220, 0.32);
    background: rgba(255, 255, 255, 0.03);
}

.hero-section {
    background: radial-gradient(circle at 15% 0%, rgba(200, 154, 92, 0.12), transparent 36rem), var(--bg);
}

.hero-wrap {
    width: var(--wrap);
    display: grid;
    gap: 2rem;
    margin: 0 auto;
    padding: 5.2rem 0 3.5rem;
}

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

.section-label {
    margin: 0 0 0.9rem;
    color: var(--accent-2);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.05;
}

h1 {
    max-width: 620px;
    font-size: clamp(2.65rem, 13vw, 4.4rem);
}

h2 {
    font-size: clamp(2.05rem, 9vw, 3.35rem);
}

h3 {
    font-size: 1.45rem;
}

.hero-copy p:not(.section-label),
.dark-section p,
.about-copy p,
.cta-copy p,
.footer-contact,
.footer-nav,
.detail-section p {
    color: var(--muted);
}

.hero-copy > p:not(.section-label) {
    margin: 1.15rem 0 0;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.hero-location,
.time-row {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-location {
    margin-top: 1.45rem;
}

.hero-location svg,
.time-row svg {
    color: var(--accent);
}

.hero-image {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.hero-image img {
    width: 100%;
    height: min(72vw, 420px);
    object-fit: cover;
}

.feature-strip,
.light-section {
    color: var(--text);
    background: linear-gradient(180deg, var(--paper-2), var(--paper));
}

.feature-grid {
    width: var(--wrap);
    display: grid;
    gap: 0;
    margin: 0 auto;
    padding: 2.25rem 0;
}

.feature-item {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--line-dark);
    text-align: left;
}

.feature-item svg {
    width: 38px;
    height: 38px;
    margin-bottom: 0.8rem;
    color: var(--accent);
}

.feature-item h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.42rem;
}

.feature-item p {
    margin: 0.45rem 0 0;
    color: var(--muted-dark);
    font-size: 0.92rem;
}

.dark-section,
.about-section,
.pricing-section,
.cta-section {
    background: var(--bg);
}

.dark-section,
.light-section,
.about-section,
.pricing-section,
.cta-section,
.page-hero {
    padding: 4.5rem 0;
}

.section-heading {
    width: var(--wrap);
    margin: 0 auto 2rem;
    text-align: center;
}

.massages-section .section-heading {
    max-width: 720px;
}

.massage-grid {
    width: var(--wrap);
    display: grid;
    gap: 1rem;
    margin: 0 auto;
}

.massage-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #1b1510;
    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.24);
    transition: transform 180ms ease, border-color 180ms ease;
}

.massage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 194, 141, 0.46);
}

.massage-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.massage-card-body {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
}

.massage-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.card-link {
    min-height: 42px;
    padding: 0.7rem 0.9rem;
    font-size: 0.84rem;
}

.visit-section .section-heading,
.reviews-section .section-heading {
    max-width: 760px;
}

.steps-grid,
.reviews-grid {
    width: var(--wrap);
    display: grid;
    gap: 1rem;
    margin: 0 auto;
}

.step-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem 0;
}

.step-number {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: var(--paper);
    background: var(--bg);
    font-size: 0.82rem;
    font-weight: 800;
}

.step-item h3,
.review-card h3 {
    color: var(--text);
}

.step-item p {
    margin: 0.4rem 0 0;
    color: var(--muted-dark);
    font-size: 0.93rem;
}

.about-section {
    width: 100%;
    display: grid;
    gap: 2rem;
    padding-left: max(16px, calc((100vw - 1180px) / 2));
    padding-right: max(16px, calc((100vw - 1180px) / 2));
}

.about-image {
    overflow: hidden;
    border-radius: var(--radius);
}

.about-image img {
    width: 100%;
    height: min(82vw, 430px);
    object-fit: cover;
}

.about-copy {
    max-width: 650px;
    align-self: center;
}

.about-copy p {
    margin: 1rem 0 0;
}

.about-copy .btn {
    margin-top: 1.5rem;
}

.pricing-section {
    width: var(--wrap);
    display: grid;
    gap: 1.5rem;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.pricing-copy p {
    max-width: 600px;
}

.pricing-list {
    display: grid;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.pricing-list div {
    display: grid;
    gap: 0.3rem;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.pricing-list div:last-child {
    border-bottom: 0;
}

.pricing-list span {
    color: var(--cream);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.pricing-list strong {
    color: var(--accent-2);
    font-size: 0.92rem;
}

.review-card {
    min-height: 180px;
    padding: 1.2rem;
    border: 1px solid rgba(37, 29, 23, 0.08);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.56);
    box-shadow: 0 14px 38px rgba(37, 29, 23, 0.06);
}

.quote-mark {
    display: block;
    height: 28px;
    color: var(--accent);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.4rem;
    line-height: 1;
}

.review-card p {
    color: var(--text);
    margin: 0.7rem 0 1rem;
}

.review-card strong {
    color: var(--muted-dark);
    font-size: 0.9rem;
}

.cta-section {
    width: var(--wrap);
    display: grid;
    gap: 1.5rem;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.cta-image {
    overflow: hidden;
    border-radius: var(--radius);
}

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

.cta-copy p {
    margin: 0.6rem 0 1.2rem;
}

.cta-points {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cta-points li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--muted);
    font-weight: 600;
}

.cta-points svg {
    color: var(--accent);
}

.site-footer {
    color: var(--muted);
    background: #080605;
    border-top: 1px solid var(--line);
}

.footer-main,
.footer-bottom {
    width: var(--wrap);
    margin: 0 auto;
}

.footer-main {
    display: grid;
    gap: 1.8rem;
    padding: 2.5rem 0;
}

.footer-brand img {
    width: 120px;
    height: auto;
    margin-bottom: 0.7rem;
}

.footer-brand strong {
    color: var(--cream);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.45rem;
    font-weight: 600;
}

.footer-contact {
    display: grid;
    gap: 0.4rem;
    font-style: normal;
}

.footer-nav {
    display: grid;
    gap: 0.4rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--accent-2);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1rem 0 1.5rem;
    border-top: 1px solid var(--line);
    font-size: 0.82rem;
}

.page-hero {
    width: var(--wrap);
    display: grid;
    gap: 1.5rem;
    margin: 0 auto;
}

.page-hero img,
.service-detail img {
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
}

.page-hero img {
    height: 280px;
}

.detail-section {
    width: var(--wrap);
    margin: 0 auto;
}

.service-detail {
    display: grid;
    gap: 1rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--line);
}

.service-detail img {
    height: 220px;
}

.contact-layout {
    width: var(--wrap);
    display: grid;
    gap: 1rem;
    margin: 0 auto;
    min-width: 0;
}

.contact-card,
.contact-form-card {
    min-width: 0;
    padding: clamp(1.15rem, 4vw, 2rem);
    border: 1px solid rgba(37, 29, 23, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 20px 54px rgba(37, 29, 23, 0.08);
}

.contact-card h2,
.contact-form-card h2 {
    color: var(--text);
}

.contact-card p:not(.section-label),
.contact-form-card > p:not(.section-label) {
    max-width: 650px;
    margin: 0.75rem 0 0;
    color: var(--muted-dark);
    overflow-wrap: anywhere;
}

.contact-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.contact-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    min-height: 74px;
    padding: 0.8rem;
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    color: var(--text);
    background: rgba(255, 255, 255, 0.44);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-item > span {
    min-width: 0;
}

.contact-item:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 154, 92, 0.36);
    background: rgba(255, 255, 255, 0.7);
}

.contact-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    color: var(--accent);
    background: rgba(200, 154, 92, 0.12);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item strong {
    display: block;
    color: var(--muted-dark);
    font-family: "Inter", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: uppercase;
}

.contact-item span span {
    display: block;
    margin-top: 0.18rem;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

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

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

.field {
    display: grid;
    gap: 0.45rem;
    color: var(--muted-dark);
    font-size: 0.86rem;
    font-weight: 800;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid rgba(37, 29, 23, 0.16);
    border-radius: var(--radius);
    color: var(--text);
    background: rgba(255, 255, 255, 0.74);
    font: inherit;
    font-weight: 500;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input {
    min-height: 50px;
    padding: 0.85rem 0.95rem;
}

.field textarea {
    min-height: 150px;
    padding: 0.95rem;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(102, 91, 80, 0.62);
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(200, 154, 92, 0.78);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 0 0 4px rgba(200, 154, 92, 0.12);
}

.form-notice {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-top: 1.1rem;
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
    font-weight: 700;
}

.form-notice svg {
    flex: 0 0 auto;
    margin-top: 0.1rem;
}

.form-notice-success {
    color: #264229;
    border: 1px solid rgba(54, 119, 66, 0.24);
    background: rgba(104, 159, 108, 0.18);
}

.form-notice-error {
    color: #5b251f;
    border: 1px solid rgba(142, 54, 43, 0.24);
    background: rgba(184, 92, 72, 0.16);
}

.reveal {
    opacity: 1;
    transform: translateY(18px);
    transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (min-width: 560px) {
    .feature-grid,
    .massage-grid,
    .steps-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 700px) {
    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .field-full {
        grid-column: 1 / -1;
    }
}

@media (min-width: 860px) {
    .site-header {
        display: grid;
        grid-template-columns: 160px 1fr auto;
        min-height: 82px;
        padding: 0.6rem 5vw;
    }

    .site-header::after {
        display: none;
    }

    .brand,
    .brand img {
        width: 126px;
        height: 62px;
    }

    .menu-toggle {
        position: static;
        display: none;
    }

    .primary-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .primary-nav a {
        padding: 0.4rem 0;
        color: var(--cream);
        font-size: 0.86rem;
        background: transparent;
    }

    .header-actions {
        width: auto;
        gap: 0.9rem;
        justify-content: flex-end;
    }

    .hero-wrap {
        grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
        align-items: center;
        min-height: 660px;
        padding: 3.5rem 0;
    }

    .hero-image img {
        height: 520px;
    }

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

    .feature-item {
        padding: 1.5rem 2rem;
        border-bottom: 0;
        border-right: 1px solid var(--line-dark);
        text-align: center;
    }

    .feature-item:last-child {
        border-right: 0;
    }

    .feature-item svg {
        margin-left: auto;
        margin-right: auto;
    }

    .dark-section,
    .light-section,
    .about-section,
    .pricing-section,
    .cta-section,
    .page-hero {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

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

    .massage-card img {
        height: 170px;
    }

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

    .step-item {
        grid-template-columns: 42px 1fr;
    }

    .about-section {
        grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1fr);
        align-items: center;
        gap: 4rem;
    }

    .about-image {
        margin-left: calc(max(16px, (100vw - 1180px) / 2) * -1);
        border-radius: 0 var(--radius) var(--radius) 0;
    }

    .about-image img {
        height: 500px;
    }

    .pricing-section {
        grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
        align-items: center;
    }

    .pricing-list div {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

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

    .cta-section {
        grid-template-columns: 300px minmax(0, 1fr) 280px;
        align-items: center;
    }

    .cta-image img {
        height: 190px;
    }

    .footer-main {
        grid-template-columns: minmax(180px, 1fr) minmax(190px, 0.8fr) minmax(120px, 0.6fr) minmax(140px, 0.6fr);
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .page-hero {
        grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
        align-items: center;
    }

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

    .service-detail {
        grid-template-columns: 280px 1fr;
        align-items: center;
        gap: 2rem;
    }

    .contact-layout {
        grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
        align-items: start;
        gap: 1.4rem;
    }
}
