/* ═══════════════════════════════════════════
   CARNICERÍA MERZOUKA — STYLES
   Palette: Emerald (#047857) + Cream (#FAF8F5)
   Fonts: Cormorant Garamond + Manrope
   ═══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-emerald: #047857;
    --color-emerald-dark: #065f46;
    --color-emerald-light: #D1FAE5;
    --color-cream: #FAF8F5;
    --color-cream-dark: #F0EDE8;
    --color-text: #1a1a1a;
    --color-text-muted: #6b6b6b;
    --color-text-light: #999;
    --color-line: rgba(4, 120, 87, 0.12);
    --color-line-strong: rgba(4, 120, 87, 0.25);
    --color-white: #ffffff;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Manrope', -apple-system, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--color-emerald);
    color: var(--color-white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 200;
    font-size: 0.875rem;
    text-decoration: none;
    transition: top var(--transition);
}

.skip-link:focus {
    top: var(--space-sm);
}

.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ── Typography ── */
.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-emerald);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: 2rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 1px;
    background: var(--color-emerald);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.accent {
    color: var(--color-emerald);
    font-style: italic;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: var(--color-emerald);
    color: var(--color-white);
    border-color: var(--color-emerald);
}

.btn--primary:hover {
    background: var(--color-emerald-dark);
    border-color: var(--color-emerald-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(4, 120, 87, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-text);
}

.btn--ghost:hover {
    background: var(--color-text);
    color: var(--color-white);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

.btn-arrow {
    transition: transform var(--transition);
}

.btn:hover .btn-arrow {
    transform: translate(3px, -3px);
}

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-line);
    transition: all var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-text);
}

.logo--footer {
    margin-bottom: var(--space-sm);
}

.logo-mark {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-emerald);
    font-style: italic;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* ── Navigation ── */
.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-link {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 1px;
    background: var(--color-emerald);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.nav-link:hover {
    color: var(--color-emerald);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link--accent {
    color: var(--color-emerald);
}

.nav-link--accent::after {
    display: none;
}

.nav-link--accent:hover {
    background: var(--color-emerald-light);
    border-radius: var(--radius-sm);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--color-text);
    transition: all var(--transition);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:last-child {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    max-width: 700px;
    max-height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-emerald-light) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 520px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-emerald);
    margin-bottom: var(--space-md);
    padding-left: 2rem;
    position: relative;
}

.hero-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.25rem;
    height: 1px;
    background: var(--color-emerald);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.hero-title-line {
    display: block;
}

.hero-title-line--accent {
    color: var(--color-emerald);
    font-style: italic;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--color-emerald);
    margin-bottom: var(--space-sm);
}

.hero-credit {
    font-size: 0.8rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

.hero-visual {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-img-wrapper:hover img {
    transform: scale(1.02);
}

.hero-accent-line {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--color-emerald);
    border-radius: 50%;
    opacity: 0.2;
    pointer-events: none;
}

.hero-accent-line::after {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid var(--color-emerald);
    border-radius: 50%;
    opacity: 0.3;
}

/* ── About ── */
.about {
    padding: var(--space-2xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.about-text {
    padding-right: var(--space-md);
}

.about-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.about-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-line);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-emerald);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-line-strong);
}

.about-visual {
    position: relative;
    padding-top: var(--space-md);
}

.about-img-main {
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.about-img-secondary {
    position: absolute;
    bottom: calc(var(--space-md) * -0.3);
    left: calc(var(--space-md) * -0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--color-cream);
}

.about-img-secondary img {
    display: block;
}

/* ── Products ── */
.products {
    padding: var(--space-2xl) 0;
    background: var(--color-white);
}

.products-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto var(--space-lg);
}

.products-header .section-tag {
    padding-left: 0;
}

.products-header .section-tag::before {
    display: none;
}

.products-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.product-card {
    group: product;
    cursor: default;
}

.product-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-sm);
    position: relative;
}

.product-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 120, 87, 0.08), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card:hover .product-img::after {
    opacity: 1;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 0.35rem;
    color: var(--color-text);
}

.product-desc {
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--color-text-muted);
}

.products-cta {
    text-align: center;
    padding: var(--space-md);
    background: var(--color-cream);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.products-cta a {
    color: var(--color-emerald);
    font-weight: 500;
    border-bottom: 1px solid var(--color-emerald-light);
    transition: border-color var(--transition);
}

.products-cta a:hover {
    border-color: var(--color-emerald);
}

/* ── Schedule ── */
.schedule {
    padding: var(--space-2xl) 0;
}

.schedule-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.schedule-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--color-text-muted);
}

.schedule-table {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.schedule-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-line);
    transition: background var(--transition);
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row:hover {
    background: var(--color-emerald-light);
}

.schedule-day {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
}

.schedule-hours {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: right;
}

.schedule-hours--closed {
    color: var(--color-text-light);
    font-style: italic;
}

.schedule-row--closed:hover {
    background: transparent;
}

/* ── Contact ── */
.contact {
    padding: var(--space-2xl) 0;
    background: var(--color-emerald);
    color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.contact .section-tag {
    color: var(--color-emerald-light);
}

.contact .section-tag::before {
    background: var(--color-emerald-light);
}

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

.contact .accent {
    color: var(--color-emerald-light);
}

.contact-info p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.contact-details {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: var(--color-emerald-light);
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.2rem;
}

.contact-value {
    font-size: 0.95rem;
    color: var(--color-white);
    transition: color var(--transition);
}

.contact-value:hover {
    color: var(--color-emerald-light);
}

.contact-value a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color var(--transition);
}

.contact-value a:hover {
    border-color: var(--color-emerald-light);
}

/* ── Form ── */
.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--color-text);
    background: var(--color-cream);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all var(--transition);
}

.form-input::placeholder {
    color: var(--color-text-light);
}

.form-input:focus {
    border-color: var(--color-emerald);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.08);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--color-emerald-light);
    border-radius: var(--radius-sm);
    color: var(--color-emerald-dark);
    font-size: 0.9rem;
    margin-top: var(--space-xs);
}

.form-success svg {
    flex-shrink: 0;
    color: var(--color-emerald);
}

/* ── Footer ── */
.site-footer {
    background: var(--color-text);
    color: var(--color-white);
    padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-mark {
    border-color: var(--color-emerald-light);
    color: var(--color-emerald-light);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer-heading {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-sm);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a,
.footer-contact a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--color-emerald-light);
}

.footer-contact span {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.footer-bottom {
    padding-top: var(--space-md);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        order: 2;
    }

    .hero-visual {
        order: 1;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-credit {
        justify-content: center;
    }

    .hero::before {
        display: none;
    }

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

    .about-grid,
    .schedule-inner,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--color-cream);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 2rem 2rem;
        gap: 0;
        transform: translateX(100%);
        transition: transform var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-link {
        padding: 1rem 0;
        font-size: 0.85rem;
        border-bottom: 1px solid var(--color-line);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link--accent {
        border-bottom: none;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-lg);
    }

    .hero-title {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

    .hero-accent-line {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-img img {
        height: 200px;
    }

    .schedule-row {
        grid-template-columns: 100px 1fr;
        padding: 0.75rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: var(--space-sm);
        box-shadow: none;
        border-width: 2px;
    }

    .about-visual {
        padding-top: 0;
    }
}

@media (max-width: 480px) {
    :root {
        --space-md: 1.25rem;
        --space-lg: 2.5rem;
        --space-xl: 4rem;
        --space-2xl: 5rem;
    }

    .header-inner {
        height: 65px;
    }

    .hero-img-wrapper {
        aspect-ratio: 4/5;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: var(--space-sm);
    }
}
