/* ==========================================================================
   New Flowers
   Tokens y componentes base de la web publica.
   Los valores de color, tipografia y anchos vienen del manual de marca.
   ========================================================================== */

:root {
    /* Paleta del manual */
    --nf-green: #0f4c28;
    --nf-red: #9b0405;
    --nf-cream: #f7f3ea;
    --nf-white: #ffffff;
    --nf-black: #000000;

    /* Derivados para estados e interfaz */
    --nf-green-deep: #0f4c28;
    --nf-green-soft: rgba(15, 76, 40, 0.08);
    --nf-red-deep: #7a0304;
    --nf-ink: #22312a;
    --nf-ink-soft: #55635b;
    --nf-line: rgba(15, 76, 40, 0.18);
    /* Oscurecido de fotos: verde oscuro, Multiplicar, 60% */
    --nf-image-shade: var(--nf-green-deep);
    --nf-image-shade-opacity: 0.7;

    /* Tipografia */
    --nf-font-display: "Playfair Display", Georgia, "Times New Roman", serif;
    --nf-font-body: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
    /* Sustituto libre de Balladeer, que es comercial y solo se usa en el logo */
    --nf-font-script: "Petit Formal Script", "Playfair Display", cursive;

    /* Anchos de reticula */
    --nf-w-content: 1200px;
    --nf-w-wide: 1560px;
    --nf-w-bleed: 1920px;

    /* Ritmo vertical y espaciado */
    --nf-gutter: clamp(1.25rem, 4vw, 3rem);
    --nf-section-y: clamp(3.5rem, 8vw, 7rem);

    --nf-radius: 0.5rem;
    --nf-radius-lg: 1rem;
    --nf-radius-pill: 999px;

    --nf-shadow-sm: 0 1px 3px rgba(10, 51, 25, 0.08), 0 1px 2px rgba(10, 51, 25, 0.06);
    --nf-shadow: 0 4px 16px rgba(10, 51, 25, 0.1);
    --nf-shadow-lg: 0 12px 40px rgba(10, 51, 25, 0.16);

    --nf-transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);

    --nf-header-h: 4.25rem;
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

* {
    margin: 0;
}

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

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100svh;
    background-color: var(--nf-cream);
    color: var(--nf-ink);
    font-family: var(--nf-font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

#contenido {
    flex: 1 0 auto;
}

img,
picture,
video,
svg {
    display: block;
    max-width: 100%;
}

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

button {
    background: none;
    border: 0;
    cursor: pointer;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

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

:focus-visible {
    outline: 2px solid var(--nf-red);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   Contenedores
   ========================================================================== */

.nf-container {
    width: 100%;
    max-width: var(--nf-w-content);
    margin-inline: auto;
    padding-inline: var(--nf-gutter);
}

.nf-container--wide {
    max-width: var(--nf-w-wide);
}

.nf-container--bleed {
    max-width: var(--nf-w-bleed);
    padding-inline: 0;
}

.nf-section {
    padding-block: var(--nf-section-y);
}

.nf-section--green {
    background-color: var(--nf-green);
    color: var(--nf-white);
}

/* ==========================================================================
   Tipografia
   ========================================================================== */

.nf-script {
    font-family: var(--nf-font-script);
    font-weight: 700;
    font-synthesis: weight;
    /* Petit Formal no trae bold: el trazo refuerza el peso sintetizado. */
    -webkit-text-stroke: 0.45px currentColor;
    paint-order: stroke fill;
    line-height: 1.3;
}

/* Titulo de seccion: script en verde con filete rojo debajo */
.nf-section-title {
    font-family: var(--nf-font-script);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    font-synthesis: weight;
    -webkit-text-stroke: 0.55px currentColor;
    paint-order: stroke fill;
    line-height: 1.25;
    color: var(--nf-green);
    text-align: center;
}

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

.nf-section-title::after {
    content: "";
    display: block;
    width: min(22rem, 60%);
    height: 2px;
    margin: 0.6rem auto 0;
    background-color: var(--nf-red);
}

.nf-section-title--left {
    text-align: left;
}

.nf-section-title--left::after {
    margin-inline: 0;
    width: min(12rem, 55%);
}

.nf-section-title--on-dark {
    color: var(--nf-white);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.nf-section-lead {
    max-width: 46rem;
    margin: 1.25rem auto 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--nf-ink);
    text-align: center;
}

.nf-section--green .nf-section-lead {
    color: var(--nf-cream);
}

.nf-prose p + p {
    margin-top: 1rem;
}

/* ==========================================================================
   Botones
   ========================================================================== */

.nf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.9rem;
    border-radius: var(--nf-radius);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    transition: background-color var(--nf-transition), transform var(--nf-transition),
        box-shadow var(--nf-transition);
}

.nf-btn--primary {
    background-color: var(--nf-green);
    color: var(--nf-white);
}

.nf-btn--primary:hover {
    background-color: var(--nf-green-deep);
    box-shadow: var(--nf-shadow);
    transform: translateY(-2px);
}

.nf-btn--accent {
    background-color: var(--nf-red);
    color: var(--nf-white);
}

.nf-btn--accent:hover {
    background-color: var(--nf-red-deep);
    box-shadow: var(--nf-shadow);
    transform: translateY(-2px);
}

.nf-btn--ghost {
    border: 1px solid currentColor;
    color: var(--nf-green);
}

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

/* ==========================================================================
   Cabecera
   El logo va centrado partiendo el menu en tres y tres, como en los bocetos.
   ========================================================================== */

.nf-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--nf-cream);
    border-bottom: 1px solid var(--nf-line);
}

.nf-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    /* Holgura amplia: los menus van pegados al logo por dentro (flex-end y
       flex-start), asi que esta separacion es la unica que los despega. */
    column-gap: clamp(1.75rem, 4vw, 4rem);
    min-height: var(--nf-header-h);
}

/* El envoltorio desaparece de la maquetacion en escritorio para que los dos
   grupos de enlaces participen directamente en la reticula; en movil se
   convierte en el panel desplegable. */
.nf-menu {
    display: contents;
}

/* Posicion explicita de fila y columna: el orden visual no puede depender del
   orden del DOM, que coloca el logo despues de los menus para que en movil los
   dos grupos formen un unico desplegable. Sin fijar grid-row el logo caeria a
   una segunda fila, porque el cursor de autocolocacion ya habria pasado la
   columna 2 y no retrocede. */
.nf-nav--start {
    grid-area: 1 / 1;
    justify-content: flex-end;
}

.nf-header__logo {
    grid-area: 1 / 2;
}

.nf-nav--end {
    grid-area: 1 / 3;
    justify-content: flex-start;
}

.nf-header__logo img {
    height: 2.25rem;
    width: auto;
}

.nf-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2.25rem);
}

.nf-nav__link {
    position: relative;
    padding-block: 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nf-green);
    white-space: nowrap;
    transition: color var(--nf-transition);
}

.nf-nav__link::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 1.5px;
    background-color: var(--nf-red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--nf-transition);
}

.nf-nav__link:hover::after,
.nf-nav__link[aria-current="page"]::after {
    transform: scaleX(1);
}

.nf-nav__link[aria-current="page"] {
    color: var(--nf-red);
}

.nf-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.nf-burger span {
    width: 22px;
    height: 2px;
    background-color: var(--nf-green);
    transition: transform var(--nf-transition), opacity var(--nf-transition);
}

@media (max-width: 60rem) {
    .nf-header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .nf-burger {
        display: flex;
        grid-area: 1 / 1;
        justify-self: start;
    }

    .nf-header__logo {
        grid-area: 1 / 2;
        justify-self: center;
    }

    .nf-menu {
        display: block;
        position: fixed;
        inset-block-start: var(--nf-header-h);
        inset-inline: 0;
        max-height: 0;
        overflow: hidden;
        background-color: var(--nf-cream);
        transition: max-height var(--nf-transition);
    }

    .nf-header[data-open="true"] .nf-menu {
        max-height: min(70vh, 30rem);
        overflow-y: auto;
        border-bottom: 1px solid var(--nf-line);
        box-shadow: var(--nf-shadow);
    }

    /* Dentro del panel desplegable los menus ya no son celdas de la rejilla */
    .nf-nav,
    .nf-nav--start,
    .nf-nav--end {
        grid-area: auto;
        flex-direction: column;
        gap: 0;
    }

    .nf-nav__link {
        width: 100%;
        padding: 0.9rem var(--nf-gutter);
        font-size: 0.8rem;
        text-align: center;
        border-bottom: 1px solid var(--nf-line);
    }

    .nf-nav__link::after {
        display: none;
    }

    .nf-header[data-open="true"] .nf-burger span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    .nf-header[data-open="true"] .nf-burger span:nth-child(2) {
        opacity: 0;
    }

    .nf-header[data-open="true"] .nf-burger span:last-child {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* ==========================================================================
   Cabecera de pagina: tres variantes
     hero    -> Inicio, a pantalla completa con subtitulo y flecha
     banner  -> paginas interiores, con titulo y filete
     strip   -> ficha de variedad, franja decorativa sin texto
   ========================================================================== */

.nf-hero {
    position: relative;
    display: grid;
    justify-items: center;
    align-content: center;
    padding-block: clamp(4rem, 12vw, 9rem);
    padding-inline: var(--nf-gutter);
    overflow: hidden;
    background-color: var(--nf-green-deep);
    color: var(--nf-white);
    text-align: center;
}

.nf-hero__media {
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: var(--nf-hero-media-position, center);
    width: 100%;
    height: 100%;
}

.nf-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--nf-image-shade);
    opacity: var(--nf-image-shade-opacity);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.nf-hero__body {
    position: relative;
    z-index: 1;
}

.nf-hero__title {
    font-family: var(--nf-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(2.25rem, 6.5vw, 4.75rem);
    line-height: 1.15;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

/* Los saltos del titulo se declaran en la vista, no se dejan al ajuste
   automatico de linea, que cambiaria segun el ancho de la ventana. */
.nf-hero__line {
    display: block;
}

.nf-hero__subtitle {
    position: relative;
    z-index: 1;
    max-width: 44rem;
    margin-top: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Relleno inferior mayor que el superior: desplaza el titulo por encima del
   centro geometrico, que es donde el ojo lo percibe como centrado. El subtitulo
   se saca del flujo y se ancla al pie, para que no reste altura al centrado. */
.nf-hero--full {
    min-height: calc(100svh - var(--nf-header-h));
    padding-top: clamp(5rem, 9vw, 7rem);
    padding-bottom: clamp(9rem, 15vw, 13rem);
}

.nf-hero--full .nf-hero__subtitle {
    position: absolute;
    inset-inline: 0;
    bottom: 4.75rem;
    /* Necesario porque el max-width del estilo base, combinado con el anclaje a
       inset-inline: 0, dejaria el texto pegado al borde izquierdo. */
    margin-inline: auto;
    margin-top: 0;
    font-family: var(--nf-font-display);
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    font-weight: 400;
    letter-spacing: 0.12em;
}

.nf-hero--banner {
    min-height: 17rem;
}

.nf-hero--banner .nf-hero__title::after {
    content: "";
    display: block;
    width: min(26rem, 70%);
    height: 2px;
    margin: 0.75rem auto 0;
    background-color: var(--nf-red);
}

.nf-hero--strip {
    min-height: 5.5rem;
    padding-block: 0;
}

.nf-hero--strip .nf-hero__media {
    object-position: 50% 40%;
}

/* Destino de la flecha de scroll. El desplazamiento compensa la cabecera
   pegajosa, que si no taparia el inicio de la seccion. */
#nf-after-hero {
    display: block;
    scroll-margin-top: var(--nf-header-h);
}

.nf-hero__chevron {
    width: 1.75rem;
    height: 1.75rem;
}

.nf-hero__scroll {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    z-index: 1;
    translate: -50% 0;
    color: var(--nf-white);
    animation: nf-bob 2.4s ease-in-out infinite;
}

@keyframes nf-bob {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(7px);
    }
}

/* ==========================================================================
   Pie
   ========================================================================== */

.nf-footer {
    flex-shrink: 0;
    margin-top: auto;
    background-color: var(--nf-cream);
    border-top: 2px solid var(--nf-green);
}

/* Columnas del ancho de su contenido y centradas como grupo. Con fracciones
   (1.2fr 1fr 1fr) la columna de marca se queda corta respecto a su logo y el
   conjunto se percibe desplazado a la izquierda, con el hueco sobrante a la
   derecha. */
.nf-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    align-items: start;
    gap: clamp(2.5rem, 7vw, 7rem);
    padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

@media (max-width: 52rem) {
    .nf-footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
}

.nf-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
}

.nf-footer__logo img {
    height: 5.75rem;
    width: auto;
}

.nf-footer__brand .nf-socials {
    justify-content: center;
    width: 100%;
}

.nf-footer__heading {
    margin-bottom: 1.1rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nf-green);
}

.nf-footer__list li + li {
    margin-top: 0.6rem;
}

.nf-footer__item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9375rem;
    color: var(--nf-ink);
}

.nf-footer__item svg {
    flex: none;
    width: 1.05rem;
    height: 1.05rem;
    margin-top: 0.25rem;
    color: var(--nf-red);
}

.nf-footer__link {
    font-size: 0.9375rem;
    color: var(--nf-ink);
    transition: color var(--nf-transition);
}

.nf-footer__link:hover {
    color: var(--nf-red);
}

.nf-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.nf-socials a {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: var(--nf-radius-pill);
    background-color: var(--nf-red);
    color: var(--nf-white);
    transition: background-color var(--nf-transition), transform var(--nf-transition);
}

.nf-socials a:hover {
    background-color: var(--nf-green);
    transform: translateY(-2px);
}

.nf-socials svg {
    width: 1rem;
    height: 1rem;
}

.nf-footer__bar {
    background-color: var(--nf-green);
    color: var(--nf-cream);
    text-align: center;
}

.nf-footer__bar p {
    padding-block: 0.75rem;
    font-size: 0.8125rem;
}

/* ==========================================================================
   Boton flotante de WhatsApp
   ========================================================================== */

.nf-whatsapp {
    position: fixed;
    right: clamp(1rem, 3vw, 1.75rem);
    bottom: clamp(1rem, 3vw, 1.75rem);
    z-index: 90;
    display: grid;
    place-items: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: var(--nf-radius-pill);
    background-color: #25d366;
    color: var(--nf-white);
    box-shadow: var(--nf-shadow-lg);
    transition: transform var(--nf-transition);
}

.nf-whatsapp:hover {
    transform: scale(1.07);
}

.nf-whatsapp svg {
    width: 1.75rem;
    height: 1.75rem;
}

/* ==========================================================================
   Utilidades
   ========================================================================== */

.nf-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.nf-skip-link {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 200;
    padding: 0.6rem 1.25rem;
    background-color: var(--nf-green);
    color: var(--nf-white);
    font-size: 0.8rem;
    border-radius: 0 0 var(--nf-radius) var(--nf-radius);
    transform: translate(-50%, -110%);
    transition: transform var(--nf-transition);
}

.nf-skip-link:focus {
    transform: translate(-50%, 0);
}

/* ==========================================================================
   Paginas de error
   ========================================================================== */

.nf-error {
    display: grid;
    place-items: center;
    min-height: 100svh;
    padding: clamp(1.5rem, 5vw, 3rem) 1.25rem;
    background-color: var(--nf-cream);
    background-image: radial-gradient(circle at 50% 0%, rgba(15, 76, 40, 0.07) 0%, transparent 55%);
}

.nf-error__card {
    max-width: 34rem;
    text-align: center;
}

.nf-error__logo {
    width: min(13rem, 60%);
    height: auto;
    margin-inline: auto;
}

.nf-error__code {
    margin-top: 2rem;
    font-family: var(--nf-font-display);
    font-size: clamp(3.5rem, 12vw, 5.5rem);
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    color: var(--nf-red);
}

.nf-error__title {
    margin-top: 0.5rem;
    font-family: var(--nf-font-script);
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 700;
    font-synthesis: weight;
    -webkit-text-stroke: 0.45px currentColor;
    paint-order: stroke fill;
    color: var(--nf-green);
}

.nf-error__body {
    margin-top: 0.85rem;
    font-size: 0.9375rem;
    color: var(--nf-ink-soft);
}

.nf-error__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.nf-placeholder {
    max-width: 40rem;
    margin-inline: auto;
    padding: clamp(2rem, 5vw, 3rem);
    background-color: var(--nf-white);
    border: 1px solid var(--nf-line);
    border-radius: var(--nf-radius-lg);
    box-shadow: var(--nf-shadow-sm);
    text-align: center;
}

.nf-placeholder h2 {
    font-family: var(--nf-font-script);
    font-size: 1.5rem;
    font-weight: 700;
    font-synthesis: weight;
    -webkit-text-stroke: 0.45px currentColor;
    paint-order: stroke fill;
    color: var(--nf-green);
}

.nf-placeholder p {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    color: var(--nf-ink-soft);
}

/* ==========================================================================
   Catalogo publico
   ========================================================================== */

.nf-catalog {
    padding-top: clamp(2.5rem, 5vw, 4rem);
}

.nf-catalog__lead {
    max-width: 62rem;
    margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    line-height: 1.35;
    text-align: center;
    color: var(--nf-green);
}

.nf-catalog__lead-line {
    display: block;
}

@media (min-width: 40rem) {
    .nf-catalog__lead-line {
        white-space: nowrap;
    }
}

.nf-catalog__form {
    display: block;
}

.nf-catalog__layout {
    display: grid;
    grid-template-columns: minmax(13rem, 16.5rem) minmax(0, 1fr);
    gap: clamp(1.75rem, 4vw, 3.25rem);
    align-items: start;
}

@media (max-width: 56rem) {
    .nf-catalog__layout {
        grid-template-columns: 1fr;
    }
}

.nf-catalog__filters-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.35rem;
}

.nf-catalog__filters-title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--nf-ink);
}

.nf-catalog__clear {
    font-size: 0.8125rem;
    color: var(--nf-ink-soft);
    text-decoration: underline;
    text-underline-offset: 0.15em;
    white-space: nowrap;
}

.nf-catalog__clear:hover {
    color: var(--nf-green);
}

.nf-catalog__clear.is-disabled {
    opacity: 0.45;
    text-decoration: none;
    cursor: default;
}

.nf-catalog__group {
    margin: 0 0 1.5rem;
    padding: 0;
    border: 0;
    min-width: 0;
}

.nf-catalog__label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nf-ink-soft);
}

.nf-catalog__pills {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.nf-category-pill {
    position: relative;
    display: block;
    cursor: pointer;
}

.nf-category-pill input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.nf-category-pill__face {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: 0.65rem 1rem;
    border-radius: var(--nf-radius-pill);
    background:
        linear-gradient(120deg, rgba(10, 20, 18, 0.72), rgba(15, 76, 40, 0.55)),
        radial-gradient(circle at 20% 30%, #9b0405 0%, transparent 42%),
        radial-gradient(circle at 80% 70%, #2e5aac 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, #1b1b1b, #0a3319);
    background-size: cover;
    background-position: center;
    color: var(--nf-white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    transition: transform var(--nf-transition), box-shadow var(--nf-transition);
}

.nf-category-pill.has-image .nf-category-pill__face {
    background-image:
        linear-gradient(120deg, rgba(10, 20, 18, 0.7), rgba(10, 20, 18, 0.45)),
        var(--pill-image);
}

.nf-category-pill:hover .nf-category-pill__face,
.nf-category-pill.is-active .nf-category-pill__face,
.nf-category-pill:has(input:checked) .nf-category-pill__face {
    transform: translateY(-1px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 0 2px var(--nf-red);
}

.nf-catalog__colors {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1.85rem);
    gap: 0.7rem 0.85rem;
    justify-content: center;
    width: 100%;
}

.nf-color-filter {
    position: relative;
    display: inline-flex;
    justify-content: center;
    cursor: pointer;
}

.nf-color-filter input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.nf-color-filter.is-active .nf-swatch,
.nf-color-filter:has(input:checked) .nf-swatch {
    outline: 2px solid var(--nf-green);
    outline-offset: 2px;
}

.nf-swatch {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--swatch, #ccc);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.18);
}

.nf-swatch--lg {
    width: 1.85rem;
    height: 1.85rem;
}

.nf-input,
.nf-select {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--nf-line);
    border-radius: var(--nf-radius);
    background-color: var(--nf-white);
    color: var(--nf-ink);
    font: inherit;
    font-size: 0.875rem;
}

.nf-input:focus,
.nf-select:focus {
    outline: 2px solid var(--nf-green);
    outline-offset: 1px;
}

.nf-select--inline {
    width: auto;
    min-width: 8.5rem;
    padding-block: 0.4rem;
    background-color: transparent;
    border-color: transparent;
    font-weight: 500;
    color: var(--nf-ink);
}

.nf-input--search {
    width: 10.5rem;
    padding-block: 0.4rem;
    background-color: var(--nf-white);
}

.nf-catalog__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1.25rem;
    margin-bottom: 1.5rem;
}

.nf-catalog__count {
    font-size: 0.875rem;
    color: var(--nf-ink-soft);
}

.nf-catalog__toolbar-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.nf-catalog__sort {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--nf-ink-soft);
}

.nf-catalog__sort-label {
    white-space: nowrap;
}

.nf-catalog__empty {
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--nf-ink-soft);
}

.nf-catalog__empty .nf-btn {
    margin-top: 1.25rem;
}

.nf-catalog__grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 1.85rem);
}

@media (max-width: 52rem) {
    .nf-catalog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 28rem) {
    .nf-catalog__grid {
        grid-template-columns: 1fr;
    }
}

.nf-catalog__grid--similar {
    margin-top: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 13.5rem));
    justify-content: center;
    gap: clamp(1rem, 2.5vw, 1.75rem);
}

@media (max-width: 40rem) {
    .nf-catalog__grid--similar {
        grid-template-columns: repeat(2, minmax(0, 12rem));
    }
}

@media (max-width: 24rem) {
    .nf-catalog__grid--similar {
        grid-template-columns: minmax(0, 12rem);
    }
}

.nf-variety-card {
    display: block;
    text-align: center;
    color: inherit;
}

.nf-variety-card__media {
    display: block;
    aspect-ratio: 1;
    padding: 0;
    background-color: var(--nf-white);
    border: 1px solid rgba(34, 49, 42, 0.28);
    overflow: hidden;
    transition: border-color var(--nf-transition), box-shadow var(--nf-transition);
}

.nf-variety-card:hover .nf-variety-card__media {
    border-color: var(--nf-green);
    box-shadow: var(--nf-shadow-sm);
}

.nf-variety-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nf-variety-card__placeholder,
.nf-variety__placeholder {
    display: block;
    width: 55%;
    aspect-ratio: 1;
    border-radius: 50% 50% 45% 45%;
    background: linear-gradient(160deg, rgba(155, 4, 5, 0.35), rgba(15, 76, 40, 0.25));
}

.nf-variety-card__swatches {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.65rem;
    min-height: 0.85rem;
}

.nf-variety-card__title {
    margin-top: 0.55rem;
    font-family: var(--nf-font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--nf-ink);
}

.nf-pagination {
    margin-top: 2.75rem;
}

.nf-pagination__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
}

.nf-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 50%;
    color: var(--nf-ink);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background-color var(--nf-transition), color var(--nf-transition);
}

.nf-pagination__link:hover {
    background-color: var(--nf-green-soft);
    color: var(--nf-green);
}

.nf-pagination__link.is-current {
    background-color: var(--nf-red);
    color: var(--nf-white);
}

.nf-pagination__ellipsis {
    display: inline-flex;
    width: 1.5rem;
    justify-content: center;
    color: var(--nf-ink-soft);
    letter-spacing: 0.08em;
}

/* Ficha de variedad */

.nf-breadcrumb {
    margin-bottom: 1.75rem;
}

.nf-breadcrumb__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.55rem;
    font-size: 0.875rem;
    color: var(--nf-ink-soft);
}

.nf-breadcrumb__list li:not(:last-child)::after {
    content: "/";
    margin-left: 0.55rem;
    color: var(--nf-line);
}

.nf-breadcrumb a {
    color: var(--nf-green);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.nf-variety__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(1.75rem, 5vw, 3.5rem);
    align-items: center;
}

@media (max-width: 48rem) {
    .nf-variety__layout {
        grid-template-columns: 1fr;
    }
}

.nf-variety__media {
    min-height: 22rem;
    aspect-ratio: 1;
    padding: 0;
    background-color: var(--nf-white);
    border: 1px solid var(--nf-line);
    border-radius: var(--nf-radius-lg);
    overflow: hidden;
}

.nf-variety__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nf-variety__category {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--nf-red);
}

.nf-variety__title {
    margin-top: 0.35rem;
    font-family: var(--nf-font-display);
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--nf-green);
}

.nf-variety__swatches {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.1rem;
    margin-top: 1.25rem;
}

.nf-variety__swatches li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.nf-variety__swatch-name {
    font-size: 0.875rem;
    color: var(--nf-ink-soft);
}

.nf-variety__description {
    margin-top: 1.35rem;
}

.nf-variety__details {
    margin-top: 1.75rem;
}

.nf-variety__subtitle {
    font-family: var(--nf-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--nf-green);
}

.nf-variety__detail-list {
    margin-top: 0.75rem;
    padding-left: 1.15rem;
    color: var(--nf-ink-soft);
}

.nf-variety__detail-list li + li {
    margin-top: 0.4rem;
}

.nf-variety__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.nf-variety.nf-section {
    padding-bottom: clamp(1.25rem, 3vw, 2rem);
}

.nf-similar.nf-section {
    padding-top: clamp(1rem, 2.5vw, 1.75rem);
}

.nf-similar .nf-section-title {
    text-align: center;
}

/* ==========================================================================
   Galeria publica
   ========================================================================== */
   .nf-hero--banner:has(+ .nf-gallery) .nf-hero__media {
    object-position: 50% 45%;
}
.nf-gallery__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.nf-gallery__chip {
    padding: 0.55rem 1.15rem;
    border: 1px solid var(--nf-line);
    border-radius: var(--nf-radius-pill);
    background-color: var(--nf-white);
    color: var(--nf-ink);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background-color var(--nf-transition), border-color var(--nf-transition), color var(--nf-transition);
}

.nf-gallery__chip:hover,
.nf-gallery__chip.is-active {
    border-color: var(--nf-green);
    background-color: var(--nf-green);
    color: var(--nf-white);
}

.nf-gallery__empty {
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--nf-ink-soft);
}

.nf-gallery__masonry {
    --nf-gallery-row: 8px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
    grid-auto-rows: var(--nf-gallery-row);
    gap: 1rem;
}

.nf-gallery__item {
    grid-row-end: span var(--span, 30);
    margin: 0;
    overflow: hidden;
    border-radius: var(--nf-radius);
    opacity: 1;
    transform: scale(1);
    transition: opacity 220ms ease, transform 220ms ease;
}

.nf-gallery__item.is-hidden {
    display: none;
}

.nf-gallery__trigger {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: zoom-in;
}

.nf-gallery__trigger img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--nf-transition);
}

.nf-gallery__trigger:hover img {
    transform: scale(1.03);
}

/* Visor ampliado */

.nf-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 2.5rem);
    background-color: rgba(10, 20, 18, 0.92);
}

.nf-lightbox[hidden] {
    display: none;
}

.nf-lightbox__figure {
    max-width: min(92vw, 72rem);
    max-height: 88vh;
    margin: 0;
}

.nf-lightbox__img {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    width: auto;
    height: auto;
    margin-inline: auto;
    object-fit: contain;
}

.nf-lightbox__close,
.nf-lightbox__nav {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--nf-white);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color var(--nf-transition);
}

.nf-lightbox__close:hover,
.nf-lightbox__nav:hover {
    background-color: rgba(255, 255, 255, 0.22);
}

.nf-lightbox__close {
    top: 1rem;
    right: 1rem;
}

.nf-lightbox__nav--prev {
    left: 1rem;
    top: 50%;
    translate: 0 -50%;
}

.nf-lightbox__nav--next {
    right: 1rem;
    top: 50%;
    translate: 0 -50%;
}

@media (max-width: 40rem) {
    .nf-lightbox__nav {
        display: none;
    }
}

/* ==========================================================================
   Carrusel de noticias (Inicio)
   ========================================================================== */

.nf-news__head {
    position: relative;
    text-align: center;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.nf-news .nf-section-title,
.nf-news .nf-section-lead {
    color: var(--nf-cream);
}

.nf-news .nf-section-title::after {
    background-color: var(--nf-red);
}

.nf-carousel__nav {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.nf-carousel__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(247, 243, 234, 0.35);
    border-radius: 50%;
    background: transparent;
    color: var(--nf-cream);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color var(--nf-transition), border-color var(--nf-transition);
}

.nf-carousel__btn:hover {
    background-color: rgba(247, 243, 234, 0.12);
    border-color: var(--nf-cream);
}

.nf-news__viewport {
    overflow: hidden;
    width: 100%;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.nf-news__viewport.is-dragging {
    cursor: grabbing;
}

.nf-news__track {
    list-style: none;
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
    width: max-content;
    margin: 0;
    padding: 0;
    transition: transform 320ms ease;
    will-change: transform;
}

.nf-news__track.is-dragging {
    transition: none;
}

.nf-news__slide {
    flex: 0 0 auto;
    min-width: 0;
    box-sizing: border-box;
}

.nf-news-card {
    height: 100%;
    background-color: rgba(247, 243, 234, 0.08);
    border: 1px solid rgba(247, 243, 234, 0.14);
    border-radius: var(--nf-radius-lg);
    overflow: hidden;
    transition: box-shadow var(--nf-transition), border-color var(--nf-transition);
}

.nf-news-card--featured {
    border-color: rgba(247, 243, 234, 0.42);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    background-color: rgba(247, 243, 234, 0.12);
}

.nf-news-card--featured .nf-news-card__title {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
}

.nf-news-card__media {
    margin: 0;
    aspect-ratio: 16 / 10;
    background-color: rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.nf-news-card--featured .nf-news-card__media {
    aspect-ratio: 16 / 10.5;
}

.nf-news-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.nf-news-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(155, 4, 5, 0.45), rgba(247, 243, 234, 0.12));
}

.nf-news-card__body {
    padding: 1.15rem 1.2rem 1.35rem;
}

.nf-news-card__date {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(247, 243, 234, 0.7);
}

.nf-news-card__title {
    font-family: var(--nf-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--nf-cream);
}

.nf-news-card__excerpt {
    margin-top: 0.55rem;
    font-size: 0.875rem;
    color: rgba(247, 243, 234, 0.82);
}

/* ==========================================================================
   Carrusel de testimonios (Inicio)
   ========================================================================== */

.nf-testimonials {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        var(--nf-testimonials-image, none) center 70% / cover no-repeat,
        var(--nf-green-deep);
    color: var(--nf-cream);
}

.nf-testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--nf-image-shade);
    opacity: var(--nf-image-shade-opacity);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.nf-testimonials::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            var(--nf-green-deep) 0%,
            var(--nf-green-deep) 15%,
            transparent 40%
        ),
        linear-gradient(
            270deg,
            var(--nf-green-deep) 0%,
            var(--nf-green-deep) 15%,
            transparent 40%
        );
}

.nf-testimonials > .nf-container {
    position: relative;
    z-index: 1;
}

.nf-testimonials .nf-section-title,
.nf-testimonials .nf-section-lead {
    color: var(--nf-cream);
}

.nf-testimonials__viewport {
    max-width: 42rem;
    margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.nf-testimonials__viewport.is-dragging {
    cursor: grabbing;
}

.nf-testimonials__track {
    list-style: none;
    display: flex;
    transition: transform 320ms ease;
    will-change: transform;
}

.nf-testimonials__track.is-dragging {
    transition: none;
}

.nf-testimonials__slide {
    flex: 0 0 100%;
    min-width: 0;
    padding-inline: 0.5rem;
}

.nf-testimonial {
    margin: 0;
    text-align: center;
}

.nf-testimonial__photo {
    width: 5.5rem;
    height: 5.5rem;
    margin-inline: auto;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(247, 243, 234, 0.45);
    pointer-events: none;
}

.nf-testimonial__photo--empty {
    display: block;
    background: linear-gradient(145deg, rgba(247, 243, 234, 0.25), rgba(155, 4, 5, 0.35));
}

.nf-testimonial__quote {
    margin: 1.35rem 0 0;
    font-family: var(--nf-font-display);
    font-size: clamp(1.1rem, 2.4vw, 1.4rem);
    font-style: italic;
    line-height: 1.55;
}

.nf-testimonial__author {
    margin-top: 1.25rem;
    display: grid;
    gap: 0.2rem;
}

.nf-testimonial__author strong {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nf-testimonial__author span {
    font-size: 0.875rem;
    color: rgba(247, 243, 234, 0.72);
}

.nf-testimonials__dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.75rem;
}

.nf-testimonials__dot {
    width: 0.65rem;
    height: 0.65rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: rgba(247, 243, 234, 0.35);
    cursor: pointer;
    transition: background-color var(--nf-transition), transform var(--nf-transition);
}

.nf-testimonials__dot.is-active,
.nf-testimonials__dot:hover {
    background-color: var(--nf-cream);
    transform: scale(1.15);
}

/* ==========================================================================
   Contacto (alineado al boceto)
   ========================================================================== */

.nf-contact {
    padding-block: clamp(2.75rem, 6vw, 4.25rem);
}

.nf-contact__layout {
    display: grid;
    gap: 2.75rem;
}

@media (min-width: 960px) {
    .nf-contact__layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 2.75rem;
        align-items: center;
    }
}

.nf-contact__intro {
    margin: 1.15rem 0 1.75rem;
    max-width: 28rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--nf-ink-soft);
}

.nf-contact__socials {
    justify-content: center;
    max-width: 28rem;
    margin-top: 1.75rem;
}

.nf-contact__details {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.05rem;
}

.nf-contact__details li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    font-size: 0.9375rem;
    line-height: 1.45;
    color: var(--nf-ink);
}

.nf-contact__details a {
    color: inherit;
}

.nf-contact__icon {
    flex-shrink: 0;
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.2rem;
    color: var(--nf-red);
}

.nf-contact__form-wrap {
    width: 100%;
    max-width: 32rem;
    margin-inline: auto;
    background: var(--nf-white);
    border-radius: 0.35rem;
    box-shadow: 0 10px 34px rgba(15, 76, 40, 0.1), 0 2px 8px rgba(15, 76, 40, 0.05);
    padding: 1.35rem 1.25rem 1.5rem;
}

@media (min-width: 640px) {
    .nf-contact__form-wrap {
        padding: 1.5rem 1.65rem 1.65rem;
    }
}

.nf-contact__form .nf-field--line {
    margin-bottom: 1rem;
}

.nf-contact__form .nf-textarea--line {
    min-height: 4.75rem;
}

.nf-contact__submit {
    display: flex;
    justify-content: center;
    margin-top: 1.15rem;
}

.nf-contact__form {
    position: relative;
}

.nf-field {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 1.15rem;
}

.nf-field--line {
    margin-bottom: 1.35rem;
}

.nf-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--nf-ink-soft);
}

.nf-input--line,
.nf-textarea--line {
    border: 0;
    border-bottom: 1.5px solid var(--nf-red);
    border-radius: 0;
    background: transparent;
    padding: 0.45rem 0 0.55rem;
    box-shadow: none;
}

.nf-input--line:focus,
.nf-textarea--line:focus {
    outline: none;
    border-bottom-color: var(--nf-green);
    box-shadow: none;
}

.nf-textarea--line {
    resize: vertical;
    min-height: 6.5rem;
}

.nf-field.has-error .nf-input--line,
.nf-field.has-error .nf-textarea--line {
    border-bottom-color: var(--nf-red-deep);
}

.nf-field-error {
    margin: 0;
    font-size: 0.75rem;
    color: var(--nf-red);
}

.nf-hp {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.nf-alert {
    margin-bottom: 1.5rem;
    padding: 0.85rem 1.1rem;
    border-radius: var(--nf-radius);
    font-size: 0.9375rem;
    border: 1px solid transparent;
}

.nf-alert--success {
    background: rgba(45, 90, 61, 0.1);
    border-color: rgba(45, 90, 61, 0.25);
    color: var(--nf-green-deep);
}

.nf-alert--error {
    background: rgba(155, 4, 5, 0.08);
    border-color: rgba(155, 4, 5, 0.22);
    color: var(--nf-red-deep);
}

/* Modal de éxito — contacto */

.nf-success-modal {
    position: fixed;
    inset: 0;
    width: min(26rem, calc(100vw - 2rem));
    height: fit-content;
    max-width: calc(100vw - 2rem);
    margin: auto;
    border: 0;
    padding: 0;
    background: transparent;
}

.nf-success-modal::backdrop {
    background: rgba(10, 40, 24, 0.55);
    backdrop-filter: blur(4px);
}

.nf-success-modal__card {
    width: 100%;
    padding: clamp(1.75rem, 4vw, 2.35rem);
    border-radius: var(--nf-radius-lg);
    background: var(--nf-white);
    box-shadow: var(--nf-shadow-lg);
    text-align: center;
}

.nf-success-modal__icon {
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(15, 76, 40, 0.1);
    color: var(--nf-green);
}

.nf-success-modal__check {
    width: 1.85rem;
    height: 1.85rem;
}

.nf-success-modal__title {
    margin: 0;
    font-family: var(--nf-font-script);
    font-size: clamp(1.55rem, 3.5vw, 2rem);
    font-weight: 700;
    font-synthesis: weight;
    -webkit-text-stroke: 0.45px currentColor;
    paint-order: stroke fill;
    color: var(--nf-green);
}

.nf-success-modal__text {
    margin: 0.85rem 0 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--nf-ink-soft);
}

.nf-success-modal__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

/* Mapa */

.nf-contact-map {
    position: relative;
    isolation: isolate;
    padding-block: clamp(3rem, 7vw, 4.75rem);
    overflow: hidden;
}

.nf-contact-map__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        var(--nf-contact-map-bg, none) center / cover no-repeat,
        linear-gradient(135deg, #3d6b4a 0%, #6f8f5a 38%, #a8b98a 68%, #7a9a6a 100%);
}

.nf-contact-map__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--nf-image-shade);
    opacity: var(--nf-image-shade-opacity);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.nf-contact-map__inner {
    display: grid;
    justify-items: center;
    gap: 1.75rem;
}

.nf-contact-map__frame {
    width: min(100%, 52rem);
    min-height: 18rem;
    background: var(--nf-white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.nf-contact-map__frame iframe {
    display: block;
    width: 100%;
    height: 20rem;
    border: 0;
}

.nf-contact-map__frame--empty {
    min-height: 16rem;
    background: rgba(255, 255, 255, 0.94);
}

.nf-contact-map__hint {
    margin: 0;
    padding: 1.5rem;
    color: var(--nf-ink-soft);
    text-align: center;
}

/* CTA WhatsApp — mismo layout que Síguenos */

.nf-contact-wa {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 38rem) minmax(0, 1fr);
    align-items: stretch;
    min-height: clamp(20rem, 38vw, 26rem);
    background: var(--nf-cream);
    overflow: hidden;
}

.nf-contact-wa__side {
    position: relative;
    min-height: 18rem;
    overflow: hidden;
    background: var(--nf-cream);
}

.nf-contact-wa__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nf-contact-wa__side--left .nf-contact-wa__photo {
    object-position: left 30%;
    width: 100%;
    max-width: none;
    left: auto;
    right: 0;
    transform: translateX(-20%);
}

.nf-contact-wa__side--right .nf-contact-wa__photo {
    object-position: right 70%;
    width: 100%;
    max-width: none;
    left: 0;
    right: auto;
    transform: translateX(20%);
}

.nf-contact-wa__center {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1.15rem;
    padding: 1.75rem;
    text-align: center;
    background: var(--nf-cream);
}

.nf-contact-wa__lead {
    margin: 0;
    max-width: 32rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--nf-ink-soft);
}

@media (max-width: 800px) {
    .nf-contact-wa {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .nf-contact-wa__side {
        display: none;
    }

    .nf-contact-wa__center {
        padding: 2rem 1.25rem;
    }
}

/* ==========================================================================
   Inicio — Rosas con origen
   ========================================================================== */

.nf-origin__layout {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 900px) {
    .nf-origin__layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        gap: 3.5rem;
    }
}

.nf-origin__photo {
    display: block;
    width: 100%;
    min-height: 18rem;
    max-height: 32rem;
    object-fit: cover;
    border-radius: var(--nf-radius-lg);
    box-shadow: var(--nf-shadow);
}

@media (max-width: 899px) {
    .nf-origin__photo {
        min-height: 11rem;
        max-height: 15rem;
    }
}

.nf-origin__photo--placeholder {
    background:
        linear-gradient(145deg, rgba(15, 76, 40, 0.35), rgba(155, 4, 5, 0.45)),
        radial-gradient(circle at 30% 40%, #f2b8c0, transparent 55%),
        linear-gradient(160deg, #5a7a4a, #1e3d28);
}

.nf-origin__text {
    margin: 1.25rem 0 1.75rem;
    max-width: 34rem;
    font-size: 0.975rem;
    line-height: 1.7;
    color: var(--nf-ink-soft);
}

.nf-origin__text p {
    margin: 0;
}

.nf-origin__text p + p {
    margin-top: 0.9rem;
}

.nf-origin__copy .nf-btn {
    display: flex;
    width: fit-content;
    margin-inline: auto;
}

/* Stats */

.nf-stats {
    background: var(--nf-green-deep);
    color: var(--nf-white);
    padding-block: clamp(2.25rem, 5vw, 3.25rem);
}

.nf-stats__intro {
    margin: 0 0 1.75rem;
    text-align: center;
    font-family: var(--nf-font-body);
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.95);
}

.nf-stats__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1.25rem;
    text-align: center;
}

@media (min-width: 800px) {
    .nf-stats__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.nf-stats__value {
    display: block;
    font-family: var(--nf-font-body);
    font-style: normal;
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--nf-white);
}

.nf-stats__label {
    display: block;
    margin-top: 0.45rem;
    font-family: var(--nf-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

/* Catalog accordion */

.nf-home-catalog__head {
    display: grid;
    justify-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.nf-accordion {
    display: flex;
    gap: 0;
    min-height: clamp(22rem, 48vw, 32rem);
    overflow: hidden;
}

.nf-accordion__panel {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--nf-white);
    text-decoration: none;
    transition: flex 420ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nf-accordion__panel.is-open {
    flex: 3.4 1 0;
}

.nf-accordion__bg {
    position: absolute;
    inset: 0;
    background: var(--nf-panel-image, linear-gradient(145deg, #2d5a3a, #9b0405 70%));
    background-size: cover;
    background-position: center;
    transition: transform 500ms ease;
}

/* Solo un velo desde abajo hasta la zona del nombre; el resto de la foto se ve limpia */
.nf-accordion__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 51, 25, 0.88) 0%,
        rgba(10, 51, 25, 0.55) 22%,
        rgba(10, 51, 25, 0.15) 40%,
        transparent 58%
    );
    pointer-events: none;
    transition: background 320ms ease;
}

.nf-accordion__panel.is-open .nf-accordion__bg {
    transform: scale(1.04);
}

.nf-accordion__panel.is-open .nf-accordion__bg::after {
    background: linear-gradient(
        to top,
        rgba(10, 51, 25, 0.9) 0%,
        rgba(10, 51, 25, 0.65) 32%,
        rgba(10, 51, 25, 0.2) 55%,
        transparent 72%
    );
}

.nf-accordion__label {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.65rem;
    justify-items: start;
    padding: 1.25rem 1rem;
    width: 100%;
}

.nf-accordion__name {
    font-family: var(--nf-font-body);
    font-style: normal;
    font-size: clamp(0.8rem, 1.5vw, 1.05rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.nf-accordion__panel.is-open .nf-accordion__name {
    writing-mode: horizontal-tb;
    transform: none;
}

.nf-accordion__desc {
    display: none;
    max-width: 22rem;
    font-size: 0.875rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.nf-accordion__panel.is-open .nf-accordion__desc {
    display: block;
}

.nf-accordion__more {
    display: none;
    padding: 0.35rem 0.9rem;
    border-radius: var(--nf-radius-pill);
    background: var(--nf-red);
    color: var(--nf-white);
    font-size: 0.75rem;
    font-weight: 600;
}

.nf-accordion__panel.is-open .nf-accordion__more {
    display: inline-flex;
}

@media (max-width: 700px) {
    .nf-accordion {
        flex-direction: column;
        min-height: 0;
        gap: 0;
    }

    .nf-accordion__panel {
        min-height: 4.5rem;
    }

    .nf-accordion__panel.is-open {
        min-height: 14rem;
        flex: 1 1 auto;
    }

    .nf-accordion__name {
        writing-mode: horizontal-tb;
        transform: none;
    }
}

/* Process — foto + hotspots */

.nf-process {
    position: relative;
    background: var(--nf-cream);
}

.nf-process__intro {
    position: relative;
    z-index: 2;
    padding-block: clamp(2rem, 4vw, 3rem) 1rem;
}

.nf-process__stage {
    position: relative;
}

.nf-process__bleed {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1672 / 800;
    line-height: 0;
}

.nf-process__photo {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
}

.nf-process__photo--placeholder {
    background: linear-gradient(120deg, #4a6b3c, #1a3322 55%, #3d2a2a);
}

.nf-process__veil {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            var(--nf-cream) 0%,
            rgba(247, 243, 234, 0.72) 10%,
            rgba(247, 243, 234, 0.28) 22%,
            transparent 38%
        ),
        linear-gradient(
            0deg,
            rgba(10, 51, 25, 0.9) 0%,
            rgba(10, 51, 25, 0.55) 22%,
            rgba(10, 51, 25, 0.18) 40%,
            transparent 56%
        );
}

.nf-process__spot {
    position: absolute;
    z-index: 2;
    transform: translate(-50%, -50%);
    line-height: normal;
}

.nf-process__dot {
    position: relative;
    z-index: 2;
    width: 1.65rem;
    height: 1.65rem;
    padding: 0;
    border: 2.5px solid var(--nf-white);
    border-radius: 50%;
    background: #1b2620;
    cursor: pointer;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
    transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.nf-process__spot.is-active .nf-process__dot,
.nf-process__dot:hover,
.nf-process__dot:focus-visible {
    background: var(--nf-red);
    transform: scale(1.12);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
    outline: none;
}

.nf-process__pulse {
    position: absolute;
    inset: -0.65rem;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    animation: nf-pulse 2.2s ease-out infinite;
    pointer-events: none;
}

.nf-process__spot.is-active .nf-process__pulse {
    border-color: rgba(155, 4, 5, 0.7);
}

@keyframes nf-pulse {
    0% { transform: scale(0.75); opacity: 0.9; }
    100% { transform: scale(1.7); opacity: 0; }
}

.nf-process__card {
    position: absolute;
    top: 50%;
    width: min(17.5rem, 48vw);
    padding: 1.05rem 1.15rem;
    border-radius: 0.75rem;
    background: rgba(247, 243, 234, 0.97);
    box-shadow: var(--nf-shadow);
    transform: translateY(-50%) translateX(-0.35rem);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.nf-process__card--left {
    right: calc(100% + 1rem);
    transform: translateY(-50%) translateX(0.35rem);
}

.nf-process__card--right {
    left: calc(100% + 1rem);
}

.nf-process__spot.is-active .nf-process__card {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.nf-process__card-title {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.45rem;
    color: var(--nf-red);
    font-family: var(--nf-font-body);
    font-size: 0.95rem;
    font-weight: 700;
}

.nf-process__card-icon {
    width: 1.15rem;
    height: 1.15rem;
    color: var(--nf-green);
    flex-shrink: 0;
}

.nf-process__card-body {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--nf-ink);
}

.nf-process__cta--desktop {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: clamp(1.5rem, 4vw, 2.75rem);
    transform: translateX(-50%);
    line-height: normal;
}

.nf-process__cta--mobile {
    display: none;
}

.nf-process__drawer {
    display: none;
}

/* Home gallery teaser — mismo masonry que /galeria */

.nf-home-gallery__wrap {
    position: relative;
    margin-top: 1.75rem;
    max-height: min(38rem, 70vh);
    overflow: hidden;
}

.nf-home-gallery__masonry {
    /* hereda .nf-gallery__masonry */
}

.nf-home-gallery__fade {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, var(--nf-cream));
    pointer-events: none;
}

.nf-home-gallery__cta {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Síguenos — mosaicos laterales + centro */

.nf-follow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(24rem, 38rem) minmax(0, 1fr);
    align-items: stretch;
    min-height: clamp(20rem, 38vw, 26rem);
    background: var(--nf-cream);
    overflow: hidden;
}

.nf-follow__side {
    position: relative;
    min-height: 18rem;
    overflow: hidden;
    background: var(--nf-cream);
}

.nf-follow__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nf-follow__side--left .nf-follow__photo {
    object-position: left center;
    width: 100%;
    max-width: none;
    left: auto;
    right: 0;
    transform: translateX(-20%);
}

.nf-follow__side--right .nf-follow__photo {
    object-position: right center;
    width: 100%;
    max-width: none;
    left: 0;
    right: auto;
    transform: translateX(20%);
}

.nf-follow__photo--placeholder {
    background-size: cover;
    background-position: center;
}

.nf-follow__photo--left {
    background:
        linear-gradient(145deg, rgba(201, 162, 39, 0.45), rgba(155, 4, 5, 0.35)),
        linear-gradient(200deg, #d4a017, #7a3038);
}

.nf-follow__photo--right {
    background:
        linear-gradient(145deg, rgba(155, 4, 5, 0.25), rgba(90, 10, 14, 0.55)),
        linear-gradient(220deg, #c45c6a, #5a1018);
}

.nf-follow__mosaic {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 18%, #f7f3ea 18.5%, #f7f3ea 21%, transparent 21.5%),
        linear-gradient(25deg, transparent 34%, #f7f3ea 34.5%, #f7f3ea 37%, transparent 37.5%),
        linear-gradient(155deg, transparent 52%, #f7f3ea 52.5%, #f7f3ea 55%, transparent 55.5%),
        linear-gradient(70deg, transparent 68%, #f7f3ea 68.5%, #f7f3ea 71%, transparent 71.5%),
        linear-gradient(0deg, transparent 46%, #f7f3ea 46.5%, #f7f3ea 48.5%, transparent 49%);
    opacity: 0.95;
}

.nf-follow__center {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 0.85rem;
    padding: 1.75rem 1.75rem;
    text-align: center;
    background: var(--nf-cream);
}

.nf-follow__text {
    margin: 0;
    max-width: 36rem;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--nf-ink);
}

.nf-follow__handle {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--nf-ink);
    letter-spacing: 0.02em;
}

.nf-follow__socials {
    justify-content: center;
    margin-top: 0.35rem;
}

@media (max-width: 800px) {
    .nf-follow {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .nf-follow__side {
        display: none;
    }

    .nf-follow__center {
        padding: 2rem 1.25rem;
    }

    .nf-process__bleed {
        aspect-ratio: 5 / 4;
    }

    .nf-process__dot {
        width: 0.95rem;
        height: 0.95rem;
        border-width: 2px;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35);
    }

    .nf-process__spot.is-active .nf-process__dot,
    .nf-process__dot:hover,
    .nf-process__dot:focus-visible {
        transform: scale(1.08);
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45);
    }

    .nf-process__pulse {
        inset: -0.3rem;
        border-width: 1px;
    }

    .nf-process__card,
    .nf-process__cta--desktop {
        display: none;
    }

    .nf-process__drawer {
        display: block;
        margin: 1rem 1rem 0;
        padding: 0.9rem 1rem;
        border-radius: 0.65rem;
        background: rgba(247, 243, 234, 0.98);
        box-shadow: var(--nf-shadow);
        line-height: normal;
    }

    .nf-process__cta--mobile {
        display: flex;
        justify-content: center;
        padding: 1rem 1rem 1.5rem;
        line-height: normal;
    }

    .nf-process__cta--mobile .nf-btn {
        font-size: 0.8rem;
        padding: 0.55rem 1.1rem;
    }
}

/* ==========================================================================
   Nosotros
   ========================================================================== */

.nf-about-video .nf-section-title {
    margin-bottom: 1.75rem;
}

.nf-about-video__player,
.nf-video {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--nf-radius-lg);
    overflow: hidden;
    background: var(--nf-green-deep);
    box-shadow: var(--nf-shadow);
    max-width: 56rem;
    margin-inline: auto;
}

.nf-video iframe,
.nf-video video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.nf-video video {
    object-fit: contain;
    background: #000;
}

.nf-video__poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nf-video__poster--empty {
    background:
        linear-gradient(145deg, rgba(15, 76, 40, 0.45), rgba(155, 4, 5, 0.35)),
        linear-gradient(120deg, #1e3d28, #4a2a2a);
}

.nf-video__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 4.25rem;
    height: 4.25rem;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--nf-green);
    cursor: pointer;
    transition: transform var(--nf-transition), background-color var(--nf-transition);
}

.nf-video__play:hover {
    transform: scale(1.06);
    background: var(--nf-white);
}

.nf-video__play-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 0.15rem;
}

/* Historia */

.nf-about-history {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: clamp(3rem, 7vw, 5rem);
    --nf-about-history-bg-position: 50% 92%;
    background:
        var(--nf-about-history-bg, none) var(--nf-about-history-bg-position) / cover no-repeat,
        var(--nf-green-deep);
}

.nf-about-history::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--nf-image-shade);
    opacity: var(--nf-image-shade-opacity);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.nf-about-history__layout {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.75rem;
    align-items: stretch;
    width: 100%;
    max-width: 1025px;
    margin-inline: auto;
    padding-inline: var(--nf-gutter);
}

@media (min-width: 900px) {
    .nf-about-history__layout {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.80fr);
        gap: 2rem;
    }
}

.nf-about-history__panel {
    position: relative;
    overflow: hidden;
    color: var(--nf-cream);
    padding: clamp(1.5rem, 4vw, 2.35rem);
    border-radius: 0.35rem;
    background: transparent;
}

.nf-about-history__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #031b0d;
    opacity: 0.82;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.nf-about-history__panel > * {
    position: relative;
    z-index: 1;
}

.nf-about-history__title {
    margin: 0 0 1.15rem;
    font-family: var(--nf-font-script);
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 700;
    font-synthesis: weight;
    -webkit-text-stroke: 0.45px currentColor;
    paint-order: stroke fill;
    color: var(--nf-white);
}

.nf-about-history__title::after {
    content: "";
    display: block;
    width: min(12rem, 55%);
    height: 2px;
    margin-top: 0.6rem;
    background-color: var(--nf-red);
}

.nf-about-history__copy {
    display: grid;
    gap: 0.95rem;
}

.nf-about-history__copy p {
    margin: 0;
    font-family: var(--nf-font-body);
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(247, 243, 234, 0.94);
}

.nf-about-history__photo {
    margin: 0;
    border-radius: 0.35rem;
    overflow: hidden;
    min-height: 16rem;
    background: rgba(0, 0, 0, 0.2);
}

.nf-about-history__photo img,
.nf-about-history__photo-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 16rem;
    object-fit: cover;
}

.nf-about-history__photo-placeholder {
    background:
        linear-gradient(160deg, rgba(247, 243, 234, 0.12), rgba(155, 4, 5, 0.25)),
        radial-gradient(circle at 50% 40%, #e8a0ad, transparent 55%),
        linear-gradient(180deg, #5a7a4a, #1e3d28);
}

/* Misión / Visión — títulos verdes, párrafos negros (como Inicio) */

.nf-about-mv__rows {
    display: grid;
    gap: 1.75rem;
    margin-top: 2rem;
    max-width: 1100px;
    margin-inline: auto;
}

.nf-about-mv__row {
    display: grid;
    gap: 0.85rem;
    align-items: start;
}

@media (min-width: 700px) {
    .nf-about-mv__row {
        grid-template-columns: 7.5rem 1fr;
        gap: 1.35rem;
        align-items: center;
    }
}

.nf-about-mv__label {
    margin: 0;
    font-family: var(--nf-font-body);
    font-style: normal;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--nf-green);
}

@media (min-width: 700px) {
    .nf-about-mv__text {
        border-left: 1px solid var(--nf-green);
        padding-left: 1.35rem;
    }
}

.nf-about-mv__text {
    margin: 0;
    font-family: var(--nf-font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--nf-ink);
}

/* Valores */

.nf-about-values {
    background: var(--nf-green);
    color: var(--nf-white);
    padding-block: clamp(1.75rem, 4vw, 2.5rem);
}

.nf-about-values__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: center;
}

@media (min-width: 800px) {
    .nf-about-values__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.nf-about-values__grid li {
    display: grid;
    justify-items: center;
    gap: 0.45rem;
}

.nf-about-values__icon {
    width: 1.15rem;
    height: 1.15rem;
    color: var(--nf-white);
}

.nf-about-values__grid span {
    font-family: var(--nf-font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* CTA final — título verde (global), frase debajo con .nf-section-lead */

.nf-about-cta__inner {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 1rem;
}

.nf-about-cta .nf-section-lead {
    margin-top: 0;
}

