/* ===========================================
   UKU studio — Bellycasting
   Paleta: Lavanda suave + Crema + Blanco roto
   Tipografía: Montserrat + Cormorant Garamond
   =========================================== */

:root {
    /* --- Paleta armónica (lavanda pastel suave + crema cálido dominante) --- */
    --lavender-50:  #F9F5FB;   /* fondo suavísimo */
    --lavender-100: #F0E8F5;   /* bloques claros */
    --lavender-200: #E1D4EC;   /* acentos claros */
    --lavender-300: #CBB8DC;   /* elementos decorativos */
    --lavender-500: #A791C4;   /* primario (más suave) */
    --lavender-700: #7A5F9C;   /* hover / énfasis (más suave) */
    --lavender-900: #3E2B5A;   /* titulares */

    --cream-50:  #FBF6EC;      /* fondo principal (más cálido) */
    --cream-100: #F5EEDF;      /* fondo secundario (más visible) */
    --cream-200: #EADFC6;      /* separadores */
    --cream-300: #D9C8A3;      /* acentos crema */

    --warm-800: #3A2F2B;       /* texto principal */
    --warm-600: #6E5F57;       /* texto secundario */
    --warm-400: #A89A90;       /* texto terciario */

    --sage: #B7C7AD;           /* acento verde para equilibrio */
    --peach: #F4D4BE;          /* acento melocotón sutil */

    --white: #FFFFFF;
    --black: #1A1423;

    /* --- Tipografía --- */
    --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;

    /* --- Escalas --- */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 40px;

    --shadow-sm: 0 2px 10px rgba(93, 69, 121, 0.06);
    --shadow-md: 0 10px 30px rgba(93, 69, 121, 0.08);
    --shadow-lg: 0 30px 60px rgba(93, 69, 121, 0.12);

    --container: 1200px;
    --gutter: clamp(20px, 4vw, 40px);

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--warm-800);
    background: var(--cream-50);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ============ UTILIDADES ============ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--lavender-500);
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}
.eyebrow::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 1px;
    background: var(--lavender-300);
}

h1, h2, h3, h4 {
    font-family: var(--font-sans);
    color: var(--lavender-900);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 em, h2 em, h3 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 1.15em;
    color: var(--lavender-700);
}

h1 { font-size: clamp(42px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4.5vw, 54px); }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 500; }
h4 { font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

p { color: var(--warm-600); max-width: 60ch; }

.section-head {
    max-width: 640px;
    margin-bottom: 64px;
}
.section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-head--center .eyebrow { display: inline-block; }
.section-head--center .eyebrow::after { left: 50%; transform: translateX(-50%); }
.section-head--center p { margin: 0 auto; }
.section-head p {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.7;
}

/* ============ BOTONES ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 100px;
    transition: all 0.35s var(--ease);
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn--primary {
    background: linear-gradient(135deg, var(--lavender-500) 0%, var(--lavender-700) 100%);
    color: var(--white);
    box-shadow: 0 10px 28px rgba(93, 69, 121, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}
.btn--primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--lavender-700) 0%, var(--lavender-900) 100%);
    opacity: 0;
    transition: opacity 0.35s var(--ease);
    z-index: 0;
}
.btn--primary > * { position: relative; z-index: 1; }
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(93, 69, 121, 0.45);
}
.btn--primary:hover::after { opacity: 1; }

.btn--ghost {
    background: transparent;
    color: var(--lavender-900);
    border-color: var(--lavender-300);
}
.btn--ghost:hover {
    background: var(--lavender-100);
    border-color: var(--lavender-500);
}

.btn--lg { padding: 20px 36px; font-size: 15px; }
.btn--full { width: 100%; }

.link-arrow {
    font-size: 14px;
    font-weight: 500;
    color: var(--lavender-700);
    letter-spacing: 0.03em;
    transition: color 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.link-arrow span { transition: transform 0.3s var(--ease); display: inline-block; }
.link-arrow:hover { color: var(--lavender-900); }
.link-arrow:hover span { transform: translateX(4px); }

/* ============ NAV ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(253, 251, 246, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s var(--ease);
}
.nav.is-scrolled {
    padding: 12px 0;
    background: rgba(253, 251, 246, 0.92);
    border-bottom-color: var(--cream-200);
}

.nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--lavender-900);
}
/* La silueta de la marca es un filete finísimo. En SVG el navegador la
   reparte entre dos píxeles y a tamaño de cabecera se deshacía en gris
   pálido, así que va como PNG con transparencia rasterizado a 4x: el
   remuestreo del navegador da un trazo mucho más limpio y sólido.
   Hay dos archivos porque el grosor tiene que ser distinto en cada tamaño;
   uno solo se vería o demasiado fino arriba o demasiado gordo en el hero. */
.nav__brand-mark {
    width: 31px;
    height: 45px;
    display: block;
    flex-shrink: 0;
}
.nav__brand-mark img { width: 100%; height: 100%; }
.nav__brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    align-items: stretch;
}
.nav__brand-name {
    font-family: 'Khand', var(--font-sans);
    font-style: normal;
    font-size: 28px;
    font-weight: 300;
    color: var(--lavender-900);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: left;
    /* el letter-spacing deja un hueco sobrante después de la última 'U';
       lo descontamos para que la caja mida exactamente el ancho visible de
       UKU y 'STUDIO' pueda empezar y terminar justo en los mismos puntos */
    margin-right: -0.18em;
}
.nav__brand-sub {
    display: flex;
    justify-content: space-between;
    letter-spacing: 0;
    font-family: 'Khand', var(--font-sans);
    font-size: 11px;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--lavender-500);
    margin-top: 4px;
}
.nav__brand-sub span {
    flex: 0 0 auto;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 34px;
}
.nav__links a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--warm-800);
    position: relative;
    padding: 6px 0;
    transition: color 0.3s var(--ease);
}
.nav__links a:not(.nav__cta)::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--lavender-500);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--lavender-700); }
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__links a:not(.nav__cta).is-active { color: var(--lavender-900); }
.nav__links a:not(.nav__cta).is-active::after { transform: scaleX(1); background: var(--lavender-900); }

.nav__cta {
    background: linear-gradient(135deg, var(--lavender-500) 0%, var(--lavender-700) 100%);
    color: var(--white) !important;
    padding: 12px 22px !important;
    border-radius: 100px;
    transition: all 0.3s var(--ease);
    box-shadow: 0 6px 18px rgba(141, 111, 177, 0.3);
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
    background: linear-gradient(135deg, var(--lavender-700) 0%, var(--lavender-900) 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(93, 69, 121, 0.4);
}

.nav__toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 4px;
}
.nav__toggle span {
    display: block;
    height: 1.5px;
    background: var(--lavender-900);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(155deg, var(--cream-100) 0%, var(--cream-50) 35%, var(--lavender-50) 70%, var(--lavender-100) 100%);
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}
.hero__blob--1 {
    width: 620px;
    height: 620px;
    top: -180px;
    right: -160px;
    background: var(--lavender-300);
    opacity: 0.75;
}
.hero__blob--2 {
    width: 460px;
    height: 460px;
    bottom: -120px;
    left: -140px;
    background: var(--lavender-200);
    opacity: 0.6;
}
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 35%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--peach);
    opacity: 0.22;
    filter: blur(90px);
    pointer-events: none;
}

.hero__grid {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__copy { max-width: 560px; }

.hero__title {
    font-size: clamp(52px, 7vw, 92px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.hero__lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--warm-600);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
    font-size: 13px;
    color: var(--warm-600);
    letter-spacing: 0.03em;
}
.hero__badges li { display: flex; align-items: center; gap: 8px; }
.hero__badges span {
    color: var(--lavender-500);
    font-size: 8px;
    width: 10px;
    height: 10px;
    background: var(--lavender-500);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 4px var(--lavender-100);
    text-indent: -9999px;
}

.hero__visual { position: relative; }

.hero__frame {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 460px;
    margin-left: auto;
    border-radius: var(--radius-lg);
    overflow: visible;
}
.hero__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px rgba(93, 69, 121, 0.25), 0 20px 40px rgba(93, 69, 121, 0.15);
    filter: none;
}
.hero__img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(141, 111, 177, 0) 50%, rgba(93, 69, 121, 0.18) 100%);
    pointer-events: none;
}
.hero__frame::before {
    content: '';
    position: absolute;
    inset: -16px;
    border: 1.5px solid var(--lavender-300);
    border-radius: var(--radius-lg);
    opacity: 0.9;
    z-index: -1;
}
.hero__frame::after {
    content: '';
    position: absolute;
    inset: -30px -30px auto auto;
    width: 80px;
    height: 80px;
    background: var(--lavender-200);
    border-radius: 50%;
    opacity: 0.4;
    filter: blur(10px);
    z-index: -1;
}

.hero__tag {
    position: absolute;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hero__tag small {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-400);
}
.hero__tag strong {
    font-family: var(--font-serif);
    font-size: 20px;
    font-style: italic;
    color: var(--lavender-900);
}
.hero__tag--top { top: 30px; left: -30px; }
.hero__tag--bottom { bottom: 30px; left: -20px; }

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 1px solid var(--lavender-300);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.hero__scroll span {
    width: 2px;
    height: 8px;
    background: var(--lavender-500);
    border-radius: 2px;
    animation: scroll 1.8s ease-in-out infinite;
}
@keyframes scroll {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* ============ VALUES ============ */
.values {
    padding: 100px 0 40px;
    background: var(--cream-50);
}
.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 50px var(--gutter);
    border-top: 1px solid var(--cream-200);
    border-bottom: 1px solid var(--cream-200);
}
.value {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.value__num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 28px;
    color: var(--lavender-500);
    margin-bottom: 8px;
}
.value h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
}
.value p {
    font-size: 14px;
    line-height: 1.6;
}

/* ============ SERVICES ============ */
.services {
    padding: 120px 0;
    background: var(--cream-50);
}

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

.service {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.45s var(--ease);
    position: relative;
    border: 1px solid var(--cream-200);
    display: flex;
    flex-direction: column;
}
.service:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--lavender-200);
}

.service--featured {
    background: linear-gradient(180deg, var(--lavender-50) 0%, var(--white) 100%);
    border-color: var(--lavender-200);
}

.service__tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--lavender-900);
    color: var(--cream-50);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    z-index: 2;
}

.service__img {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    filter: none;
    transition: transform 0.8s var(--ease);
}
.service:hover .service__img { transform: scale(1.04); }

.service__body {
    padding: 32px 30px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
}
.service__body h3 { font-weight: 500; }
.service__body > p {
    font-size: 15px;
    color: var(--warm-600);
    line-height: 1.6;
}

.service__features {
    margin-top: auto;
    padding: 18px 0;
    border-top: 1px solid var(--cream-200);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service__features li {
    font-size: 13px;
    color: var(--warm-600);
    padding-left: 18px;
    position: relative;
}
.service__features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 1px;
    background: var(--lavender-500);
}

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

.price {
    font-size: 13px;
    color: var(--warm-400);
    letter-spacing: 0.03em;
}
.price strong {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    color: var(--lavender-900);
    display: inline-block;
    margin-left: 4px;
}

.services__note {
    text-align: center;
    font-size: 13px;
    color: var(--warm-400);
    font-style: italic;
    padding: 20px;
}

/* ============ GALLERY ============ */
.gallery {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream-50) 0%, var(--lavender-50) 100%);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 18px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--cream-100);
    cursor: pointer;
}
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
    filter: none;
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(47, 30, 69, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }

.gallery__item figcaption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    color: var(--white);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease);
}
.gallery__item:hover figcaption {
    opacity: 1;
    transform: translateY(0);
}

.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ============ DESPUÉS DEL MOLDE ============ */
/* reutiliza .gallery__grid / .gallery__item; solo cambia el fondo para
   separarse del Proceso (crema) que va justo antes */
.finishes {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
}
.finishes .section-head { margin-bottom: 56px; }
/* las ocho fotos son verticales: celda alta y cuatro columnas para que
   quepan en dos filas sin recortar el torso */
.finishes__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 420px;
}
@media (max-width: 1024px) {
    .finishes__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 400px; }
}
@media (max-width: 720px) {
    .finishes__grid { grid-template-columns: 1fr; grid-auto-rows: 380px; }
}

/* ============ PROCESS ============ */
.process {
    padding: 120px 0;
    background: var(--cream-50);
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    counter-reset: step;
    position: relative;
}
.process__steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lavender-300), transparent);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
}
.step__num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 28px;
    color: var(--lavender-700);
    background: var(--cream-50);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--lavender-300);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.4s var(--ease);
}
.step:hover .step__num,
.step.is-visible .step__num {
    background: var(--lavender-500);
    color: var(--white);
    border-color: var(--lavender-500);
    transform: scale(1.05);
}
.step__body h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
}
.step__body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--warm-600);
}

/* ============ ABOUT ============ */
.about {
    padding: 120px 0;
    background: var(--lavender-50);
    position: relative;
    overflow: hidden;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about__image {
    position: relative;
    aspect-ratio: 3 / 4;
    max-width: 460px;
}
.about__photo {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    filter: none;
    box-shadow: var(--shadow-lg);
}
.about__image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--lavender-300);
    border-radius: var(--radius-lg);
    opacity: 0.6;
    z-index: 0;
}

.about__badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background: var(--cream-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lavender-700);
    box-shadow: var(--shadow-md);
    animation: rotate 20s linear infinite;
}
.about__badge svg { width: 100%; height: 100%; padding: 10px; }
@keyframes rotate { to { transform: rotate(360deg); } }

.about__copy { max-width: 540px; }
.about__lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--warm-800);
    margin-bottom: 20px;
    max-width: none;
}
.about__copy p {
    margin-bottom: 18px;
    line-height: 1.8;
    max-width: none;
}
.about__copy p em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--lavender-700);
    font-size: 1.05em;
}
.about__copy .btn { margin-top: 20px; }

/* ============ FAQ ============ */
.faq {
    padding: 120px 0;
    background: var(--cream-50);
}

.faq__list {
    max-width: 820px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--cream-200);
    transition: all 0.3s var(--ease);
}
.faq__item:first-child { border-top: 1px solid var(--cream-200); }

.faq__item summary {
    list-style: none;
    padding: 28px 60px 28px 0;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    color: var(--lavender-900);
    position: relative;
    transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: '';
    position: absolute;
    right: 6px;
    top: 50%;
    width: 14px;
    height: 14px;
    border-right: 1.5px solid var(--lavender-500);
    border-bottom: 1.5px solid var(--lavender-500);
    transform: translateY(-70%) rotate(45deg);
    transition: all 0.35s var(--ease);
}
.faq__item[open] summary::after {
    transform: translateY(-30%) rotate(-135deg);
}
.faq__item summary:hover { color: var(--lavender-700); }

.faq__content {
    padding: 0 60px 28px 0;
    animation: fadeIn 0.4s var(--ease-out);
}
.faq__content p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--warm-600);
    max-width: none;
}
.faq__content strong {
    color: var(--lavender-900);
    font-weight: 500;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============ CONTACT ============ */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--cream-50) 0%, var(--lavender-100) 100%);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__copy h2 { margin-bottom: 20px; }
.contact__copy > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.contact__details {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
    border-top: 1px solid var(--lavender-200);
}
.contact__details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lavender-500);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.contact__details strong {
    display: block;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-400);
    font-weight: 500;
    margin-bottom: 2px;
}
.contact__details a {
    color: var(--lavender-700);
    transition: color 0.3s var(--ease);
}
.contact__details a:hover { color: var(--lavender-900); }

.contact__form {
    background: var(--white);
    padding: 44px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--cream-200);
}
.contact__form h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 28px;
}

.field { margin-bottom: 20px; }
.field label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-600);
    margin-bottom: 8px;
}
.field input,
.field textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--cream-50);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    color: var(--warm-800);
    transition: all 0.3s var(--ease);
}
.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--lavender-500);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--lavender-100);
}
.field textarea { resize: vertical; min-height: 100px; }

.field--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}
.field--half label { margin-bottom: 8px; }

.form__note {
    display: block;
    font-size: 11px;
    color: var(--warm-400);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}
.form__note a {
    color: var(--lavender-700);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.form__note a:hover { color: var(--lavender-900); }

/* ============ FOOTER ============ */
.footer {
    background: var(--lavender-900);
    color: var(--cream-100);
    padding: 80px 0 0;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
}
.footer__brand .nav__brand-text {
    margin-bottom: 16px;
}
.footer__brand .nav__brand-name {
    color: var(--cream-50);
    font-size: 42px;
}
.footer__brand .nav__brand-sub {
    color: var(--lavender-300);
    font-size: 14px;
    margin-top: 6px;
}
.footer__brand p {
    color: var(--lavender-300);
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.7;
    max-width: none;
}
.footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.footer__cols h4 {
    color: var(--cream-50);
    margin-bottom: 20px;
    font-size: 11px;
}
.footer__cols a {
    display: block;
    padding: 6px 0;
    color: var(--lavender-300);
    font-size: 14px;
    transition: color 0.3s var(--ease);
}
.footer__cols a:hover { color: var(--cream-50); }

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    text-align: center;
}
.footer__bottom small {
    color: var(--lavender-300);
    font-size: 12px;
    letter-spacing: 0.05em;
}

/* ============ BACK TO TOP ============ */
.back-top {
    position: fixed;
    bottom: 76px;
    right: 20px;
    width: 40px;
    height: 40px;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: 1px solid var(--lavender-300);
    border-radius: 50%;
    background: rgba(253, 251, 246, 0.92);
    color: var(--lavender-700);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease);
    box-shadow: 0 4px 12px rgba(62, 43, 90, 0.08);
}
.back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.back-top:hover {
    background: var(--lavender-500);
    color: var(--white);
    border-color: var(--lavender-500);
}
@media (max-width: 720px) {
    .back-top { bottom: 66px; right: 16px; width: 36px; height: 36px; }
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    aspect-ratio: 1 / 1;
    padding: 0;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s var(--ease);
}
.wa-float svg { width: 22px; height: 22px; }
.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ HERO LOGO PLACEHOLDER ============ */
.hero__title-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}
.hero__title-row .hero__title {
    margin-bottom: 0;
    flex: 1;
}
.hero__logo {
    width: 102px;
    height: 148px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__logo img {
    width: 100%;
    height: 100%;
}
@media (max-width: 720px) {
    .hero__title-row { gap: 16px; }
    .hero__logo { width: 66px; height: 96px; }
}

/* ============ SERVICIOS — 4 COLUMNAS ============ */
.services__grid--four {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.services__grid--four .service__body {
    padding: 24px 22px 22px;
    gap: 12px;
}
.services__grid--four .service__body h3 {
    font-size: 22px;
}
.service__caption {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 14px;
    color: var(--lavender-700);
    margin-top: -4px;
}

/* ============ ACABADOS Y MATERIALES ============ */
.materials {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    margin: 60px 0 30px;
    padding: 50px;
    background: var(--lavender-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--lavender-100);
}
.materials__copy h3 {
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 500;
    margin: 8px 0 16px;
    color: var(--lavender-900);
}
.materials__copy p {
    color: var(--warm-600);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.65;
}
.materials__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
}
.materials__list li {
    font-size: 14px;
    color: var(--warm-800);
    padding-left: 18px;
    position: relative;
}
.materials__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 1px;
    background: var(--lavender-500);
}
.materials__image {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* ============ SIGNIFICADO DE UKU ============ */
.about__meaning {
    margin: 36px 0 28px;
    padding: 28px 30px;
    border-left: 2px solid var(--lavender-300);
    background: var(--lavender-50);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.about__meaning-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 28px;
    color: var(--lavender-900);
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}
.about__meaning-tagline {
    font-size: 15px;
    color: var(--lavender-700);
    margin-bottom: 16px !important;
}
.about__meaning p {
    color: var(--warm-600);
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.65;
}
.about__meaning p:last-child { margin-bottom: 0; }
.about__meaning strong {
    color: var(--lavender-900);
    font-weight: 500;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; gap: 60px; }
    .hero__visual { max-width: 420px; margin: 0 auto; }
    .hero__frame { margin: 0 auto; }
    .values__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .services__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 40px; }
    .services__grid--four { grid-template-columns: repeat(2, 1fr); max-width: none; }
    .materials { grid-template-columns: 1fr; padding: 36px; gap: 30px; }
    .materials__image { max-width: 420px; margin: 0 auto; width: 100%; }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__item--wide { grid-column: span 2; }
    .process__steps { grid-template-columns: repeat(2, 1fr); }
    .process__steps::before { display: none; }
    .about__grid { grid-template-columns: 1fr; gap: 60px; }
    .about__image { margin: 0 auto; }
    .contact__grid { grid-template-columns: 1fr; gap: 60px; }
    .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
    .nav__links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 30px var(--gutter);
        background: var(--cream-50);
        border-bottom: 1px solid var(--cream-200);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        transition: transform 0.4s var(--ease);
        align-items: stretch;
    }
    .nav__links.is-open { transform: translateY(0); }
    .nav__links a {
        padding: 16px 0;
        border-bottom: 1px solid var(--cream-200);
        text-align: center;
    }
    .nav__links a:last-child { border-bottom: none; }
    .nav__cta { margin-top: 10px; text-align: center; }
    .nav__toggle { display: flex; }

    .hero { padding: 120px 0 60px; }
    .hero__title { font-size: 44px; }
    .hero__tag--top { top: 15px; left: -10px; padding: 10px 14px; }
    .hero__tag--top strong { font-size: 16px; }
    .hero__tag--bottom { bottom: 20px; left: -10px; padding: 10px 14px; }
    .hero__tag--bottom strong { font-size: 16px; }
    .hero__cta { flex-direction: column; width: 100%; }
    .hero__cta .btn { width: 100%; }

    .values { padding: 60px 0 20px; }
    .values__grid { grid-template-columns: 1fr; padding: 40px var(--gutter); }

    .services, .gallery, .process, .about, .faq, .contact { padding: 80px 0; }
    .services__grid--four { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto 30px; }
    .materials { padding: 28px; }
    .materials__list { grid-template-columns: 1fr; }

    .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
    .gallery__item--tall, .gallery__item--wide { grid-row: auto; grid-column: auto; }

    .process__steps { grid-template-columns: 1fr; gap: 24px; }

    .about__badge { width: 90px; height: 90px; bottom: -15px; right: -15px; }

    .contact__form { padding: 32px 24px; }
    .field--half { grid-template-columns: 1fr; }

    .footer { padding: 60px 0 0; }
    .footer__cols { grid-template-columns: 1fr 1fr; gap: 24px; }

    .wa-float { bottom: 16px; right: 16px; width: 40px; height: 40px; }
    .wa-float svg { width: 20px; height: 20px; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 38px; }
    .hero__lead { font-size: 16px; }
    .section-head { margin-bottom: 40px; }
    .section-head p { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ============ MOLDES — variante oscura ============ */
.services--dark {
    background: linear-gradient(180deg, #1a1423 0%, #2a1f3a 100%);
    color: var(--cream-50);
}
.services--dark .section-head h2 {
    color: var(--cream-50);
}
.services--dark .section-head h2 em {
    color: var(--lavender-300);
}
.services--dark .section-head .eyebrow {
    color: var(--lavender-300);
}
.services--dark .section-head .eyebrow::after {
    background: var(--lavender-300);
}
.services--dark .section-head p,
.services--dark .section-head__sub {
    color: rgba(251, 246, 236, 0.75);
}
.services--dark .section-head__sub em {
    color: var(--cream-100);
}
.services--dark .services__note {
    color: rgba(251, 246, 236, 0.55);
}
.services--dark .service {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(203, 184, 220, 0.18);
}
.services--dark .service:hover {
    border-color: var(--lavender-300);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.services--dark .service__body h3 {
    color: var(--cream-50);
}
.services--dark .service__body > p {
    color: rgba(251, 246, 236, 0.75);
}
.services--dark .service__caption {
    color: var(--lavender-300);
}
.services--dark .service__foot {
    border-top-color: rgba(203, 184, 220, 0.18);
}
.services--dark .link-arrow {
    color: var(--lavender-300);
}
.services--dark .link-arrow:hover {
    color: var(--cream-50);
}

/* Introducción y conceptos (Moldes) */
.services__intro {
    max-width: 820px;
    margin: -20px auto 60px;
    font-family: var(--font-serif);
}
.services__intro p {
    font-size: clamp(17px, 1.5vw, 19px);
    line-height: 1.7;
    color: rgba(251, 246, 236, 0.82);
    margin-bottom: 18px;
    font-style: italic;
}
.services__concepts {
    margin-top: 24px;
    display: grid;
    gap: 14px;
    padding-left: 0;
}
.services__concepts li {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 15px;
    color: rgba(251, 246, 236, 0.78);
    padding-left: 22px;
    position: relative;
    line-height: 1.6;
}
.services__concepts li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 12px;
    height: 1px;
    background: var(--lavender-300);
}
.services__concepts strong {
    color: var(--lavender-300);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Subtítulo poético en section-head */
.section-head__sub {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.5;
    color: var(--warm-600);
}

/* Foto-botón (clic para ampliar) */
.service__img--btn {
    width: 100%;
    cursor: zoom-in;
    border: 0;
    padding: 0;
    position: relative;
}
.service__img--btn::after {
    content: '⤢';
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(26, 20, 35, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    backdrop-filter: blur(6px);
}
.service:hover .service__img--btn::after {
    opacity: 1;
}

/* ============ LIGHTBOX ============ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 7, 15, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 40px;
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.25s var(--ease);
}
.lightbox.is-open {
    display: flex;
    opacity: 1;
}
.lightbox__img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    object-fit: contain;
    cursor: default;
}
.lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.25s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}
.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.22);
}

/* ============ PÁGINAS LEGALES ============ */
.legal-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 246, 236, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--cream-200);
}
.legal-nav__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.legal-nav__back {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--warm-600);
    transition: color 0.3s var(--ease);
}
.legal-nav__back:hover { color: var(--lavender-700); }

.legal {
    padding: 70px 0 110px;
    background: linear-gradient(180deg, var(--cream-50) 0%, var(--lavender-50) 100%);
}
.legal__inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}
.legal h1 {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 300;
    color: var(--lavender-900);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.legal__updated {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 18px;
    color: var(--warm-400);
    margin-bottom: 44px;
}
.legal h2 {
    font-size: 21px;
    font-weight: 500;
    color: var(--lavender-900);
    margin: 48px 0 16px;
    letter-spacing: -0.01em;
}
.legal h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--warm-800);
    margin: 28px 0 10px;
}
.legal p { margin-bottom: 16px; color: var(--warm-600); }
.legal a:not(.legal-nav__back) {
    color: var(--lavender-700);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.legal a:not(.legal-nav__back):hover { color: var(--lavender-900); }
.legal strong { color: var(--warm-800); font-weight: 600; }

.legal ul, .legal ol {
    margin: 0 0 16px 0;
    padding-left: 22px;
    color: var(--warm-600);
}
.legal ul { list-style: none; padding-left: 0; }
.legal ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 9px;
}
.legal ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--lavender-300);
}
.legal ol { list-style: decimal; }
.legal ol li { margin-bottom: 9px; padding-left: 4px; }

/* ficha del titular y avisos destacados */
.legal__card {
    background: var(--white);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-md);
    padding: 26px 28px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}
.legal__card ul li::before { content: none; }
.legal__card ul li { padding-left: 0; }

.legal__note {
    border-left: 3px solid var(--lavender-300);
    background: var(--lavender-50);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 18px 22px;
    margin: 24px 0;
}
.legal__note p:last-child { margin-bottom: 0; }

/* tablas (finalidades, cookies) */
.legal__table-wrap { overflow-x: auto; margin-bottom: 20px; }
.legal table {
    width: 100%;
    min-width: 460px;
    border-collapse: collapse;
    font-size: 14.5px;
}
.legal th, .legal td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid var(--cream-200);
    vertical-align: top;
}
.legal th {
    font-weight: 600;
    color: var(--lavender-900);
    background: var(--cream-100);
    white-space: nowrap;
}
.legal td { color: var(--warm-600); }

.legal-foot {
    background: var(--lavender-900);
    color: var(--lavender-200);
    padding: 30px 0;
    font-size: 13px;
}
.legal-foot__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.legal-foot nav { display: flex; gap: 22px; flex-wrap: wrap; }
.legal-foot a { transition: color 0.3s var(--ease); }
.legal-foot a:hover { color: var(--white); }

@media (max-width: 720px) {
    .legal { padding: 44px 0 76px; }
    .legal h2 { margin-top: 38px; }
    .legal-foot__inner { justify-content: center; text-align: center; }
}
