:root {
    --bg: #eef1ec;
    --surface: rgba(249, 250, 246, 0.8);
    --surface-strong: #fbfcf8;
    --ink: #182026;
    --muted: #58636d;
    --line: rgba(24, 32, 38, 0.11);
    --accent: #cb5d2c;
    --accent-deep: #973d1d;
    --accent-soft: #f0cab6;
    --accent-alt: #1d6255;
    --accent-wash: #dbe9e3;
    --bakery: #c46334;
    --meat: #23715c;
    --restaurant: #3c5667;
    --shadow: 0 24px 70px rgba(22, 30, 36, 0.08);
    --shadow-strong: 0 34px 90px rgba(19, 26, 33, 0.14);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
    --ease-out-strong: cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out-strong: cubic-bezier(0.77, 0, 0.175, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    background:
        radial-gradient(circle at 12% 14%, rgba(203, 93, 44, 0.08), transparent 0 24%),
        radial-gradient(circle at 84% 8%, rgba(29, 98, 85, 0.08), transparent 0 22%),
        linear-gradient(180deg, #f7f9f5 0%, var(--bg) 38%, #e4e9e3 100%);
    color: var(--ink);
    line-height: 1.6;
    letter-spacing: -0.01em;
    font-size: 15.5px;
}

body.has-site-video {
    position: relative;
    background: transparent;
}

body.has-site-video main,
body.has-site-video .site-footer {
    position: relative;
    z-index: 1;
}

body.has-site-video .site-header {
    position: sticky;
    z-index: 40;
}

.site-video-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.site-video-background::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(247, 249, 245, 0.8) 0%, rgba(238, 241, 236, 0.72) 18%, rgba(238, 241, 236, 0.86) 42%, rgba(228, 233, 227, 0.94) 100%),
        radial-gradient(circle at 14% 18%, rgba(203, 93, 44, 0.09), transparent 0 24%),
        radial-gradient(circle at 84% 10%, rgba(29, 98, 85, 0.09), transparent 0 22%);
}

.site-video-background-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9) contrast(1.02) brightness(1.02);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24), transparent 82%);
}

body::after {
    content: "";
    position: fixed;
    inset: auto -8vw -12vw auto;
    width: 28vw;
    height: 28vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(203, 93, 44, 0.12), transparent 70%);
    pointer-events: none;
    filter: blur(10px);
}

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

.zoomable-image {
    cursor: zoom-in;
}

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

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

.container {
    width: min(100% - 2rem, var(--container));
    margin: 0 auto;
}

.section-shell {
    position: relative;
}

.section-shell::before {
    content: "";
    position: absolute;
    inset: 1.2rem 1rem auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(27, 24, 21, 0.12), transparent);
    opacity: 0.7;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(24px);
    background: rgba(247, 249, 245, 0.72);
    border-bottom: 1px solid rgba(24, 32, 38, 0.08);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 0;
    position: relative;
    overflow: visible;
}

.brand-lockup {
    display: inline-flex;
    flex-direction: column;
    gap: 0.15rem;
}

.brand-mark,
h1,
h2,
h3 {
    font-family: "Space Grotesk", sans-serif;
}

.brand-mark {
    font-size: 1.9rem;
    line-height: 1;
    letter-spacing: -0.06em;
}

.brand-tag {
    font-size: 0.82rem;
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    position: relative;
    z-index: 4;
}

.site-nav a:not(.button),
.nav-dropdown-toggle {
    color: var(--muted);
    font-weight: 600;
    position: relative;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.site-nav a:not(.button)::after,
.nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--accent), transparent);
    transition: transform 180ms var(--ease-out-strong);
}

.site-nav a:not(.button):hover::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown[open] .nav-dropdown-toggle::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
    z-index: 5;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.nav-dropdown-toggle::-webkit-details-marker {
    display: none;
}

.nav-dropdown-toggle::before {
    content: "+";
    font-size: 0.9rem;
    line-height: 1;
    color: var(--accent);
}

.nav-dropdown[open] .nav-dropdown-toggle::before {
    content: "-";
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 0;
    min-width: 280px;
    padding: 0.8rem;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    background: rgba(251, 252, 248, 0.94);
    border: 1px solid rgba(24, 32, 38, 0.08);
    border-radius: 22px;
    box-shadow: var(--shadow-strong);
    backdrop-filter: blur(20px);
    z-index: 12;
    pointer-events: auto;
}

.nav-dropdown[open] .nav-dropdown-menu {
    display: grid;
}

.nav-dropdown-menu a {
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    transition: background 160ms var(--ease-out-strong), color 160ms var(--ease-out-strong), transform 160ms var(--ease-out-strong);
}

.nav-dropdown-menu a:hover {
    background: rgba(181, 82, 51, 0.08);
    color: var(--accent-deep);
    transform: translateX(2px);
}

.nav-dropdown-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-deep);
    font-weight: 800;
    margin-bottom: 0.18rem;
}

.nav-dropdown-copy {
    display: block;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.35;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 999px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    margin: 6px auto;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.95rem 1.4rem;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform 160ms var(--ease-out-strong), box-shadow 160ms var(--ease-out-strong), background 160ms var(--ease-out-strong), border-color 160ms var(--ease-out-strong);
}

.button:hover {
    transform: translateY(-2px);
}

.button:active {
    transform: scale(0.98);
}

.button-primary {
    background: linear-gradient(135deg, var(--accent), #df7442);
    color: #fffaf7;
    box-shadow: 0 18px 34px rgba(203, 93, 44, 0.22);
}

.button-primary:hover {
    background: var(--accent-deep);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.56);
    border-color: var(--line);
}

.button-secondary:hover {
    border-color: rgba(126, 52, 31, 0.26);
    background: rgba(255, 255, 255, 0.76);
}

.button-disabled {
    opacity: 0.68;
}

.text-link {
    font-weight: 700;
    color: var(--accent-deep);
}

.button-rubro {
    width: 100%;
    justify-content: space-between;
    margin-top: 1.2rem;
    padding: 1rem 1.15rem;
    border-radius: 18px;
    color: #fffaf6;
    box-shadow: 0 18px 28px rgba(24, 32, 38, 0.14);
}

.button-rubro::after {
    content: "->";
    font-size: 1.1rem;
    line-height: 1;
}

.button-rubro-bakery {
    background: linear-gradient(135deg, #b55233, #d58142);
}

.button-rubro-meat {
    background: linear-gradient(135deg, #2f7a62, #4ca487);
}

.button-rubro-restaurant {
    background: linear-gradient(135deg, #9a4d2f, #c0724e);
}

.button-rubro:hover {
    color: #fffaf6;
    box-shadow: 0 24px 34px rgba(31, 26, 23, 0.2);
}

.hero {
    padding: 4.8rem 0 3.8rem;
}

.hero-grid,
.story-grid,
.plans-preview,
.split-band,
.contact-band,
.two-column {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    grid-template-columns: 0.44fr 1.56fr;
    align-items: center;
    gap: 3.6rem;
}

.hero-visual {
    position: relative;
    min-height: 100%;
    padding: 0.6rem 0 0.8rem;
}

@media (prefers-reduced-motion: reduce) {
    .site-video-background {
        background:
            linear-gradient(180deg, rgba(247, 249, 245, 0.8) 0%, rgba(238, 241, 236, 0.72) 18%, rgba(238, 241, 236, 0.86) 42%, rgba(228, 233, 227, 0.94) 100%),
            url("mozzoo-hero-poster.jpg") center/cover no-repeat;
    }

    .site-video-background-media {
        display: none;
    }
}

.eyebrow {
    margin: 0 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--accent-alt);
}

h1 {
    font-size: clamp(1.44rem, 2.75vw, 2.5rem);
    line-height: 0.94;
    margin: 0;
    letter-spacing: -0.055em;
    max-width: 12ch;
}

h2 {
    font-size: clamp(1.19rem, 1.5vw, 1.38rem);
    line-height: 0.98;
    margin: 0;
    letter-spacing: -0.05em;
}

h3 {
    font-size: clamp(1.06rem, 1.25vw, 1.19rem);
    margin: 0;
}

.hero-lead,
.section-heading p,
.story-card p,
.plan-card p,
.faq-list p,
.contact-card p,
.landing-intro p,
.footer-copy,
.status-banner p {
    color: var(--muted);
}

.hero-lead,
.landing-intro p,
.section-heading p {
    max-width: 34rem;
    font-size: 0.98rem;
}

.hero-copy {
    position: relative;
}

.hero-copy::before {
    content: "Mozzoo";
    position: absolute;
    left: -0.02em;
    top: -2.1rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(4.5rem, 14vw, 9rem);
    color: rgba(29, 98, 85, 0.06);
    pointer-events: none;
    letter-spacing: -0.08em;
}

.hero-actions,
.contact-band-actions,
.form-actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-top: 1.7rem;
}

.compact-actions {
    margin-top: 1rem;
}

.hero-points {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.85rem;
    max-width: 42rem;
}

.hero-points li,
.landing-bullets li,
.feature-list li,
.tag-list li,
.plan-card li,
.contact-list li,
.status-list li,
.metric-list li {
    position: relative;
    padding-left: 1.4rem;
}

.hero-points li::before,
.landing-bullets li::before,
.feature-list li::before,
.plan-card li::before,
.contact-list li::before,
.status-list li::before,
.metric-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--accent);
}

.product-stage,
.story-card,
.portrait-placeholder,
.mini-feature,
.rubro-card,
.plan-card,
.contact-card,
.form-card,
.status-banner,
.landing-panel,
.steps-panel,
.metric-panel,
.plan-preview-card {
    background: linear-gradient(180deg, rgba(251, 252, 248, 0.9), rgba(246, 248, 243, 0.8));
    border: 1px solid rgba(24, 32, 38, 0.07);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
}

.product-stage {
    padding: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    z-index: 2;
    width: min(100%, 1320px);
    margin: 0 -12% 0 auto;
    backdrop-filter: blur(14px);
    transform: rotate(-1.2deg);
}

.product-stage::after {
    content: "";
    position: absolute;
    inset: auto -8% -18% 35%;
    height: 190px;
    background: radial-gradient(circle, rgba(181, 82, 51, 0.28), transparent 72%);
}

.product-window {
    position: relative;
    z-index: 1;
    background: #fcfcf8;
    border: 1px solid rgba(24, 32, 38, 0.08);
    border-radius: 22px;
    overflow: hidden;
}

.window-bar {
    display: flex;
    gap: 0.45rem;
    padding: 0.9rem 1rem;
    background: #e6ece8;
}

.window-bar span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: rgba(31, 26, 23, 0.18);
}

.product-placeholder,
.capture-placeholder {
    min-height: 340px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(135deg, rgba(181, 82, 51, 0.12), rgba(47, 122, 98, 0.06)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0, rgba(255, 255, 255, 0.6) 1px, transparent 1px, transparent 64px),
        linear-gradient(180deg, #fdf7ef 0%, #f6e8d3 100%);
}

.product-shot {
    background:
        linear-gradient(180deg, #efe4d3 0%, #e7d8c3 100%);
    padding: 0.65rem;
    border: 0;
    width: 100%;
    cursor: zoom-in;
}

.product-shot img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: initial;
    border-radius: 14px;
    border: 1px solid rgba(27, 24, 21, 0.08);
    box-shadow: 0 14px 26px rgba(56, 36, 20, 0.1);
    background: #f8f5ef;
    image-rendering: auto;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(12, 15, 20, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 100;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-image {
    width: auto;
    height: auto;
    max-width: min(1200px, 92vw);
    max-height: 82vh;
    object-fit: contain;
    aspect-ratio: auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    background: #ffffff;
}

.lightbox-close {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    border: 0;
    border-radius: 999px;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    font-weight: 700;
}

.placeholder-label {
    margin: 0 0 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    font-size: 0.72rem;
    color: var(--accent-deep);
}

.metric-card,
.metric-panel {
    padding: 1rem 1.2rem;
}

.metric-card {
    position: absolute;
    right: 1.1rem;
    bottom: 1.1rem;
    z-index: 2;
    max-width: 240px;
    background: rgba(31, 26, 23, 0.94);
    color: #fff4ec;
    border-radius: 22px;
    transform: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card span,
.plan-preview-card span,
.status-banner strong,
.contact-note,
.mini-feature p,
.rubro-chip,
.kicker {
    display: block;
}

.section {
    padding: 4rem 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.hero,
.page-hero,
.section-rubros {
    content-visibility: visible;
}

.section-soft {
    background:
        linear-gradient(180deg, rgba(246, 248, 244, 0.84), rgba(255, 255, 255, 0)),
        radial-gradient(circle at 80% 12%, rgba(29, 98, 85, 0.08), transparent 0 18%);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2rem;
}

.section-heading h2 {
    max-width: 16ch;
}

.section-heading.narrow {
    max-width: 680px;
}

.align-left {
    margin-bottom: 0;
}

.cards-grid {
    display: grid;
    gap: 1.3rem;
}

.cards-grid-rubros {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 1.9rem;
}

.cards-grid-four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rubro-card {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 220ms var(--ease-out-strong), box-shadow 220ms var(--ease-out-strong), border-color 220ms var(--ease-out-strong);
    min-height: 100%;
}

.rubro-card:nth-child(2) {
    transform: translateY(1.1rem);
}

.rubro-card:nth-child(3) {
    transform: translateY(0.4rem);
}

.rubro-visual {
    min-height: 520px;
    margin: 0.9rem 0.9rem 0;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: inset 0 0 0 1px rgba(31, 26, 23, 0.04);
}

.rubro-visual img {
    width: 100%;
    min-height: 520px;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 260ms var(--ease-out-strong), filter 260ms var(--ease-out-strong);
    background: #eadfce;
}

.rubro-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
}

.rubro-bakery .rubro-visual::after {
    background: linear-gradient(180deg, rgba(196, 99, 52, 0.02), rgba(196, 99, 52, 0.44));
}

.rubro-meat .rubro-visual::after {
    background: linear-gradient(180deg, rgba(35, 113, 92, 0.02), rgba(35, 113, 92, 0.44));
}

.rubro-restaurant .rubro-visual::after {
    background: linear-gradient(180deg, rgba(60, 86, 103, 0.02), rgba(60, 86, 103, 0.44));
}

.rubro-chip {
    display: none;
}

.rubro-body,
.mini-feature,
.story-card,
.plan-card,
.contact-card,
.form-card,
.landing-panel,
.steps-panel,
.metric-panel,
.plan-preview-card,
.status-banner {
    padding: 1.5rem;
}

.rubro-label {
    margin: 0 0 0.55rem;
    color: var(--accent-deep);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rubro-body h3 {
    margin-bottom: 0.35rem;
    max-width: 12ch;
    min-height: 2.35em;
    display: flex;
    align-items: flex-end;
}

.rubro-body p {
    max-width: 26ch;
    min-height: 3.3em;
    margin: 0;
    font-size: 0.95rem;
}

.tag-list,
.feature-list,
.plan-card ul,
.contact-list,
.landing-bullets,
.status-list,
.metric-list {
    margin: 1.1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.tag-list li {
    padding: 0.42rem 0.72rem;
    border: 1px solid rgba(31, 26, 23, 0.07);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    width: fit-content;
}

.rubro-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.rubro-body .tag-list {
    margin-top: 1rem;
    min-height: 4.2rem;
    align-content: start;
}

.rubro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(19, 26, 33, 0.14);
    border-color: rgba(126, 52, 31, 0.16);
}

.rubro-card:hover .rubro-visual img {
    transform: scale(1.04);
    filter: saturate(1.03) contrast(1.02);
}

.rubro-card:hover .button-rubro {
    box-shadow: 0 22px 36px rgba(44, 28, 17, 0.18);
}

.button-rubro {
    margin-top: auto;
}

.story-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
}

.portrait-placeholder {
    display: grid;
    place-items: center;
    min-height: 300px;
    background:
        linear-gradient(135deg, rgba(29, 98, 85, 0.12), rgba(203, 93, 44, 0.12)),
        linear-gradient(180deg, #fbfcf8, #e9efea);
    color: var(--ink);
    font-weight: 800;
    text-align: center;
}

.story-note {
    padding: 1rem 1.1rem;
    border-left: 4px solid var(--accent-soft);
    background: rgba(241, 212, 181, 0.36);
    border-radius: 0 18px 18px 0;
}

.split-band,
.contact-band,
.plans-preview {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.section-accompaniment,
.section-contact-band {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(219, 233, 227, 0.35)),
        linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

.plan-preview-card strong {
    margin: 0.4rem 0 1rem;
    font-size: 1.2rem;
}

.faq-list {
    display: grid;
    gap: 0.9rem;
}

.section-cta {
    margin-top: 1.6rem;
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.center-cta {
    justify-content: center;
}

.faq-list details {
    background: rgba(250, 251, 247, 0.84);
    border: 1px solid rgba(24, 32, 38, 0.08);
    border-radius: var(--radius-md);
    padding: 1rem 1.15rem;
    transition: transform 180ms var(--ease-out-strong), box-shadow 180ms var(--ease-out-strong);
}

.faq-list details:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 38px rgba(44, 28, 17, 0.08);
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
}

.site-footer {
    padding: 2.2rem 0 3rem;
}

.footer-shell {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-end;
    border-top: 1px solid rgba(31, 26, 23, 0.08);
    padding-top: 1.6rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.85rem 1rem;
    color: var(--muted);
}

.page-hero {
    padding: 4rem 0 2rem;
}

.hero-page-grid {
    display: grid;
    grid-template-columns: 0.38fr 1.62fr;
    gap: 3.2rem;
    align-items: center;
}

.landing-intro h1 {
    max-width: 9.5ch;
}

.hero-side-visual {
    display: grid;
    gap: 1rem;
}

.hero-side-visual .product-stage {
    width: min(100%, 1280px);
    margin: 0 -14% 0 auto;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1rem;
    min-height: 420px;
}

.mosaic-grid .mosaic-tile {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(24, 32, 38, 0.08);
    box-shadow: var(--shadow);
    background: rgba(251, 252, 248, 0.84);
}

.mosaic-grid .mosaic-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%;
}

.mosaic-grid .mosaic-stack {
    display: grid;
    gap: 1rem;
}

.kicker {
    margin-bottom: 1rem;
    color: var(--accent-deep);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
}

.landing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    align-items: start;
}

.landing-panel,
.steps-panel,
.metric-panel {
    position: relative;
    overflow: hidden;
}

.landing-panel::after,
.steps-panel::after,
.metric-panel::after,
.mini-feature::after,
.plan-card::after,
.contact-card::after,
.form-card::after {
    content: "";
    position: absolute;
    inset: auto auto -3rem -3rem;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(182, 90, 49, 0.08), transparent 72%);
    pointer-events: none;
}

.landing-panel h2,
.steps-panel h2,
.metric-panel h2 {
    margin-bottom: 0.9rem;
}

.steps-list {
    counter-reset: rubrosteps;
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1rem;
}

.steps-list li {
    counter-increment: rubrosteps;
    padding: 1rem 1rem 1rem 4rem;
    border-radius: 18px;
    background: rgba(248, 249, 245, 0.78);
    position: relative;
    font-size: 0.95rem;
}

.steps-list li::before {
    content: counter(rubrosteps, decimal-leading-zero);
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.6rem;
    color: var(--accent-deep);
}

.plan-grid,
.contact-grid {
    display: grid;
    gap: 1.25rem;
}

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

.contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card-featured {
    border: 2px solid var(--accent-deep);
    background: linear-gradient(180deg, rgba(251, 252, 248, 0.98), rgba(246, 240, 233, 0.95));
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 1.2rem;
    background: var(--accent-deep);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(182, 90, 49, 0.25);
}

.price-promo-hero {
    background: rgba(196, 99, 52, 0.1);
    color: var(--accent-deep);
    border: 1px solid rgba(196, 99, 52, 0.2);
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
    margin: 0.6rem 0;
    font-size: 0.92rem;
    font-weight: 700;
}

.price-strike {
    text-decoration: line-through;
    opacity: 0.65;
    font-size: 0.88em;
    margin-right: 0.3rem;
}

.plan-card strong {
    font-size: 1.7rem;
    line-height: 1;
    display: block;
    margin: 0.5rem 0;
    letter-spacing: -0.05em;
}

.price-pending {
    color: var(--accent-deep);
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-card,
.form-card {
    min-height: 100%;
}

.contact-list,
.status-list,
.metric-list {
    margin-top: 1rem;
}

.contact-note,
.form-note {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(219, 233, 227, 0.42);
    color: var(--ink);
    font-size: 0.94rem;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.field {
    display: grid;
    gap: 0.45rem;
}

.field-full {
    grid-column: 1 / -1;
}

label {
    font-size: 0.88rem;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(31, 26, 23, 0.12);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    background: rgba(255, 255, 255, 0.82);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.form-status {
    min-height: 1.5rem;
    margin-top: 0.85rem;
    font-weight: 600;
    color: var(--accent-deep);
}

.status-banner {
    margin-bottom: 1.5rem;
}

.page-home .site-video-background::before {
    background:
        linear-gradient(180deg, rgba(241, 244, 239, 0.56) 0%, rgba(233, 238, 232, 0.66) 24%, rgba(229, 235, 229, 0.82) 52%, rgba(226, 232, 226, 0.94) 100%),
        radial-gradient(circle at 10% 16%, rgba(203, 93, 44, 0.12), transparent 0 26%),
        radial-gradient(circle at 82% 12%, rgba(29, 98, 85, 0.1), transparent 0 20%);
}

.page-home .hero-copy {
    max-width: 30rem;
}

.page-home .hero-copy::before {
    opacity: 0.11;
    font-size: clamp(4rem, 10vw, 8rem);
}

.page-home .section-rubros .section-heading {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: end;
    gap: 1.8rem;
    max-width: none;
}

.page-home .section-rubros .section-heading h2 {
    max-width: 9ch;
    margin-bottom: 0;
}

.page-home .section-rubros .section-heading p:last-child {
    justify-self: end;
    text-align: right;
}

.page-home .section-plans-preview .plan-preview-card {
    background: linear-gradient(135deg, rgba(24, 32, 38, 0.93), rgba(33, 45, 54, 0.9));
    color: #f8f7f2;
    border-color: rgba(255, 255, 255, 0.07);
}

.page-home .section-plans-preview .plan-preview-card span,
.page-home .section-plans-preview .text-link {
    color: rgba(248, 247, 242, 0.82);
}

.page-plans .site-video-background::before {
    background:
        linear-gradient(180deg, rgba(246, 248, 244, 0.92) 0%, rgba(236, 240, 235, 0.95) 100%),
        radial-gradient(circle at 20% 18%, rgba(24, 32, 38, 0.05), transparent 0 26%);
}

.plans-hero-shell {
    display: grid;
    gap: 1.8rem;
}

.plans-intro {
    max-width: 44rem;
}

.plans-intro h1 {
    max-width: 11ch;
}

.plans-snapshot {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.plan-pill {
    display: grid;
    gap: 0.4rem;
    padding: 1.3rem 1.25rem;
    border-radius: 24px;
    background: rgba(251, 252, 248, 0.86);
    border: 1px solid rgba(24, 32, 38, 0.08);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.plan-pill span {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 800;
}

.plan-pill strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.4rem, 2.1vw, 2.15rem);
    line-height: 1;
}

.plan-pill small {
    color: var(--muted);
    font-size: 0.9rem;
}

.plan-pill-setup {
    background: linear-gradient(135deg, rgba(24, 32, 38, 0.95), rgba(44, 57, 67, 0.92));
    color: #fbfcf8;
}

.plan-pill-setup span,
.plan-pill-setup small {
    color: rgba(251, 252, 248, 0.78);
}

.page-plans .status-banner {
    background: linear-gradient(180deg, rgba(250, 245, 239, 0.94), rgba(247, 241, 234, 0.9));
}

.page-plans .plan-card {
    padding-top: 2rem;
}

.page-plans .plan-card:nth-child(2) {
    transform: translateY(-0.8rem);
}

.page-plans .plan-card strong {
    font-size: 2rem;
}

.page-bakery .site-video-background::before {
    background:
        linear-gradient(180deg, rgba(248, 243, 237, 0.8) 0%, rgba(241, 234, 226, 0.88) 50%, rgba(234, 228, 221, 0.94) 100%),
        radial-gradient(circle at 14% 16%, rgba(196, 99, 52, 0.16), transparent 0 24%);
}

.page-meat .site-video-background::before {
    background:
        linear-gradient(180deg, rgba(238, 244, 241, 0.84) 0%, rgba(231, 239, 235, 0.9) 50%, rgba(225, 234, 229, 0.96) 100%),
        radial-gradient(circle at 82% 10%, rgba(35, 113, 92, 0.14), transparent 0 22%);
}

.page-restaurant .site-video-background::before {
    background:
        linear-gradient(180deg, rgba(243, 239, 234, 0.78) 0%, rgba(237, 232, 226, 0.88) 48%, rgba(232, 228, 223, 0.96) 100%),
        radial-gradient(circle at 78% 14%, rgba(60, 86, 103, 0.14), transparent 0 22%);
}

.solution-hero {
    overflow: hidden;
}

.solution-hero .landing-intro {
    position: relative;
    z-index: 2;
}

.solution-signals {
    list-style: none;
    margin: 1.35rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
    max-width: 33rem;
}

.solution-signals li {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    width: fit-content;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(251, 252, 248, 0.8);
    border: 1px solid rgba(24, 32, 38, 0.08);
    box-shadow: 0 18px 34px rgba(19, 26, 33, 0.08);
}

.solution-signals li::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: currentColor;
    flex: 0 0 auto;
}

.solution-hero-bakery .hero-page-grid {
    grid-template-columns: 0.48fr 1.52fr;
}

.solution-hero-bakery .landing-intro {
    padding: 1.2rem 0;
}

.solution-hero-bakery .solution-signals li {
    color: #9c4d28;
}

.solution-hero-bakery .product-stage {
    transform: rotate(-1.4deg);
}

.solution-hero-meat .hero-page-grid {
    grid-template-columns: 1.2fr 0.8fr;
}

.solution-hero-meat .landing-intro {
    order: 2;
}

.solution-hero-meat .product-stage {
    order: 1;
    margin: 0 auto 0 -6%;
    transform: rotate(1.2deg);
}

.solution-hero-meat .solution-signals li {
    color: #1f6f58;
}

.solution-hero-restaurant .hero-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.solution-hero-restaurant .landing-intro {
    max-width: 48rem;
}

.solution-hero-restaurant .landing-intro h1 {
    max-width: 12ch;
}

.solution-hero-restaurant .product-stage {
    width: min(100%, 1380px);
    margin: 0 auto;
    transform: none;
}

.solution-hero-restaurant .product-window {
    background: rgba(255, 251, 246, 0.96);
}

.solution-hero-restaurant .solution-signals {
    grid-template-columns: repeat(3, minmax(0, max-content));
    max-width: none;
}

.solution-hero-restaurant .solution-signals li {
    color: #466072;
}

.redirect-page {
    min-height: 100dvh;
    display: grid;
    place-items: center;
}

.redirect-card {
    width: min(100% - 2rem, 680px);
    padding: 2rem;
    text-align: center;
}

@keyframes riseFade {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-copy,
.hero-visual,
.section-heading,
.rubro-card,
.mini-feature,
.story-card,
.portrait-placeholder,
.landing-panel,
.steps-panel,
.metric-panel,
.plan-card,
.contact-card,
.form-card,
.status-banner,
.faq-list details,
.contact-band,
.split-band {
    animation: riseFade 0.7s var(--ease-out-strong) both;
}

.hero-visual,
.rubro-card:nth-child(2),
.mini-feature:nth-child(2),
.mini-feature:nth-child(4),
.metric-panel,
.portrait-placeholder,
.form-card,
.plan-card:nth-child(2) {
    animation-delay: 0.08s;
}

.rubro-card:nth-child(3),
.mini-feature:nth-child(3),
.steps-panel,
.contact-card,
.plan-card:nth-child(3) {
    animation-delay: 0.14s;
}

@media (max-width: 1080px) {
    .page-home .section-rubros .section-heading,
    .plans-snapshot,
    .cards-grid-four,
    .cards-grid-rubros,
    .plan-grid,
    .contact-grid,
    .hero-grid,
    .hero-page-grid,
    .story-grid,
    .split-band,
    .contact-band,
    .plans-preview,
    .landing-layout {
        grid-template-columns: 1fr;
    }

    .page-home .section-rubros .section-heading p:last-child {
        justify-self: start;
        text-align: left;
    }

    .rubro-card:nth-child(2),
    .rubro-card:nth-child(3),
    .product-stage,
    .product-window,
    .metric-card {
        transform: none;
    }

    .hero-visual {
        padding-top: 1rem;
    }

    .product-stage {
        margin: 2.4rem auto 0;
    }

    .mosaic-grid {
        min-height: 0;
    }

    .hero-grid,
    .hero-page-grid {
        gap: 2.2rem;
    }

    .product-stage,
    .hero-side-visual .product-stage {
        width: 100%;
        margin: 2rem auto 0;
    }

    .solution-hero-meat .landing-intro,
    .solution-hero-meat .product-stage {
        order: initial;
        margin: 2rem auto 0;
    }

    .solution-hero-restaurant .solution-signals {
        grid-template-columns: 1fr;
    }

    .page-plans .plan-card:nth-child(2) {
        transform: none;
    }
}

@media (max-width: 820px) {
    .menu-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + 0.5rem);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        background: rgba(251, 252, 248, 0.96);
        border: 1px solid rgba(24, 32, 38, 0.08);
        border-radius: 22px;
        box-shadow: var(--shadow-strong);
        z-index: 25;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a:not(.button),
    .nav-dropdown-toggle {
        padding: 0.35rem 0;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        margin-top: 0.7rem;
        padding: 0.55rem;
        border-radius: 18px;
        background: rgba(243, 247, 242, 0.96);
        box-shadow: none;
    }

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

    .footer-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        justify-content: flex-start;
    }

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

    .mosaic-grid .mosaic-stack {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .hero-copy,
    .hero-visual,
    .section-heading,
    .rubro-card,
    .mini-feature,
    .story-card,
    .portrait-placeholder,
    .landing-panel,
    .steps-panel,
    .metric-panel,
    .plan-card,
    .contact-card,
    .form-card,
    .status-banner,
    .faq-list details,
    .contact-band,
    .split-band {
        animation: none;
    }

    .button,
    .rubro-card,
    .rubro-visual img,
    .faq-list details,
    .nav-dropdown-menu a {
        transition: none;
    }

    .product-stage {
        transform: none;
    }
}

@media (max-width: 560px) {
    .section,
    .hero,
    .page-hero {
        padding-top: 3.2rem;
        padding-bottom: 3.2rem;
    }

    .container {
        width: min(100% - 1.2rem, var(--container));
    }

    .solution-signals li {
        width: 100%;
    }

    .button,
    .site-nav a.button {
        width: 100%;
    }

    .hero-actions,
    .contact-band-actions,
    .form-actions {
        flex-direction: column;
    }

    .product-placeholder,
    .capture-placeholder,
    .portrait-placeholder {
        min-height: 260px;
    }

    .hero-copy::before {
        top: -1.2rem;
        font-size: 4.6rem;
    }

    .hero-visual {
        padding-top: 0.75rem;
    }

    .product-stage {
        width: 100%;
        margin-top: 1.8rem;
        padding: 0.75rem;
    }

    .rubro-visual,
    .rubro-visual img {
        min-height: 340px;
    }

    .mosaic-grid .mosaic-stack {
        grid-template-columns: 1fr;
    }

    .lightbox {
        padding: 1rem;
    }

    .lightbox-image {
        max-width: 95vw;
        max-height: 80vh;
        border-radius: 14px;
    }

    .lightbox-close {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.5rem 0.85rem;
        font-size: 0.85rem;
    }
}
