/* ========================= RESET ========================= */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        /* ========================= VARIABLES (Brand Manual) ========================= */
        :root {
            /* Brand palette */
            --fuerza:  #4F4A2B;
            --luz:     #F2EDD9;
            --honesta: #D3C597;
            --origen:  #BFB299;
            --natural: #DDDABF;

            /* Usage */
            --bg:        var(--luz);
            --bg-dark:   var(--fuerza);
            --text:      var(--fuerza);
            --text-soft: #5a5535;
            --text-muted: #6b6440;
            --accent:    var(--honesta);
            --border:    rgba(79, 74, 43, 0.15);

            /* Type */
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-mono:    'Chivo Mono', 'Courier New', monospace;

            /* Layout */
            --max: 760px;
            --radius: 2px;
        }

        /* ========================= BASE ========================= */
        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-mono);
            font-weight: 300;
            background: var(--bg);
            color: var(--text);
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* ========================= PRODUCT REVEAL ========================= */
        .product-reveal {
            position: relative;
            z-index: 1;
            padding: 100px 40px 120px;
            overflow: hidden;
            background: var(--luz);
        }

        /* Giant ghost text watermark */
        .product-reveal__bg-text {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: clamp(140px, 20vw, 300px);
            font-weight: 300;
            letter-spacing: -0.04em;
            color: var(--fuerza);
            opacity: 0.03;
            pointer-events: none;
            user-select: none;
            white-space: nowrap;
            line-height: 1;
        }

        .product-reveal__inner {
            position: relative;
            z-index: 2;
            max-width: 1080px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
        }

        /* ── Left column (text) ── */
        .product-reveal__left {
            display: flex;
            flex-direction: column;
            /* order: text second on desktop */
            order: 2;
        }

        .product-reveal__overline {
            font-family: var(--font-mono);
            font-size: 10px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--fuerza);
            opacity: 0;
            margin-bottom: 18px;
            animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
        }

        .product-reveal__name {
            font-family: var(--font-display);
            font-size: clamp(68px, 9vw, 120px);
            font-weight: 300;
            letter-spacing: -0.02em;
            line-height: 0.88;
            color: var(--fuerza);
            margin-bottom: 20px;
            opacity: 0;
            animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
        }

        .product-reveal__tagline {
            font-family: var(--font-display);
            font-size: clamp(20px, 2.4vw, 28px);
            font-weight: 300;
            font-style: italic;
            line-height: 1.3;
            color: var(--fuerza);
            margin-bottom: 24px;
            opacity: 0;
            animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.22s forwards;
        }

        .product-reveal__desc {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 300;
            line-height: 1.9;
            color: var(--text-soft);
            margin-bottom: 40px;
            opacity: 0;
            animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
        }

        .product-reveal__specs {
            display: flex;
            flex-direction: column;
            border-top: 1px solid var(--border);
            margin-bottom: 40px;
            opacity: 0;
            animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.38s forwards;
        }

        .product-spec {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            padding: 13px 0;
            border-bottom: 1px solid var(--border);
            gap: 16px;
        }

        .product-spec__label {
            font-family: var(--font-mono);
            font-size: 10px;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--fuerza);
            opacity: 0.45;
            flex-shrink: 0;
        }

        .product-spec__val {
            font-family: var(--font-mono);
            font-size: 12px;
            font-weight: 300;
            color: var(--fuerza);
            text-align: right;
        }

        .product-reveal__cta {
            display: inline-block;
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--fuerza);
            text-decoration: none;
            border-bottom: 1px solid var(--fuerza);
            padding-bottom: 3px;
            transition: opacity 0.2s;
            align-self: flex-start;
            opacity: 0;
            animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.46s forwards;
        }

        .product-reveal__cta:hover { opacity: 0.5; }

        /* ── Right column / image ── */
        .product-reveal__right {
            display: flex;
            justify-content: center;
            align-items: center;
            order: 1; /* image first on desktop */
        }

        .product-reveal__frame {
            position: relative;
            width: 100%;
            /* Lifestyle photo is ~4:5 portrait */
            aspect-ratio: 4 / 5;
            border-radius: 3px;
            overflow: hidden;
            opacity: 0;
            animation: product-in 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
        }

        @keyframes product-in {
            from { opacity: 0; transform: translateY(28px) scale(0.97); }
            to   { opacity: 1; transform: translateY(0) scale(1); }
        }

        /* Warm glow overlay on image */
        .product-reveal__glow {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: radial-gradient(
                ellipse at 50% 80%,
                rgba(211, 197, 151, 0.18) 0%,
                transparent 65%
            );
            pointer-events: none;
        }

        .product-reveal__img {
            position: relative;
            z-index: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
            filter: contrast(1.03) saturate(1.05);
            transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .product-reveal__frame:hover .product-reveal__img {
            transform: scale(1.025);
        }

        /* Rotating badge */
        .product-reveal__badge {
            position: absolute;
            top: 16px;
            right: 16px;
            z-index: 3;
            width: 76px;
            height: 76px;
            border-radius: 50%;
            background: var(--fuerza);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: spin-slow 22s linear infinite;
        }

        @keyframes spin-slow {
            from { transform: rotate(0deg); }
            to   { transform: rotate(360deg); }
        }

        .product-reveal__badge-text {
            font-family: var(--font-mono);
            font-size: 8.5px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--luz);
            text-align: center;
            line-height: 1.4;
            animation: spin-slow 22s linear infinite reverse;
        }

        /* ── Responsive: tablet ── */
        @media (max-width: 900px) {
            .product-reveal { padding: 80px 32px 96px; }
            .product-reveal__inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            /* On tablet/mobile: image top, text below */
            .product-reveal__right { order: 1; }
            .product-reveal__left  { order: 2; }
            .product-reveal__frame {
                aspect-ratio: 4 / 3; /* wider crop on tablet — shows table scene better */
                max-width: 100%;
            }
            .product-reveal__img { object-position: center 30%; }
            .product-reveal__name { font-size: clamp(60px, 14vw, 88px); }
            .product-reveal__tagline { font-size: clamp(18px, 4vw, 24px); }
        }

        /* ── Responsive: mobile ── */
        @media (max-width: 480px) {
            .product-reveal { padding: 64px 20px 80px; }
            .product-reveal__frame {
                aspect-ratio: 1 / 1; /* square crop on mobile — jar + cup perfectly framed */
                border-radius: 2px;
            }
            .product-reveal__img { object-position: center 25%; }
            .product-reveal__badge { width: 60px; height: 60px; top: 12px; right: 12px; }
            .product-reveal__badge-text { font-size: 7.5px; }
            .product-reveal__name { font-size: clamp(52px, 14vw, 72px); margin-bottom: 14px; }
            .product-reveal__tagline { font-size: 19px; margin-bottom: 18px; }
            .product-reveal__desc { font-size: 13px; margin-bottom: 28px; }
            .product-spec { padding: 11px 0; }
            .product-spec__val { font-size: 11px; }
        }

        /* ========================= GRAIN TEXTURE ========================= */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.025;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-size: 200px 200px;
        }

        /* ========================= NAV ========================= */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 50;
            height: 68px;
            padding: 0 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--luz);
            border-bottom: 1px solid var(--border);
            transition: background 0.3s, border-color 0.3s;
        }

        .nav.nav--dark {
            background: var(--fuerza);
            border-bottom-color: rgba(216, 196, 145, 0.15);
        }

        .nav-logo {
            width: 140px;
            display: block;
            transition: opacity 0.2s;
        }

        .nav-logo:hover { opacity: 0.8; }

        .nav-hamburger {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 36px;
            height: 36px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            flex-shrink: 0;
        }

        .nav-hamburger span {
            display: block;
            width: 22px;
            height: 1.5px;
            background: var(--fuerza);
            border-radius: 1px;
            transition: background 0.3s;
        }

        .nav--dark .nav-hamburger span {
            background: #d8c491;
        }

        /* ========================= HERO ========================= */
        .hero {
            position: relative;
            z-index: 1;
            min-height: 100vh;
            min-height: 100dvh;
            display: grid;
            place-items: center;
            padding: 68px 40px 80px;
        }

        .hero-inner {
            width: 100%;
            max-width: var(--max);
        }

        .hero-label {
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--fuerza);
            opacity: 0.55;
            margin-bottom: 32px;
            opacity: 0;
            animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(44px, 7vw, 80px);
            font-weight: 300;
            line-height: 1.02;
            letter-spacing: -0.01em;
            color: var(--fuerza);
            margin-bottom: 32px;
            opacity: 0;
            animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
        }

        .hero-title em {
            font-style: italic;
            font-weight: 300;
        }

        .hero-body {
            font-family: var(--font-mono);
            font-size: 15px;
            font-weight: 300;
            line-height: 1.75;
            color: var(--text-soft);
            max-width: 520px;
            margin-bottom: 48px;
            opacity: 0;
            animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
            white-space: normal;  /* ← AÑADIR ESTO */
            word-wrap: break-word; /* ← AÑADIR ESTO */
        }

        /* ========================= FORM ========================= */
        .form-wrap {
            opacity: 0;
            animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
        }

        .form-row {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 540px;
            margin-bottom: 14px;
        }

        .form-input {
            width: 100%;
            height: 52px;
            background: transparent;
            border: 1px solid var(--fuerza);
            border-radius: var(--radius);
            padding: 0 20px;
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 300;
            color: var(--fuerza);
            outline: none;
            transition: border-color 0.2s, background 0.2s;
        }

        .form-input::placeholder { color: var(--text-muted); }
        .form-input:focus {
            background: rgba(79, 74, 43, 0.04);
            border-color: var(--fuerza);
        }
        .form-input.error { border-color: #b04040; }

        .form-btn {
            height: 52px;
            background: var(--fuerza);
            color: var(--luz);
            border: 1px solid var(--fuerza);
            border-radius: var(--radius);
            padding: 0 28px;
            font-family: var(--font-mono);
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.2s, color 0.2s;
        }

        .form-btn:hover {
            background: transparent;
            color: var(--fuerza);
        }

        .form-privacy {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 11px;
            color: var(--text-muted);
            line-height: 1.5;
            max-width: 540px;
            margin-bottom: 8px;
        }

        .form-privacy input[type="checkbox"] {
            margin-top: 2px;
            accent-color: var(--fuerza);
            flex-shrink: 0;
            cursor: pointer;
        }

        .form-privacy a {
            color: var(--text-soft);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        .form-error {
            font-size: 11px;
            color: #b04040;
            min-height: 16px;
            margin-top: 2px;
        }

        .form-micro {
            font-size: 12px;
            letter-spacing: 0.06em;
            color: var(--text-soft);
            margin-top: 4px;
        }

        .hero-scroll {
            display: inline-block;
            margin-top: 40px;
            font-size: 12px;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--fuerza);
            opacity: 0.6;
            text-decoration: none;
            border-bottom: 1px solid rgba(79,74,43,0.3);
            padding-bottom: 2px;
            transition: opacity 0.2s;
            opacity: 0;
            animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
        }

        .hero-scroll:hover { opacity: 1; }

        /* ========================= DIVIDER ========================= */
        .divider {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 1px;
            background: var(--border);
            margin: 0;
        }

        /* ========================= SECTIONS ========================= */
        .section {
            position: relative;
            z-index: 1;
            padding: 100px 40px;
        }

        .section-inner {
            width: 100%;
            max-width: var(--max);
            margin: 0 auto;
        }

        .section-label {
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--fuerza);
            opacity: 0.55;
            margin-bottom: 24px;
        }

        .section-label--natural {
            color: var(--natural);
            opacity: 0.85;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 300;
            line-height: 1.1;
            color: var(--fuerza);
            margin-bottom: 24px;
        }

        .section-title em {
            font-style: italic;
        }

        .section-body {
            font-family: var(--font-mono);
            font-size: 14px;
            font-weight: 300;
            line-height: 1.8;
            color: var(--text-soft);
            max-width: 560px;
        }

        /* ========================= INGREDIENTS ========================= */
        .ingredients-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            margin-top: 40px;
            border-top: 1px solid var(--border);
        }

        .ingredient-row {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            padding: 18px 0;
            border-bottom: 1px solid var(--border);
            gap: 16px;
        }

        .ingredient-name {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 400;
            color: var(--fuerza);
        }

        .ingredient-note {
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--text-soft);
            text-align: right;
            flex-shrink: 0;
        }

        .ingredients-fine {
            margin-top: 16px;
            font-size: 12px;
            letter-spacing: 0.04em;
            color: var(--text-soft);
        }

        /* ========================= WHY KOE ========================= */
        .values-list {
            margin-top: 40px;
            display: flex;
            flex-direction: column;
            gap: 0;
            border-top: 1px solid var(--border);
        }

        .value-row {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
        }

        .value-mark {
            font-family: var(--font-mono);
            font-size: 14px;
            color: var(--fuerza);
            opacity: 0.5;
            padding-top: 2px;
            flex-shrink: 0;
            width: 24px;
        }

        .value-text {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 300;
            line-height: 1.6;
            color: var(--text-soft);
        }

        /* ========================= ACCENT SECTION ========================= */
        .section--dark {
            background: var(--fuerza);
            padding: 120px 40px;
            text-align: center;
        }

        .section--natural {
            background: #4F4A2E;
            padding: 120px 40px;
        }

        .section--natural .section-label { 
            color: var(--luz); 
            opacity: 0.75; 
        }

        .section--natural .section-title {
            color: var(--luz);
        }

        .section--natural .section-body {
            color: var(--luz);
            opacity: 0.85;
        }

        .section--green {
            background: var(--fuerza);
            padding: 120px 40px;
        }

        .section--dark .section-label { color: #d8c491; opacity: 0.65; }

        .section--green .section-label { 
            color: var(--natural); 
            opacity: 0.75; 
        }

        .section--dark .section-title {
            color: #d8c491;
            font-size: clamp(36px, 5vw, 64px);
        }

        .section--green .section-title {
            color: var(--natural);
            font-size: clamp(36px, 5vw, 64px);
        }

        .section--dark .section-body { color: rgba(216, 196, 145, 0.55); margin: 0 auto; }

        .section--green .section-body { 
            color: rgba(221, 218, 191, 0.65); 
        }

        /* ========================= SECOND CTA ========================= */
        .section--cta {
            background: var(--natural);
        }

        .section--cta .section-title { font-size: clamp(26px, 3.5vw, 40px); }

        /* ========================= FOOTER ========================= */
        .footer {
            position: relative;
            z-index: 1;
            background: var(--fuerza);
            padding: 72px 40px 56px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 32px;
            text-align: center;
        }

        .footer-logo { width: 200px; opacity: 0.9; }

        .footer-links {
            display: flex;
            gap: 32px;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-link {
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--luz);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-link:hover { color: rgba(216, 196, 145, 1); }

        .footer-copy {
            font-family: var(--font-mono);
            font-size: 11px;
            letter-spacing: 0.06em;
            color: var(--luz);
        }

        /* ========================= MODAL ========================= */
        .modal {
            position: fixed;
            inset: 0;
            z-index: 200;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .modal.active { display: flex; }

        .modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(79, 74, 43, 0.85);
            backdrop-filter: blur(6px);
            animation: fadeIn 0.3s;
        }

        .modal-panel {
            position: relative;
            width: 100%;
            max-width: 560px;
            background: var(--luz);
            border: 1px solid var(--border);
            padding: 56px 48px;
            animation: scaleIn 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
            overflow-y: auto;
            max-height: 90vh;
        }

        .modal-close {
            position: absolute;
            top: 20px; right: 20px;
            background: transparent;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            font-family: var(--font-mono);
            font-size: 18px;
            line-height: 1;
            transition: color 0.2s;
        }

        .modal-close:hover { color: var(--text); }

        .modal-label {
            font-family: var(--font-mono);
            font-size: 10px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .modal-title {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 300;
            color: var(--fuerza);
            margin-bottom: 20px;
        }

        .modal-text {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 300;
            line-height: 1.8;
            color: var(--text-soft);
            margin-bottom: 36px;
        }

        .modal-contacts {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .modal-contact-item {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .modal-contact-icon {
            color: var(--text-muted);
            flex-shrink: 0;
        }

        .modal-contact-text {
            font-family: var(--font-mono);
            font-size: 13px;
            font-weight: 300;
            color: var(--text-soft);
        }

        .modal-contact-link {
            color: var(--fuerza);
            text-decoration: underline;
            text-underline-offset: 2px;
        }

        /* ========================= ANIMATIONS ========================= */
        @keyframes rise {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; } to { opacity: 1; }
        }

        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.97); }
            to   { opacity: 1; transform: scale(1); }
        }

        /* Scroll-triggered reveals */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========================= RESPONSIVE ========================= */

        /* Tablet landscape + desktop: form en fila */
        @media (min-width: 600px) {
            .form-row { flex-direction: row; }
            .form-input { flex: 1; }
        }

        /* Tablet portrait (768px) */
        @media (max-width: 768px) {
            .hero { padding: 68px 32px 72px; }
            .section { padding: 80px 32px; }
            .section--dark { padding: 96px 32px; }
            .section--cta { padding: 80px 32px; }
            .footer { padding: 40px 32px; }

            .ingredient-row {
                flex-direction: column;
                gap: 4px;
            }
            .ingredient-note { text-align: left; }
        }

        /* iPhone y móvil (max 480px) */
        @media (max-width: 480px) {
            .nav { padding: 0 20px; height: 60px; }
            .nav-logo { width: 130px; }

            .hero {
                padding: 68px 20px 56px;
                min-height: 100svh;
                align-items: flex-start;
            }

            .hero-label { font-size: 10px; margin-bottom: 24px; }

            .hero-title {
                font-size: clamp(30px, 9vw, 44px);
                margin-bottom: 20px;
            }

            .hero-body {
                font-size: 14px;
                margin-bottom: 36px;
            }
            /* En móvil el br del body queda feo — lo forzamos a bloque */
            .hero-body br { display: none; }

            /* Formulario: siempre en columna en móvil */
            .form-row {
                flex-direction: column !important;
                gap: 10px;
                max-width: 100%;
            }

            .form-input {
                height: 56px;
                font-size: 16px; /* evita zoom en iOS */
            }

            .form-btn {
                height: 56px;
                width: 100%;
                font-size: 12px;
            }

            .form-privacy { font-size: 12px; }
            .form-micro { font-size: 12px; }

            .hero-scroll { margin-top: 28px; font-size: 11px; }

            .section { padding: 64px 20px; }
            .section--dark { padding: 72px 20px; }
            .section--cta { padding: 64px 20px; }

            .section-title { font-size: clamp(24px, 8vw, 36px); }

            .ingredient-name { font-size: 17px; }
            .ingredient-row { padding: 16px 0; }

            .value-text { font-size: 13px; }
            .value-row { padding: 16px 0; }

            .footer {
                padding: 56px 20px 40px;
                gap: 24px;
            }

            .footer-links {
                flex-direction: column;
                gap: 14px;
            }

            .footer-logo { width: 160px; }

            .modal-panel {
                padding: 36px 24px;
                border-radius: 0;
                max-height: 100svh;
            }

            .modal-title { font-size: 26px; }
        }

        /* iPhone SE y pantallas muy pequeñas */
        @media (max-width: 360px) {
            .hero-title { font-size: 32px; }
            .form-btn { padding: 0 16px; }
        }
        

        /* ── Gracias page ── */

/* Thank You Page - Epic Split Screen */

.gracias-hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0;
    display: block;
    background: var(--luz);
    overflow: hidden;
}

.gracias-inner--split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: none;
    min-height: 100vh;
    min-height: 100dvh;
    align-items: stretch;
}

/* Image Panel */
.gracias-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    background: #2f2c1a;
    opacity: 0;
    animation: graciasFadeIn 1.1s ease-out 0.05s forwards;
}

.gracias-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
    transform: scale(1.02);
    animation: graciasZoom 14s ease-out forwards;
}

.gracias-image::before,
.gracias-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gracias-image::before {
    background:
        linear-gradient(180deg, rgba(79,74,43,0.28) 0%, rgba(79,74,43,0) 35%, rgba(79,74,43,0) 65%, rgba(79,74,43,0.45) 100%),
        linear-gradient(90deg, rgba(79,74,43,0.18) 0%, rgba(79,74,43,0) 40%);
}

.gracias-image::after {
    background: radial-gradient(120% 80% at 50% 50%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.35) 100%);
}

.gracias-image-mark {
    position: absolute;
    left: 32px;
    bottom: 28px;
    z-index: 2;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(242, 237, 217, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.gracias-image-mark::before {
    content: "";
    width: 28px;
    height: 1px;
    background: rgba(242, 237, 217, 0.7);
}

/* Content Panel */
.gracias-content {
    max-width: 560px;
    padding: 120px 64px 96px;
    margin: 0;
    align-self: center;
}

/* Check Icon */
.gracias-check {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--fuerza);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    opacity: 0;
    animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.gracias-check svg {
    width: 28px;
    height: 28px;
    stroke: var(--luz);
    stroke-width: 2px;
}

/* Label */
.gracias-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--fuerza);
    opacity: 0.5;
    margin-bottom: 16px;
    opacity: 0;
    animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* Title */
.gracias-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 8vw, 76px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--fuerza);
    margin-bottom: 24px;
    opacity: 0;
    animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.gracias-title em { 
    font-style: italic; 
}

/* Body */
.gracias-body {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--fuerza);
    margin-bottom: 0;
    opacity: 0;
    animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* Steps List */
.gracias-steps {
    list-style: none;
    margin: 36px 0 40px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: grid;
    gap: 18px;
    opacity: 0;
    animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.gracias-steps li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    align-items: baseline;
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-muted);
}

.gracias-steps li b {
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--fuerza);
}

.gracias-steps li strong {
    color: var(--fuerza);
    font-weight: 400;
}

/* Back Link */
.gracias-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fuerza);
    text-decoration: none;
    border-bottom: 1px solid rgba(79,74,43,0.3);
    padding-bottom: 2px;
    transition: opacity 0.2s;
    opacity: 0;
    animation: rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.gracias-back:hover { 
    opacity: 0.55; 
}

/* Tablet */
@media (max-width: 1100px) {
    .gracias-content { 
        padding: 96px 48px; 
    }
}

/* Mobile Vertical Stack */
@media (max-width: 900px) {
    .gracias-inner--split {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    
    .gracias-image {
        width: 100%;
        aspect-ratio: 4 / 3;
        min-height: 0;
        height: auto;
    }
    
    .gracias-image-mark { 
        left: 24px; 
        bottom: 22px; 
    }
    
    .gracias-content {
        max-width: 600px;
        margin: 0 auto;
        padding: 64px 32px 80px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .gracias-image { 
        aspect-ratio: 3 / 4; 
    }
    
    .gracias-content { 
        padding: 48px 22px 64px; 
    }
    
    .gracias-image-mark {
        left: 18px; 
        bottom: 16px;
        font-size: 9px;
        letter-spacing: 0.24em;
    }
    
    .gracias-title { 
        font-size: clamp(44px, 11vw, 60px); 
    }
    
    .gracias-body  { 
        font-size: 17px; 
    }
    
    .gracias-check { 
        width: 48px; 
        height: 48px; 
    }
}

/* Animations */
@keyframes graciasFadeIn { 
    to { opacity: 1; } 
}

@keyframes graciasZoom { 
    to { transform: scale(1); } 
}
