/* ===== L'DÉSKIN - Style principal ===== */
/* Design inspiré Maison Lutetia - Luxe, épuré, élégant */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #2D3B2D;
    --primary-light: #3d5a3d;
    --primary-dark: #1a251a;
    --accent: #c9a96e;
    --accent-light: #d4bc8e;
    --rose: #c4a08a;
    --rose-bg: #b8908a;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --cream: #f5f3ee;
    --gray-100: #f0efe9;
    --gray-200: #e5e3dc;
    --gray-300: #ccc;
    --gray-500: #888;
    --gray-700: #555;
    --gray-900: #222;
    --black: #111;
    --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 40px;
    min-height: 100px;
}

.header-logo img {
    height: 110px;
    width: auto;
}

.header-logo-mobile {
    display: none;
}

.header-navs {
    width: min(1320px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 64px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.main-nav a {
    padding: 22px 14px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--gray-700);
    transition: color 0.3s;
    position: relative;
    white-space: nowrap;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.nav-item {
    position: relative;
}

.submenu {
    position: absolute;
    top: calc(100% - 8px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1001;
}

.submenu a {
    display: block;
    padding: 12px 16px;
    font-size: 11px;
    letter-spacing: 1.5px;
}

.submenu a::after {
    display: none;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-cta {
    margin-left: 14px;
}

.nav-cta a {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary);
    color: var(--white) !important;
    border-radius: 30px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta a:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.nav-cta a::after { display: none; }

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    margin: 5px 0;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 30px;
}

.hero-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 400;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text {
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 36px;
    font-weight: 300;
    opacity: 0.9;
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    transition: var(--transition);
}

.hero-cta:hover {
    background: var(--white);
    color: var(--primary);
}

/* ===== SECTIONS COMMUNES ===== */
.section {
    padding: 100px 0;
}

.section.section-no-padding {
    padding: 0;
}

.section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gray-500);
    margin-bottom: 8px;
    font-weight: 400;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--gray-900);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    max-width: 600px;
    font-weight: 300;
}

.section-text strong {
    font-weight: 600;
    color: var(--gray-900);
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.two-col-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 60px;
}

.two-col-image {
    overflow: hidden;
}

.two-col-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.two-col:hover .two-col-image img {
    transform: scale(1.03);
}

/* ===== TRAITEMENTS SLIDER ===== */
.treatments-section {
    padding: 100px 0;
    text-align: center;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.treatment-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.treatment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.treatment-card:hover img {
    transform: scale(1.08);
}

.treatment-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 24px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
}

.treatment-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.treatment-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
}

/* ===== PRESS / ILS PARLENT DE NOUS ===== */
.press-section {
    background: var(--rose-bg);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.press-section .section-title {
    color: var(--white);
}

.press-section .section-text {
    color: rgba(255,255,255,0.8);
}

.press-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.press-logos span {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== CATEGORIES (Visage, Corps, Soins) ===== */
.categories-section {
    padding: 100px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3/4;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: var(--white);
}

.category-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.category-card-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 12px;
    text-transform: lowercase;
}

.category-card-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 16px;
    font-weight: 300;
}

.category-card-link {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 2px;
    transition: border-color 0.3s;
}

.category-card-link:hover {
    border-color: white;
}

/* ===== PAGE INTÉRIEURE ===== */
.page-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--cream);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

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

.page-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.page-hero-content .section-label {
    color: rgba(255,255,255,0.8);
}

.page-hero-content .section-title {
    color: var(--white);
}

.page-content {
    padding: 80px 0;
}

.page-content .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.page-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 24px;
}

/* ===== SERVICE PAGE ===== */
.service-detail {
    padding: 80px 0;
}

.service-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-image {
    border-radius: 4px;
    overflow: hidden;
}

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

.service-meta {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

.service-meta-item {
    text-align: center;
}

.service-meta-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.service-meta-value {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--primary);
}

/* ===== CONTACT FORM ===== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 15px;
}

.contact-detail i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-700);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--gray-200);
    border-radius: 2px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color 0.3s;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    display: inline-block;
    padding: 16px 48px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(10);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.7;
    max-width: 300px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links a {
    display: block;
    padding: 4px 0;
    font-size: 14px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--white);
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    opacity: 0.6;
}

/* ===== FLOATING BAR ===== */
.floating-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px;
    border-radius: 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.floating-bar a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    transition: var(--transition);
}

.floating-bar .fb-diagnostic {
    color: var(--gray-700);
}

.floating-bar .fb-diagnostic:hover {
    background: var(--cream);
}

.floating-bar .fb-whatsapp {
    width: 44px;
    height: 44px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 18px;
}

.floating-bar .fb-rdv {
    color: var(--gray-700);
}

.floating-bar .fb-rdv:hover {
    background: var(--cream);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SOINS LIST PAGE ===== */
.services-list {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.service-card-image {
    height: 280px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 24px;
}

.service-card-body h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-card-body .subtitle {
    font-size: 13px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.service-card-body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.service-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.service-card-price {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--primary);
}

.service-card-link {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    color: var(--primary);
    transition: color 0.3s;
}

/* ===== AVIS CLIENT(E)S ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 26px;
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 14px;
    font-size: 14px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.testimonial-author strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== ALERT MESSAGES ===== */
.alert {
    padding: 16px 24px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 14px;
}

.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .header-inner { padding: 0 20px; }
    .header-navs { gap: 12px; }
    .header-logo img { height: 90px; }
    .main-nav a { padding: 18px 10px; font-size: 10px; letter-spacing: 1.5px; }
    .nav-cta a { padding: 10px 18px; }
    .two-col { grid-template-columns: 1fr; }
    .two-col-content { padding: 60px 30px; }
    .treatments-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .service-info { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .header-inner {
        min-height: 88px;
        justify-content: flex-end;
    }
    .header-logo-mobile {
        display: inline-flex;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1002;
    }
    .header-logo-mobile img {
        height: 70px;
        width: auto;
    }
    .header-logo img {
        height: 70px;
    }
    .header-navs {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 30px;
        transform: translateX(100%);
        transition: transform 0.3s;
        overflow-y: auto;
    }
    .header-navs.open { transform: translateX(0); }
    .header-navs .header-logo { display: none; }
    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }
    .main-nav a { padding: 14px 0; font-size: 14px; }
    .nav-item { width: 100%; }
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        box-shadow: none;
        min-width: 0;
        padding-left: 18px;
    }
    .submenu a { padding: 8px 0; font-size: 12px; }
    .nav-cta { margin-left: 0; margin-top: 20px; }
    .hero { min-height: 500px; margin-top: 80px; }
    .hero-title { font-size: 2rem; }
    .section { padding: 60px 0; }
    .treatments-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .floating-bar { bottom: 16px; }
    .floating-bar a span { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .press-logos { gap: 24px; }
    .press-logos span { font-size: 16px; }
    .testimonials-grid { grid-template-columns: 1fr; }
}
