/* ═══════════════════════════════════════════════════════
   Studio 925 — Cool Silver Theme
   Vibe: Cool moonstone + polished rhodium. Editorial bento.
   Heredado del look ASJ, ajustado a plata 925 rodinada.
   ═══════════════════════════════════════════════════════ */

:root {
    --bg: #f7f8fb;
    --bg-card: #eef0f5;
    --bg-card-inner: #ffffff;
    --white: #ffffff;
    --moon: #e6eaf2;

    /* Brand: navy profundo de las fotos producto */
    --navy: #0e1838;
    --navy-deep: #060d24;
    --navy-soft: #1e2a4f;
    --navy-muted: rgba(14, 24, 56, 0.08);

    /* Plata pulida para acentos finos */
    --silver: #5a6072;
    --silver-light: #aeb4c2;

    --text: #0e1838;
    --text-secondary: #4a5167;
    --text-muted: #8e95a6;
    --border: rgba(14, 24, 56, 0.07);
    --border-strong: rgba(14, 24, 56, 0.12);
    --radius-xl: 2rem;
    --radius-inner: calc(2rem - 0.375rem);
    --radius-pill: 100px;
    --ease-out: cubic-bezier(0.32, 0.72, 0, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-serif: 'Playfair Display', 'DM Serif Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
}

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 50;
    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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ═══ NAVBAR ═══ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    transition: padding-top 0.5s var(--ease-out);
}

.navbar.scrolled {
    padding-top: 12px;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 12px 12px 12px 28px;
    background: rgba(244, 245, 247, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: all 0.5s var(--ease-out);
}

.navbar.scrolled .nav-pill {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.03);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-divider {
    width: 1px;
    height: 18px;
    background: var(--border-strong);
}

.logo-sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
}

.logo-mark {
    width: 24px;
    height: 24px;
    color: var(--navy);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.4s var(--ease-out);
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 10px 10px 20px;
    background: var(--text);
    color: var(--white);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: var(--radius-pill);
    transition: all 0.5s var(--ease-out);
}

.nav-cta:hover {
    background: var(--navy-soft);
}

.nav-cta:active {
    transform: scale(0.98);
}

.cta-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    transition: all 0.5s var(--ease-out);
}

.nav-cta:hover .cta-icon-wrap {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(2px) translateY(-1px) scale(1.05);
}

.nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    align-items: center;
    justify-content: center;
}

.hamburger-line {
    position: absolute;
    left: 4px;
    width: 24px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.4s var(--ease-out);
}

.line-1 { top: 12px; }
.line-2 { top: 19px; }

.nav-toggle.active .line-1 { top: 15px; transform: rotate(45deg); }
.nav-toggle.active .line-2 { top: 15px; transform: rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 35;
    background: rgba(244, 245, 247, 0.92);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 400;
    color: var(--text);
    text-decoration: none;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s var(--ease-out);
    transition-delay: var(--delay);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-link:hover {
    color: var(--navy);
}

/* ═══ HERO ═══ */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 25% 30%, #243264 0%, transparent 55%),
        radial-gradient(ellipse at 75% 75%, #050a1f 0%, transparent 60%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
}

/* Sheen — efecto seda satinada */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    will-change: transform;
}

.hero-orb-1 {
    width: 620px;
    height: 620px;
    top: -180px;
    left: -180px;
    background: radial-gradient(circle, #2e3d72 0%, transparent 70%);
    animation: orbDrift1 22s ease-in-out infinite;
}

.hero-orb-2 {
    width: 520px;
    height: 520px;
    bottom: -120px;
    right: -120px;
    background: radial-gradient(circle, #4658a0 0%, transparent 70%);
    animation: orbDrift2 26s ease-in-out infinite;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

/* Sparkle particles flotando */
.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    box-shadow:
        140px 80px 0 rgba(255,255,255,0.6),
        320px 200px 0 rgba(255,255,255,0.3),
        540px 120px 0 rgba(255,255,255,0.5),
        760px 280px 0 rgba(255,255,255,0.4),
        980px 60px 0 rgba(255,255,255,0.5),
        1180px 220px 0 rgba(255,255,255,0.3),
        80px 360px 0 rgba(255,255,255,0.4),
        420px 480px 0 rgba(255,255,255,0.5),
        680px 420px 0 rgba(255,255,255,0.3),
        920px 520px 0 rgba(255,255,255,0.4);
    opacity: 0.7;
    animation: sparkle 4s ease-in-out infinite;
}

.hero-bg::after {
    animation-delay: 2s;
    animation-direction: reverse;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.9; }
}

@keyframes orbDrift1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, 30px); }
}

@keyframes orbDrift2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, -30px); }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, transparent 70%, rgba(247, 248, 251, 0.4) 92%, var(--bg) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    transition: transform 0.1s linear, opacity 0.1s linear;
    will-change: transform, opacity;
}

/* Eyebrow blanco sobre navy en hero */
.hero .eyebrow-pill {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.eyebrow-pill {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--navy-muted);
    border-radius: var(--radius-pill);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn-primary {
    background: rgba(255, 255, 255, 0.96);
    color: var(--navy-deep);
}

.hero .btn-primary:hover {
    background: #ffffff;
}

.hero .btn-icon-wrap {
    background: rgba(14, 24, 56, 0.1);
}

.hero .btn-primary:hover .btn-icon-wrap {
    background: rgba(14, 24, 56, 0.18);
}

.hero-cta {
    display: flex;
    justify-content: center;
}

/* ─── Buttons ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 16px 16px 32px;
    background: var(--text);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 0.5s var(--ease-out);
}

.btn-primary:hover {
    background: var(--navy-soft);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    transition: all 0.5s var(--ease-out);
}

.btn-primary:hover .btn-icon-wrap {
    background: rgba(255, 255, 255, 0.22);
    transform: translateX(2px) translateY(-1px) scale(1.05);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
    animation: scrollPulse 2s var(--ease-out) infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ═══ MARQUEE ═══ */
.marquee-section {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--white);
}

.marquee-track {
    display: flex;
    gap: 32px;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.marquee-dot {
    color: var(--navy);
    font-size: 0.7rem;
    display: flex;
    align-items: center;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══ FEATURES ═══ */
.features {
    padding: clamp(80px, 10vw, 140px) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card-outer {
    padding: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.6s var(--ease-out);
}

.feature-card:hover .feature-card-outer {
    border-color: var(--border-strong);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
}

.feature-card-inner {
    padding: clamp(32px, 4vw, 48px);
    background: var(--bg-card-inner);
    border-radius: var(--radius-inner);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.feature-number {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 20px;
    font-style: italic;
}

.feature-card-inner h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 400;
    margin-bottom: 14px;
    line-height: 1.3;
}

.feature-card-inner p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ═══ COLLECTION ═══ */
.collection {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--white);
}

.section-header {
    margin-bottom: clamp(48px, 6vw, 80px);
}

.section-header .eyebrow-pill {
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    color: var(--navy);
}

.section-sub {
    margin-top: 18px;
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 480px;
}

.collection-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(260px, auto);
    gap: 20px;
}

/* Layout dinámico — primera card grande, resto en columna */
.collection-bento .bento-item:nth-child(6n+1) {
    grid-column: span 8;
    grid-row: span 2;
}

.collection-bento .bento-item:nth-child(6n+2),
.collection-bento .bento-item:nth-child(6n+3) {
    grid-column: span 4;
    grid-row: span 1;
}

.collection-bento .bento-item:nth-child(6n+4),
.collection-bento .bento-item:nth-child(6n+5),
.collection-bento .bento-item:nth-child(6n+6) {
    grid-column: span 4;
    grid-row: span 1;
}

.bento-outer {
    height: 100%;
    padding: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.6s var(--ease-out);
}

.bento-item:hover .bento-outer {
    border-color: var(--navy);
    box-shadow: 0 16px 48px rgba(14, 24, 56, 0.18);
}

.bento-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--bg-card-inner);
    border-radius: var(--radius-inner);
    overflow: hidden;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.bento-image {
    position: relative;
    flex: 1;
    min-height: 280px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    overflow: hidden;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s var(--ease-out);
}

.bento-item:hover .bento-image img {
    transform: scale(1.04);
}

.bento-large .bento-image {
    min-height: 420px;
}

.bento-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 22, 26, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
}

.bento-item:hover .bento-overlay {
    opacity: 1;
}

.overlay-tag {
    padding: 10px 24px;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-pill);
    transition: all 0.4s var(--ease-out);
}

.bento-item:hover .overlay-tag {
    border-color: rgba(255, 255, 255, 0.8);
}

.bento-info {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.bento-info-text h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.bento-info-text p {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.bento-price {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--text);
    white-space: nowrap;
}

.bento-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(20, 22, 26, 0.7);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-pill);
    z-index: 2;
}

.bento-badge.premium {
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy-deep);
}

/* Loading + empty */
.bento-loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 80px 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.loading-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--navy);
    animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

.collection-empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ═══ ABOUT ═══ */
.about {
    padding: clamp(80px, 10vw, 160px) 0;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 120px);
    align-items: start;
}

.about-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-top: 24px;
}

.about-title em {
    font-style: italic;
    color: var(--navy);
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image-outer {
    padding: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.about-image-inner {
    aspect-ratio: 4/5;
    background:
        radial-gradient(ellipse at 30% 30%, #243264 0%, transparent 60%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    border-radius: var(--radius-inner);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
}

.about-placeholder {
    font-family: var(--font-serif);
    font-size: 5.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 6px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.about-text p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 16px;
}

/* ═══ CONTACT ═══ */
.contact {
    padding: clamp(80px, 10vw, 160px) 0;
    background: var(--white);
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 120px);
    align-items: start;
}

.contact-details {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-value {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text);
    text-decoration: none;
    transition: color 0.4s var(--ease-out);
}

a.contact-value:hover {
    color: var(--navy);
}

.form-outer {
    padding: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.form-inner {
    padding: clamp(32px, 4vw, 48px);
    background: var(--bg-card-inner);
    border-radius: var(--radius-inner);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.form-field {
    margin-bottom: 16px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    outline: none;
    transition: all 0.4s var(--ease-out);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px var(--navy-muted);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-inner .btn-primary {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
}

/* ═══ FOOTER ═══ */
.footer {
    padding: 60px 0 40px;
    background: var(--navy-deep);
    color: rgba(255, 255, 255, 0.6);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.footer .logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .logo-sub {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--silver-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer .logo-mark { color: var(--silver-light); }

.footer-tagline {
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 32px 0 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ═══ REVEAL ═══ */
.reveal-item {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
    transition: all 0.8s var(--ease-out);
}

.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
    transition: all 0.9s var(--ease-out);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* ═══ BENTO COMO BOTÓN ═══ */
button.bento-item {
    width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: inherit;
    display: block;
}

button.bento-item:focus-visible .bento-outer {
    outline: 2px solid var(--navy);
    outline-offset: 4px;
}

.bento-price-na {
    color: var(--text-muted) !important;
    font-style: italic;
    font-size: 0.85rem !important;
}

/* ═══ MODAL PRODUCTO ═══ */
.producto-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(6, 13, 36, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s var(--ease-out);
}

.producto-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.producto-modal-inner {
    position: relative;
    width: 100%;
    max-width: 980px;
    max-height: 92vh;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.5s var(--ease-out);
    box-shadow: 0 30px 80px rgba(6, 13, 36, 0.4);
}

.producto-modal.active .producto-modal-inner {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: var(--navy-deep);
    font-size: 1.6rem;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.modal-close:hover {
    background: var(--white);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    max-height: 92vh;
    overflow: auto;
}

.modal-image-wrap {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    overflow: hidden;
}

.modal-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-image-empty {
    color: rgba(255, 255, 255, 0.4);
    font-size: 4rem;
}

.modal-info {
    padding: clamp(28px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.modal-eyebrow {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 14px;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 12px;
}

.modal-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.modal-price {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--navy-deep);
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.modal-field label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.modal-field select,
.modal-field input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    outline: none;
    transition: all 0.3s var(--ease-out);
    appearance: none;
    -webkit-appearance: none;
}

.modal-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230e1838' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
    cursor: pointer;
}

.modal-field select:focus,
.modal-field input:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px var(--navy-muted);
    background-color: var(--white);
}

.modal-field-qty {
    max-width: 160px;
}

.modal-field-error {
    border-color: #c83838 !important;
    box-shadow: 0 0 0 3px rgba(200, 56, 56, 0.15) !important;
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

.modal-soldout {
    padding: 14px 18px;
    background: var(--navy-muted);
    color: var(--navy);
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 500;
}

.modal-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 18px 0 8px;
    border-top: 1px solid var(--border);
    margin-top: 10px;
}

.modal-total-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.modal-total-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--navy-deep);
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.modal-cta-pay {
    width: 100%;
    justify-content: center;
}

.modal-cta-pay:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.modal-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.modal-cta-secondary:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.modal-fineprint {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ═══ TOAST ═══ */
.studio925-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 200;
    padding: 14px 24px;
    background: var(--navy-deep);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 32px rgba(6, 13, 36, 0.4);
    opacity: 0;
    transition: all 0.4s var(--ease-out);
    max-width: 90vw;
    text-align: center;
}

.studio925-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-image-wrap {
        min-height: 280px;
        max-height: 38vh;
    }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-pill {
        width: calc(100% - 40px);
        justify-content: space-between;
        padding: 12px 20px;
    }

    .hero {
        min-height: 90dvh;
        padding: 120px 20px 80px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 9vw, 3.2rem);
    }

    .marquee-section {
        padding: 20px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .collection-bento {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .collection-bento .bento-item:nth-child(6n+1),
    .collection-bento .bento-item:nth-child(6n+2),
    .collection-bento .bento-item:nth-child(6n+3),
    .collection-bento .bento-item:nth-child(6n+4),
    .collection-bento .bento-item:nth-child(6n+5),
    .collection-bento .bento-item:nth-child(6n+6) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-large .bento-image {
        min-height: 280px;
    }

    .about-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .contact-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-top {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}
