@font-face {
    font-display: swap;
    font-family: "Futura Std";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/FuturaStd-Light.otf") format("opentype");
}

@font-face {
    font-display: swap;
    font-family: "Futura Std";
    font-style: italic;
    font-weight: 300;
    src: url("../fonts/FuturaStd-LightOblique.otf") format("opentype");
}

@font-face {
    font-display: swap;
    font-family: "Futura Std";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/FuturaStd-Book.otf") format("opentype");
}

@font-face {
    font-display: swap;
    font-family: "Futura Std";
    font-style: italic;
    font-weight: 400;
    src: url("../fonts/FuturaStd-BookOblique.otf") format("opentype");
}

@font-face {
    font-display: swap;
    font-family: "Futura Std";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/FuturaStd-Medium.otf") format("opentype");
}

@font-face {
    font-display: swap;
    font-family: "Futura Std";
    font-style: italic;
    font-weight: 500;
    src: url("../fonts/FuturaStd-MediumOblique.otf") format("opentype");
}

@font-face {
    font-display: swap;
    font-family: "Futura Std";
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/FuturaStd-Heavy.otf") format("opentype");
}

@font-face {
    font-display: swap;
    font-family: "Futura Std";
    font-style: italic;
    font-weight: 700;
    src: url("../fonts/FuturaStd-HeavyOblique.otf") format("opentype");
}

@font-face {
    font-display: swap;
    font-family: "Futura Std";
    font-style: normal;
    font-weight: 800 900;
    src: url("../fonts/FuturaStd-ExtraBold.otf") format("opentype");
}

@font-face {
    font-display: swap;
    font-family: "Futura Std";
    font-style: italic;
    font-weight: 800 900;
    src: url("../fonts/FuturaStd-ExtraBoldOblique.otf") format("opentype");
}

@font-face {
    font-display: swap;
    font-family: "Lubalin Graph Std";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/ITC Lubalin Graph Std Book.ttf") format("truetype");
}

@font-face {
    font-display: swap;
    font-family: "Lubalin Graph Std";
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/LubalinGraphStd-Medium.otf") format("opentype");
}

@font-face {
    font-display: swap;
    font-family: "Lubalin Graph Std";
    font-style: normal;
    font-weight: 600 700;
    src: url("../fonts/ITC Lubalin Graph Std Demi.ttf") format("truetype");
}

:root {
    --font-brand: "Futura Std", "Futura", Arial, Helvetica, sans-serif;
    --font-heading: "Lubalin Graph Std", "Rockwell", "Roboto Slab", Georgia, serif;
    --blue: #012169;
    --blue-light: #1a3f96;
    --blue-deep: #00123f;
    --red: #9e1e41;
    --red-deep: #7f1633;
    --gold: #ffc700;
    --gold-soft: #fff0bf;
    --cream: #fff6e4;
    --cream-strong: #f6f6f6;
    --blush: #e3c1bf;
    --aqua-soft: #c4dad8;
    --ink: #1c1c1b;
    --body: #534741;
    --muted: #666666;
    --line: #dddddd;
    --footer: #1c1c1b;
    --white: #ffffff;
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --soft-shadow: 0 20px 35px rgba(28, 28, 27, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 96px;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-brand);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

[hidden] {
    display: none !important;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

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

.site-header {
    backdrop-filter: blur(12px);
    background: rgba(255, 246, 228, 0.92);
    box-shadow: 0 20px 40px rgba(28, 28, 27, 0.06);
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 20;
}

.site-nav {
    align-items: center;
    display: grid;
    gap: 24px;
    grid-template-columns: 180px 1fr auto;
    margin: 0 auto;
    max-width: 1280px;
    min-height: 80px;
    padding: 14px 48px;
}

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

.brand img {
    height: auto;
    width: 155px;
}

.nav-menu {
    align-items: center;
    display: flex;
    gap: 32px;
    justify-content: center;
}

.nav-menu a {
    border-bottom: 2px solid transparent;
    color: var(--body);
    font-family: var(--font-brand);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 20px;
    padding: 6px 0;
    text-transform: uppercase;
}

.nav-menu a {
    position: relative;
    z-index: 0;
}

.nav-menu a::before {
    content: "";
    position: absolute;
    left: -12px;
    right: -12px;
    top: 50%;
    height: 2.4em;
    transform: translateY(-50%) scale(0.7);
    background: url("../img/bolillo.svg") center / 100% 100% no-repeat;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-menu a:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.nav-menu a:hover {
    color: var(--blue);
}

.nav-menu a.is-active {
    border-color: var(--blue);
    color: var(--blue);
}

.partner-button,
.primary-button,
.locator-form button,
.newsletter-form button {
    background: var(--blue);
    border: 0;
    border-radius: 6px;
    color: var(--white);
    cursor: pointer;
    font-family: var(--font-brand);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.partner-button {
    box-shadow: 0 10px 15px -3px rgba(0, 22, 137, 0.2), 0 4px 6px -4px rgba(0, 22, 137, 0.2);
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 20px;
    padding: 10px 24px;
    white-space: nowrap;
}

.nav-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    display: none;
    height: 42px;
    justify-content: center;
    padding: 0;
    width: 42px;
}

.nav-toggle span {
    background: var(--blue);
    border-radius: 99px;
    display: block;
    height: 2px;
    position: absolute;
    width: 22px;
}

.nav-toggle span:nth-child(1) {
    transform: translateY(-7px);
}

.nav-toggle span:nth-child(3) {
    transform: translateY(7px);
}

.hero {
    min-height: 790px;
    overflow: hidden;
    padding: 188px 48px 78px;
    position: relative;
}

.hero::after {
    background: rgba(255, 246, 228, 0.72);
    bottom: -1px;
    content: "";
    height: 24px;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 1;
}

.hero-bg {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue));
    inset: 80px 0 0;
    position: absolute;
    transform: scale(1.02);
}

.hero-content {
    color: var(--white);
    margin: 0 auto;
    max-width: 1280px;
    position: relative;
    z-index: 2;
}

.hero-kicker,
.section-eyebrow {
    align-items: center;
    color: var(--gold);
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
    line-height: 18px;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.hero-kicker {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: var(--gold);
    padding: 8px 16px;
}

.hero h1 {
    font-family: var(--font-brand);
    font-size: clamp(37px, 5.1vw, 66px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.98;
    margin: 0 0 24px;
    max-width: 820px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
    margin: 0 0 34px;
    max-width: 720px;
}

.hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.primary-button,
.secondary-button,
.ghost-button {
    align-items: center;
    border-radius: 6px;
    display: inline-flex;
    font-family: var(--font-brand);
    font-size: 16px;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    line-height: 24px;
    min-height: 54px;
    padding: 15px 28px;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.primary-button {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
    text-transform: none;
}

.primary-button.red {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--blue);
}

.secondary-button {
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--ink);
}

.secondary-button.dark {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.ghost-button {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.44);
    color: var(--white);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.partner-button:hover {
    box-shadow: 0 16px 28px rgba(0, 22, 137, 0.22);
    transform: translateY(-2px);
}

.primary-button:hover span,
.secondary-button:hover span,
.card-link:hover span,
.text-link:hover span {
    transform: translateX(4px);
}

.primary-button span,
.secondary-button span,
.card-link span,
.text-link span {
    display: inline-block;
    transition: transform 180ms ease;
}

.story-section,
.solution-section,
.products-section,
.recipes-section,
.commercial-section {
    padding-left: 48px;
    padding-right: 48px;
}

.solution-section {
    background: var(--cream);
    padding-bottom: 116px;
    padding-top: 54px;
}

.section-heading {
    margin: 0 auto 64px;
    max-width: 1280px;
    text-align: center;
}

.section-heading p {
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.4px;
    line-height: 20px;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.section-heading h2 {
    color: var(--ink);
    font-family: var(--font-brand);
    font-size: clamp(29px, 3.6vw, 46px);
    font-weight: 900;
    line-height: 1.04;
    margin: 0 auto;
    max-width: 860px;
}

.audience-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1280px;
}

.audience-card,
.product-card,
.commercial-card {
    background: var(--white);
    border: 1px solid rgba(0, 22, 137, 0.08);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(28, 28, 27, 0.08);
    overflow: hidden;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.audience-card:hover,
.product-card:hover,
.commercial-card:hover {
    border-color: rgba(0, 22, 137, 0.28);
    box-shadow: 0 24px 44px rgba(28, 28, 27, 0.14);
    transform: translateY(-5px);
}

.audience-image {
    aspect-ratio: 16 / 11;
    overflow: hidden;
    position: relative;
}

.audience-image img,
.product-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
    width: 100%;
}

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

.audience-icon,
.commercial-icon {
    align-items: center;
    background: var(--gold);
    border-radius: 8px;
    color: var(--blue);
    display: inline-flex;
    font-size: 28px;
    height: 54px;
    justify-content: center;
    width: 54px;
}

.audience-icon {
    bottom: 18px;
    position: absolute;
    right: 18px;
}

.audience-card {
    display: flex;
    flex-direction: column;
}

.audience-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 306px;
    padding: 26px;
}

.audience-copy h3,
.product-card h3,
.commercial-card h3 {
    color: var(--ink);
    font-family: var(--font-brand);
    font-size: 23px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 14px;
}

.audience-copy p,
.product-card p,
.commercial-card p {
    color: var(--body);
    font-size: 16px;
    line-height: 1.55;
    margin: 0 0 22px;
}

.card-link {
    align-items: center;
    color: var(--blue);
    display: inline-flex;
    font-weight: 900;
    gap: 8px;
    line-height: 22px;
    margin-top: auto;
}

/* Botones (card-link) de las audience cards con la misma altura */
.audience-card .card-link {
    min-height: 46px;
    align-items: flex-end;
}

.products-section {
    background: var(--blue);
    overflow: hidden;
    padding-bottom: 116px;
    padding-top: 112px;
    position: relative;
}

.products-section::before {
    color: rgba(255, 255, 255, 0.04);
    content: "F";
    font-family: var(--font-brand);
    font-size: min(42vw, 560px);
    font-weight: 900;
    line-height: 0.8;
    position: absolute;
    right: -54px;
    top: 30px;
}

.products-section .section-heading {
    position: relative;
    text-align: center;
    z-index: 1;
}

.products-section .section-heading p,
.products-section .section-heading h2 {
    color: var(--white);
}

.product-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1280px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: var(--cream);
    display: flex;
    flex-direction: column;
    min-height: 486px;
    padding: 18px 18px 28px;
}

.product-image {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    margin-bottom: 22px;
    overflow: hidden;
}

.product-icon {
    background: rgba(0, 22, 137, 0.08);
    border-radius: 8px;
    color: var(--blue);
    height: 52px;
    margin-bottom: 18px;
    width: 52px;
}

.product-card h3,
.product-card p,
.product-card .card-link {
    margin-left: 10px;
    margin-right: 10px;
}

.section-cta {
    margin: 48px auto 0;
    max-width: 1280px;
    position: relative;
    text-align: center;
    z-index: 1;
}

.recipes-section {
    background: var(--cream-strong);
    padding-bottom: 112px;
    padding-top: 112px;
}

.recipes-inner {
    align-items: center;
    display: grid;
    gap: 64px;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    margin: 0 auto;
    max-width: 1280px;
}

.recipes-copy h2,
.story-copy h2,
.commercial-heading h2 {
    color: var(--ink);
    font-family: var(--font-brand);
    font-size: clamp(29px, 3.4vw, 42px);
    font-weight: 900;
    line-height: 1.06;
    margin: 0 0 22px;
}

.recipes-copy > p:not(.section-eyebrow),
.story-copy p,
.commercial-heading > p {
    color: var(--body);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 28px;
}

.recipe-grid {
    display: grid;
    gap: 28px;
}

.recipe-grid.featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.recipe-card {
    aspect-ratio: 4 / 5.2;
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(28, 28, 27, 0.14);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.recipe-card img,
.recipe-overlay {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.recipe-card img {
    object-fit: cover;
    transition: transform 260ms ease;
}

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

.recipe-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 22, 137, 0.28) 52%, rgba(0, 0, 0, 0.04));
}

.recipe-card > a,
.recipe-card > button {
    background: var(--white);
    border: 0;
    border-radius: 999px;
    color: var(--blue);
    cursor: pointer;
    font-family: var(--font-brand);
    font-size: 14px;
    font-weight: 900;
    line-height: 20px;
    padding: 9px 15px;
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 1;
}

.recipe-copy {
    bottom: 26px;
    left: 24px;
    position: absolute;
    right: 24px;
    z-index: 1;
}

.recipe-copy h3 {
    font-family: var(--font-brand);
    font-size: clamp(24px, 2.3vw, 32px);
    font-weight: 900;
    line-height: 1.12;
    margin: 0 0 12px;
}

.recipe-copy p,
.recipe-copy span {
    color: rgba(255, 255, 255, 0.9);
    display: block;
    font-family: var(--font-brand);
    font-size: 15px;
    line-height: 22px;
    margin: 0 0 14px;
}

.recipe-copy span {
    color: var(--gold);
    font-weight: 900;
    margin: 0;
}

.story-section {
    background: var(--cream);
    padding-bottom: 112px;
    padding-top: 112px;
}

.story-grid {
    align-items: center;
    display: grid;
    gap: 84px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    margin: 0 auto;
    max-width: 1280px;
}

.story-media {
    max-width: 570px;
    position: relative;
}

.story-media > img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    transform: rotate(-1.4deg);
    width: min(552px, 100%);
}

.year-card {
    background: var(--blue);
    border-radius: 8px;
    bottom: -32px;
    box-shadow: 0 20px 35px rgba(0, 22, 137, 0.2);
    color: var(--white);
    display: grid;
    gap: 8px;
    padding: 24px;
    position: absolute;
    right: -34px;
    width: 192px;
}

.year-card strong {
    color: var(--gold);
    font-family: var(--font-brand);
    font-size: 38px;
    font-style: italic;
    font-weight: 900;
    line-height: 40px;
}

.year-card span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
}

.text-link {
    align-items: center;
    color: var(--blue);
    display: inline-flex;
    font-family: var(--font-brand);
    font-weight: 900;
    gap: 8px;
    margin-top: 2px;
}

.commercial-section {
    background:
        linear-gradient(rgba(1, 33, 105, 0.90), rgba(1, 33, 105, 0.90)),
        url("../img/textures/products-pattern.jpg") top left / 260px repeat,
        var(--blue);
    color: var(--white);
    overflow: hidden;
    padding-bottom: 112px;
    padding-top: 112px;
    position: relative;
}

.commercial-section::before {
    color: rgba(255, 255, 255, 0.06);
    content: "AB";
    font-family: var(--font-brand);
    font-size: min(34vw, 430px);
    font-weight: 900;
    line-height: 0.8;
    position: absolute;
    right: -30px;
    top: 42px;
}

.commercial-inner {
    align-items: center;
    display: grid;
    gap: 64px;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    margin: 0 auto;
    max-width: 1280px;
    position: relative;
    z-index: 1;
}

.commercial-heading h2,
.commercial-heading > p,
.commercial-heading .section-eyebrow {
    color: var(--white);
}

.commercial-heading > p {
    color: rgba(255, 255, 255, 0.86);
}

.commercial-cards {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.commercial-card {
    background: var(--white);
    color: var(--ink);
    padding: 34px;
}

.commercial-card.accent {
    background: var(--cream);
}

.commercial-card .commercial-icon {
    margin-bottom: 28px;
}

.commercial-card p {
    margin-bottom: 30px;
}

.js-enabled .home-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 520ms ease, transform 520ms ease;
}

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

.js-enabled .hero.home-reveal {
    transform: none;
}

.js-enabled .hero.home-reveal .hero-kicker,
.js-enabled .hero.home-reveal h1,
.js-enabled .hero.home-reveal .hero-subtitle,
.js-enabled .hero.home-reveal .hero-actions {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 620ms ease, transform 620ms ease;
}

.js-enabled .hero.home-reveal.is-visible .hero-kicker,
.js-enabled .hero.home-reveal.is-visible h1,
.js-enabled .hero.home-reveal.is-visible .hero-subtitle,
.js-enabled .hero.home-reveal.is-visible .hero-actions {
    opacity: 1;
    transform: translateY(0);
}

.js-enabled .hero.home-reveal.is-visible h1 {
    transition-delay: 80ms;
}

.js-enabled .hero.home-reveal.is-visible .hero-subtitle {
    transition-delay: 160ms;
}

.js-enabled .hero.home-reveal.is-visible .hero-actions {
    transition-delay: 240ms;
}

.site-footer {
    background: var(--footer);
    color: var(--line);
    padding: 80px 64px 40px;
}

.footer-main {
    display: grid;
    gap: 48px;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    margin: 0 auto;
    max-width: 1280px;
}

.footer-logo {
    display: block;
    height: auto;
    margin-bottom: 22px;
    width: 160px;
}

.footer-main h2,
.footer-main h3 {
    color: var(--white);
    font-family: var(--font-brand);
    margin: 0;
}

.footer-main h2 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 22px;
}

.footer-main h3 {
    font-size: 12px;
    letter-spacing: 1.2px;
    line-height: 16px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.footer-main p,
.footer-main li,
.footer-main a,
.footer-bottom,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 23px;
}

.footer-main ul {
    display: grid;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-main a:hover,
.footer-bottom a:hover {
    color: var(--white);
}

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

.social-links a {
    align-items: center;
    background: var(--body);
    border-radius: 999px;
    color: var(--white);
    display: flex;
    font-size: 12px;
    font-weight: 700;
    height: 40px;
    justify-content: center;
    text-transform: uppercase;
    width: 40px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.newsletter-form input {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--ink);
    min-width: 0;
    outline: none;
    padding: 0 18px;
}

.newsletter-form input:focus {
    border-color: var(--blue);
}

.newsletter-form input,
.newsletter-form button {
    height: 48px;
    width: 100%;
}

.newsletter-form button {
    letter-spacing: 0;
    text-transform: none;
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 28px;
    justify-content: space-between;
    margin: 80px auto 0;
    max-width: 1280px;
    padding-top: 32px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-end;
}

.about-hero {
    background: linear-gradient(90deg, rgba(0, 22, 137, 0.84), rgba(0, 22, 137, 0.18)), url("../img/web/about-hero-bakery.jpg") center / cover;
    min-height: 730px;
    padding: 300px 72px 120px;
    position: relative;
}

.about-hero::after {
    background: linear-gradient(180deg, rgba(255, 246, 228, 0), rgba(255, 246, 228, 0.04));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.about-hero-content {
    color: var(--white);
    margin: 0 auto;
    max-width: 1280px;
    position: relative;
    z-index: 1;
}

.about-hero-content p {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 20px;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.about-hero-content h1 {
    font-family: var(--font-brand);
    font-size: clamp(48px, 6.0vw, 75px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.95;
    margin: 0 0 28px;
    max-width: 620px;
}

.about-hero-content span {
    color: rgba(255, 255, 255, 0.82);
    display: block;
    font-size: 24px;
    line-height: 32px;
}

.about-origin {
    background: var(--cream-strong);
    padding: 46px 72px 96px;
}

.about-origin-intro,
.about-legacy-grid {
    align-items: center;
    display: grid;
    gap: 72px;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    margin: 0 auto;
    max-width: 1280px;
}

.about-origin-grid {
    align-items: center;
    display: grid;
    gap: 72px;
    grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.75fr);
    margin: 0 auto;
    max-width: 1280px;
}

.about-origin-copy h2 {
    color: var(--blue);
    font-family: var(--font-brand);
    font-size: clamp(29px, 3.2vw, 39px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 34px;
}

.about-origin-copy p {
    color: var(--body);
    font-size: 20px;
    line-height: 1.55;
    margin: 0;
    max-width: 780px;
}

.about-origin-copy p + p {
    margin-top: 24px;
}

.about-story-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) minmax(280px, 0.72fr);
    margin: 82px auto;
    max-width: 1280px;
}

.about-text-panel {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(28, 28, 27, 0.08);
    padding: 36px;
}

.about-text-panel-blue {
    background: var(--blue);
}

.about-text-panel p {
    color: var(--body);
    font-size: 19px;
    line-height: 1.58;
    margin: 0;
}

.about-text-panel p + p {
    margin-top: 24px;
}

.about-text-panel-blue p {
    color: var(--white);
}

.about-image-panel {
    border-radius: 8px;
    min-height: 100%;
    overflow: hidden;
}

.about-image-panel img {
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    width: 100%;
}

.about-photo-stack {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
}

.about-photo-stack img {
    border-radius: 8px;
    box-shadow: var(--soft-shadow);
    height: 420px;
    object-fit: cover;
    width: 100%;
}

.about-photo-stack img:first-child {
    margin-top: 58px;
}

.about-cta {
    align-items: center;
    background: var(--blue);
    border-radius: 4px;
    color: var(--white);
    display: inline-flex;
    font-family: var(--font-brand);
    font-size: 20px;
    font-weight: 700;
    gap: 18px;
    line-height: 28px;
    margin-top: 42px;
    padding: 22px 42px;
}

.about-cta:hover {
    background: var(--blue-light);
}

.about-origin-media {
    min-height: 520px;
    position: relative;
}

.grain-frame {
    border-radius: 8px;
    box-shadow: 0 30px 50px rgba(28, 28, 27, 0.18);
    margin-left: auto;
    max-width: 470px;
    overflow: hidden;
    padding: 35px;
    position: relative;
}

.grain-frame::before {
    border: 16px solid rgba(255, 255, 255, 0.24);
    content: "";
    inset: 28px;
    position: absolute;
    z-index: 1;
}

.grain-frame img {
    border-radius: 2px;
    height: 470px;
    object-fit: cover;
    width: 100%;
}

.foundation-card {
    background: var(--gold-soft);
    border-radius: 8px;
    bottom: 36px;
    box-shadow: 0 18px 28px rgba(28, 28, 27, 0.2);
    display: grid;
    gap: 4px;
    left: 18px;
    min-width: 215px;
    padding: 34px 32px;
    position: absolute;
    text-transform: uppercase;
}

.foundation-card strong {
    color: var(--blue);
    font-family: var(--font-brand);
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.foundation-card span {
    color: var(--ink);
    font-size: 14px;
    letter-spacing: 3px;
    line-height: 20px;
}

.site-footer-blue {
    background: var(--blue);
    color: rgba(255, 255, 255, 0.78);
    padding: 52px 72px 50px;
}

.blue-footer-main {
    display: grid;
    gap: 70px;
    grid-template-columns: 1.25fr repeat(3, minmax(160px, 1fr));
    margin: 0 auto;
    max-width: 1280px;
}

.blue-footer-main h2 {
    color: var(--white);
    font-family: var(--font-brand);
    font-size: 32px;
    line-height: 1.15;
    margin: 0 0 24px;
}

.blue-footer-main h3 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.2px;
    margin: 0 0 28px;
    text-transform: uppercase;
}

.blue-footer-main p {
    color: rgba(255, 255, 255, 0.48);
    font-size: 15px;
    line-height: 22px;
    max-width: 260px;
}

.blue-footer-main ul {
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.blue-footer-main a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 28px;
}

.blue-footer-main a:hover,
.blue-footer-main a.is-current {
    color: var(--white);
    font-weight: 700;
}

.blue-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 48px auto 0;
    max-width: 1280px;
    padding-top: 34px;
    text-align: center;
}

.blue-footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
    letter-spacing: 1.2px;
    margin: 0;
    text-transform: uppercase;
}

.catalog-page {
    background: var(--cream-strong);
    display: grid;
    grid-template-columns: 296px minmax(0, 1fr);
    min-height: 2100px;
    padding-top: 80px;
}

.catalog-sidebar {
    background: var(--cream);
    border-radius: 0 0 8px 0;
    box-shadow: 18px 0 42px rgba(0, 22, 137, 0.06);
    padding: 40px 16px 40px 40px;
}

.catalog-sidebar h1,
.catalog-sidebar h2 {
    color: var(--blue);
    font-family: var(--font-brand);
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
    margin: 0 0 6px;
}

.catalog-sidebar > p {
    color: var(--body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 18px;
    margin: 0 0 24px;
    text-transform: uppercase;
}

.catalog-search {
    align-items: center;
    background: var(--white);
    border-radius: 999px;
    display: flex;
    gap: 12px;
    height: 37px;
    margin-bottom: 24px;
    max-width: 224px;
    padding: 0 14px;
}

.catalog-search span {
    border: 2px solid var(--muted);
    border-radius: 50%;
    display: block;
    height: 11px;
    position: relative;
    width: 11px;
}

.catalog-search span::after {
    background: var(--muted);
    content: "";
    height: 2px;
    position: absolute;
    right: -5px;
    top: 8px;
    transform: rotate(45deg);
    width: 6px;
}

.catalog-search input {
    background: transparent;
    border: 0;
    color: var(--muted);
    min-width: 0;
    outline: 0;
    width: 100%;
}

.catalog-categories {
    border-top: 1px solid rgba(0, 22, 137, 0.08);
    display: grid;
    gap: 8px;
    margin-left: -16px;
    padding-top: 29px;
}

.catalog-categories a {
    align-items: center;
    border-radius: 999px;
    color: var(--ink);
    display: flex;
    font-size: 16px;
    gap: 14px;
    height: 46px;
    padding: 0 24px;
}

.catalog-categories a.is-active {
    background: var(--blue);
    color: var(--white);
}

.cat-icon {
    display: block;
    height: 18px;
    position: relative;
    width: 18px;
}

.cat-icon::before,
.cat-icon::after {
    content: "";
    display: block;
    position: absolute;
}

.cat-icon-flask::before {
    border-bottom: 11px solid currentColor;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    bottom: 2px;
    left: 3px;
    width: 0;
}

.cat-icon-flask::after {
    background: currentColor;
    border-radius: 2px;
    height: 4px;
    left: 6px;
    top: 2px;
    width: 6px;
}

.cat-icon-dots::before {
    background: radial-gradient(circle, currentColor 0 2px, transparent 3px);
    height: 18px;
    width: 18px;
}

.cat-icon-bread::before {
    border: 2px solid currentColor;
    border-radius: 10px 10px 4px 4px;
    height: 10px;
    left: 1px;
    top: 5px;
    width: 16px;
}

.cat-icon-cake::before {
    border: 2px solid currentColor;
    border-radius: 2px;
    height: 9px;
    left: 3px;
    top: 7px;
    width: 12px;
}

.cat-icon-cake::after {
    background: currentColor;
    height: 6px;
    left: 8px;
    top: 1px;
    width: 2px;
}

.cat-icon-drop::before {
    background: currentColor;
    border-radius: 50% 50% 50% 0;
    height: 13px;
    left: 3px;
    top: 3px;
    transform: rotate(-45deg);
    width: 13px;
}

.catalog-content {
    padding: 32px 80px 150px 48px;
}

.catalog-heading {
    margin-bottom: 66px;
}

.catalog-heading h1,
.catalog-heading h2 {
    color: var(--blue);
    font-family: var(--font-brand);
    font-size: clamp(44px, 4.2vw, 61px);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.98;
    margin: 0 0 24px;
    max-width: 720px;
}

.catalog-heading p {
    color: var(--body);
    font-size: 22px;
    line-height: 32px;
    margin: 0;
}

.catalog-grid {
    display: grid;
    gap: 124px 34px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(28, 28, 27, 0.05);
    min-height: 464px;
    padding: 24px;
}

.catalog-card-image {
    border-radius: 6px;
    height: 192px;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}

.catalog-card-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.catalog-badge {
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    line-height: 18px;
    padding: 4px 12px;
    position: absolute;
    right: -8px;
    text-transform: uppercase;
    top: -8px;
}

.catalog-badge-gold {
    background: var(--gold);
    color: var(--body);
}

.catalog-badge-blue {
    background: var(--blue);
    color: var(--white);
}

.catalog-card-category {
    color: var(--blue);
    font-size: 12px;
    letter-spacing: 1.5px;
    line-height: 18px;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.catalog-card h3 {
    color: var(--ink);
    font-family: var(--font-brand);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 18px;
}

.catalog-card-copy {
    color: var(--body);
    font-size: 16px;
    line-height: 23px;
    margin: 0;
}

.catalog-footer {
    background: var(--blue-deep);
    color: rgba(255, 255, 255, 0.72);
    padding: 54px 56px 44px;
}

.catalog-footer-inner {
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1280px;
}

.catalog-footer h2 {
    color: var(--gold);
    font-family: var(--font-brand);
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 24px;
    margin: 0 0 24px;
    text-transform: uppercase;
}

.catalog-footer p {
    font-size: 13px;
    margin: 0;
}

.catalog-footer nav {
    display: flex;
    gap: 34px;
}

.catalog-footer a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    letter-spacing: 0.4px;
    text-decoration: underline;
    text-transform: uppercase;
}

.product-detail-page {
    background: var(--cream-strong);
    padding: 132px 78px 48px;
}

.breadcrumb {
    align-items: center;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    gap: 10px;
    line-height: 24px;
    margin: 0 auto 38px;
    max-width: 1200px;
}

.breadcrumb a:hover,
.breadcrumb strong {
    color: var(--blue);
    font-weight: 500;
}

.product-detail-hero {
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
    margin: 0 auto 64px;
    max-width: 1200px;
}

.product-pack-card {
    align-items: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 228, 0.86)),
        url("../img/web/about-texture-pastry.jpg") center / cover;
    border-radius: 8px;
    box-shadow: 0 24px 45px rgba(28, 28, 27, 0.1);
    display: flex;
    justify-content: center;
    min-height: 570px;
    padding: 42px;
    position: relative;
}

.product-pack-card > span {
    background: var(--blue);
    border-radius: 8px;
    color: var(--white);
    font-size: 14px;
    line-height: 20px;
    padding: 10px 20px;
    position: absolute;
    right: 18px;
    top: 18px;
}

.product-pack-card img {
    height: auto;
    max-height: 360px;
    object-fit: contain;
    width: min(315px, 86%);
}

.product-detail-info h1 {
    color: var(--blue);
    font-family: var(--font-brand);
    font-size: clamp(36px, 4.1vw, 49px);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 12px;
}

.product-subtitle {
    color: var(--body);
    font-size: 24px;
    line-height: 32px;
    margin: 0;
}

.product-rule {
    background: rgba(0, 22, 137, 0.12);
    height: 1px;
    margin: 30px 0;
    width: 100%;
}

.product-description {
    color: var(--body);
    font-size: 19px;
    line-height: 30px;
    margin: 0 0 30px;
}

.product-facts {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 30px;
}

.product-facts article {
    background: var(--white);
    border-radius: 8px;
    display: grid;
    gap: 34px;
    min-height: 128px;
    padding: 24px 20px;
}

.product-facts article div {
    align-items: center;
    color: var(--muted);
    display: flex;
    font-size: 16px;
    gap: 12px;
}

.product-facts strong {
    color: var(--ink);
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
}

.detail-icon,
.tab-icon {
    color: var(--blue);
    display: inline-block;
    height: 22px;
    position: relative;
    width: 22px;
}

.detail-icon::before,
.detail-icon::after,
.tab-icon::before,
.tab-icon::after {
    content: "";
    display: block;
    position: absolute;
}

.detail-icon-clock::before {
    border: 2px solid currentColor;
    border-radius: 50%;
    inset: 1px;
}

.detail-icon-clock::after {
    border-left: 2px solid currentColor;
    border-top: 2px solid currentColor;
    height: 6px;
    left: 10px;
    top: 5px;
    width: 5px;
}

.detail-icon-box::before,
.tab-icon-box::before {
    border: 2px solid currentColor;
    height: 14px;
    left: 4px;
    top: 4px;
    transform: rotate(30deg) skew(-10deg);
    width: 14px;
}

.detail-icon-check::before {
    border: 2px solid currentColor;
    border-radius: 50%;
    inset: 1px;
}

.detail-icon-check::after {
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    height: 4px;
    left: 7px;
    top: 8px;
    transform: rotate(-45deg);
    width: 8px;
}

.benefits-card {
    background: var(--white);
    border: 1px solid rgba(0, 22, 137, 0.08);
    border-radius: 8px;
    box-shadow: 0 18px 26px rgba(28, 28, 27, 0.15);
    padding: 32px 30px 26px;
}

.benefits-card h2 {
    align-items: center;
    color: var(--ink);
    display: flex;
    font-family: var(--font-brand);
    font-size: 22px;
    font-weight: 600;
    gap: 12px;
    line-height: 30px;
    margin: 0 0 18px;
}

.benefits-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding-left: 24px;
}

.benefits-card li {
    color: var(--body);
    font-size: 19px;
    line-height: 28px;
    padding-left: 4px;
}

.benefits-card li::marker {
    color: var(--blue);
}

.product-tabs {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 18px 26px rgba(28, 28, 27, 0.15);
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
}

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

.tab-list button {
    align-items: center;
    background: var(--white);
    border: 0;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    color: var(--ink);
    cursor: pointer;
    display: flex;
    font-size: 16px;
    gap: 12px;
    justify-content: center;
    min-height: 64px;
    padding: 16px;
}

.tab-list button:last-child {
    border-right: 0;
}

.tab-list button.is-active {
    border: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
}

.tab-icon {
    color: var(--ink);
    height: 18px;
    width: 18px;
}

.tab-icon-chef::before {
    border: 2px solid currentColor;
    border-radius: 8px 8px 5px 5px;
    height: 8px;
    left: 2px;
    top: 5px;
    width: 14px;
}

.tab-icon-chef::after {
    border: 2px solid currentColor;
    border-radius: 50%;
    height: 5px;
    left: 6px;
    top: 1px;
    width: 5px;
}

.tab-icon-temp::before {
    border: 2px solid currentColor;
    border-radius: 8px;
    height: 14px;
    left: 8px;
    top: 0;
    width: 3px;
}

.tab-icon-temp::after {
    background: currentColor;
    border-radius: 50%;
    height: 7px;
    left: 6px;
    top: 11px;
    width: 7px;
}

.tab-icon-alert::before {
    border-bottom: 15px solid transparent;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 0;
    filter: drop-shadow(0 0 0 currentColor);
}

.tab-icon-alert::after {
    background: currentColor;
    height: 8px;
    left: 8px;
    top: 6px;
    width: 2px;
}

.tab-panel {
    padding: 36px 28px 30px;
}

.tab-panel h2 {
    color: var(--ink);
    font-family: var(--font-brand);
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    margin: 0 0 24px;
}

.tab-panel p {
    color: var(--body);
    font-size: 18px;
    line-height: 29px;
    margin: 0 0 22px;
}

.tip-box {
    background: var(--cream);
    border-left: 5px solid var(--blue);
    border-radius: 4px;
    color: var(--body);
    font-size: 16px;
    line-height: 24px;
    padding: 18px 18px;
}

.product-detail-footer {
    align-items: flex-start;
    background: var(--cream-strong);
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    padding: 50px 88px;
}

.product-detail-footer h2 {
    color: var(--blue);
    font-family: var(--font-brand);
    font-size: 24px;
    font-weight: 800;
    line-height: 32px;
    margin: 0 0 18px;
}

.product-detail-footer p {
    font-size: 14px;
    margin: 0;
}

.product-detail-footer nav {
    display: grid;
    gap: 16px;
    justify-items: end;
}

.product-detail-footer a {
    color: var(--muted);
    font-size: 14px;
}

.product-detail-footer a.is-active {
    color: var(--blue);
    font-weight: 700;
}

.distributors-page {
    background: var(--cream-strong);
    padding-top: 80px;
}

.distributors-hero {
    padding: 38px 88px 32px;
}

.distributors-hero h1 {
    color: var(--blue);
    font-family: var(--font-brand);
    font-size: clamp(39px, 4.1vw, 54px);
    font-weight: 900;
    line-height: 1;
    margin: 0 0 22px;
}

.distributors-hero p {
    color: var(--body);
    font-size: 20px;
    line-height: 29px;
    margin: 0 0 34px;
    max-width: 650px;
}

.distributor-search {
    align-items: center;
    display: flex;
    gap: 16px;
    max-width: 920px;
}

.search-input-wrap {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 2px 7px rgba(0, 22, 137, 0.08);
    display: grid;
    gap: 14px;
    grid-template-columns: 20px 1fr 24px;
    height: 58px;
    padding: 0 18px;
    width: min(768px, 100%);
}

.search-input-wrap input {
    background: transparent;
    border: 0;
    color: var(--muted);
    font-size: 16px;
    outline: 0;
}

.search-icon,
.target-icon {
    color: var(--muted);
    display: block;
    height: 20px;
    position: relative;
    width: 20px;
}

.search-icon::before {
    border: 2px solid currentColor;
    border-radius: 50%;
    content: "";
    height: 10px;
    left: 1px;
    position: absolute;
    top: 1px;
    width: 10px;
}

.search-icon::after {
    background: currentColor;
    content: "";
    height: 2px;
    left: 12px;
    position: absolute;
    top: 13px;
    transform: rotate(45deg);
    width: 8px;
}

.target-icon {
    color: var(--blue);
}

.target-icon::before {
    border: 3px solid currentColor;
    border-radius: 50%;
    content: "";
    inset: 3px;
    position: absolute;
}

.target-icon::after {
    background: currentColor;
    box-shadow: 0 -9px 0 currentColor, 0 9px 0 currentColor, -9px 0 0 currentColor, 9px 0 0 currentColor;
    content: "";
    height: 4px;
    left: 8px;
    position: absolute;
    top: 8px;
    width: 4px;
}

.distributor-search button {
    background: var(--blue);
    border: 0;
    border-radius: 999px;
    color: var(--white);
    cursor: pointer;
    font-family: var(--font-brand);
    font-size: 15px;
    font-weight: 700;
    height: 60px;
    min-width: 114px;
}

.distributors-map-layout {
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 426px minmax(0, 1fr);
    min-height: 675px;
}

.location-list {
    background: rgba(255, 255, 255, 0.34);
    padding: 28px 24px 34px 64px;
}

.location-list h2 {
    color: var(--body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 20px;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.location-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 18px 30px rgba(28, 28, 27, 0.06);
    margin-bottom: 26px;
    padding: 24px;
}

.location-card-head {
    align-items: start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.location-card h3 {
    color: var(--blue);
    font-family: var(--font-brand);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 14px;
}

.location-card-head span {
    background: var(--gold);
    border-radius: 4px;
    color: var(--body);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 9px;
    white-space: nowrap;
}

.location-card:not(.is-active) .location-card-head span {
    background: var(--line);
    color: var(--muted);
}

.location-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 20px;
    margin: 0 0 10px;
    padding-left: 22px;
    position: relative;
}

.directions-button {
    align-items: center;
    border: 2px solid var(--blue);
    border-radius: 999px;
    color: var(--blue);
    display: flex;
    font-family: var(--font-brand);
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    margin-top: 22px;
    min-height: 40px;
}

.map-stage {
    min-height: 675px;
    overflow: hidden;
    position: relative;
}

.map-stage img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.map-pin {
    background: var(--red);
    border-radius: 50% 50% 50% 0;
    display: block;
    height: 28px;
    position: absolute;
    transform: rotate(-45deg);
    width: 28px;
    z-index: 2;
}

.map-pin::after {
    background: var(--white);
    border-radius: 50%;
    content: "";
    height: 8px;
    left: 10px;
    position: absolute;
    top: 10px;
    width: 8px;
}

.pin-one {
    left: 49%;
    top: 43%;
}

.pin-two {
    left: 45%;
    top: 61%;
}

.pin-three {
    left: 36%;
    top: 70%;
}

.map-tooltip {
    background: var(--white);
    box-shadow: 0 12px 24px rgba(28, 28, 27, 0.12);
    color: var(--blue);
    display: grid;
    font-size: 16px;
    gap: 4px;
    left: 37%;
    min-width: 255px;
    padding: 14px 18px;
    position: absolute;
    top: 35%;
    z-index: 3;
}

.map-tooltip span {
    color: var(--muted);
    font-size: 13px;
}

.corporate-cta {
    align-items: center;
    background: var(--line);
    display: grid;
    gap: 24px;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    padding: 36px 88px;
}

.store-icon {
    background: var(--white);
    border-radius: 50%;
    height: 48px;
    position: relative;
    width: 48px;
}

.store-icon::before {
    border: 3px solid var(--blue);
    border-radius: 3px;
    content: "";
    height: 17px;
    left: 13px;
    position: absolute;
    top: 17px;
    width: 22px;
}

.store-icon::after {
    border-bottom: 8px solid var(--blue);
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    content: "";
    left: 12px;
    position: absolute;
    top: 11px;
    width: 24px;
}

.corporate-cta h2 {
    color: var(--ink);
    font-family: var(--font-brand);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.22;
    margin: 0 0 6px;
    max-width: 690px;
}

.corporate-cta p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

.corporate-cta a {
    background: var(--gold);
    color: var(--blue);
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(151, 31, 45, 0.22);
    color: var(--white);
    font-family: var(--font-brand);
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    text-align: center;
    white-space: nowrap;
}

.commercial-distributors-page {
    padding-bottom: 88px;
}

.commercial-distributors-page .distributors-hero {
    background:
        linear-gradient(90deg, rgba(0, 22, 137, 0.9), rgba(151, 31, 45, 0.68)),
        url("../img/web/home-hero-bakery.jpg") center / cover;
    color: var(--white);
    padding-bottom: 86px;
    padding-top: 96px;
}

.commercial-distributors-page .distributors-hero h1,
.commercial-distributors-page .distributors-hero p,
.commercial-distributors-page .section-eyebrow {
    color: var(--white);
}

.commercial-routing {
    margin: 34px auto 0;
    max-width: 1120px;
}

.commercial-routing.is-blue {
    background: var(--blue);
}

.commercial-routing.is-blue h2,
.commercial-routing.is-blue p {
    color: var(--white);
}

.commercial-routing.is-blue .store-icon {
    color: var(--gold);
}

.commercial-routing.is-blue a {
    background: var(--gold);
    color: var(--blue);
}

.recipe-book-page {
    background: var(--white);
    padding-top: 80px;
}

.recipe-book-hero {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(0, 22, 137, 0.9) 0%, rgba(0, 9, 111, 0.76) 100%),
        url("../img/web/pastry-pink-cake.jpg") center / cover;
    color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 608px;
    padding: 190px 32px 120px;
    text-align: center;
}

.recipe-book-hero p {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 1.6px;
    line-height: 20px;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.recipe-book-hero h1 {
    font-family: var(--font-brand);
    font-size: clamp(46px, 4.8vw, 61px);
    font-weight: 900;
    line-height: 1;
    margin: 0 0 70px;
}

.recipe-book-hero span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    line-height: 28px;
}

.recipe-filter-card {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(28, 28, 27, 0.08);
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(320px, 1fr) auto auto;
    margin: -64px auto 126px;
    max-width: 1216px;
    padding: 32px;
    position: relative;
    z-index: 2;
}

.recipe-search {
    align-items: center;
    background: var(--cream);
    display: flex;
    gap: 14px;
    height: 48px;
    padding: 0 16px;
}

.recipe-search span {
    border: 2px solid var(--muted);
    border-radius: 50%;
    display: block;
    height: 14px;
    position: relative;
    width: 14px;
}

.recipe-search span::after {
    background: var(--muted);
    content: "";
    height: 2px;
    left: 10px;
    position: absolute;
    top: 11px;
    transform: rotate(45deg);
    width: 8px;
}

.recipe-search input {
    background: transparent;
    border: 0;
    color: var(--muted);
    font-size: 16px;
    min-width: 0;
    outline: 0;
    width: 100%;
}

.recipe-filter-pills {
    display: flex;
    gap: 12px;
}

.recipe-filter-pills button,
.difficulty-select {
    border: 0;
    border-radius: 999px;
    color: var(--ink);
    cursor: pointer;
    font-size: 13px;
    height: 34px;
    padding: 0 18px;
    white-space: nowrap;
}

.recipe-filter-pills button {
    background: var(--line);
}

.recipe-filter-pills button.is-active {
    background: var(--gold);
    color: var(--body);
}

.difficulty-select {
    background: var(--cream);
    border: 1px solid var(--line);
}

.recipe-library {
    margin: 0 auto;
    max-width: 1116px;
    padding: 0 24px 180px;
}

.recipe-library-heading {
    color: var(--blue);
    margin-bottom: 56px;
    text-align: center;
}

.recipe-library-heading h2 {
    font-family: var(--font-brand);
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 10px;
}

.recipe-library-heading p {
    font-size: 24px;
    line-height: 32px;
    margin: 0;
}

.recipe-library-grid {
    display: grid;
    gap: 34px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.recipe-library-card {
    aspect-ratio: 247 / 334;
    border-radius: 6px;
    box-shadow: 0 14px 28px rgba(28, 28, 27, 0.16);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.recipe-library-card img,
.recipe-library-overlay {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.recipe-library-card img {
    object-fit: cover;
}

.recipe-library-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.22) 56%, rgba(0, 0, 0, 0));
}

.recipe-library-card > a,
.recipe-library-card > button {
    background: rgba(255, 255, 255, 0.94);
    border: 0;
    border-radius: 999px;
    color: var(--blue);
    cursor: pointer;
    font-size: 16px;
    line-height: 22px;
    padding: 9px 18px;
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 2;
}

.recipe-library-copy {
    bottom: 26px;
    left: 28px;
    position: absolute;
    right: 24px;
    z-index: 2;
}

.recipe-library-copy h3 {
    font-family: var(--font-brand);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.28;
    margin: 0 0 12px;
}

.recipe-library-copy p,
.recipe-library-copy span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 23px;
    margin: 0 0 18px;
}

.recipe-library-copy span {
    display: block;
    margin: 0;
    padding-left: 30px;
    position: relative;
}

.recipe-library-copy span::before {
    border: 2px solid currentColor;
    border-radius: 3px;
    content: "";
    height: 16px;
    left: 0;
    position: absolute;
    top: 2px;
    width: 16px;
}

.creator-community {
    background: var(--cream);
    color: var(--blue);
    padding: 96px 24px 112px;
    text-align: center;
}

.creator-community h2 {
    font-family: var(--font-brand);
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px;
}

.creator-community p {
    color: var(--body);
    font-size: 18px;
    line-height: 28px;
    margin: 0 auto 36px;
    max-width: 690px;
}

.community-form {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.community-form input {
    background: var(--white);
    border: 0;
    color: var(--muted);
    height: 48px;
    min-width: 300px;
    outline: 0;
    padding: 0 24px;
}

.community-form button {
    background: var(--blue);
    border: 0;
    border-radius: 999px;
    color: var(--white);
    cursor: pointer;
    font-size: 16px;
    height: 48px;
    padding: 0 34px;
}

.recipe-modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 24px;
    position: fixed;
    z-index: 40;
}

.recipe-modal-backdrop {
    background: rgba(28, 28, 27, 0.58);
    inset: 0;
    position: absolute;
}

.recipe-modal-dialog {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 30px 70px rgba(28, 28, 27, 0.28);
    max-height: calc(100vh - 48px);
    max-width: 560px;
    overflow: auto;
    padding: 36px;
    position: relative;
    width: min(100%, 560px);
    z-index: 1;
}

.recipe-modal-close {
    align-items: center;
    background: var(--cream-strong);
    border: 0;
    border-radius: 50%;
    color: var(--blue);
    cursor: pointer;
    display: flex;
    font-size: 22px;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: 22px;
    top: 22px;
    width: 40px;
}

.recipe-modal-kicker {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.1px;
    line-height: 18px;
    margin: 0 52px 10px 0;
    text-transform: uppercase;
}

.recipe-modal-dialog h2 {
    color: var(--blue);
    font-family: var(--font-brand);
    font-size: 34px;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 52px 12px 0;
}

.recipe-modal-dialog p:not(.recipe-modal-kicker) {
    color: var(--body);
    font-size: 17px;
    line-height: 26px;
    margin: 0 0 26px;
}

.recipe-lead-form {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.recipe-lead-form label {
    display: grid;
    gap: 8px;
}

.recipe-lead-form span {
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;
    line-height: 18px;
    text-transform: uppercase;
}

.recipe-lead-form input {
    background: var(--cream-strong);
    border: 1px solid rgba(28, 28, 27, 0.16);
    border-radius: 6px;
    color: var(--ink);
    min-height: 50px;
    padding: 13px 15px;
    width: 100%;
}

.recipe-lead-form input:focus {
    background: var(--white);
    border-color: var(--blue);
}

.recipe-lead-form button {
    background: var(--gold);
    color: var(--blue);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(151, 31, 45, 0.22);
    color: var(--white);
    cursor: pointer;
    font-family: var(--font-brand);
    font-size: 15px;
    font-weight: 800;
    grid-column: 1 / -1;
    min-height: 54px;
    padding: 14px 28px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.recipe-lead-form button:hover {
    background: #e6b400;
    transform: translateY(-2px);
}

.academy-footer {
    align-items: flex-start;
    background: var(--cream-strong);
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    padding: 50px 72px;
}

.academy-footer h2 {
    color: var(--blue);
    font-family: var(--font-brand);
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
    margin: 0 0 24px;
}

.academy-footer p {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
}

.academy-footer nav {
    display: flex;
    gap: 54px;
    padding-top: 38px;
}

.academy-footer a {
    color: var(--muted);
    font-size: 12px;
}

.contact-page {
    background: var(--cream-strong);
    padding-top: 80px;
}

.contact-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    min-height: 596px;
}

.contact-copy {
    padding: 120px 58px 80px 88px;
}

.contact-copy h1 {
    color: var(--blue);
    font-family: var(--font-brand);
    font-size: clamp(42px, 4.2vw, 54px);
    font-weight: 900;
    line-height: 1.12;
    margin: 0 0 34px;
    max-width: 650px;
}

.contact-copy > p {
    color: var(--muted);
    font-size: 20px;
    line-height: 31px;
    margin: 0 0 54px;
    max-width: 620px;
}

.social-block span {
    color: var(--ink);
    display: block;
    font-family: var(--font-brand);
    font-size: 18px;
    font-weight: 800;
    line-height: 26px;
    margin-bottom: 20px;
}

.contact-socials {
    display: flex;
    gap: 18px;
}

.contact-socials a {
    align-items: center;
    background: var(--blue);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    font-size: 12px;
    font-weight: 800;
    height: 50px;
    justify-content: center;
    position: relative;
    width: 50px;
}

.contact-card-wrap {
    align-items: flex-start;
    background:
        linear-gradient(135deg, rgba(255, 246, 228, 0.88), rgba(196, 218, 216, 0.46)),
        url("../img/web/product-wetline-fruit.jpg") center / cover;
    display: flex;
    justify-content: center;
    padding: 84px 66px 80px 34px;
}

.contact-card {
    background: var(--blue);
    border-radius: 8px;
    box-shadow: 0 28px 55px rgba(0, 22, 137, 0.22);
    color: var(--white);
    max-width: 620px;
    overflow: hidden;
    padding: 42px 44px 40px;
    position: relative;
    width: 100%;
}

.contact-card::after {
    color: rgba(255, 255, 255, 0.06);
    content: "F";
    font-family: var(--font-brand);
    font-size: 250px;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: -10px;
    top: -18px;
}

.contact-card > * {
    position: relative;
    z-index: 1;
}

.contact-card h2 {
    align-items: center;
    display: flex;
    font-family: var(--font-brand);
    font-size: 32px;
    font-weight: 900;
    gap: 16px;
    line-height: 1.15;
    margin: 0 0 34px;
}

.office-icon {
    border: 3px solid currentColor;
    border-radius: 4px;
    flex: 0 0 26px;
    height: 26px;
    position: relative;
    width: 26px;
}

.office-icon::before {
    border-bottom: 8px solid currentColor;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    content: "";
    left: -5px;
    position: absolute;
    top: -11px;
    width: 30px;
}

.contact-card-section {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding: 26px 0 0;
}

.contact-card-section + .contact-card-section {
    margin-top: 28px;
}

.contact-card-section h3 {
    color: var(--gold);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.8px;
    line-height: 20px;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.contact-card-section p,
.contact-card-section a {
    color: rgba(255, 255, 255, 0.88);
    display: block;
    font-size: 18px;
    line-height: 29px;
    margin: 0;
}

.contact-card-section a {
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
}

.contact-distributor-strip {
    background: var(--line);
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
    padding: 46px 88px;
}

.distributor-form-copy {
    align-items: flex-start;
    display: grid;
    gap: 24px;
    grid-template-columns: 54px minmax(0, 1fr);
}

.contact-distributor-strip h2 {
    color: var(--ink);
    font-family: var(--font-brand);
    font-size: 25px;
    font-weight: 800;
    line-height: 1.22;
    margin: 0 0 6px;
}

.contact-distributor-strip p {
    color: var(--muted);
    font-size: 14px;
    line-height: 21px;
    margin: 0;
}

.distributor-form {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--soft-shadow);
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 28px;
}

.distributor-form label {
    display: grid;
    gap: 8px;
}

.distributor-form span {
    color: var(--ink);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.7px;
    line-height: 18px;
    text-transform: uppercase;
}

.distributor-form input,
.distributor-form textarea {
    background: var(--cream-strong);
    border: 1px solid rgba(28, 28, 27, 0.16);
    border-radius: 6px;
    color: var(--ink);
    min-height: 50px;
    padding: 13px 15px;
    width: 100%;
}

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

.distributor-form input:focus,
.distributor-form textarea:focus {
    background: var(--white);
    border-color: var(--blue);
}

.distributor-form-wide,
.distributor-form button {
    grid-column: 1 / -1;
}

.distributor-form button {
    background: var(--gold);
    color: var(--blue);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(151, 31, 45, 0.22);
    color: var(--white);
    cursor: pointer;
    font-family: var(--font-brand);
    font-size: 15px;
    font-weight: 700;
    padding: 16px 30px;
    text-align: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.distributor-form button:hover {
    background: #e6b400;
    transform: translateY(-2px);
}

.contact-footer {
    align-items: flex-start;
    background: var(--cream-strong);
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    padding: 50px 88px;
}

.contact-footer h2 {
    color: var(--blue);
    font-family: var(--font-brand);
    font-size: 22px;
    font-weight: 800;
    line-height: 30px;
    margin: 0 0 18px;
}

.contact-footer p {
    font-size: 13px;
    line-height: 19px;
    margin: 0;
}

.contact-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
    padding-top: 34px;
}

.contact-footer a {
    color: var(--muted);
    font-size: 12px;
}

.product-icon::before,
.product-icon::after,
.cat-icon::before,
.cat-icon::after,
.detail-icon::before,
.detail-icon::after,
.tab-icon::before,
.tab-icon::after,
.search-icon::before,
.search-icon::after,
.target-icon::before,
.target-icon::after,
.map-pin::after,
.store-icon::before,
.store-icon::after,
.contact-socials a::before,
.contact-socials a::after,
.office-icon::before {
    content: none !important;
    display: none !important;
}

.product-icon,
.cat-icon,
.detail-icon,
.tab-icon,
.search-icon,
.target-icon,
.store-icon,
.office-icon {
    align-items: center;
    display: inline-flex;
    justify-content: center;
}

.product-icon .ti {
    color: var(--blue);
    font-size: 32px;
}

.cat-icon {
    flex: 0 0 20px;
    height: 20px;
    width: 20px;
}

.cat-icon .ti,
.detail-icon .ti,
.tab-icon .ti,
.search-icon .ti,
.target-icon .ti,
.store-icon .ti,
.office-icon .ti {
    font-size: inherit;
    line-height: 1;
}

.catalog-search-icon,
.recipe-search-icon {
    color: var(--muted);
    flex: 0 0 auto;
    font-size: 19px;
}

.detail-icon {
    color: var(--blue);
    font-size: 24px;
}

.tab-icon {
    color: currentColor;
    font-size: 20px;
}

.search-icon,
.target-icon {
    font-size: 22px;
}

.map-pin {
    background: transparent;
    border-radius: 0;
    color: var(--red);
    font-size: 34px;
    height: 34px;
    line-height: 1;
    transform: none;
    width: 34px;
}

.map-pin .ti {
    filter: drop-shadow(0 3px 6px rgba(28, 28, 27, 0.22));
}

.store-icon {
    color: var(--blue);
    font-size: 28px;
}

.office-icon {
    border: 0;
    color: currentColor;
    flex: 0 0 30px;
    font-size: 30px;
    height: 30px;
    width: 30px;
}

.social-links a,
.contact-socials a {
    font-size: 22px;
}

.location-card p {
    align-items: flex-start;
    display: flex;
    gap: 9px;
    padding-left: 0;
}

.location-card p::before,
.directions-button::before {
    content: none;
    display: none;
}

.location-card p .ti {
    color: var(--blue);
    flex: 0 0 auto;
    font-size: 18px;
    margin-top: 1px;
}

.directions-button {
    gap: 8px;
}

.directions-button .ti {
    font-size: 18px;
}

.difficulty-select {
    align-items: center;
    display: inline-flex;
    gap: 6px;
}

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

    .js-enabled .home-reveal,
    .js-enabled .hero.home-reveal .hero-kicker,
    .js-enabled .hero.home-reveal h1,
    .js-enabled .hero.home-reveal .hero-subtitle,
    .js-enabled .hero.home-reveal .hero-actions {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1120px) {
    .site-nav {
        grid-template-columns: auto auto;
        padding: 14px 28px;
    }

    .nav-toggle {
        display: flex;
        justify-self: end;
        position: relative;
        z-index: 22;
    }

    .nav-menu {
        align-items: flex-start;
        background: rgba(255, 246, 228, 0.98);
        box-shadow: 0 25px 50px rgba(28, 28, 27, 0.12);
        display: none;
        flex-direction: column;
        gap: 18px;
        left: 20px;
        padding: 28px;
        position: fixed;
        right: 20px;
        top: 92px;
    }

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

    .partner-button {
        display: none;
    }

    .story-grid,
    .recipes-inner,
    .commercial-inner,
    .locator-grid,
    .about-origin-intro,
    .about-legacy-grid,
    .about-origin-grid {
        gap: 56px;
        grid-template-columns: 1fr;
    }

    .about-story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-image-panel {
        grid-column: 1 / -1;
    }

    .story-media {
        justify-self: center;
    }

    .audience-grid,
    .product-grid,
    .footer-main,
    .blue-footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .commercial-cards {
        max-width: 760px;
    }

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

    .catalog-page {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        border-radius: 0;
        padding: 32px 28px;
    }

    .catalog-search {
        max-width: 420px;
    }

    .catalog-categories {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        margin-left: 0;
    }

    .catalog-content {
        padding: 48px 28px 100px;
    }

    .catalog-grid {
        gap: 34px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail-page {
        padding-left: 28px;
        padding-right: 28px;
    }

    .product-detail-hero {
        grid-template-columns: 1fr;
    }

    .product-pack-card {
        min-height: 460px;
    }

    .distributors-hero {
        padding-left: 28px;
        padding-right: 28px;
    }

    .distributors-map-layout {
        grid-template-columns: 1fr;
    }

    .location-list {
        padding: 28px;
    }

    .map-stage {
        min-height: 520px;
    }

    .corporate-cta {
        grid-template-columns: 48px 1fr;
        padding: 34px 28px;
    }

    .corporate-cta a {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .recipe-filter-card {
        grid-template-columns: 1fr;
        margin-left: 28px;
        margin-right: 28px;
    }

    .recipe-filter-pills {
        flex-wrap: wrap;
    }

    .recipe-library-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .academy-footer {
        flex-direction: column;
        gap: 28px;
    }

    .academy-footer nav {
        flex-wrap: wrap;
        gap: 22px 36px;
        padding-top: 0;
    }

    .contact-hero {
        grid-template-columns: 1fr;
    }

    .contact-copy {
        padding: 86px 28px 56px;
    }

    .contact-card-wrap {
        padding: 0 28px 70px;
    }

    .contact-distributor-strip {
        grid-template-columns: 1fr;
        padding: 34px 28px;
    }

    .distributor-form {
        padding: 26px;
    }

    .contact-footer {
        flex-direction: column;
        gap: 28px;
        padding: 46px 28px;
    }

    .contact-footer nav {
        gap: 22px 36px;
        padding-top: 0;
    }
}

@media (max-width: 720px) {
    .site-nav {
        min-height: 76px;
        padding: 12px 20px;
    }

    .brand,
    .brand img {
        width: 132px;
    }

    .hero {
        min-height: 760px;
        padding: 150px 24px 76px;
    }

    .hero-bg {
        top: 76px;
    }

    .hero h1 {
        font-size: clamp(32px, 10.2vw, 44px);
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-button,
    .secondary-button,
    .ghost-button {
        font-size: 16px;
        justify-content: center;
        padding: 14px 24px;
        width: 100%;
    }

    .story-section,
    .solution-section,
    .products-section,
    .recipes-section,
    .commercial-section,
    .locator-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .story-section,
    .solution-section,
    .products-section,
    .recipes-section,
    .commercial-section {
        padding-bottom: 80px;
        padding-top: 80px;
    }

    .year-card {
        bottom: -52px;
        right: 12px;
    }

    .story-copy {
        padding-top: 32px;
    }

    .section-heading {
        margin-bottom: 48px;
    }

    .section-heading h2 {
        line-height: 1.12;
    }

    .audience-grid,
    .product-grid,
    .recipe-grid,
    .recipe-grid.featured,
    .commercial-cards,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: auto;
    }

    .audience-copy {
        min-height: 0;
    }

    .commercial-card {
        padding: 28px;
    }

    .locator-form {
        flex-direction: column;
    }

    .locator-form input,
    .locator-form button {
        width: 100%;
    }

    .map-card img {
        height: 360px;
    }

    .site-footer {
        padding: 64px 24px 32px;
    }

    .about-hero {
        min-height: 620px;
        padding: 210px 24px 88px;
    }

    .about-origin {
        padding: 64px 24px 76px;
    }

    .about-story-grid {
        gap: 18px;
        grid-template-columns: 1fr;
        margin: 48px auto;
    }

    .about-text-panel {
        padding: 26px 22px;
    }

    .about-text-panel p,
    .about-origin-copy p {
        font-size: 18px;
        line-height: 1.55;
    }

    .about-origin-media {
        min-height: auto;
        padding-bottom: 72px;
    }

    .about-photo-stack {
        gap: 18px;
        grid-template-columns: 1fr;
    }

    .about-photo-stack img {
        height: 280px;
    }

    .about-photo-stack img:first-child {
        margin-top: 0;
    }

    .grain-frame {
        margin: 0 auto;
        padding: 20px;
    }

    .grain-frame::before {
        border-width: 10px;
        inset: 18px;
    }

    .grain-frame img {
        height: 360px;
    }

    .foundation-card {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .blue-footer-main {
        gap: 36px;
        grid-template-columns: 1fr;
    }

    .site-footer-blue {
        padding: 56px 24px 44px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 56px;
    }

    .footer-bottom div {
        justify-content: flex-start;
    }

    .catalog-page {
        padding-top: 76px;
    }

    .catalog-sidebar {
        padding: 28px 18px;
    }

    .catalog-content {
        padding: 44px 18px 84px;
    }

    .catalog-heading {
        margin-bottom: 38px;
    }

    .catalog-heading h1,
    .catalog-heading h2 {
        font-size: 42px;
    }

    .catalog-heading p {
        font-size: 18px;
        line-height: 28px;
    }

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

    .catalog-card {
        min-height: auto;
    }

    .catalog-footer {
        padding: 42px 24px;
    }

    .catalog-footer-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 34px;
    }

    .catalog-footer nav {
        flex-wrap: wrap;
        gap: 18px 26px;
    }

    .product-detail-page {
        padding: 104px 18px 42px;
    }

    .breadcrumb {
        margin-bottom: 24px;
    }

    .product-detail-hero {
        gap: 32px;
        margin-bottom: 42px;
    }

    .product-pack-card {
        min-height: 360px;
        padding: 28px;
    }

    .product-pack-card img {
        max-height: 260px;
    }

    .product-detail-info h1 {
        font-size: 40px;
    }

    .product-subtitle {
        font-size: 21px;
    }

    .product-description,
    .benefits-card li,
    .tab-panel p {
        font-size: 17px;
        line-height: 27px;
    }

    .product-facts {
        grid-template-columns: 1fr;
    }

    .benefits-card {
        padding: 26px 22px;
    }

    .tab-list {
        grid-template-columns: 1fr;
    }

    .tab-list button {
        justify-content: flex-start;
    }

    .product-detail-footer {
        flex-direction: column;
        gap: 32px;
        padding: 42px 24px;
    }

    .product-detail-footer nav {
        justify-items: start;
    }

    .distributors-page {
        padding-top: 76px;
    }

    .distributors-hero {
        padding: 34px 18px 28px;
    }

    .distributor-search {
        align-items: stretch;
        flex-direction: column;
    }

    .search-input-wrap {
        width: 100%;
    }

    .distributor-search button {
        width: 100%;
    }

    .location-list {
        padding: 24px 18px;
    }

    .location-card {
        padding: 22px;
    }

    .location-card-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .map-stage {
        min-height: 430px;
    }

    .map-tooltip {
        left: 18px;
        min-width: 0;
        right: 18px;
        top: 30%;
    }

    .corporate-cta {
        grid-template-columns: 1fr;
        padding: 32px 18px;
    }

    .corporate-cta h2 {
        font-size: 23px;
    }

    .corporate-cta a {
        justify-self: stretch;
        white-space: normal;
    }

    .recipe-book-page {
        padding-top: 76px;
    }

    .recipe-book-hero {
        min-height: 500px;
        padding: 130px 18px 100px;
    }

    .recipe-book-hero h1 {
        font-size: 48px;
        margin-bottom: 44px;
    }

    .recipe-filter-card {
        margin: -48px 18px 72px;
        padding: 22px;
    }

    .recipe-filter-pills button,
    .difficulty-select {
        width: 100%;
    }

    .recipe-filter-pills {
        display: grid;
        grid-template-columns: 1fr;
    }

    .recipe-library {
        padding-bottom: 84px;
    }

    .recipe-library-heading h2 {
        font-size: 36px;
    }

    .recipe-library-heading p {
        font-size: 18px;
        line-height: 26px;
    }

    .recipe-library-grid {
        grid-template-columns: 1fr;
    }

    .creator-community {
        padding: 72px 18px;
    }

    .creator-community h2 {
        font-size: 30px;
    }

    .community-form {
        flex-direction: column;
    }

    .community-form input,
    .community-form button {
        min-width: 0;
        width: 100%;
    }

    .recipe-modal {
        align-items: flex-end;
        padding: 12px;
    }

    .recipe-modal-dialog {
        max-height: calc(100vh - 24px);
        padding: 30px 22px 24px;
    }

    .recipe-modal-dialog h2 {
        font-size: 28px;
    }

    .recipe-lead-form {
        grid-template-columns: 1fr;
    }

    .academy-footer {
        padding: 42px 24px;
    }

    .academy-footer nav {
        display: grid;
        gap: 16px;
    }

    .contact-page {
        padding-top: 76px;
    }

    .contact-copy {
        padding: 58px 18px 48px;
    }

    .contact-copy h1 {
        font-size: 42px;
        line-height: 1.08;
    }

    .contact-copy > p {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 40px;
    }

    .contact-card-wrap {
        padding: 0 18px 56px;
    }

    .contact-card {
        padding: 32px 24px;
    }

    .contact-card h2 {
        align-items: flex-start;
        font-size: 28px;
    }

    .contact-card-section a {
        font-size: 22px;
    }

    .contact-distributor-strip {
        grid-template-columns: 1fr;
        padding: 32px 18px;
    }

    .contact-distributor-strip h2 {
        font-size: 23px;
    }

    .distributor-form-copy {
        grid-template-columns: 1fr;
    }

    .distributor-form {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .distributor-form button {
        width: 100%;
    }

    .contact-footer {
        padding: 42px 24px;
    }

    .contact-footer nav {
        display: grid;
        gap: 16px;
    }
}

/* Visual refresh based on the Fleischmann guide. */
:root {
    --blue: #012169;
    --blue-light: #1a3f96;
    --blue-deep: #00123f;
    --red: #9e1e41;
    --red-deep: #7f1633;
    --gold: #ffc700;
    --gold-soft: #fff0bf;
    --cream: #f7f0df;
    --cream-strong: #fbf7ed;
    --teal: #003c5e;
    --sky: #528eb6;
    --sand: #e9e1cd;
    --copper: #e19128;
    --orange: #bf5e16;
    --earth: #61401a;
    --ink: #1c1c1b;
    --body: #4e4036;
    --muted: #6f685f;
    --line: rgba(1, 33, 105, 0.14);
    --font-display: var(--font-brand);
    --font-serif: var(--font-brand);
}

body {
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 199, 0, 0.14), transparent 26%),
        linear-gradient(180deg, var(--cream-strong), var(--cream));
}

.site-header {
    background: rgba(0, 22, 137, 0.96);
    border-bottom: 4px solid var(--gold);
    box-shadow: 0 18px 38px rgba(0, 15, 102, 0.22);
}

.site-nav {
    min-height: 84px;
}

.brand {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 8px 0;
    width: 164px;
}

.brand img {
    width: 140px;
}

.nav-menu a {
    border: 1px solid transparent;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.84);
    padding: 9px 14px;
}

.nav-menu a:hover,
.nav-menu a.is-active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--blue);
}

.partner-button {
    background: var(--gold);
    box-shadow: none;
    color: var(--blue);
}

.nav-toggle span {
    background: var(--white);
}

.hero-video-stage {
    min-height: 820px;
    padding-bottom: 108px;
}

.hero-bg,
.hero-video,
.hero-pattern {
    inset: 84px 0 0;
    position: absolute;
}

.hero-bg {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue));
}

.hero-video {
    height: calc(100% - 84px);
    object-fit: cover;
    /* Ancla el encuadre arriba: el logo Fleischmann del footage vive en la
       esquina superior y no debe cortarse; el recorte se va al borde inferior. */
    object-position: 50% 0;
    opacity: 0;
    transition: opacity 520ms ease;
    width: 100%;
    z-index: 0;
}

.hero-video-stage.is-video-ready .hero-video {
    opacity: 1;
}

.hero-video-stage.is-video-ready .hero-bg {
    opacity: 0;
}

.hero-pattern {
    background:
        linear-gradient(90deg, rgba(0, 15, 102, 0.9), rgba(0, 22, 137, 0.56) 45%, rgba(0, 0, 0, 0.18)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 28px);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 1240px;
    z-index: 3;
}

.hero h1 {
    font-size: clamp(41px, 5.6vw, 78px);
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero-kicker {
    background: var(--gold);
    border: 0;
    color: var(--blue);
}

.hero-actions .primary-button {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--blue);
    box-shadow: 8px 8px 0 rgba(255, 199, 0, 0.92);
}

.hero-actions .secondary-button {
    box-shadow: 8px 8px 0 rgba(158, 30, 65, 0.85);
}

.hero-billboard {
    bottom: 48px;
    display: grid;
    gap: 12px;
    position: absolute;
    right: 48px;
    width: min(420px, calc(100% - 96px));
    z-index: 4;
}

.hero-billboard article {
    background: rgba(255, 255, 255, 0.9);
    border-left: 8px solid var(--gold);
    border-radius: 8px;
    box-shadow: 0 22px 42px rgba(0, 15, 102, 0.2);
    color: var(--ink);
    opacity: 0.68;
    padding: 16px 18px;
    transform: translateX(16px);
    transition: opacity 260ms ease, transform 260ms ease;
}

.hero-billboard article.is-active {
    opacity: 1;
    transform: translateX(0);
}

.hero-billboard span {
    color: var(--gold);
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
    line-height: 16px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.hero-billboard h2 {
    color: var(--blue);
    font-size: 20px;
    line-height: 1.08;
    margin: 0 0 6px;
}

.hero-billboard p {
    color: var(--body);
    font-size: 13px;
    line-height: 1.35;
    margin: 0;
}

.solution-section {
    background:
        radial-gradient(circle at top left, rgba(255, 199, 0, 0.2), transparent 34%),
        var(--cream);
}

.solution-copete {
    align-items: center;
    display: grid;
    gap: 44px;
    grid-template-columns: minmax(0, 1fr);
    margin: 0 auto 58px;
    max-width: 1280px;
}

.solution-copete h2 {
    color: var(--blue);
    font-size: clamp(31px, 4.2vw, 53px);
    font-weight: 900;
    line-height: 1;
    margin: 0 0 18px;
}

.solution-copete > div > p:not(.section-eyebrow) {
    color: var(--body);
    font-size: 20px;
    line-height: 1.55;
    margin: 0;
    max-width: 760px;
}

.solution-copete img {
    aspect-ratio: 4 / 3;
    border: 10px solid var(--white);
    border-radius: 8px;
    box-shadow: 12px 12px 0 var(--gold), var(--soft-shadow);
    object-fit: cover;
    width: 100%;
}

.audience-card {
    background: var(--white);
    border: 2px solid rgba(0, 22, 137, 0.12);
    box-shadow: 10px 10px 0 rgba(0, 22, 137, 0.08);
}

.audience-card:hover,
.audience-card:focus-within {
    border-color: rgba(0, 22, 137, 0.4);
    box-shadow: 12px 12px 0 rgba(255, 199, 0, 0.65);
}

.audience-image::after,
.product-image::after,
.catalog-card-image::after {
    background: linear-gradient(135deg, rgba(255, 199, 0, 0.22), transparent 45%, rgba(158, 30, 65, 0.12));
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.audience-image,
.product-image,
.catalog-card-image {
    position: relative;
}

.audience-icon,
.commercial-icon,
.product-icon {
    align-items: center;
    background: var(--gold);
    color: var(--blue);
    display: inline-flex;
    font-size: 26px;
    justify-content: center;
}

.audience-copy {
    min-height: 286px;
}

.products-section {
    background:
        linear-gradient(135deg, rgba(0, 22, 137, 0.96), rgba(0, 60, 94, 0.98)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 24px);
}

.product-card {
    background: var(--cream-strong);
    border: 0;
    box-shadow: 10px 10px 0 rgba(255, 199, 0, 0.72);
}

.recipes-section,
.recipe-book-page {
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 199, 0, 0.16), transparent 28%),
        var(--cream-strong);
}

.recipe-card,
.recipe-library-card {
    border: 4px solid var(--white);
    box-shadow: 12px 12px 0 rgba(0, 22, 137, 0.14), 0 18px 36px rgba(28, 28, 27, 0.16);
}

.recipe-card > button,
.recipe-library-card > button {
    background: var(--gold);
    color: var(--blue);
}

.catalog-page {
    background:
        linear-gradient(180deg, rgba(251, 247, 237, 0.96), rgba(247, 240, 223, 0.96)),
        repeating-linear-gradient(90deg, rgba(0, 22, 137, 0.08) 0 1px, transparent 1px 36px);
    min-height: auto;
}

.catalog-sidebar {
    background: var(--blue);
    border-radius: 0;
    color: var(--white);
    min-height: calc(100vh - 80px);
    position: sticky;
    top: 80px;
}

.catalog-sidebar h1,
.catalog-sidebar h2,
.catalog-sidebar > p {
    color: var(--white);
}

.catalog-search {
    border: 2px solid rgba(255, 199, 0, 0.65);
    height: 44px;
    max-width: 232px;
}

.catalog-search-icon,
.recipe-search-icon {
    color: var(--blue);
}

.catalog-categories {
    border-top-color: rgba(255, 255, 255, 0.18);
}

.catalog-categories button {
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    cursor: pointer;
    display: flex;
    font-size: 16px;
    gap: 14px;
    min-height: 46px;
    padding: 0 24px;
    text-align: left;
}

.catalog-categories button.is-active,
.catalog-categories button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--blue);
}

.cat-icon::before,
.cat-icon::after,
.detail-icon::before,
.detail-icon::after,
.tab-icon::before,
.tab-icon::after {
    content: none;
}

.catalog-heading .section-eyebrow {
    color: var(--blue);
    margin-bottom: 12px;
}

.catalog-heading h1,
.catalog-heading h2 {
    color: var(--blue);
}

.catalog-ingredient-strip,
.catalog-card-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.catalog-ingredient-strip {
    margin-top: 28px;
}

.catalog-ingredient-strip span,
.catalog-card-chips span {
    background: var(--gold);
    border-radius: 999px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.7px;
    line-height: 18px;
    padding: 7px 12px;
    text-transform: uppercase;
}

.catalog-grid {
    gap: 42px 30px;
}

.catalog-card {
    background: linear-gradient(180deg, var(--white), var(--cream-strong));
    border: 2px solid rgba(0, 22, 137, 0.1);
    box-shadow: 10px 10px 0 rgba(0, 22, 137, 0.08);
    display: flex;
    flex-direction: column;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.catalog-card:hover {
    border-color: rgba(0, 22, 137, 0.4);
    box-shadow: 12px 12px 0 rgba(255, 199, 0, 0.7);
    transform: translateY(-4px);
}

.catalog-card.is-hidden {
    display: none;
}

.catalog-card-image {
    background: var(--sand);
    height: 216px;
}

.catalog-card-image img {
    transition: transform 240ms ease;
}

.catalog-card-render {
    align-items: center;
    background:
        radial-gradient(circle at 50% 80%, rgba(255, 199, 0, 0.18), transparent 34%),
        linear-gradient(180deg, var(--white), var(--sand));
    display: flex;
    height: 260px;
    justify-content: center;
    padding: 22px;
}

.catalog-card-render::after {
    opacity: 0.22;
}

.catalog-card-render img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

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

.catalog-badge-red {
    background: var(--red);
    color: var(--white);
}

.catalog-card-chips {
    margin-top: auto;
    padding-top: 22px;
}

.catalog-card-chips span {
    background: rgba(0, 22, 137, 0.08);
    color: var(--blue);
    font-size: 10px;
    padding: 5px 9px;
}

.catalog-empty {
    background: var(--white);
    border: 2px dashed var(--line);
    border-radius: 8px;
    color: var(--body);
    font-size: 18px;
    margin: 34px 0 0;
    padding: 28px;
    text-align: center;
}

.product-detail-page {
    background:
        radial-gradient(circle at top right, rgba(255, 199, 0, 0.18), transparent 30%),
        var(--cream-strong);
}

.product-detail-hero {
    grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
}

.product-visual-stage {
    min-height: 620px;
    position: relative;
}

.product-pack-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 225, 205, 0.5)),
        repeating-linear-gradient(135deg, rgba(0, 22, 137, 0.07) 0 2px, transparent 2px 28px);
    border: 2px solid rgba(0, 22, 137, 0.12);
    box-shadow: 12px 12px 0 rgba(255, 199, 0, 0.8);
    min-height: 560px;
}

.product-pack-card > span {
    background: var(--red);
}

.product-pack-card img {
    max-height: 420px;
    width: min(360px, 88%);
}

.product-application-section {
    align-items: center;
    background:
        linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 8px;
    box-shadow: 12px 12px 0 rgba(255, 199, 0, 0.82);
    color: var(--white);
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
    margin: 0 auto 64px;
    max-width: 1200px;
    overflow: hidden;
    padding: 28px;
}

.product-application-media {
    border: 8px solid var(--white);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(0, 15, 102, 0.22);
    overflow: hidden;
}

.product-application-media img {
    aspect-ratio: 4 / 3;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.product-application-copy {
    padding: 18px 18px 18px 0;
}

.product-application-copy .section-eyebrow {
    color: var(--gold);
    margin-bottom: 14px;
}

.product-application-copy h2 {
    color: var(--white);
    font-size: clamp(27px, 3.1vw, 41px);
    font-weight: 900;
    line-height: 1.03;
    margin: 0 0 18px;
}

.product-application-copy p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.55;
    margin: 0;
}

.application-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.application-tags span {
    align-items: center;
    background: var(--gold);
    border-radius: 999px;
    color: var(--blue);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 7px;
    letter-spacing: 0.7px;
    line-height: 18px;
    padding: 8px 12px;
    text-transform: uppercase;
}

.product-detail-info .section-eyebrow,
.about-heritage-intro .section-eyebrow {
    color: var(--blue);
}

.product-detail-info h1 {
    color: var(--blue);
}

.product-facts article,
.benefits-card,
.product-tabs {
    border: 2px solid rgba(0, 22, 137, 0.1);
    box-shadow: 10px 10px 0 rgba(0, 22, 137, 0.08);
}

.benefits-card {
    background: var(--white);
}

.tab-list button {
    font-weight: 800;
}

.tab-list button.is-active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.tab-list button.is-active .tab-icon {
    color: var(--gold);
}

.tab-panel {
    background:
        linear-gradient(90deg, rgba(255, 199, 0, 0.12), transparent 38%),
        var(--white);
}

.tab-panel:not(.is-active) {
    display: none;
}

.recipe-book-hero {
    background:
        linear-gradient(135deg, rgba(0, 22, 137, 0.9), rgba(158, 30, 65, 0.74)),
        url("../img/web/pastry-pink-cake.jpg") center / cover;
    overflow: hidden;
    position: relative;
}

.recipe-hero-pattern {
    background:
        radial-gradient(circle at 20% 22%, rgba(255, 199, 0, 0.24), transparent 20%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 2px, transparent 2px 30px);
    inset: 0;
    position: absolute;
}

.recipe-book-hero > p,
.recipe-book-hero h1,
.recipe-book-hero span {
    position: relative;
    z-index: 1;
}

.recipe-library-card {
    aspect-ratio: 4 / 5;
}

.recipe-library-tag {
    align-items: center;
    background: var(--gold);
    border-radius: 999px;
    color: var(--blue);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 6px;
    left: 18px;
    letter-spacing: 0.8px;
    line-height: 18px;
    padding: 8px 12px;
    position: absolute;
    text-transform: uppercase;
    top: 18px;
    z-index: 2;
}

.recipe-library-card > button {
    top: 64px;
}

.about-heritage-hero {
    background:
        linear-gradient(90deg, rgba(0, 22, 137, 0.92), rgba(0, 60, 94, 0.64), rgba(97, 64, 26, 0.18)),
        url("../img/web/about-hero-bakery.jpg") center / cover;
}

.about-heritage-hero .about-hero-content h1 {
    max-width: 820px;
}

.about-heritage-intro {
    background:
        linear-gradient(180deg, var(--cream-strong), var(--cream)),
        repeating-linear-gradient(90deg, rgba(0, 22, 137, 0.06) 0 1px, transparent 1px 34px);
    padding-top: 86px;
}

.heritage-copete {
    align-items: center;
    display: grid;
    gap: 56px;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.84fr);
    margin: 0 auto 92px;
    max-width: 1280px;
}

.heritage-copete h2,
.heritage-closing h2 {
    color: var(--blue);
    font-size: clamp(31px, 3.9vw, 51px);
    font-weight: 900;
    line-height: 1.02;
    margin: 0 0 22px;
}

.heritage-copete p,
.heritage-closing p {
    color: var(--body);
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}

.heritage-copete figure {
    background: var(--white);
    border: 2px solid rgba(0, 22, 137, 0.1);
    border-radius: 8px;
    box-shadow: 12px 12px 0 rgba(0, 22, 137, 0.08);
    margin: 0;
    overflow: hidden;
}

/* Panel de legibilidad sobre la textura de panes (slide 8 cliente) */
.heritage-copy-panel {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(28, 28, 27, 0.06);
    padding: 34px 38px;
}

.heritage-copete img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.heritage-copete figcaption {
    color: var(--body);
    font-size: 13px;
    font-weight: 800;
    padding: 12px 14px;
}

.heritage-timeline {
    margin: 0 auto;
    max-width: 1180px;
    padding: 10px 0 30px;
    position: relative;
}

.timeline-track {
    background: rgba(0, 22, 137, 0.12);
    border-radius: 999px;
    bottom: 54px;
    left: 50%;
    position: absolute;
    top: 28px;
    transform: translateX(-50%);
    width: 7px;
}

.timeline-track span {
    background: linear-gradient(180deg, var(--gold), var(--red));
    border-radius: inherit;
    display: block;
    height: 0;
    transition: height 120ms linear;
    width: 100%;
}

.timeline-item {
    align-items: center;
    display: grid;
    gap: 52px;
    grid-template-columns: minmax(0, 1fr) 118px minmax(0, 1fr);
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 520ms ease, transform 520ms ease;
}

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

.timeline-item:nth-of-type(even) .timeline-card {
    grid-column: 1;
}

.timeline-item:nth-of-type(even) .timeline-year {
    grid-column: 2;
}

.timeline-item:nth-of-type(odd) .timeline-year {
    grid-column: 2;
}

.timeline-item:nth-of-type(odd) .timeline-card {
    grid-column: 3;
}

.timeline-year {
    align-items: center;
    aspect-ratio: 1;
    background: var(--blue);
    border: 7px solid var(--cream-strong);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--gold);
    color: var(--gold);
    display: flex;
    font-size: 26px;
    font-weight: 900;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.timeline-card {
    background: var(--white);
    border: 2px solid rgba(0, 22, 137, 0.1);
    border-radius: 8px;
    box-shadow: 12px 12px 0 rgba(0, 22, 137, 0.08);
    display: grid;
    gap: 0;
    grid-template-columns: minmax(170px, 0.8fr) minmax(0, 1fr);
    overflow: hidden;
    transition: border-color 220ms ease, box-shadow 220ms ease;
}

.timeline-card:hover {
    border-color: rgba(0, 22, 137, 0.28);
    box-shadow: 20px 20px 0 rgba(0, 22, 137, 0.14);
}

@media (prefers-reduced-motion: reduce) {
    .timeline-card {
        transition: none;
    }
}

.timeline-media {
    background: var(--sand);
    min-height: 240px;
}

.timeline-media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.timeline-copy {
    padding: 30px;
}

.timeline-icon {
    align-items: center;
    background: var(--gold);
    border-radius: 8px;
    color: var(--blue);
    display: inline-flex;
    font-size: 26px;
    height: 52px;
    justify-content: center;
    margin-bottom: 18px;
    width: 52px;
}

.timeline-copy h2 {
    color: var(--blue);
    font-size: 28px;
    line-height: 1.08;
    margin: 0 0 14px;
}

.timeline-copy p {
    color: var(--body);
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
}

.timeline-item-gold .timeline-year,
.timeline-item-gold .timeline-icon {
    background: var(--gold);
    color: var(--blue);
}

.timeline-item-red .timeline-year,
.timeline-item-red .timeline-icon {
    background: var(--red);
    color: var(--white);
}

.timeline-item-teal .timeline-year,
.timeline-item-teal .timeline-icon {
    background: var(--teal);
    color: var(--gold);
}

.timeline-item-earth .timeline-year,
.timeline-item-earth .timeline-icon {
    background: var(--earth);
    color: var(--gold);
}

.heritage-closing {
    align-items: start;
    background: var(--blue);
    border-radius: 8px;
    box-shadow: 12px 12px 0 rgba(255, 199, 0, 0.82);
    color: var(--white);
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    margin: 72px auto 0;
    max-width: 1280px;
    padding: 38px;
}

.heritage-closing .section-eyebrow,
.heritage-closing h2,
.heritage-closing p {
    color: var(--white);
}

.heritage-closing .about-cta {
    background: var(--gold);
    color: var(--blue);
    margin: 0;
    white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }

    .hero-video-stage .hero-bg {
        opacity: 1;
    }

    .timeline-item {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1120px) {
    .site-header {
        background: rgba(0, 22, 137, 0.98);
    }

    .nav-menu {
        background: var(--blue);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .solution-copete,
    .heritage-copete,
    .heritage-closing {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        min-height: auto;
        position: static;
    }

    .catalog-search {
        max-width: 420px;
    }

    .catalog-categories {
        display: flex;
    }

    .product-detail-hero {
        grid-template-columns: 1fr;
    }

    .product-visual-stage {
        min-height: 540px;
    }

    .product-application-section {
        grid-template-columns: 1fr;
    }

    .product-application-copy {
        padding: 0 8px 8px;
    }

    .timeline-item,
    .timeline-item:nth-of-type(even),
    .timeline-item:nth-of-type(odd) {
        gap: 24px;
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .timeline-track {
        left: 46px;
    }

    .timeline-item:nth-of-type(even) .timeline-year,
    .timeline-item:nth-of-type(odd) .timeline-year {
        grid-column: 1;
    }

    .timeline-item:nth-of-type(even) .timeline-card,
    .timeline-item:nth-of-type(odd) .timeline-card {
        grid-column: 2;
    }

    .timeline-year {
        font-size: 21px;
    }
}

@media (max-width: 720px) {
    .brand {
        box-shadow: none;
        width: 142px;
    }

    .brand img {
        width: 116px;
    }

    .hero-video-stage {
        min-height: 840px;
        padding-bottom: 220px;
    }

    .hero-billboard {
        bottom: 24px;
        left: 24px;
        right: 24px;
        width: auto;
    }

    .hero-billboard article:not(.is-active) {
        display: none;
    }

    .solution-copete {
        gap: 28px;
        grid-template-columns: 1fr;
    }

    .solution-copete img {
        box-shadow: 7px 7px 0 var(--gold), var(--soft-shadow);
    }

    .catalog-categories {
        display: grid;
    }

    .catalog-categories button {
        width: 100%;
    }

    .catalog-ingredient-strip span,
    .catalog-card-chips span {
        font-size: 10px;
    }

    .catalog-card-render {
        height: 240px;
        padding: 18px;
    }

    .product-visual-stage {
        min-height: auto;
    }

    .product-pack-card {
        min-height: 390px;
    }

    .product-application-section {
        gap: 24px;
        margin-bottom: 46px;
        padding: 18px;
    }

    .product-application-copy h2 {
        font-size: 30px;
    }

    .product-application-copy p {
        font-size: 16px;
    }

    .recipe-library-card > button {
        left: 18px;
        right: auto;
        top: 64px;
    }

    .heritage-copete h2,
    .heritage-closing h2 {
        font-size: 36px;
    }

    .heritage-timeline {
        padding-left: 0;
    }

    .timeline-item,
    .timeline-item:nth-of-type(even),
    .timeline-item:nth-of-type(odd) {
        grid-template-columns: 1fr;
        margin-bottom: 46px;
    }

    .timeline-track {
        left: 18px;
    }

    .timeline-item:nth-of-type(even) .timeline-year,
    .timeline-item:nth-of-type(odd) .timeline-year,
    .timeline-item:nth-of-type(even) .timeline-card,
    .timeline-item:nth-of-type(odd) .timeline-card {
        grid-column: 1;
    }

    .timeline-year {
        height: 82px;
        margin-left: 58px;
        width: 82px;
    }

    .timeline-card {
        grid-template-columns: 1fr;
    }

    .timeline-media {
        min-height: 210px;
    }

    .timeline-copy {
        padding: 24px;
    }

    .heritage-closing {
        padding: 28px 22px;
    }

    .heritage-closing .about-cta {
        white-space: normal;
        width: 100%;
    }
}

/* Contact page refresh. */
.contact-refresh-page {
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 199, 0, 0.18), transparent 26%),
        linear-gradient(180deg, var(--cream-strong), var(--cream));
}

.contact-hero-upgraded {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(233, 225, 205, 0.76)),
        repeating-linear-gradient(135deg, rgba(0, 22, 137, 0.06) 0 2px, transparent 2px 34px);
    gap: 0;
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1fr);
    min-height: 760px;
}

.contact-refresh-page .contact-copy {
    padding: 96px 64px 92px 88px;
}

.contact-refresh-page .contact-copy .section-eyebrow {
    color: var(--blue);
}

.contact-refresh-page .contact-copy h1 {
    color: var(--blue);
    font-size: clamp(44px, 4.6vw, 65px);
    line-height: 0.98;
    margin-bottom: 28px;
}

.contact-refresh-page .contact-copy > p {
    color: var(--body);
    font-size: 20px;
    line-height: 1.55;
    margin-bottom: 34px;
}

.contact-support-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 0 38px;
    max-width: 760px;
}

.contact-support-grid a,
.contact-support-grid div {
    background: var(--white);
    border: 2px solid rgba(0, 22, 137, 0.1);
    border-radius: 8px;
    box-shadow: 8px 8px 0 rgba(0, 22, 137, 0.07);
    color: var(--body);
    display: grid;
    gap: 8px;
    min-height: 134px;
    padding: 20px;
}

.contact-support-grid i {
    align-items: center;
    background: var(--gold);
    border-radius: 8px;
    color: var(--blue);
    display: inline-flex;
    font-size: 24px;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.contact-support-grid span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 16px;
    text-transform: uppercase;
}

.contact-support-grid strong {
    color: var(--blue);
    font-size: 15px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.contact-refresh-page .social-block span {
    color: var(--blue);
}

.contact-refresh-page .contact-socials a {
    background: var(--blue);
    box-shadow: none;
    color: var(--white);
}

.contact-refresh-page .contact-card-wrap {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(0, 22, 137, 0.92), rgba(0, 60, 94, 0.7)),
        url("../img/web/solution-panadero.jpg") center / cover;
    padding: 112px 72px;
}

.contact-form-panel {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    box-shadow: 14px 14px 0 rgba(255, 199, 0, 0.82), 0 28px 55px rgba(0, 15, 102, 0.22);
    max-width: 720px;
    padding: 34px;
    width: 100%;
}

.form-panel-heading {
    align-items: center;
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.form-panel-icon {
    align-items: center;
    background: var(--gold);
    border-radius: 8px;
    color: var(--blue);
    display: inline-flex;
    flex: 0 0 58px;
    font-size: 30px;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.form-panel-heading p {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.4px;
    line-height: 18px;
    margin: 0 0 4px;
    text-transform: uppercase;
}

.form-panel-heading h2 {
    color: var(--blue);
    font-size: clamp(26px, 2.5vw, 36px);
    font-weight: 900;
    line-height: 1;
    margin: 0;
}

.contact-form {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.9px;
    line-height: 18px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    appearance: none;
    background: var(--cream-strong);
    border: 2px solid rgba(0, 22, 137, 0.12);
    border-radius: 8px;
    color: var(--ink);
    min-height: 54px;
    outline: 0;
    padding: 14px 16px;
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
    width: 100%;
}

.contact-form select {
    background-image:
        linear-gradient(45deg, transparent 50%, var(--blue) 50%),
        linear-gradient(135deg, var(--blue) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 23px,
        calc(100% - 16px) 23px;
    background-repeat: no-repeat;
    background-size: 6px 6px, 6px 6px;
    padding-right: 42px;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(255, 199, 0, 0.24);
}

.contact-form-wide,
.contact-form button,
.distributor-form-wide {
    grid-column: 1 / -1;
}

.contact-form button {
    align-items: center;
    background: var(--gold);
    border: 0;
    border-radius: 999px;
    box-shadow: none;
    color: var(--blue);
    cursor: pointer;
    display: inline-flex;
    font-size: 16px;
    font-weight: 900;
    gap: 10px;
    justify-content: center;
    min-height: 58px;
    padding: 17px 32px;
    text-align: center;
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-form button:hover {
    background: #e6b400;
    box-shadow: none;
    transform: translateY(-2px);
}

.distributor-form-section {
    background:
        linear-gradient(rgba(1, 33, 105, 0.90), rgba(1, 33, 105, 0.90)),
        url("../img/textures/products-pattern.jpg") top left / 260px repeat,
        var(--blue);
    color: var(--white);
    gap: 52px;
    grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1fr);
    padding: 74px 88px;
    position: relative;
}

.distributor-form-section > * {
    position: relative;
    z-index: 1;
}

.distributor-form-section .store-icon {
    align-items: center;
    background: var(--gold);
    border-radius: 8px;
    color: var(--blue);
    display: inline-flex;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.distributor-form-section .section-eyebrow,
.distributor-form-section h2,
.distributor-form-section p {
    color: var(--white);
}

.distributor-form-section h2 {
    font-size: clamp(29px, 3.4vw, 46px);
    line-height: 1;
    margin-bottom: 14px;
}

.distributor-form-section p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.55;
}

.distributor-form-section .distributor-form {
    background: var(--cream-strong);
    border: 2px solid rgba(255, 255, 255, 0.72);
    box-shadow: 14px 14px 0 rgba(255, 199, 0, 0.85);
    padding: 34px;
}

@media (max-width: 1120px) {
    .contact-hero-upgraded,
    .distributor-form-section {
        grid-template-columns: 1fr;
    }

    .contact-refresh-page .contact-copy {
        padding: 104px 28px 56px;
    }

    .contact-refresh-page .contact-card-wrap {
        padding: 0 28px 76px;
    }

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

    .distributor-form-section {
        padding: 56px 28px;
    }
}

@media (max-width: 720px) {
    .contact-refresh-page .contact-copy {
        padding: 68px 18px 42px;
    }

    .contact-refresh-page .contact-copy h1 {
        font-size: 42px;
        line-height: 1.06;
    }

    .contact-support-grid,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-refresh-page .contact-card-wrap {
        padding: 0 18px 62px;
    }

    .contact-form-panel,
    .distributor-form-section .distributor-form {
        box-shadow: 8px 8px 0 rgba(255, 199, 0, 0.78);
        padding: 24px;
    }

    .form-panel-heading {
        align-items: flex-start;
    }

    .distributor-form-section {
        padding: 44px 18px;
    }

    .distributor-form-copy {
        grid-template-columns: 1fr;
    }

    .distributor-form-section .distributor-form {
        box-shadow: 8px 8px 0 rgba(255, 199, 0, 0.8);
    }

    .contact-form button {
        width: 100%;
    }
}

/* Client refresh: home hero, profile cards and catalog. */
.hero-video-stage {
    align-items: center;
    background: var(--blue-deep);
    display: flex;
    min-height: clamp(560px, 100svh, 860px);
    /* padding inferior reserva el carril de los controles del carrusel
       para que nunca se empalmen con los CTAs (ronda 2026-07-20) */
    padding: 128px 48px 124px;
}

.hero-video-stage::before {
    content: none;
}

.hero-video-stage::after {
    background: var(--cream-strong);
    height: 18px;
}

.hero-video-stage .hero-bg,
.hero-video-stage .hero-video {
    filter: none;
    inset: 80px 0 0;
    transform: none;
}

.hero-video-stage .hero-bg {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue));
}

/* Hero de video en Nosotros: mismo formato que el home, sin degradado azul */
.about-video-hero .hero-bg {
    background: url("../img/web/about-heritage-hero.jpg") center / cover;
}

.hero-video-stage.hero-video-fallback .hero-bg {
    opacity: 1;
}

.hero-pattern {
    display: none;
}

.hero-video-stage .hero-content {
    margin: 0 auto;
    max-width: 1240px;
    width: 100%;
    z-index: 3;
}

.hero-slide {
    max-width: 760px;
}

.hero-slide[hidden] {
    display: none;
}

.hero-video-stage .hero-kicker {
    background: rgba(255, 255, 255, 0.94);
    border: 0;
    color: var(--blue);
    letter-spacing: 0.8px;
}

.hero-video-stage h1 {
    font-size: clamp(36px, 4.6vw, 65px);
    line-height: 1.02;
    max-width: 760px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.hero-video-stage .hero-subtitle {
    font-size: clamp(17px, 1.8vw, 21px);
    line-height: 1.5;
    max-width: 650px;
}

.hero-video-stage .hero-actions .primary-button,
.hero-video-stage .hero-actions .secondary-button {
    border-radius: 999px;
    box-shadow: none;
    min-height: 52px;
}

.hero-video-stage .hero-actions .secondary-button {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.94);
    color: var(--blue);
}

.hero-carousel-controls {
    align-items: center;
    bottom: 34px;
    display: flex;
    gap: 18px;
    left: 50%;
    max-width: 1240px;
    padding: 0 48px;
    position: absolute;
    transform: translateX(-50%);
    width: 100%;
    z-index: 4;
}

.hero-carousel-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border: 0;
    border-radius: 50%;
    color: var(--blue);
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 46px;
    font-size: 22px;
    height: 46px;
    justify-content: center;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    width: 46px;
}

.hero-carousel-button:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.hero-carousel-dots {
    align-items: center;
    display: flex;
    gap: 10px;
}

.hero-carousel-dots button {
    background: rgba(255, 255, 255, 0.48);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    height: 4px;
    padding: 0;
    transition: background 180ms ease, width 180ms ease;
    width: 42px;
}

.hero-carousel-dots button.is-active {
    background: var(--gold);
    width: 72px;
}

.solution-section,
.products-section {
    padding-bottom: 96px;
    padding-top: 96px;
}

.solution-section {
    background: var(--white);
    padding-top: 48px; /* Ronda 2026-07-20: menos aire arriba del título */
}

.solution-copete {
    gap: 52px;
    margin-bottom: 42px;
    max-width: 1180px;
}

.solution-copete h2 {
    font-size: clamp(29px, 3.6vw, 46px);
    line-height: 1.05;
    max-width: 720px;
}

.solution-copete > div > p:not(.section-eyebrow) {
    font-size: 18px;
    max-width: 660px;
}

.solution-copete img {
    border: 0;
    box-shadow: 0 22px 48px rgba(28, 28, 27, 0.12);
}

.audience-grid,
.product-grid {
    max-width: 1180px;
}

.audience-card,
.product-card {
    border: 1px solid rgba(0, 22, 137, 0.1);
    box-shadow: 0 18px 36px rgba(28, 28, 27, 0.08);
}

.audience-card:hover,
.audience-card:focus-within,
.product-card:hover,
.product-card:focus-within {
    border-color: rgba(0, 22, 137, 0.22);
    box-shadow: 0 22px 44px rgba(28, 28, 27, 0.12);
    transform: translateY(-3px);
}

.audience-image::after,
.product-image::after,
.catalog-card-image::after,
.catalog-card-render::after {
    content: none;
}

.audience-icon {
    background: var(--white);
    border: 1px solid rgba(0, 22, 137, 0.12);
    box-shadow: 0 12px 24px rgba(28, 28, 27, 0.12);
}

.audience-copy {
    min-height: auto;
}

.audience-copy h3,
.product-card h3,
.catalog-card h3 {
    letter-spacing: 0;
}

.products-section {
    background: var(--cream-strong);
}

.products-section::before {
    content: none;
}

.products-section .section-heading {
    margin-bottom: 42px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
    text-align: center;
}

.products-section .section-heading p {
    color: var(--gold);
    text-align: left;
}

.products-section .section-heading h2 {
    color: var(--white);
    font-size: clamp(29px, 3.6vw, 46px);
    line-height: 1.05;
}

.product-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 22px;
}

.product-packshot {
    align-items: center;
    background:
        radial-gradient(circle at 50% 88%, rgba(255, 199, 0, 0.16), transparent 32%),
        linear-gradient(180deg, #ffffff, #f7f1e4);
    display: flex;
    height: 286px;
    justify-content: center;
    margin-bottom: 24px;
    padding: 22px;
}

.product-packshot img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.product-category,
.product-application {
    color: var(--blue);
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.7px;
    line-height: 18px;
    text-transform: uppercase;
}

.product-card h3,
.product-card p,
.product-card .card-link {
    color: var(--ink);
}

.product-card h3 {
    font-size: 24px;
    line-height: 1.16;
    margin-top: 10px;
}

.product-card p {
    line-height: 1.48;
}

.product-application {
    color: var(--blue);
    margin: auto 0 18px;
    padding-top: 18px;
}

.product-card .card-link {
    color: var(--blue);
}

.catalog-page {
    background: var(--white);
    min-height: auto;
}

.catalog-sidebar {
    background: #f8f5ee;
    border-right: 1px solid rgba(0, 22, 137, 0.08);
    box-shadow: none;
}

.catalog-sidebar h1,
.catalog-sidebar h2 {
    color: var(--blue);
    font-size: 22px;
}

.catalog-sidebar > p {
    color: var(--body);
    letter-spacing: 1px;
}

.catalog-search {
    border: 1px solid rgba(0, 22, 137, 0.14);
    height: 46px;
    max-width: 236px;
}

.catalog-categories {
    border-top-color: rgba(0, 22, 137, 0.08);
}

.catalog-categories button {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--ink);
    font-size: 15px;
    min-height: 44px;
}

.catalog-categories button.is-active,
.catalog-categories button:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.catalog-content {
    padding: 54px 72px 120px 56px;
}

.catalog-heading {
    margin-bottom: 46px;
}

.catalog-heading h1,
.catalog-heading h2 {
    font-size: clamp(32px, 3.6vw, 49px);
    line-height: 1.04;
}

.catalog-heading p {
    font-size: 18px;
    line-height: 1.5;
    max-width: 640px;
}

.catalog-ingredient-strip {
    display: none;
}

.catalog-grid {
    gap: 28px;
}

.catalog-card {
    background: var(--white);
    border: 1px solid rgba(0, 22, 137, 0.1);
    box-shadow: 0 18px 38px rgba(28, 28, 27, 0.08);
    min-height: 0;
    padding: 22px;
}

.catalog-card:hover {
    border-color: rgba(0, 22, 137, 0.24);
    box-shadow: 0 22px 46px rgba(28, 28, 27, 0.12);
    transform: translateY(-3px);
}

.catalog-card-render {
    background:
        radial-gradient(circle at 50% 88%, rgba(255, 199, 0, 0.14), transparent 34%),
        linear-gradient(180deg, #ffffff, #f6f1e8);
    height: 300px;
    margin-bottom: 20px;
    padding: 20px;
}

.catalog-card-render img {
    max-height: 100%;
    object-fit: contain;
}

.catalog-badge {
    right: 14px;
    top: 14px;
}

.catalog-card-category {
    color: var(--blue);
    letter-spacing: 0.9px;
}

.catalog-card h3 {
    font-size: 23px;
    line-height: 1.16;
    margin-bottom: 12px;
}

.catalog-card-copy {
    font-size: 15px;
    line-height: 1.48;
}

.catalog-card-chips {
    gap: 8px;
    padding-top: 18px;
}

.catalog-card-chips span {
    background: rgba(0, 22, 137, 0.07);
    border-radius: 999px;
    color: var(--blue);
    font-size: 10px;
    letter-spacing: 0.4px;
}

.catalog-card-action {
    align-items: center;
    color: var(--blue);
    display: inline-flex;
    font-size: 14px;
    font-weight: 900;
    gap: 8px;
    margin-top: 22px;
}

@media (max-width: 1120px) {
    .hero-video-stage {
        min-height: 760px;
        padding: 138px 28px 112px;
    }

    .hero-video-stage::before,
    .hero-video-stage .hero-bg,
    .hero-video-stage .hero-video {
        inset: 78px 0 0;
    }

    .hero-carousel-controls {
        padding: 0 28px;
    }

    .catalog-content {
        padding: 42px 28px 90px;
    }

    .catalog-search {
        max-width: 420px;
    }
}

@media (max-width: 720px) {
    .hero-video-stage {
        display: block;
        min-height: 760px;
        padding: 132px 18px 116px;
    }

    .hero-video-stage::before,
    .hero-video-stage .hero-bg,
    .hero-video-stage .hero-video {
        inset: 74px 0 0;
    }

    .hero-video-stage h1 {
        font-size: clamp(31px, 9.3vw, 41px);
    }

    .hero-video-stage .hero-subtitle {
        font-size: 16px;
    }

    .hero-video-stage .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-video-stage .hero-actions a {
        width: 100%;
    }

    .hero-carousel-controls {
        bottom: 34px;
        gap: 12px;
        padding: 0 18px;
    }

    .hero-carousel-button {
        flex-basis: 42px;
        height: 42px;
        width: 42px;
    }

    .hero-carousel-dots {
        flex: 1;
    }

    .hero-carousel-dots button {
        flex: 1;
        width: auto;
    }

    .hero-carousel-dots button.is-active {
        width: auto;
    }

    .solution-section,
    .products-section {
        padding-bottom: 70px;
        padding-top: 70px;
    }

    .products-section .section-heading {
        text-align: center;
    }

    .product-packshot,
    .catalog-card-render {
        height: 250px;
    }

    .catalog-sidebar {
        border-right: 0;
    }
}

/* Client comments pass: cleaner brand, CTAs, recipes, product detail and history. */
.site-header {
    box-shadow: none;
}

.brand,
.brand:hover {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 7px 0;
    width: 162px;
}

.brand img {
    display: block;
    width: 140px;
}

.partner-button,
.partner-button:hover {
    box-shadow: none;
}

.js-enabled .hero.home-reveal {
    opacity: 1;
    transform: none;
}

.hero-video-stage .hero-kicker {
    color: var(--blue);
}

.hero-video-stage .hero-actions .primary-button,
.hero-video-stage .hero-actions .secondary-button,
.hero-video-stage .hero-actions .primary-button:hover,
.hero-video-stage .hero-actions .secondary-button:hover {
    box-shadow: none;
}

.audience-icon {
    display: none;
}

.audience-card .card-link,
.product-card .card-link {
    align-items: center;
    align-self: flex-start;
    background: var(--blue);
    border-radius: 999px;
    color: var(--white);
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    line-height: 20px;
    margin-top: 18px;
    min-height: 42px;
    padding: 11px 18px;
}

/* CTAs de audience cards alineados al fondo de la card (slide 2 cliente) */
.audience-card .card-link {
    margin-top: auto;
}

.audience-card .card-link:hover,
.product-card .card-link:hover {
    background: var(--gold);
    color: var(--blue);
}

.recipes-section-clean {
    background: var(--white);
}

.recipes-section-clean .recipes-inner {
    align-items: center;
    display: grid;
    gap: 58px;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
    max-width: 1180px;
}

.recipes-section-clean .recipes-copy {
    max-width: 520px;
}

.recipes-section-clean .recipes-copy h2 {
    color: var(--blue);
}

.recipes-section-clean .recipes-copy button {
    border: 0;
    margin-top: 8px;
}

.recipes-feature-image {
    margin: 0;
}

.recipes-feature-image img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
}

.about-heritage-hero {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.08)),
        url("../img/about-hero.jpg") center / cover;
}

.about-hero-overlay {
    display: none;
}

.timeline-card {
    display: block;
}

.timeline-media {
    display: none;
}

.timeline-copy {
    padding: 34px;
}

.heritage-closing .about-cta {
    background: var(--gold);
    border-radius: 999px;
    box-shadow: none;
    color: var(--blue);
    display: inline-flex;
    font-weight: 800;
    padding: 12px 22px;
}

.heritage-closing .about-cta:hover {
    background: #e6b400;
    color: var(--blue);
}

.product-detail-page {
    background: var(--white);
}

.product-detail-hero {
    align-items: center;
}

.product-visual-stage {
    min-height: auto;
}

.product-pack-card {
    background: var(--white);
    border: 1px solid rgba(0, 22, 137, 0.1);
    box-shadow: none;
    min-height: 640px;
}

.product-pack-card > span {
    background: var(--blue);
}

.product-pack-card img {
    max-height: 520px;
    width: min(430px, 92%);
}

.product-facts article,
.benefits-card,
.product-tabs {
    border: 1px solid rgba(0, 22, 137, 0.1);
    box-shadow: none;
}

.product-tabs {
    background: #f8f5ee;
}

.tab-panel {
    background: var(--white);
}

.recipe-book-hero {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.12)),
        url("../img/web/recipe-book-hero.jpg") center / cover;
    min-height: 500px;
    padding-bottom: 92px;
}

.recipe-hero-pattern,
.recipe-filter-card,
.recipe-library-overlay,
.recipe-library-tag {
    display: none;
}

.recipe-library {
    max-width: 1180px;
    padding-top: 88px;
}

.recipe-library-heading {
    margin-bottom: 36px;
}

.recipe-library-heading h2 {
    font-size: clamp(29px, 3.4vw, 44px);
}

.recipe-library-heading p {
    color: var(--body);
    font-size: 18px;
}

.recipe-library-grid {
    gap: 28px;
}

.recipe-library-card {
    aspect-ratio: auto;
    background: var(--white);
    border: 1px solid rgba(0, 22, 137, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(28, 28, 27, 0.08);
    color: var(--ink);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.recipe-library-card img {
    aspect-ratio: 4 / 3;
    height: auto;
    inset: auto;
    object-fit: cover;
    position: static;
    width: 100%;
}

.recipe-library-copy {
    bottom: auto;
    left: auto;
    padding: 22px 22px 8px;
    position: static;
    right: auto;
}

.recipe-library-copy h3 {
    color: var(--blue);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.recipe-library-copy p {
    color: var(--body);
    font-size: 15px;
    line-height: 1.45;
    margin: 0;
}

.recipe-library-card > button {
    align-self: flex-start;
    background: var(--blue);
    border: 0;
    border-radius: 999px;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    margin: auto 22px 24px;
    padding: 11px 18px;
    position: static;
}

.recipe-library-card > button:hover {
    background: var(--gold);
    color: var(--blue);
}

@media (max-width: 1120px) {
    .recipes-section-clean .recipes-inner {
        grid-template-columns: 1fr;
    }

    .product-pack-card {
        min-height: 540px;
    }
}

@media (max-width: 720px) {
    .brand,
    .brand img {
        box-shadow: none;
    }

    .brand {
        padding: 6px 9px;
        width: 150px;
    }

    .brand img {
        width: 130px;
    }

    .recipes-section-clean .recipes-inner {
        gap: 30px;
    }

    .product-pack-card {
        min-height: 430px;
    }

    .product-pack-card img {
        max-height: 340px;
    }

    .timeline-copy {
        padding: 24px;
    }

    .recipe-book-hero {
        min-height: 430px;
        padding-bottom: 72px;
    }
}

/* Recetarios: cards apiladas hacia abajo con hover (slide cliente) */
.recipe-library-grid {
    gap: 26px;
    grid-template-columns: minmax(0, 1fr);
    margin: 0 auto;
    max-width: 960px;
}

.recipe-library-card {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    grid-template-rows: 1fr auto;
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.recipe-library-card img {
    aspect-ratio: auto;
    grid-row: 1 / 3;
    height: 100%;
    max-height: 300px;
    max-width: 100%;
    min-height: 230px;
    min-width: 0;
}

.recipe-library-copy {
    padding: 26px 28px 8px;
}

.recipe-library-card > button {
    justify-self: start;
    margin: 14px 28px 26px;
}

.recipe-library-card:hover {
    border-color: rgba(0, 22, 137, 0.28);
    box-shadow: 0 24px 44px rgba(28, 28, 27, 0.16);
    transform: translateY(-5px);
}

@media (max-width: 720px) {
    .recipe-library-card {
        display: flex;
        flex-direction: column;
    }

    .recipe-library-card img {
        aspect-ratio: 4 / 3;
        height: auto;
        min-height: 0;
    }

    .recipe-library-card > button {
        align-self: flex-start;
        margin: 12px 22px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .recipe-library-card {
        transition: none;
    }

    .recipe-library-card:hover {
        transform: none;
    }
}


/* Recetarios: seccion a ancho completo para que los panes no se recorten */
.recipe-book-page .recipe-library {
    max-width: none;
}

.recipe-library-heading {
    margin-left: auto;
    margin-right: auto;
    max-width: 1116px;
}

/* ============================ Página legal (Aviso de Privacidad) ========= */
.legal-page {
    background: var(--cream);
    padding: 150px 32px 110px;
}

.legal-hero {
    margin: 0 auto 14px;
    max-width: 880px;
}

.legal-hero h1 {
    color: var(--blue);
    font-family: var(--font-brand);
    font-size: clamp(31px, 3.9vw, 49px);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 10px;
}

.legal-updated {
    color: var(--body);
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.legal-body {
    background: var(--white);
    border: 1px solid rgba(0, 22, 137, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(28, 28, 27, 0.08);
    margin: 34px auto 0;
    max-width: 880px;
    padding: 46px 50px 40px;
}

.legal-intro {
    border-left: 4px solid var(--gold);
    color: var(--ink);
    font-size: 17px;
    line-height: 1.65;
    margin: 0 0 34px;
    padding-left: 18px;
}

.legal-section {
    margin-bottom: 34px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    color: var(--blue);
    font-family: var(--font-brand);
    font-size: 23px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 14px;
}

.legal-section p {
    color: var(--body);
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 14px;
}

.legal-section ul {
    color: var(--body);
    display: grid;
    font-size: 16px;
    gap: 9px;
    line-height: 1.6;
    margin: 0 0 16px;
    padding-left: 22px;
}

.legal-section li::marker {
    color: var(--gold);
}

@media (max-width: 720px) {
    .legal-page {
        padding: 130px 18px 70px;
    }

    .legal-body {
        padding: 30px 22px;
    }
}

/* =========================================================================
   Ajuste tipográfico global (feedback cliente 2026-07-07):
   titulares sin bold e interlineados seguros para que las líneas no se
   encimen. Actualización 2026-07-10: títulos en Lubalin Graph (Medium),
   texto general se mantiene en Futura.
   ========================================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading) !important;
    font-weight: 500 !important;
}

h1 {
    line-height: 1.16 !important;
}

h2 {
    line-height: 1.2 !important;
}

h3, h4, h5, h6 {
    line-height: 1.3 !important;
}

/* Sin franja crema entre el hero y la sección de productos (azul) */
.hero-video-stage::after {
    content: none;
}

/* Timeline con imágenes de AB Mauri: fotos enmarcadas, sin recortes borrosos */
.timeline-card.has-media {
    display: grid;
    grid-template-columns: minmax(200px, 0.72fr) minmax(0, 1fr);
}

.timeline-card.has-media .timeline-media {
    align-items: center;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 199, 0, 0.14), transparent 55%),
        var(--sand);
    display: flex;
    justify-content: center;
    min-height: 240px;
    padding: 24px;
}

.timeline-card.has-media .timeline-media img {
    background: var(--white);
    border: 5px solid var(--white);
    border-radius: 6px;
    box-shadow: 0 12px 24px rgba(28, 28, 27, 0.2);
    height: auto;
    max-height: 210px;
    max-width: 100%;
    object-fit: contain;
    transform: rotate(-2deg);
    width: auto;
}

/* El logo AB Mauri (2004) es plano: sin marco ni rotación */
.timeline-item-teal .timeline-media img {
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
}

@media (max-width: 720px) {
    .timeline-card.has-media {
        display: block;
    }

    .timeline-card.has-media .timeline-media {
        min-height: 0;
        padding: 18px;
    }
}

/* Nombres de producto siempre en mayúsculas (feedback cliente) */
.featured-card h3,
.catalog-card h3,
.product-card h3,
.product-detail-info h1 {
    text-transform: uppercase;
}

/* El logo AB Mauri (2004) es horizontal: se muestra completo, sin recorte */
.timeline-item-teal .timeline-media {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 26px;
}

.timeline-item-teal .timeline-media img {
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* =========================================================================
   Ronda 2026-07-20: CTA "Explorar catálogo completo" en amarillo
   ========================================================================= */
.catalog-cta-gold,
.catalog-cta-gold:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--blue);
}

/* =========================================================================
   Ronda 2026-07-20: cierre de la línea del tiempo — "seguimos avanzando"
   ========================================================================= */
.timeline-continues {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 26px 0 8px;
    position: relative;
    text-align: center;
}

.timeline-continues-arrow {
    align-items: center;
    animation: timeline-continues-bob 2.2s ease-in-out infinite;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 10px 22px rgba(1, 33, 105, 0.18);
    color: var(--blue);
    display: inline-flex;
    font-size: 26px;
    height: 54px;
    justify-content: center;
    width: 54px;
}

.timeline-continues p {
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin: 0;
    text-transform: uppercase;
}

@keyframes timeline-continues-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(9px); }
}

@media (prefers-reduced-motion: reduce) {
    .timeline-continues-arrow {
        animation: none;
    }
}

/* Ronda 2026-07-20: en móvil el recorte lateral corta el logo del footage;
   se muestra el fondo azul en su lugar (y se evita cargar video en celular). */
@media (max-width: 720px) {
    .hero-video-stage .hero-video {
        display: none;
    }

    .hero-video-stage.is-video-ready .hero-bg {
        opacity: 1;
    }
}

/* Ronda 2026-07-20 bis: menos aire bajo la sección de productos del home */
.products-section {
    padding-bottom: 56px;
}

.products-section .section-cta {
    margin-top: 24px;
}

/* Ronda 2026-07-20: el correo de la card de contacto no debe partir el
   dominio; solo puede saltar de línea antes de la @ (via <wbr>). */
.contact-support-grid .contact-email {
    overflow-wrap: normal;
    word-break: keep-all;
}

/* =========================================================================
   Landing Mexipan (evento AB Mauri dentro del sitio Fleischmann) — v2
   ========================================================================= */
.mexipan-page {
    background: var(--cream);
}

.mexipan-hero-graphic {
    margin: 0 auto;
    max-width: 1440px;
    padding: 116px 24px 0;
}

.mexipan-hero-graphic img {
    border-radius: 0 0 22px 22px;
    box-shadow: 0 26px 52px rgba(28, 28, 27, 0.22);
    display: block;
    height: auto;
    width: 100%;
}

.mexipan-intro {
    margin: 0 auto;
    max-width: 860px;
    padding: 56px 48px 26px;
    text-align: center;
}

.mexipan-intro .section-eyebrow {
    color: #b07d2f;
}

.mexipan-intro h1 {
    color: var(--blue);
    font-size: clamp(32px, 4vw, 50px);
    margin: 10px 0 16px;
}

.mexipan-hero-sub {
    color: var(--body);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 14px;
    max-width: 640px;
}

.mexipan-hero-pending {
    background: var(--gold-soft);
    border-radius: 999px;
    color: var(--blue);
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin: 0;
    padding: 8px 18px;
}

.mexipan-brands {
    padding: 56px 48px 66px;
}

.mexipan-brands .section-heading {
    margin: 0 auto 42px;
    max-width: 880px;
    text-align: center;
}

.mexipan-brands-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1240px;
}

.mexipan-brand-card {
    background: var(--white);
    border: 1px solid rgba(1, 33, 105, 0.08);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(1, 33, 105, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 24px;
}

.mexipan-brand-card h3 {
    color: var(--blue);
    font-size: 21px;
    margin: 0;
}

.mexipan-brand-card p {
    color: var(--body);
    flex: 1;
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.mexipan-brand-card .card-link {
    color: var(--blue);
    font-weight: 700;
}

.mexipan-brand-soon {
    color: var(--muted);
    font-size: 14px;
    font-style: italic;
}

/* --- Sección de contacto: dos cards con imagen que abren el modal ------- */
.mexipan-contact {
    padding: 20px 48px 96px;
}

.mexipan-contact .section-heading {
    margin: 0 auto 42px;
    max-width: 880px;
    text-align: center;
}

.mexipan-contact-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 1120px;
}

.mexipan-contact-card {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 14px 14px 0 rgba(255, 199, 0, 0.85);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mexipan-contact-media {
    aspect-ratio: 16 / 8.4;
    overflow: hidden;
}

.mexipan-contact-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
    width: 100%;
}

.mexipan-contact-card:hover .mexipan-contact-media img {
    transform: scale(1.04);
}

.mexipan-contact-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 26px 28px 30px;
}

.mexipan-contact-copy h3 {
    color: var(--blue);
    font-size: clamp(22px, 2.4vw, 29px);
    margin: 0;
}

.mexipan-contact-copy p:not(.section-eyebrow) {
    color: var(--body);
    flex: 1;
    line-height: 1.55;
    margin: 0 0 8px;
}

.mexipan-open-button {
    align-self: flex-start;
    background: var(--gold);
    border: none;
    border-radius: 999px;
    color: var(--blue);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 13px 24px;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.mexipan-open-button:hover {
    box-shadow: 0 10px 22px rgba(255, 199, 0, 0.4);
    transform: translateY(-1px);
}

/* --- Modal de formularios ------------------------------------------------ */
.mexipan-modal {
    inset: 0;
    position: fixed;
    z-index: 90;
}

.mexipan-modal[hidden] {
    display: none;
}

.mexipan-modal-backdrop {
    background: rgba(0, 18, 63, 0.62);
    backdrop-filter: blur(3px);
    inset: 0;
    position: absolute;
}

.mexipan-modal-dialog {
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 34px 80px rgba(0, 18, 63, 0.4);
    left: 50%;
    max-height: min(86vh, 780px);
    max-width: 680px;
    overflow-y: auto;
    padding: 40px 38px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
}

.mexipan-modal-close {
    align-items: center;
    background: var(--cream-strong);
    border: none;
    border-radius: 50%;
    color: var(--blue);
    cursor: pointer;
    display: inline-flex;
    font-size: 20px;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 40px;
}

.mexipan-form-panel h2 {
    color: var(--blue);
    font-size: clamp(24px, 2.6vw, 32px);
    margin: 8px 0 10px;
}

.mexipan-form-panel > p:not(.section-eyebrow) {
    color: var(--body);
    margin: 0 0 24px;
}

.mexipan-form {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mexipan-form label {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.mexipan-form label span {
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.mexipan-form input,
.mexipan-form select,
.mexipan-form textarea {
    background: var(--cream-strong);
    border: 1px solid rgba(1, 33, 105, 0.14);
    border-radius: 12px;
    color: var(--ink);
    font: inherit;
    padding: 12px 14px;
}

.mexipan-form input:focus,
.mexipan-form select:focus,
.mexipan-form textarea:focus {
    border-color: var(--blue);
    outline: 2px solid rgba(255, 199, 0, 0.55);
}

.mexipan-form-wide,
.mexipan-form button,
.mexipan-form .mexipan-form-status {
    grid-column: 1 / -1;
}

.mexipan-submit {
    background: var(--gold);
    border: none;
    border-radius: 999px;
    color: var(--blue);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 14px 26px;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.mexipan-submit:hover {
    box-shadow: 0 10px 22px rgba(255, 199, 0, 0.4);
    transform: translateY(-1px);
}

.mexipan-form-status {
    background: var(--gold-soft);
    border-radius: 12px;
    color: var(--blue);
    font-weight: 500;
    margin: 0;
    padding: 12px 16px;
}

body.mexipan-modal-open {
    overflow: hidden;
}

@media (max-width: 1120px) {
    .mexipan-hero-graphic {
        padding-top: 100px;
    }

    .mexipan-intro {
        padding: 44px 28px 20px;
    }

    .mexipan-brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mexipan-contact-grid {
        grid-template-columns: 1fr;
    }

    .mexipan-brands,
    .mexipan-contact {
        padding-left: 28px;
        padding-right: 28px;
    }
}

@media (max-width: 720px) {
    .mexipan-brands-grid,
    .mexipan-form {
        grid-template-columns: 1fr;
    }

    .mexipan-modal-dialog {
        padding: 32px 22px;
    }
}

/* Honeypot antibots: invisible para personas, presente para bots */
.hp-field {
    height: 1px;
    left: -9999px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    width: 1px;
}
