* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink-main: #efb6cf;
    --pink-soft: #f7d9e7;
    --pink-light: #fcf2f7;
    --pink-border: #e8c8d7;
    --blue-soft: #dcecf8;
    --blue-light: #eef6fb;
    --white: #ffffff;
    --bg-page: #fdf8fb;
    --bg-section: #fbf6f9;
    --text-main: #3f3440;
    --text-soft: #756777;
    --title: #241b26;
    --shadow-sm: 0 8px 20px rgba(214, 173, 193, 0.08);
    --shadow-md: 0 14px 32px rgba(214, 173, 193, 0.11);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-page);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 118px;
}

body.menu-open {
    overflow: hidden;
}

img,
video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

/* =========================
   HEADER
========================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 248, 251, 0.96);
    border-bottom: 1px solid var(--pink-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.35s ease;
    will-change: transform;
}

.site-header.nav-hidden {
    transform: translateY(-100%);
}

.site-header.nav-visible {
    transform: translateY(0);
}

.topbar {
    background: #f5e3ec;
    border-bottom: 1px solid var(--pink-border);
}

.topbar-container {
    width: min(94%, 1240px);
    margin: 0 auto;
    min-height: 34px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-left {
    justify-content: flex-start;
}

.topbar-right {
    justify-content: flex-end;
}

.top-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #4b434a;
    font-size: 12px;
    transition: 0.25s ease;
}

.top-icon:hover {
    color: #111111;
}

.top-arrow {
    font-size: 13px;
    color: #5c555d;
    opacity: 0.8;
}

.topbar-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #463e45;
    text-align: center;
    font-weight: 600;
    line-height: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.topbar-text.fade-out {
    opacity: 0;
    transform: translateY(-3px);
}

.topbar-text.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.main-header {
    background: rgba(253, 248, 251, 0.98);
}

.main-header-container {
    width: min(94%, 1240px);
    margin: 0 auto;
    min-height: 84px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    position: relative;
}

.compact-main-header-container {
    min-height: 74px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    min-width: 0;
}

.compact-nav {
    gap: 16px;
}

.nav-left {
    justify-self: start;
    min-width: 0;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #2f2b2f;
    transition: 0.25s ease;
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
    flex: 0 0 auto;
}

.nav-link:hover {
    color: #111111;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1.5px;
    background: var(--pink-main);
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.25s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.brand-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    justify-self: center;
    min-width: 0;
    z-index: 3;
}

.brand-logo-img {
    width: clamp(128px, 11vw, 170px);
    height: auto;
    object-fit: contain;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--pink-main);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition: 0.25s ease;
    text-align: center;
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-2px);
}

.admin-menu {
    position: relative;
}

.admin-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--pink-border);
    color: #3d383d;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: 0.25s ease;
}

.admin-toggle:hover {
    background: var(--pink-light);
}

.admin-caret {
    font-size: 11px;
}

.admin-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: var(--white);
    border: 1px solid var(--pink-border);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    padding: 8px;
    display: none;
    z-index: 1200;
}

.admin-dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 14px;
    color: #3e3840;
    transition: 0.25s ease;
}

.admin-dropdown a:hover {
    background: var(--pink-light);
}

.admin-menu:hover .admin-dropdown,
.admin-menu.open .admin-dropdown {
    display: block;
}

/* =========================
   HAMBURGUESA
========================= */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--pink-border);
    align-items: center;
    justify-content: center;
    color: var(--title);
    font-size: 18px;
    box-shadow: var(--shadow-sm);
    transition: 0.25s ease;
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: var(--pink-light);
}

.mobile-overlay {
    display: none;
}

.mobile-menu-panel {
    display: none;
}

/* =========================
   BOTONES
========================= */
.btn-primary,
.btn-secondary,
.btn-read,
.btn-primary-blue,
.recipes-more-btn,
.experiences-more-btn,
.videos-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: 0.25s ease;
    font-weight: 700;
}

.btn-primary,
.videos-more-btn {
    background: var(--pink-main);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    min-height: 48px;
    padding: 0 24px;
    font-size: 15px;
}

.btn-primary:hover,
.videos-more-btn:hover {
    transform: translateY(-2px);
}

.btn-primary-blue,
.btn-read,
.recipes-more-btn,
.experiences-more-btn {
    background: #bfe0f5;
    color: #31404a;
    box-shadow: var(--shadow-sm);
}

.btn-primary-blue {
    min-height: 50px;
    padding: 0 26px;
    font-size: 15px;
}

.btn-secondary {
    min-height: 48px;
    padding: 0 22px;
    background: var(--white);
    border: 1px solid var(--pink-border);
    color: var(--title);
    font-size: 15px;
}

.btn-read,
.recipes-more-btn,
.experiences-more-btn {
    min-height: 46px;
    padding: 0 18px;
    font-size: 14px;
}

.videos-more-btn {
    min-height: 46px;
    padding: 0 28px;
    font-size: 14px;
}

/* =========================
   GENERAL
========================= */
.content-section,
.cta-section {
    width: min(92%, 1180px);
    margin: 0 auto 68px;
}

.section-soft-blue,
.section-soft-lilac {
    background: var(--bg-section);
    border: 1px solid var(--pink-border);
    border-radius: var(--radius-xl);
    padding: 42px 26px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.compact-section-title {
    margin-bottom: 26px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: #c97ca2;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 0.96;
    color: var(--title);
    letter-spacing: -1.1px;
    margin-bottom: 10px;
}

.videos-section-title h2,
.experiences-title h2,
.faq-title h2 {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.section-title p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-soft);
}

/* =========================
   HERO
========================= */
.hero-section {
    width: min(92%, 1220px);
    margin: 0 auto;
    padding: 34px 0 56px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-blur {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.5;
}

.blur-1 {
    width: 220px;
    height: 220px;
    background: #f7dde8;
    top: 0;
    left: -40px;
    filter: blur(60px);
}

.blur-2 {
    width: 240px;
    height: 240px;
    background: #e8f2f9;
    top: 60px;
    right: 6%;
    filter: blur(65px);
}

.blur-3 {
    width: 180px;
    height: 180px;
    background: #fae8f0;
    bottom: 20px;
    left: 32%;
    filter: blur(55px);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 0 12px rgba(255,255,255,0.8);
    animation: particleFloat 7s ease-in-out infinite;
}

.hero-particles .p1  { width: 5px; height: 5px; top: 8%; left: 8%; animation-delay: 0s; }
.hero-particles .p2  { width: 6px; height: 6px; top: 18%; left: 33%; animation-delay: .8s; }
.hero-particles .p3  { width: 4px; height: 4px; top: 10%; right: 18%; animation-delay: 1.2s; }
.hero-particles .p4  { width: 6px; height: 6px; top: 28%; right: 6%; animation-delay: 1.8s; }
.hero-particles .p5  { width: 4px; height: 4px; top: 42%; left: 6%; animation-delay: 2.1s; }
.hero-particles .p6  { width: 6px; height: 6px; top: 48%; left: 42%; animation-delay: 2.6s; }
.hero-particles .p7  { width: 5px; height: 5px; top: 56%; right: 24%; animation-delay: 3s; }
.hero-particles .p8  { width: 7px; height: 7px; top: 68%; left: 12%; animation-delay: 3.5s; }
.hero-particles .p9  { width: 5px; height: 5px; top: 74%; left: 34%; animation-delay: 4s; }
.hero-particles .p10 { width: 4px; height: 4px; top: 80%; right: 10%; animation-delay: 4.5s; }
.hero-particles .p11 { width: 5px; height: 5px; top: 24%; left: 60%; animation-delay: 1.4s; }
.hero-particles .p12 { width: 4px; height: 4px; top: 36%; right: 34%; animation-delay: 2.9s; }
.hero-particles .p13 { width: 5px; height: 5px; top: 60%; right: 4%; animation-delay: 3.8s; }
.hero-particles .p14 { width: 6px; height: 6px; top: 86%; left: 58%; animation-delay: 4.8s; }
.hero-particles .p15 { width: 4px; height: 4px; top: 14%; left: 74%; animation-delay: 2s; }
.hero-particles .p16 { width: 5px; height: 5px; top: 88%; right: 28%; animation-delay: 5.2s; }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--pink-border);
    color: #ba7497;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 4.4vw, 4.7rem);
    line-height: 0.95;
    letter-spacing: -1.2px;
    color: var(--title);
    margin-bottom: 16px;
}

.hero-content h1 span {
    color: #7bb8da;
}

.hero-content > p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-soft);
    max-width: 500px;
    margin-bottom: 22px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    margin-bottom: 18px;
    padding: 16px 18px;
    width: fit-content;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--pink-border);
    box-shadow: var(--shadow-sm);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-stat strong {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1;
    color: var(--title);
}

.hero-stat span {
    font-size: 12px;
    line-height: 1.2;
    color: var(--text-soft);
}

.hero-stat-divider {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pink-main);
}

.hero-note-text {
    font-size: 13px;
    line-height: 1.7;
    color: #847785;
    max-width: 520px;
}

.hero-line {
    width: 94px;
    height: 2px;
    background: var(--pink-main);
    border-radius: 999px;
    margin-top: 16px;
}

.hero-visual {
    position: relative;
    z-index: 2;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-stack {
    position: relative;
    width: 100%;
    max-width: 710px;
    height: 610px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 450px;
    height: 560px;
    padding: 12px 12px 54px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid #f0d9e5;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.photo-caption {
    position: absolute;
    left: 24px;
    bottom: 16px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #544950;
}

.photo-frame.active {
    opacity: 1;
    z-index: 4;
    transform: translate(-50%, -50%) rotate(-4deg) scale(1);
}

.photo-frame.prev {
    opacity: 0.8;
    z-index: 3;
    transform: translate(-60%, -49%) rotate(-10deg) scale(0.91);
}

.photo-frame.next {
    opacity: 0.8;
    z-index: 2;
    transform: translate(-40%, -49%) rotate(8deg) scale(0.91);
}

.photo-deco {
    position: absolute;
    z-index: 5;
    pointer-events: none;
}

.deco-heart {
    top: 74px;
    right: 70px;
    font-size: 1.8rem;
    color: var(--pink-main);
}

.deco-star {
    bottom: 92px;
    left: 38px;
    font-size: 1.3rem;
    color: #8db9d5;
}

.deco-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--pink-main);
    top: 170px;
    left: 34px;
    box-shadow: 24px 32px 0 #cfe3f1, 500px 380px 0 #f3ccdd;
}

.deco-dot-soft {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d7ebf6;
    top: 100px;
    right: 40px;
}

.deco-sparkle {
    left: 44px;
    bottom: 68px;
    font-size: 17px;
    color: #86b8d8;
}

.hero-mini-card {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--pink-border);
    border-radius: 999px;
    padding: 10px 15px;
    box-shadow: var(--shadow-sm);
    font-size: 12px;
    font-weight: 700;
    color: #6e6170;
    z-index: 6;
}

.mini-card-1 {
    top: 56px;
    left: 22px;
}

.mini-card-2 {
    right: 26px;
    bottom: 58px;
}

/* =========================
   RECETAS
========================= */
.recipes-section {
    position: relative;
    overflow: hidden;
    padding-top: 8px;
}

.recipes-bg-shape,
.recipes-bg-dots,
.experiences-bg-shape,
.experiences-bg-dots {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.recipes-shape-1,
.experiences-shape-1 {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #f8e1eb;
    top: 26px;
    left: -50px;
    filter: blur(30px);
}

.recipes-shape-2,
.experiences-shape-2 {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #edf5fb;
    right: -60px;
    bottom: 12px;
    filter: blur(35px);
}

.recipes-dots-1,
.recipes-dots-2,
.experiences-dots-1,
.experiences-dots-2 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f0c3d8;
    opacity: 0.8;
}

.recipes-dots-1,
.experiences-dots-1 {
    top: 30px;
    right: 10%;
    box-shadow: 20px 16px 0 #d9eaf6, -14px 34px 0 #f6cfdf;
}

.recipes-dots-2,
.experiences-dots-2 {
    bottom: 30px;
    left: 8%;
    background: #d9eaf6;
    box-shadow: 20px -12px 0 #f1c5da, 42px 10px 0 #d9eaf6;
}

.recipes-title {
    position: relative;
    z-index: 2;
}

.recipes-intro-box {
    position: relative;
    z-index: 2;
    max-width: 1080px;
    margin: 0 auto 30px;
    padding: 26px 26px;
    border-radius: 28px;
    background: #faf4f7;
    border: 1px solid var(--pink-border);
    box-shadow: var(--shadow-sm);
}

.recipes-intro-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--pink-border);
    color: #c57f9f;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 10px;
}

.recipes-intro-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1.02;
    color: var(--title);
    margin-bottom: 10px;
}

.recipes-intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-soft);
    margin-bottom: 18px;
}

.recipes-intro-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 16px;
}

.recipes-intro-point {
    background: var(--white);
    border: 1px solid var(--pink-border);
    border-radius: 20px;
    padding: 16px 15px;
}

.recipes-intro-point strong {
    display: block;
    font-size: 15px;
    color: #344450;
    margin-bottom: 7px;
}

.recipes-intro-point p {
    font-size: 14px;
    line-height: 1.75;
    color: #655866;
    text-align: justify;
}

.recipes-intro-note {
    background: var(--white);
    border: 1px solid var(--pink-border);
    border-radius: 20px;
    padding: 16px 16px 14px;
}

.recipes-intro-note h4 {
    color: #c97ca2;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 7px;
}

.recipes-intro-note p {
    font-size: 14px;
    line-height: 1.8;
    color: #655866;
    text-align: justify;
}

.recipes-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.recipe-feature-card {
    background: var(--white);
    border: 1px solid var(--pink-border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: 0.25s ease;
}

.recipe-feature-card:hover {
    transform: translateY(-4px);
}

.recipe-card-glow,
.recipe-image-shine,
.experience-card-glow {
    display: none;
}

.recipe-image-wrap {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f0d8e4;
}

.recipe-image-wrap img {
    height: 260px;
    object-fit: cover;
    transition: 0.35s ease;
}

.recipe-feature-card:hover .recipe-image-wrap img {
    transform: scale(1.04);
}

.recipe-floating-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--pink-border);
    font-size: 12px;
    font-weight: 800;
    color: #3b4b56;
}

.recipe-content {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.recipe-mini-line {
    width: 48px;
    height: 3px;
    background: var(--pink-main);
    border-radius: 999px;
    margin-bottom: 12px;
}

.recipe-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 1.06;
    color: var(--title);
    margin-bottom: 16px;
}

.recipes-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    position: relative;
    z-index: 2;
}

/* =========================
   VIDEOS
========================= */
.videos-section {
    position: relative;
    overflow: hidden;
}

.videos-feature-layout {
    display: grid;
    grid-template-columns: minmax(320px, 470px) minmax(0, 1fr);
    gap: 18px;
    align-items: stretch;
    margin-top: 26px;
}

.refined-videos-layout {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.videos-main-media {
    display: flex;
    width: 100%;
    min-width: 0;
}

.videos-main-frame {
    position: relative;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--pink-border);
    border-radius: 24px;
    padding: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.compact-video-frame video,
.videos-main-frame video {
    width: 100%;
    height: 670px;
    border-radius: 18px;
    background: #000;
    object-fit: cover;
    object-position: center;
}

.video-full-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(35, 38, 45, 0.78);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.videos-main-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.95);
    border: 1px solid var(--pink-border);
    color: #68758a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.videos-side-card {
    width: 100%;
    background: #faf4f7;
    border: 1px solid var(--pink-border);
    border-radius: 24px;
    padding: 16px 14px 18px;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.refined-videos-card {
    max-width: 100%;
}

.video-logo-slot {
    width: 100%;
    min-height: 64px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--pink-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 8px 12px;
}

.video-logo-img {
    width: auto;
    max-width: 105px;
    max-height: 34px;
    height: auto;
    object-fit: contain;
    opacity: 0.92;
}

.videos-side-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.videos-side-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.videos-side-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.videos-side-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #cc87a6;
    margin-bottom: 4px;
}

.videos-side-meta h3 {
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.08;
    color: #2d3c54;
    margin: 0;
}

.videos-side-text {
    font-size: 14px;
    line-height: 1.9;
    color: #5f6d82;
    margin: 0 0 16px;
    text-align: justify;
}

.videos-side-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px;
    border-radius: 18px;
    background: #dceaf6;
    color: #4c5d7a;
    font-weight: 700;
    line-height: 1.55;
    margin-bottom: 18px;
}

.videos-side-highlight i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    color: #89abc3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
}

.videos-side-btn {
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #bfeaf5 0%, #9fdcf0 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(159, 220, 240, 0.28);
    transition: 0.25s ease;
}

.videos-side-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.videos-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

/* =========================
   RETOS
========================= */
.reto-program-box {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 18px;
    align-items: stretch;
    max-width: 1080px;
    margin: 0 auto 22px;
}

.reto-program-left,
.reto-program-right,
.reto-info-block,
.premium-cta {
    background: #faf4f7;
    border: 1px solid var(--pink-border);
    border-radius: 26px;
}

.reto-program-left {
    padding: 24px 22px;
}

.reto-main-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--pink-main);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.reto-program-left h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1.02;
    color: var(--title);
    margin-bottom: 10px;
}

.reto-program-left p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-soft);
    margin-bottom: 18px;
}

.reto-time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.reto-time-card {
    background: var(--white);
    border: 1px solid var(--pink-border);
    border-radius: 18px;
    padding: 16px 12px;
    text-align: center;
}

.reto-time-card strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #ca7d9f;
    margin-bottom: 4px;
}

.reto-time-card span {
    font-size: 13px;
    line-height: 1.5;
    color: #625661;
}

.reto-program-right {
    padding: 22px 20px;
}

.reto-side-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: #ca7d9f;
    margin-bottom: 10px;
}

.reto-program-right h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    line-height: 1.04;
    color: var(--title);
    margin-bottom: 14px;
}

.reto-side-list {
    list-style: none;
}

.reto-side-list li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #5a4e59;
}

.reto-bottom-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.reto-info-block {
    padding: 22px 20px;
}

.reto-info-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--pink-border);
    color: #ca7d9f;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.reto-info-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    line-height: 1.08;
    color: var(--title);
    margin-bottom: 12px;
}

.reto-list {
    list-style: none;
}

.reto-list li,
.reto-final-text {
    font-size: 14px;
    line-height: 1.75;
    color: #5f5460;
}

.reto-list li {
    margin-bottom: 8px;
}

.premium-cta,
.compact-premium-cta {
    max-width: 1080px;
    margin: 28px auto 0;
    padding: 34px 28px;
    text-align: center;
    background: #fffafb;
    border: 2px solid #efb6cf;
    border-radius: 30px;
    box-shadow: 0 18px 40px rgba(239, 182, 207, 0.14);
    position: relative;
    overflow: hidden;
}

.premium-cta::before,
.compact-premium-cta::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 4px;
    border-radius: 999px;
    background: #efb6cf;
}

.reto-cta-kicker {
    display: block;
    margin-top: 6px;
    margin-bottom: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #c97ca2;
}

.premium-cta h3,
.compact-premium-cta h3 {
    max-width: 860px;
    margin: 0 auto 14px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 0.98;
    letter-spacing: -1px;
    color: #241b26;
}

.premium-cta p,
.compact-premium-cta p {
    max-width: 760px;
    margin: 0 auto 18px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #6f6270;
}

.reto-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.reto-cta-actions .btn-primary-blue,
.reto-cta-actions .btn-secondary {
    min-width: 210px;
    min-height: 54px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 999px;
}

.reto-cta-actions .btn-primary-blue {
    background: #bcdcf2;
    color: #243746;
    border: none;
    box-shadow: 0 10px 24px rgba(188, 220, 242, 0.34);
}

.reto-cta-actions .btn-primary-blue:hover,
.reto-cta-actions .btn-secondary:hover {
    transform: translateY(-2px);
}

.reto-cta-actions .btn-secondary {
    background: #ffffff;
    border: 1.5px solid #efb6cf;
    color: #2d2530;
}

/* =========================
   TESTIMONIOS
========================= */
.experiences-section {
    position: relative;
    overflow: hidden;
    padding-top: 8px;
}

.featured-top-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.06fr);
    gap: 18px;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto 30px;
}

.refined-testimonial-layout {
    max-width: 1080px;
}

.featured-main-photo-card {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--pink-border);
    box-shadow: var(--shadow-sm);
}

.compact-testimonial-photo {
    max-width: 100%;
}

.featured-main-photo-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5.2;
    overflow: hidden;
}

.featured-main-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-main-photo-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--pink-border);
    color: #3c4b56;
    font-size: 12px;
    font-weight: 800;
}

.featured-story-card {
    width: 100%;
    border-radius: 28px;
    background: #faf4f7;
    border: 1px solid var(--pink-border);
    overflow: hidden;
}

.refined-testimonial-card {
    max-width: 100%;
}

.featured-story-content {
    width: 100%;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.refined-testimonial-content {
    gap: 13px;
}

.featured-story-line {
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background: var(--pink-main);
}

.featured-story-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--pink-border);
    color: #ca7d9f;
    font-size: 12px;
    font-weight: 800;
}

.featured-story-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.98;
    letter-spacing: -0.8px;
    color: var(--title);
    max-width: 640px;
}

.featured-story-paragraph,
.featured-story-content p {
    font-size: 14px;
    line-height: 1.95;
    color: #5f5462;
    text-align: justify;
}

.featured-story-content strong {
    color: #d884a8;
}

.featured-story-highlight {
    width: 100%;
    padding: 15px 16px;
    border-radius: 18px;
    background: #e5eef6;
    border: 1px solid #d3e2ed;
}

.refined-highlight-box p {
    font-size: 14px;
    line-height: 1.85;
    color: #5a5461;
}

.featured-story-final {
    font-weight: 700;
    color: #4f434d;
    text-align: left;
}

.refined-testimonial-card .featured-story-logo-slot {
    display: none !important;
}

/* =========================
   EXPERIENCIAS CARDS
========================= */
.experiences-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.experience-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--pink-border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: 0.25s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
}

.experience-image-wrap {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f0d8e4;
}

.experience-image-wrap img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    transition: 0.35s ease;
}

.experience-card:hover .experience-image-wrap img {
    transform: scale(1.04);
}

.experience-floating-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.94);
    border: 1px solid var(--pink-border);
    color: #3b4a55;
    font-size: 12px;
    font-weight: 800;
}

.experience-content {
    padding: 18px 18px 20px;
}

.experience-mini-line {
    width: 48px;
    height: 3px;
    border-radius: 999px;
    background: var(--pink-main);
    display: inline-block;
    margin-bottom: 12px;
}

.experience-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 1.07;
    color: var(--title);
    margin-bottom: 12px;
}

.experience-content p {
    font-size: 14px;
    line-height: 1.85;
    color: #615562;
    text-align: justify;
}

.experiences-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    position: relative;
    z-index: 2;
}

/* =========================
   FAQ
========================= */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-title {
    position: relative;
    z-index: 2;
}

.faq-list {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-card {
    background: #faf7f9;
    border: 1px solid var(--pink-border);
    border-radius: 24px;
    padding: 16px 18px;
    transition: 0.25s ease;
    overflow: hidden;
    position: relative;
}

.faq-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--pink-main);
}

.faq-card:hover {
    transform: translateX(4px);
}

.faq-card-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
}

.faq-number {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: var(--pink-main);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}

.faq-card-top h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.08;
    color: var(--title);
}

.faq-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--pink-border);
    color: #ca7d9f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: 0.25s ease;
}

.faq-card:hover .faq-icon {
    transform: rotate(45deg);
}

.faq-card-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.faq-card:hover .faq-card-content {
    max-height: 180px;
    opacity: 1;
    margin-top: 12px;
}

.faq-card-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #665a66;
    max-width: 92%;
    text-align: justify;
}

/* =========================
   FOOTER
========================= */
.footer {
    margin-top: 34px;
    background: #050505;
    color: #ffffff;
    padding: 54px 20px 22px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-wrapper {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.footer-brand {
    padding-right: 10px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.footer-logo-img {
    width: min(150px, 100%);
    height: auto;
    object-fit: contain;
}

.footer-section h4 {
    color: #f0a8c6;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.85;
    max-width: 350px;
    text-align: left;
}

.footer-section a {
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    line-height: 1.5;
    transition: 0.2s ease;
    width: fit-content;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    font-size: 1rem;
}

.footer-bottom {
    width: min(1180px, 100%);
    margin: 22px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom strong {
    color: #ffffff;
}

/* =========================
   ANIMACIONES
========================= */
@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-12px) scale(1.15);
        opacity: 1;
    }
}

/* =========================
   RESPONSIVE GENERAL
========================= */
@media (max-width: 1100px) {
    .hero-section,
    .recipes-showcase,
    .experiences-showcase,
    .featured-top-layout,
    .reto-program-box,
    .reto-bottom-grid,
    .videos-feature-layout {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 42px 0 50px;
        gap: 26px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        min-height: 560px;
    }

    .photo-stack {
        max-width: 600px;
        height: 580px;
    }

    .photo-frame {
        width: 400px;
        height: 500px;
    }

    .videos-main-frame video {
        height: 620px;
    }

    .videos-side-card {
        max-width: 760px;
        margin: 0 auto;
    }

    .featured-main-photo-wrap {
        aspect-ratio: 4 / 4.8;
    }

    .recipes-intro-points,
    .reto-time-grid {
        grid-template-columns: 1fr;
    }

    .footer-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* =========================
   HEADER MÓVIL CORREGIDO
========================= */
@media (max-width: 980px) {
    body {
        padding-top: 92px;
    }

    .topbar {
        display: none;
    }

    .main-header {
        padding: 0;
    }

    .main-header-container,
    .compact-main-header-container {
        width: min(94%, 1240px);
        margin: 0 auto;
        min-height: 74px;
        display: grid;
        grid-template-columns: auto auto 1fr auto auto;
        align-items: center;
        gap: 8px;
        padding: 0;
        position: relative;
    }

    .desktop-nav {
        display: none !important;
    }

    .menu-toggle {
        display: inline-flex;
        justify-self: start;
        z-index: 5;
    }

    .brand-logo-link,
    .compact-brand {
        display: flex;
        justify-self: start;
        align-items: center;
        margin-left: 12px;
    }

    .brand-logo-img {
        width: clamp(138px, 24vw, 180px);
        height: auto;
        object-fit: contain;
        display: block;
    }

    .desktop-actions,
    .header-actions,
    .compact-header-actions {
        display: flex !important;
        justify-self: end;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .header-cta {
        min-height: 40px;
        padding: 0 14px;
        font-size: 12px;
        white-space: nowrap;
    }

    .admin-toggle {
        min-height: 40px;
        padding: 0 13px;
        font-size: 12px;
        white-space: nowrap;
    }

    .admin-dropdown {
        right: 0;
        left: auto;
        min-width: 180px;
    }

    .mobile-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(32, 20, 27, 0.34);
        opacity: 0;
        visibility: hidden;
        transition: 0.25s ease;
        z-index: 1300;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-panel {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: min(84vw, 340px);
        height: 100vh;
        background: rgba(255, 249, 252, 0.98);
        border-right: 1px solid var(--pink-border);
        box-shadow: 18px 0 40px rgba(60, 42, 53, 0.12);
        transform: translateX(-102%);
        transition: transform 0.32s ease;
        z-index: 1400;
        padding: 22px 18px 24px;
        overflow-y: auto;
    }

    .mobile-menu-panel.active {
        transform: translateX(0);
    }

    .mobile-menu-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 18px;
    }

    .mobile-menu-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.25rem;
        color: var(--title);
    }

    .mobile-close {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: var(--white);
        border: 1px solid var(--pink-border);
        color: var(--title);
        font-size: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-links,
    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-menu-links {
        margin-bottom: 18px;
    }

    .mobile-link,
    .mobile-action-btn,
    .mobile-admin-btn {
        width: 100%;
        min-height: 48px;
        padding: 0 16px;
        border-radius: 16px;
        border: 1px solid var(--pink-border);
        background: var(--white);
        color: var(--title);
        font-size: 14px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: 0.25s ease;
    }

    .mobile-link:hover,
    .mobile-action-btn:hover,
    .mobile-admin-btn:hover {
        background: var(--pink-light);
    }

    .mobile-action-btn.primary {
        background: var(--pink-main);
        color: #ffffff;
        border-color: var(--pink-main);
    }

    .mobile-admin-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-admin-dropdown {
        display: none;
        flex-direction: column;
        gap: 8px;
        padding-left: 8px;
    }

    .mobile-admin-group.open .mobile-admin-dropdown {
        display: flex;
    }

    .mobile-admin-dropdown a {
        min-height: 44px;
        padding: 0 14px;
        display: flex;
        align-items: center;
        border-radius: 14px;
        background: #fffafd;
        border: 1px solid var(--pink-border);
        color: var(--text-main);
        font-size: 13px;
        font-weight: 600;
    }

    .content-section,
    .cta-section {
        width: min(94%, 1180px);
        margin: 0 auto 54px;
    }

    .section-soft-blue,
    .section-soft-lilac {
        padding: 30px 16px;
        border-radius: 24px;
    }

    .section-title h2 {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.02;
    }

    .section-title p {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .hero-content > p,
    .hero-note-text {
        font-size: 14px;
    }

    .hero-buttons,
    .reto-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary,
    .btn-primary-blue,
    .btn-read,
    .recipes-more-btn,
    .experiences-more-btn,
    .videos-more-btn {
        width: 100%;
    }

    .hero-stats {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
        gap: 8px;
        padding: 16px 14px;
    }

    .hero-stat {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 4px;
        min-width: 0;
    }

    .hero-stat strong {
        font-size: 20px;
        line-height: 1;
    }

    .hero-stat span {
        display: block;
        font-size: 11px;
        line-height: 1.35;
        text-align: left;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-visual {
        min-height: 700px;
    }

    .photo-stack {
        max-width: 560px;
        height: 650px;
    }

    .photo-frame {
        width: 420px;
        height: 540px;
        padding: 10px 10px 48px;
        border-radius: 24px;
    }

    .photo-frame img {
        border-radius: 16px;
    }

    .photo-caption {
        left: 16px;
        bottom: 11px;
        font-size: 0.84rem;
    }

    .deco-heart {
        top: 30px;
        right: 18px;
    }

    .deco-star {
        bottom: 42px;
        left: 12px;
    }

    .hero-mini-card {
        display: none;
    }

    .recipe-feature-card,
    .experience-card,
    .featured-main-photo-card,
    .featured-story-card,
    .faq-card,
    .reto-program-left,
    .reto-program-right,
    .reto-info-block,
    .premium-cta,
    .videos-side-card,
    .recipes-intro-box,
    .compact-premium-cta {
        border-radius: 22px;
    }

    .recipe-content h3,
    .experience-content h3,
    .faq-card-top h3 {
        font-size: 22px;
    }

    .featured-story-content h3,
    .reto-program-left h3,
    .premium-cta h3,
    .compact-premium-cta h3,
    .recipes-intro-box h3 {
        font-size: clamp(1.8rem, 7vw, 2.4rem);
    }

    .recipe-image-wrap img,
    .experience-image-wrap img {
        height: 230px;
    }

    .videos-main-frame video {
        height: 500px;
    }

    .videos-side-meta h3 {
        font-size: 1.55rem;
    }

    .video-logo-slot {
        min-height: 58px;
    }

    .video-logo-img {
        max-width: 92px;
        max-height: 30px;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer {
        padding: 42px 16px 18px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }
}

@media (max-width: 560px) {
    body {
        padding-top: 86px;
    }

    .main-header-container,
    .compact-main-header-container {
        grid-template-columns: auto auto 1fr auto auto;
        gap: 6px;
    }

    .brand-logo-link,
    .compact-brand {
        display: flex;
        align-items: center;
        margin-left: 10px;
    }

    .brand-logo-img {
        width: clamp(130px, 28vw, 170px);
        height: auto;
    }

    .header-cta {
        min-height: 36px;
        padding: 0 10px;
        font-size: 11px;
    }

    .admin-toggle {
        min-height: 36px;
        padding: 0 10px;
        font-size: 11px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .hero-section {
        padding: 24px 0 34px;
    }

    .hero-kicker {
        font-size: 11px;
    }

    .hero-content h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        padding: 14px 12px;
    }

    .hero-stat {
        align-items: flex-start;
    }

    .hero-stat strong {
        font-size: 18px;
    }

    .hero-stat span {
        font-size: 10px;
        line-height: 1.3;
        text-align: left;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-visual {
        min-height: 610px;
    }

    .photo-stack {
        max-width: 470px;
        height: 560px;
    }

    .photo-frame {
        width: 360px;
        height: 470px;
        padding: 8px 8px 40px;
        border-radius: 20px;
    }

    .photo-frame img {
        border-radius: 12px;
    }

    .photo-caption {
        font-size: 0.76rem;
        left: 12px;
        bottom: 8px;
    }

    .section-title h2 {
        font-size: clamp(1.9rem, 9vw, 2.5rem);
    }

    .videos-main-frame video {
        height: 430px;
    }

    .videos-side-top {
        align-items: flex-start;
    }

    .videos-side-highlight {
        align-items: flex-start;
    }

    .videos-side-card,
    .featured-story-content,
    .recipe-content,
    .experience-content,
    .premium-cta,
    .compact-premium-cta,
    .reto-program-left,
    .reto-program-right,
    .reto-info-block,
    .recipes-intro-box,
    .faq-card {
        padding: 16px 14px 18px;
    }

    .faq-card-top {
        grid-template-columns: 1fr auto;
    }

    .faq-number {
        display: none;
    }

    .faq-card-top h3 {
        font-size: 19px;
    }

    .featured-main-photo-wrap {
        aspect-ratio: 4 / 4.9;
    }
}

@media (max-width: 420px) {
    body {
        padding-top: 84px;
    }

    .main-header-container,
    .compact-main-header-container {
        min-height: 68px;
        gap: 6px;
        grid-template-columns: auto auto 1fr auto auto;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 15px;
    }

    .brand-logo-link,
    .compact-brand {
        margin-left: 8px;
    }

    .brand-logo-img {
        width: clamp(118px, 30vw, 158px);
    }

    .header-cta {
        padding: 0 9px;
        font-size: 10px;
    }

    .admin-toggle {
        padding: 0 9px;
        font-size: 10px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        padding: 14px 10px;
    }

    .hero-stat strong {
        font-size: 17px;
    }

    .hero-stat span {
        font-size: 10px;
    }

    .hero-visual {
        min-height: 520px;
    }

    .photo-stack {
        max-width: 390px;
        height: 470px;
    }

    .photo-frame {
        width: 290px;
        height: 390px;
    }

    .videos-main-frame {
        padding: 6px;
        border-radius: 20px;
    }

    .videos-main-frame video {
        height: 380px;
        border-radius: 14px;
    }

    .video-full-btn {
        width: 34px;
        height: 34px;
        top: 10px;
        right: 10px;
    }

    .videos-main-badge {
        top: 10px;
        left: 10px;
        min-height: 30px;
        padding: 0 10px;
        font-size: 10px;
    }
}