/* ==========================================================================
   BRÚJULA - ESTILOS GLOBALES
   ========================================================================== */

/* 1. FUENTES LOCALES */
@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/playfair-display.woff2') format('woff2-variations');
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/playfair-display-italic.woff2') format('woff2-variations');
    font-weight: 400 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('fonts/plus-jakarta-sans.woff2') format('woff2-variations');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

/* 2. VARIABLES */
:root {
    /* Colores Refinados y Pasteles (Efecto Lujo/Premium) */
    --brand-900: #1C1C1C;
    --brand-800: #2D2D2D;
    --brand-gold: #D4AF37;
    --brand-gold-dark: #B8860B;
    --brand-gold-light: #F4E4BC;
    --brand-champagne: #F7E7CE;
    --brand-cream: #FFFDF9;
    --brand-blush: #FAF0ED;
    --brand-sage: #F1F4F0;
    --brand-teal-silk: #79A7AB;
    --brand-rose: #F9EBEA;

    --accent-soft: #E8D5C4;
    --accent-silk: #F2EBE3;

    --text-main: #2A2A2A;
    --text-muted: #5F5F5F;
    --white: #FFFFFF;

    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --container-max-w: 1280px;
    --container-narrow-max-w: 896px;
    --container-padding: 24px;
}

/* 3. RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--brand-cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

ul {
    list-style: none;
}

strong {
    font-weight: 700;
}

em {
    font-family: var(--font-serif);
    font-style: italic;
}

p {
    font-size: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}

/* 4. COMPONENTES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    letter-spacing: 1px;
}

.btn--outline-gold {
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold-dark);
    padding: 10px 28px;
    font-size: 13px;
    text-transform: uppercase;
}

.btn--outline-gold:hover {
    background-color: var(--brand-gold);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn--primary {
    background-color: var(--brand-gold-dark);
    color: var(--white);
    padding: 18px 40px;
    font-size: 22px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(184, 134, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(184, 134, 11, 0);
    }
}

.btn--primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: none;
}

.btn--dark {
    background-color: var(--brand-900);
    color: var(--white);
    padding: 18px 32px;
    font-size: 16px;
    width: 100%;
}

.btn--dark:hover {
    background-color: var(--brand-800);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal--active {
    visibility: visible;
    opacity: 1;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(28, 28, 28, 0.6);
    backdrop-filter: blur(15px);
}

.modal__content {
    position: relative;
    background-color: var(--brand-cream);
    border-radius: 32px;
    padding: 48px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    transform: translateY(40px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.modal--active .modal__content {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--brand-900);
    opacity: 0.5;
    transition: opacity 0.3s;
}

.modal__close:hover {
    opacity: 1;
}

.modal__icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px auto;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.modal__icon {
    color: var(--brand-gold);
}

.modal__title {
    font-family: var(--font-serif);
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 700;
    text-align: center;
    color: var(--brand-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.modal__text {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 18px;
}

/* 5. SECCIONES */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 16px 0;
}

.header--scrolled {
    background-color: rgba(255, 253, 249, 0.9);
    backdrop-filter: blur(15px);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header--scrolled .header__logo {
    color: var(--brand-900);
}

.header__container {
    max-width: var(--container-max-w);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-family: var(--font-serif);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--white);
    font-weight: 600;
}

.header__logo-highlight {
    color: var(--brand-gold);
}

.header__action {
    display: none;
}

@media (min-width: 768px) {
    .header__action {
        display: block;
    }
}

.hero {
    position: relative;
    min-height: 90dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 64px 0;
    background-image: url('images/edits/hero-desayuno_numerologico.avif');
    background-size: cover;
    background-position: center;
    content-visibility: auto;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(60, 90, 100, 0.85) 0%,
            rgba(40, 60, 70, 0.95) 100%);
    z-index: 0;
}

.hero__container {
    position: relative;
    z-index: 10;
    max-width: var(--container-narrow-max-w);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 9999px;
    border: 1px solid var(--brand-gold);
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--brand-gold-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(48px, 12vw, 110px);
    color: var(--white);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero__subtitle {
    font-size: clamp(20px, 4vw, 26px);
    color: var(--white);
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 720px;
    margin-inline: auto;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero__subtitle-highlight {
    color: var(--brand-gold);
}

.hero__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    background-color: #fafafa3d;
    border-radius: 12px;
    padding: 24px 20px;
}

@media (min-width: 640px) {
    .hero__info {
        flex-direction: row;
        font-size: 17px;
    }
}

.hero__info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero__info-icon {
    color: var(--brand-gold);
}

.hero__info-separator {
    display: none;
    color: rgba(197, 168, 128, 0.5);
}

@media (min-width: 640px) {
    .hero__info-separator {
        display: block;
    }
}

.problem {
    position: relative;
    padding: clamp(48px, 8vw, 80px) 0;
    background-image: url('images/edits/hero-desayuno_numerologico.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    content-visibility: auto;
}

.problem__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 253, 249, 0.938);

    z-index: 0;
}

.problem__container {
    position: relative;
    z-index: 10;
    max-width: var(--container-narrow-max-w);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.problem__title {
    font-family: var(--font-serif);
    font-size: clamp(30px, 6vw, 48px);
    color: var(--brand-900);
    line-height: 1.2;
    margin-bottom: 32px;
}

.problem__divider {
    width: 96px;
    height: 4px;
    background-color: var(--brand-gold);
    margin: 0 auto 32px auto;
}

.problem__text {
    font-size: 20px;
    color: #374151;
    margin-bottom: 24px;
}

.problem__text-highlight {
    font-family: var(--font-serif);
    color: var(--brand-gold);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
}

.problem__quote-box {
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.2);
    display: inline-block;
    margin-top: 16px;
}

.problem__quote-text {
    color: var(--brand-900);
    font-weight: 600;
    font-style: italic;
}

.value {
    position: relative;
    padding: clamp(40px, 7vw, 72px) 0;
    color: var(--white);
    background-image: url('images/edits/hero-desayuno_numerologico.avif');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    content-visibility: auto;
}

.value__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(255, 253, 249, 0.96);
    backdrop-filter: blur(4px);
    z-index: 0;
}

.value__container {
    position: relative;
    z-index: 20;
    max-width: var(--container-max-w);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 8vw, 64px);
    align-items: center;
}

@media (min-width: 768px) {
    .value__container {
        grid-template-columns: 1fr 1fr;
    }
}

.value__content {
    color: var(--brand-900);
    text-align: center;
}

@media (min-width: 768px) {
    .value__content {
        text-align: left;
    }
}

.value__tag {
    color: var(--brand-gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.value__title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--brand-900);
}

.value__text {
    color: var(--text-muted);
    font-size: 20px;
    margin-bottom: 24px;
}

.value__text-highlight {
    color: var(--brand-gold-dark);
    font-weight: 700;
}

.value__image-wrapper {
    position: relative;
}

.value__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 400px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    transition: all 0.7s ease;
}

@media (min-width: 768px) {
    .value__image {
        aspect-ratio: 4 / 5;
        max-height: 600px;
    }
}

.value__image:hover {
    opacity: 1;
    transform: scale(1.02);
}

.value__card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--brand-gold);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 280px;
    display: none;
    z-index: 30;
}

@media (min-width: 1024px) {
    .value__card {
        display: block;
        bottom: -32px;
        left: -32px;
        max-width: 320px;
    }
}

.value__card-title {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--brand-900);
    font-weight: 700;
    margin-bottom: 8px;
}

.value__card-text {
    color: rgba(26, 28, 32, 0.9);
    font-size: 16px;
    font-weight: 500;
}

.networking {
    padding: clamp(40px, 6vw, 64px) 0;
    background-color: var(--brand-cream);
    text-align: center;
    content-visibility: auto;
}

.networking__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.networking__icon {
    color: var(--brand-gold);
    margin-bottom: 24px;
    display: inline-block;
}

.networking__title {
    font-family: var(--font-serif);
    font-size: clamp(30px, 5vw, 40px);
    color: var(--brand-900);
    font-weight: 700;
    margin-bottom: 24px;
}

.networking__text {
    font-size: 20px;
    color: var(--text-muted);
}

.gallery {
    padding: clamp(48px, 8vw, 80px) 0;
    background-color: var(--white);
    content-visibility: auto;
}

.gallery__container {
    max-width: var(--container-max-w);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.gallery__header {
    text-align: center;
    margin-bottom: 64px;
}

.gallery__tag {
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.gallery__title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 6vw, 48px);
    color: var(--brand-900);
    font-weight: 700;
    margin-bottom: 24px;
}

.gallery__desc {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 670px;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery__item {
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

@media (min-width: 768px) {
    .gallery__item--offset {
        margin-top: -32px;
    }
}

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery__item:hover .gallery__image {
    transform: scale(1.05);
}

.breakfast__image,
.breakfast__image_abajo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.breakfast__image {
    object-position: center;
}

.breakfast__image_abajo {
    object-position: bottom;
}

.includes {
    position: relative;
    padding: clamp(48px, 8vw, 80px) 0;
    border-top: 1px solid rgba(232, 212, 208, 0.2);
    background-image: url('https://images.unsplash.com/photo-1505934333218-8fe21ff8ab6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    content-visibility: auto;
}

.includes__overlay {
    position: absolute;
    inset: 0;
    background-color: var(--brand-blush);
    opacity: 0.98;
    z-index: 0;
}

.includes__container {
    position: relative;
    z-index: 10;
    max-width: var(--container-max-w);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.includes__header {
    text-align: center;
    margin-bottom: 64px;
}

.includes__badge {
    background-color: var(--brand-900);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 16px;
}

.includes__title {
    font-family: var(--font-serif);
    font-size: clamp(30px, 5vw, 48px);
    color: var(--brand-900);
    font-weight: 700;
    margin-top: 16px;
}

.includes__desc {
    color: #374151;
    font-size: 20px;
    margin-top: 16px;
}

.includes__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 640px) {
    .includes__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .includes__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.includes__card {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(197, 168, 128, 0.2);
    transition: box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 640px) {
    .includes__card {
        text-align: left;
    }
}

.includes__card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.includes__icon-wrapper {
    width: 80px;
    height: AUTO;
    aspect-ratio: 1/1;
    border-radius: 10PX;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    object-fit: cover;
    object-position: center;
}


.includes__card-title {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--brand-900);
    font-weight: 700;
    margin-bottom: 12px;
}

.includes__card-text {
    color: var(--text-muted);
    font-size: 16px;
}

.target {
    position: relative;
    padding: clamp(48px, 8vw, 80px) 0;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    content-visibility: auto;
}

.target__overlay {
    position: absolute;
    inset: 0;
    background-color: var(--brand-cream);
    opacity: 0.95;
    z-index: 0;
}

.target__container {
    position: relative;
    z-index: 10;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.target__title {
    font-family: var(--font-serif);
    font-size: clamp(30px, 5vw, 48px);
    color: var(--brand-900);
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
}

.target__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .target__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.target__card {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 32px;
    border-radius: 24px;
    border-top: 4px solid transparent;
    text-align: center;
}

@media (min-width: 768px) {
    .target__card {
        text-align: left;
    }
}

@media (min-width: 768px) {
    .target__card {
        padding: 40px;
    }
}

.target__card--yes {
    border-top-color: var(--brand-sage);
    box-shadow: 0 20px 25px -5px rgba(227, 231, 224, 0.5);
}

.target__card--no {
    border-top-color: var(--brand-rose);
    box-shadow: 0 20px 25px -5px rgba(232, 212, 208, 0.5);
}

.target__card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}

@media (min-width: 768px) {
    .target__card-header {
        justify-content: flex-start;
    }
}

.target__icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.target__card--yes .target__icon-wrapper {
    background-color: var(--brand-sage);
    color: var(--brand-800);
}

.target__card--no .target__icon-wrapper {
    background-color: var(--brand-rose);
    color: var(--brand-900);
}

.target__card-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-900);
}

.target__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.target__list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    justify-content: center;
}

@media (min-width: 768px) {
    .target__list-item {
        justify-content: flex-start;
    }
}

.target__list-icon {
    color: var(--brand-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.target__list-text {
    color: #374151;
    font-size: 18px;
}

.cta {
    position: relative;
    padding: 96px 0;
    background-color: var(--brand-blush);
    content-visibility: auto;
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1557682250-33bd709cbe85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    mix-blend-mode: multiply;
}

.cta__container {
    position: relative;
    z-index: 10;
    max-width: var(--container-narrow-max-w);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.cta__card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .cta__card {
        padding: 48px;
    }
}

.cta__title {
    font-family: var(--font-serif);
    font-size: clamp(30px, 5vw, 48px);
    color: var(--brand-900);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta__subtitle {
    font-size: clamp(18px, 4vw, 24px);
    color: var(--brand-800);
    font-weight: 500;
    margin-bottom: 40px;
}

.cta__logistics {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
}

.cta__price {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta__price-value {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 64px);
    color: var(--brand-900);
    font-weight: 700;
    line-height: 1;
}

.cta__price-label {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

@media (min-width: 640px) {
    .cta__logistics {
        grid-template-columns: 1fr 1fr;
    }
}

.cta__col-title {
    font-weight: 700;
    color: var(--brand-900);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.cta__col-title--hidden {
    display: none;
}

@media (min-width: 640px) {
    .cta__col-title--hidden {
        display: block;
        color: transparent;
        user-select: none;
    }
}

.cta__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta__list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cta__list-icon {
    color: var(--brand-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.cta__list-subtext {
    font-size: 14px;
    color: var(--text-muted);
}

.cta__note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 24px;
    font-style: italic;
}

.footer {
    background-color: var(--brand-cream);
    padding: 64px 0 32px;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
}

.footer__container {
    max-width: var(--container-max-w);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
}

.footer__logo {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--brand-900);
    margin-bottom: 16px;
    font-weight: 700;
}

.footer__logo-highlight {
    color: var(--brand-gold);
}

.footer__tagline {
    color: var(--text-muted);
    font-size: 16px;

}

.footer__socials {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.footer__social-link {
    color: var(--brand-900);
    transition: color 0.3s ease;
}

.footer__social-link:hover {
    color: var(--brand-gold);
}

.footer__copyright {
    font-size: 14px;
    color: #9ca3af;
}

/* 6. BREAKFAST CAROUSEL */
.breakfast {
    padding: clamp(64px, 10vw, 96px) 0;
    background-color: var(--brand-sage);
    overflow: hidden;
    content-visibility: auto;
}

.breakfast__container {
    max-width: var(--container-max-w);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.breakfast__header {
    text-align: center;
    margin-bottom: clamp(32px, 6vw, 64px);
}

.breakfast__title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--brand-900);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.breakfast__desc {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.breakfast__carousel-wrapper {
    position: relative;
    margin: 0 calc(var(--container-padding) * -1);
    padding: 0 var(--container-padding);
}

.breakfast__carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 24px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-gold) transparent;
    -ms-overflow-style: auto;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.breakfast__carousel:active {
    cursor: grabbing;
}

.breakfast__carousel::-webkit-scrollbar {
    height: 6px;
    display: block;
}

.breakfast__carousel::-webkit-scrollbar-track {
    background: transparent;
}

.breakfast__carousel::-webkit-scrollbar-thumb {
    background-color: var(--brand-gold);
    border-radius: 10px;
}

.breakfast__carousel.active {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.breakfast__item {
    flex: 0 0 85%;
    height: 380px; /* Force uniform height for all items */
    scroll-snap-align: center;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    background-color: var(--white);
}

@media (min-width: 768px) {
    .breakfast__item {
        flex: 0 0 450px;
        height: 450px;
    }
}

@media (min-width: 1024px) {
    .breakfast__item {
        flex: 0 0 500px;
        height: 450px;
    }
}


.breakfast__item:hover .breakfast__image {
    transform: scale(1.05);
}

.breakfast__caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    color: var(--brand-900);
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
}

.breakfast__item:hover .breakfast__caption {
    opacity: 1;
    transform: translateY(0);
}

.breakfast__nav {
    display: none;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

@media (min-width: 1024px) {
    .breakfast__nav {
        display: flex;
    }
}

.breakfast__nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: transparent;
}

.breakfast__nav-btn:hover {
    background-color: var(--brand-gold);
    color: var(--white);
    transform: scale(1.1);
}

.breakfast__nav-btn:active {
    transform: scale(0.95);
}

.breakfast__hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: var(--brand-gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 1024px) {
    .breakfast__hint {
        display: none;
    }
}

/* Sticky Mobile Button Styles */
.mobile-sticky-btn {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 20px;
    right: 20px;
    background-color: var(--brand-gold-dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 9999px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(100px);
    opacity: 0;
    text-decoration: none;
}

.mobile-sticky-btn__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.mobile-sticky-btn__main {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mobile-sticky-btn__info {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 500;
}

.mobile-sticky-btn--visible {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 767px) {
    .mobile-sticky-btn {
        display: flex;
    }
}