:root {
            --primary-red: #C8102E;
            --cream-warm: #FFF8F0;
            --white: #FFFFFF;
            --text-dark: #2D2D2D;
            --whatsapp-green: #25D366;
            --vichy-size: 40px;
            --scroll-progress: 0;
            --scroll-y: 0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Nunito', sans-serif;
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            width: calc(var(--scroll-progress) * 100%);
            background: linear-gradient(90deg, #ff385f 0%, var(--primary-red) 50%, #ffd9df 100%);
            z-index: 2000;
            box-shadow: 0 0 14px rgba(200, 16, 46, 0.45);
            transition: width 0.08s linear;
        }

        h1, h2, h3, .brand-font {
            font-family: 'Pacifico', cursive;
        }

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

        /* Vichy Pattern */
        .vichy-bg {
            background-color: var(--white);
            background-image: 
                linear-gradient(45deg, rgba(200, 16, 46, 0.1) 25%, transparent 25%, transparent 75%, rgba(200, 16, 46, 0.1) 75%, rgba(200, 16, 46, 0.1)),
                linear-gradient(45deg, rgba(200, 16, 46, 0.1) 25%, transparent 25%, transparent 75%, rgba(200, 16, 46, 0.1) 75%, rgba(200, 16, 46, 0.1));
            background-size: var(--vichy-size) var(--vichy-size);
            background-position: 0 0, calc(var(--vichy-size) / 2) calc(var(--vichy-size) / 2);
        }

        .vichy-header {
            background-color: var(--primary-red);
            background-image: 
                linear-gradient(90deg, rgba(255,255,255,.15) 50%, transparent 50%),
                linear-gradient(rgba(255,255,255,.15) 50%, transparent 50%);
            background-size: 20px 20px;
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(34px) scale(0.98);
            filter: blur(3px);
            transition: opacity 0.85s cubic-bezier(.2,.75,.3,1), transform 0.85s cubic-bezier(.2,.75,.3,1), filter 0.85s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.3s; }
        .stagger-3 { transition-delay: 0.5s; }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            min-height: 100svh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            color: var(--white);
            overflow: hidden;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                        url('../images/fondo.webp') center/cover no-repeat;
            z-index: -1;
            transform: translateY(calc(var(--scroll-y) * 0.28px)) scale(1.14);
            will-change: transform;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero-content > * {
            opacity: 0;
            transform: translateY(18px);
            animation: heroUp 0.85s ease forwards;
        }

        .hero-content > *:nth-child(1) { animation-delay: 0.08s; }
        .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
        .hero-content > *:nth-child(3) { animation-delay: 0.32s; }
        .hero-content > *:nth-child(4) { animation-delay: 0.44s; }
        .hero-content > *:nth-child(5) { animation-delay: 0.56s; }

        .logo-circle {
            width: 150px;
            height: 150px;
            background: var(--white);
            border: 4px solid var(--primary-red);
            border-radius: 50%;
            display: block;
            margin: 0 auto 1.5rem;
            padding: 6px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            object-fit: cover;
        }

        .footer-logo-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 3px solid rgba(255,255,255,0.9);
            object-fit: cover;
            margin: 0 auto 0.8rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
        }

        .hero h1 {
            font-family: 'Nunito', sans-serif;
            font-style: normal;
            font-size: 3.5rem;
            margin-bottom: 0.4rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.45);
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .cta-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }

        .btn::after {
            content: "";
            position: absolute;
            top: 0;
            left: -120%;
            width: 60%;
            height: 100%;
            transform: skewX(-20deg);
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
            transition: left 0.6s ease;
        }

        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .btn:hover::after {
            left: 140%;
        }

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

        .btn-secondary {
            background-color: var(--white);
            color: var(--primary-red);
        }

        /* Who We Are */
        .about {
            padding: 5rem 2rem;
            background-color: var(--cream-warm);
            text-align: center;
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 10px;
            background: var(--primary-red);
            opacity: 0.1;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 2rem;
        }

        .about-text {
            max-width: 700px;
            margin: 0 auto 3rem;
            font-size: 1.2rem;
        }

        .about-history {
            max-width: 860px;
            margin-bottom: 1.6rem;
        }

        .history-book-wrap {
            padding: 0.3rem 0.2rem;
            display: flex;
            justify-content: center;
        }

        .history-book {
            max-width: 820px;
            width: 100%;
            background: #fffdf4;
            border: 1.5px solid #d4b870;
            border-radius: 4px 14px 14px 4px;
            box-shadow:
                -6px 0 0 0 #c9a84c,
                -8px 0 8px rgba(0, 0, 0, 0.18),
                4px 4px 24px rgba(0, 0, 0, 0.13);
            position: relative;
            overflow: hidden;
        }

        .history-book-inner {
            background-image: repeating-linear-gradient(
                to bottom,
                transparent,
                transparent 31px,
                rgba(232, 213, 154, 0.35) 32px
            );
            padding: 2.1rem 1.7rem 2.1rem 2.4rem;
            position: relative;
        }

        .history-book-spine {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 6px;
            background: linear-gradient(to right, #b8922a, #c9a84c, #b8922a);
        }

        .history-book-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            position: relative;
        }

        .history-col-left {
            padding-right: 1.7rem;
            border-right: 1.5px solid rgba(212, 184, 112, 0.53);
        }

        .history-col-right {
            padding-left: 1.7rem;
        }

        .history-book-columns p {
            font-family: 'Lato', sans-serif;
            font-size: 0.95rem;
            line-height: 2;
            color: #3a2a10;
            margin-bottom: 1.1rem;
        }

        .history-book-columns p:last-child {
            margin-bottom: 0;
        }

        .history-corner-deco {
            position: absolute;
            width: 32px;
            height: 32px;
            border-color: #c9a84c;
            border-style: solid;
            opacity: 0.5;
        }

        .history-corner-tl {
            top: 12px;
            left: 18px;
            border-width: 2px 0 0 2px;
        }

        .history-corner-tr {
            top: 12px;
            right: 12px;
            border-width: 2px 2px 0 0;
        }

        .history-corner-bl {
            bottom: 12px;
            left: 18px;
            border-width: 0 0 2px 2px;
        }

        .history-corner-br {
            bottom: 12px;
            right: 12px;
            border-width: 0 2px 2px 0;
        }

        .history-page-number {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 0.8rem;
            color: #b8922a;
            margin-top: 1.2rem;
            letter-spacing: 2px;
        }

        .history-toggle-btn {
            display: none;
            margin: 0.8rem auto 1.5rem;
            border: 1px solid rgba(200, 16, 46, 0.3);
            background: #fff;
            color: var(--primary-red);
            border-radius: 999px;
            padding: 0.55rem 1rem;
            font-weight: 800;
            cursor: pointer;
        }

        .about-photo-wrap {
            max-width: 760px;
            margin: 0 auto;
            border-radius: 26px;
            overflow: hidden;
            border: 2px solid rgba(200, 16, 46, 0.2);
            box-shadow: 0 16px 34px rgba(90, 27, 27, 0.2);
            background: #fff;
        }

        .about-photo {
            width: 100%;
            height: auto;
            display: block;
        }

        .badges {
            display: flex;
            justify-content: center;
            gap: 0.9rem;
            flex-wrap: wrap;
        }

        .badge {
            background: linear-gradient(180deg, #ffffff 0%, #fff7f8 100%);
            padding: 0.65rem 1rem;
            border-radius: 999px;
            box-shadow: 0 8px 18px rgba(120, 38, 38, 0.12);
            border: 1px solid rgba(200, 16, 46, 0.16);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

        .badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 22px rgba(200, 16, 46, 0.18);
        }

        .badge-icon {
            font-size: 1rem;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #ffe3e8;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .badge span {
            font-weight: 800;
            color: var(--primary-red);
            font-size: 1rem;
            white-space: nowrap;
        }

        /* Menu Section */
        .menu {
            padding: 5rem 2rem;
        }

        .menu-tabs {
            max-width: 900px;
            margin: 0 auto 1rem;
            display: flex;
            justify-content: center;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

        .menu-tab-btn {
            border: 1px solid rgba(200, 16, 46, 0.35);
            background: #fff;
            color: var(--primary-red);
            border-radius: 999px;
            padding: 0.58rem 1.1rem;
            font-weight: 800;
            font-size: 0.95rem;
            cursor: pointer;
            transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }

        .menu-tab-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 14px rgba(200, 16, 46, 0.18);
        }

        .menu-tab-btn.active {
            background: var(--primary-red);
            color: var(--white);
            border-color: var(--primary-red);
        }

        .menu-pane {
            display: none;
        }

        .menu-pane.active {
            display: block;
        }

        .menu-highlight {
            max-width: 900px;
            margin: 0 auto 2rem;
            background: var(--white);
            border-radius: 26px 30px 28px 24px / 30px 24px 30px 26px;
            padding: 1rem;
            box-shadow: 0 10px 24px rgba(200, 16, 46, 0.12);
            border: 1px solid rgba(200, 16, 46, 0.15);
            display: grid;
            gap: 1rem;
            align-items: center;
        }

        .menu-highlight .menu-image-link {
            display: block;
            border-radius: 14px;
            overflow: hidden;
            background: #fff;
            border: 0;
            padding: 0;
            width: 100%;
            cursor: zoom-in;
        }

        .menu-media {
            display: grid;
            gap: 0.6rem;
            align-content: start;
        }

        .menu-highlight img {
            width: 100%;
            border-radius: 14px;
            height: auto;
            object-fit: contain;
            max-height: none;
            display: block;
        }

        .menu-highlight-text h3 {
            color: var(--primary-red);
            font-size: 1.6rem;
            margin-bottom: 0.4rem;
        }

        .menu-highlight-text p {
            margin-bottom: 0.8rem;
            font-size: 1.05rem;
        }

        .reposteria-copy {
            display: grid;
            gap: 0.6rem;
            margin-bottom: 0.9rem;
        }

        .reposteria-copy h4 {
            color: #6e0f20;
            font-size: 1.06rem;
            margin-top: 0.2rem;
        }

        .reposteria-list {
            margin: 0;
            padding-left: 1.1rem;
        }

        .reposteria-list li {
            margin-bottom: 0.2rem;
        }

        .reposteria-fillings-text {
            margin: 0;
            font-size: 1rem;
            line-height: 1.55;
        }

        .reposteria-preview {
            max-height: 560px;
            width: 100%;
            object-fit: cover;
            object-position: top;
        }

        .internal-order-note {
            margin-top: 0.9rem;
            padding: 0.65rem 0.8rem;
            border-radius: 10px;
            border: 1px solid rgba(200, 16, 46, 0.25);
            background: #fff3f5;
        }

        .menu-actions {
            display: flex;
            gap: 0.65rem;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
        }

        .menu-actions .btn {
            justify-content: center;
            padding: 0.5rem 1rem;
            font-size: 0.88rem;
            border-radius: 999px;
        }

        .menu-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.72);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.2rem;
            z-index: 3000;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.2s ease, visibility 0.2s ease;
        }

        .menu-modal.active {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .menu-modal img {
            width: min(1100px, 96vw);
            max-height: 92vh;
            border-radius: 12px;
            box-shadow: 0 22px 42px rgba(0, 0, 0, 0.45);
            object-fit: contain;
            background: #fff;
        }

        .menu-modal-close {
            position: absolute;
            top: 14px;
            right: 14px;
            border: 0;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            color: var(--primary-red);
            font-size: 1.8rem;
            line-height: 1;
            cursor: pointer;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
        }

        body.modal-open {
            overflow: hidden;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .menu-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            border: 1px solid rgba(200, 16, 46, 0.1);
        }

        .menu-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(200, 16, 46, 0.15);
        }

        .menu-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
            background-color: #f0f0f0;
        }

        .menu-info {
            padding: 1.5rem;
            text-align: center;
        }

        .menu-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--primary-red);
        }

        .menu-price {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--text-dark);
        }

        /* Event Services */
        .event-services {
            padding: 5rem 2rem;
            background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
        }

        .section-break {
            height: 88px;
            background:
                radial-gradient(circle at 50% 0, rgba(200, 16, 46, 0.18) 0, rgba(200, 16, 46, 0.02) 55%, transparent 78%),
                linear-gradient(180deg, #fff7f1 0%, #fff 100%);
            border-top: 1px solid rgba(200, 16, 46, 0.16);
            border-bottom: 1px solid rgba(200, 16, 46, 0.12);
        }

        .event-services-inner {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .event-services-intro {
            max-width: 860px;
            margin: 0 auto 2rem;
            font-size: 1.12rem;
        }

        .event-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.1rem;
            margin-bottom: 2rem;
        }

        .event-service-card {
            background: #fff;
            border: 2px solid rgba(200, 16, 46, 0.12);
            border-radius: 16px;
            padding: 1.2rem 1rem;
            text-align: left;
            box-shadow: 0 10px 18px rgba(0,0,0,0.06);
        }

        .event-service-card h3 {
            color: var(--primary-red);
            margin-bottom: 0.4rem;
            font-size: 1.3rem;
        }

        .event-service-card p {
            font-size: 1rem;
        }

        .event-media-block {
            margin-bottom: 2rem;
        }

        .event-media-block h3 {
            color: var(--primary-red);
            margin-bottom: 0.35rem;
            font-size: 1.45rem;
        }

        .event-media-block p {
            margin-bottom: 1rem;
        }

        .event-reels-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1rem;
        }

        .event-reel-card {
            background: #fff;
            border-radius: 14px;
            border: 1px solid rgba(200, 16, 46, 0.18);
            box-shadow: 0 8px 20px rgba(0,0,0,0.07);
            padding: 0.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .event-reel-card iframe {
            border: 0;
            width: 100%;
            height: 520px;
            border-radius: 10px;
            background: #f8f8f8;
        }

        .event-reel-card a {
            color: var(--primary-red);
            font-weight: 700;
            text-decoration: none;
        }

        .event-reel-card a:hover {
            text-decoration: underline;
        }

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

        /* How to Order + Map */
        .order-map {
            padding: 5rem 2rem;
            background-color: var(--cream-warm);
        }

        .order-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
        }

        .steps {
            list-style: none;
        }

        .step {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .step-num {
            width: 50px;
            height: 50px;
            background: var(--primary-red);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .step-text h4 {
            font-size: 1.25rem;
            margin-bottom: 0.25rem;
        }

        .map-wrapper {
            border-radius: 26px 30px 28px 24px / 30px 24px 30px 26px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 400px;
        }

        .map-box-title {
            margin-bottom: 0.8rem;
            color: var(--primary-red);
            font-size: 1.35rem;
            text-align: center;
            font-weight: 800;
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Footer */
        footer {
            background-color: #b90f2a;
            background-image:
                linear-gradient(45deg, rgba(255, 255, 255, 0.18) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.18) 75%, rgba(255, 255, 255, 0.18)),
                linear-gradient(45deg, rgba(255, 255, 255, 0.18) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.18) 75%, rgba(255, 255, 255, 0.18));
            background-size: 28px 28px;
            background-position: 0 0, 14px 14px;
            color: var(--white);
            padding: 4rem 2rem 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-content > div {
            background: rgba(0, 0, 0, 0.16);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 16px;
            padding: 1rem 1.1rem;
            backdrop-filter: blur(1.5px);
        }

        .footer-logo h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            text-shadow: 0 1px 2px rgba(0,0,0,0.35);
        }

        .footer-info p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.08rem;
            font-weight: 800;
            text-shadow: 0 1px 2px rgba(0,0,0,0.4);
        }

        .social-title {
            margin-top: 0.85rem;
            font-weight: 800;
            font-size: 1.08rem;
            text-shadow: 0 1px 2px rgba(0,0,0,0.4);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 0.7rem;
        }

        .social-links a {
            color: var(--white);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.14);
            transition: opacity 0.3s, background-color 0.3s;
        }

        .social-links a:hover {
            opacity: 0.8;
            background: rgba(255,255,255,0.26);
        }

        .social-links svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 2rem;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .copyright a {
            color: #fff;
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        /* Floating WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--whatsapp-green);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            z-index: 1000;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { transform: scale(1.1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        @keyframes heroUp {
            from {
                opacity: 0;
                transform: translateY(18px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .reveal,
            .hero-content > *,
            .btn::after,
            .whatsapp-float {
                animation: none !important;
                transition: none !important;
            }

            .reveal {
                opacity: 1;
                transform: none;
                filter: none;
            }

            .hero-overlay {
                transform: none;
            }

            .hero-content > * {
                opacity: 1;
                transform: none;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero-subtitle { font-size: 1.2rem; }
            .order-container { grid-template-columns: 1fr; }
            .hero-content { padding: 1rem; }
            .logo-circle { width: 120px; height: 120px; }
            .reposteria-preview { max-height: 420px; }
            .history-toggle-btn { display: inline-flex; }
            .history-book-wrap {
                max-height: 360px;
                overflow: hidden;
                position: relative;
                margin-bottom: 0.7rem;
            }

            .history-book-wrap::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 72px;
                background: linear-gradient(to bottom, rgba(255, 248, 240, 0), rgba(255, 248, 240, 1));
            }

            .history-book-wrap.expanded {
                max-height: none;
            }

            .history-book-wrap.expanded::after {
                display: none;
            }

            .history-book-inner {
                padding: 1.6rem 1rem 1.6rem 1.5rem;
            }

            .history-book-columns {
                grid-template-columns: 1fr;
                gap: 0.8rem;
            }

            .history-col-left {
                padding-right: 0;
                border-right: 0;
            }

            .history-col-right {
                padding-left: 0;
            }
            .menu-actions .btn {
                width: auto;
            }

            .menu-actions {
                max-width: 100%;
            }

            .event-reel-card iframe {
                height: 420px;
            }

            .section-break {
                height: 66px;
            }
        }

        @media (min-width: 900px) {
            .menu-highlight {
                grid-template-columns: 1.1fr 1fr;
                padding: 1.2rem;
            }
        }
