/* ============================================
   MANITAS CREATIVAS MARY
   Rustic-Elegant Felt Doll Company
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Brand Colors */
    --cream: #FDF6EE;
    --cream-dark: #F5EDE0;
    --cream-deep: #EDE3D2;
    --coffee: #5C3D2E;
    --coffee-light: #8B6F47;
    --coffee-medium: #6B4F3A;
    --gold: #C4A265;
    --gold-light: #D4B87A;
    --gold-muted: #B89B5E;
    --ochre: #D4A574;
    --ochre-light: #E8C9A0;
    --terracotta: #C17852;
    --terracotta-muted: #A66B4A;
    --blush: #E8C4B8;
    --sage: #8B9A7B;
    --sage-light: #A8B89A;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FAF7F2;
    --text-primary: #3D2B1F;
    --text-secondary: #6B5744;
    --text-muted: #9B8B7A;
    --border: #E5D9CC;
    --border-light: #F0E8DC;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(92, 61, 46, 0.06);
    --shadow-md: 0 4px 12px rgba(92, 61, 46, 0.08);
    --shadow-lg: 0 8px 30px rgba(92, 61, 46, 0.1);
    --shadow-xl: 0 16px 50px rgba(92, 61, 46, 0.12);
    --shadow-glow: 0 0 40px rgba(196, 162, 101, 0.15);

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.35s;
    --duration-slow: 0.6s;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50%;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: clip;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(212, 165, 116, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(196, 162, 101, 0.04) 0%, transparent 50%);
}

/* Subtle felt texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235C3D2E' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) ease;
}

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

/* Focus visible — accessible focus ring */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 246, 238, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 217, 204, 0.5);
    transition: background var(--duration-normal) ease, box-shadow var(--duration-normal) ease;
}

.site-header.scrolled {
    background: rgba(253, 246, 238, 0.95);
    box-shadow: var(--shadow-md);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 44px;
    height: 44px;
    color: var(--coffee);
    transition: transform var(--duration-normal) var(--ease-out);
}

.logo-icon.small {
    width: 36px;
    height: 36px;
}

.logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-brand {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--coffee);
    letter-spacing: 0.15em;
}

.logo-sub {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.2em;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: color var(--duration-fast) ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--duration-normal) var(--ease-out);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--coffee);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* WhatsApp button */
.header-whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: background var(--duration-normal) ease, transform var(--duration-normal) ease, box-shadow var(--duration-normal) ease;
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.25);
    flex-shrink: 0;
}

.header-whatsapp svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.header-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.whatsapp-text {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .whatsapp-text { display: none; }
    .header-whatsapp { padding: 10px; border-radius: var(--radius-full); }
    .header-whatsapp svg { width: 22px; height: 22px; }
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--coffee);
    border-radius: 2px;
    transition: transform var(--duration-normal) ease, opacity var(--duration-normal) ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
}

.hero-bg-texture {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212, 165, 116, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(196, 162, 101, 0.06) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-4xl) var(--space-xl);
    display: grid;
    grid-template-columns: 4fr 5fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-text {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-eyebrow {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

/* Gold decorative line */
.hero-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin-bottom: var(--space-xl);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--coffee);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero-title-accent {
    color: var(--gold);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--gold-light);
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    border-radius: var(--radius-xl);
    transition: background var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
    box-shadow: 0 4px 20px rgba(196, 162, 101, 0.3);
}

.hero-cta:hover {
    background: var(--gold-muted);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 162, 101, 0.4);
}

.hero-cta svg {
    transition: transform var(--duration-fast) ease;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

/* Hero CTAs row */
.hero-ctas {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-cta-whatsapp {
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.hero-cta-whatsapp:hover {
    background: #20BD5A;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.hero-cta-whatsapp svg {
    width: 18px;
    height: 18px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--coffee);
}

.hero-stat-label {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.9s var(--ease-out) 0.4s forwards;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--duration-slow) var(--ease-out);
}

.hero-image-frame:hover .hero-image {
    transform: scale(1.03);
}

.hero-image-fade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to right, var(--cream) 0%, transparent 15%),
        linear-gradient(to left, var(--cream) 0%, transparent 15%),
        linear-gradient(to bottom, transparent 60%, var(--cream) 100%);
}

/* Decorative frame corners */
.hero-frame-corner {
    position: absolute;
    width: 80px;
    height: 80px;
    border-color: var(--gold);
    border-style: solid;
    pointer-events: none;
    opacity: 0.4;
}

.hero-frame-tl {
    top: -12px;
    left: -12px;
    border-width: 2px 0 0 2px;
    border-radius: 4px 0 0 0;
}

.hero-frame-br {
    bottom: -12px;
    right: -12px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 4px 0;
}

/* Floating decorative elements */
.hero-decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1s var(--ease-out) forwards;
}

.hero-dec-needle {
    top: 15%;
    right: 8%;
    width: 20px;
    color: var(--gold);
    opacity: 0;
    animation-delay: 1s;
    animation-name: fadeInDecor;
}

.hero-dec-needle svg {
    width: 100%;
    height: auto;
}

.hero-dec-thread {
    top: 60%;
    left: 10%;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    animation-delay: 1.2s;
    animation-name: fadeInDecor;
    transform: rotate(-15deg);
}

.hero-dec-dot1 {
    top: 20%;
    left: 15%;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation-delay: 0.8s;
    animation-name: fadeInDecor;
}

.hero-dec-dot2 {
    bottom: 25%;
    right: 12%;
    width: 8px;
    height: 8px;
    background: var(--ochre);
    border-radius: 50%;
    opacity: 0;
    animation-delay: 1.1s;
    animation-name: fadeInDecor;
}

.hero-dec-dot3 {
    top: 40%;
    right: 25%;
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    animation-delay: 1.4s;
    animation-name: fadeInDecor;
}

@keyframes fadeInDecor {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 0.6; transform: translateY(0); }
}

.hero-dec-thread {
    animation-name: fadeInDecor;
}

@media (prefers-reduced-motion: reduce) {
    .hero-decor {
        animation: none;
        opacity: 0.6;
    }
}

/* ============================================
   PERSONALIZADOS PUPPETS
   ============================================ */
.pz-puppet {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    filter: blur(1px);
}

.pz-puppet.visible {
    opacity: 0.25;
    transform: translateY(0);
}

.pz-pup-1 {
    width: clamp(80px, 10vw, 140px);
    bottom: -10px;
    left: 2%;
    transition-delay: 0.1s;
}

.pz-pup-2 {
    width: clamp(70px, 9vw, 120px);
    top: 10%;
    right: 1%;
    transition-delay: 0.3s;
}

.pz-pup-3 {
    width: clamp(65px, 8vw, 110px);
    bottom: 5%;
    right: 15%;
    transition-delay: 0.5s;
}

@media (max-width: 768px) {
    .pz-puppet { opacity: 0; transform: translateY(20px); }
    .pz-puppet.visible { opacity: 0.2; }
    .pz-pup-1 { width: 60px; left: -2%; bottom: 0; }
    .pz-pup-2 { width: 55px; right: -2%; top: 5%; }
    .pz-pup-3 { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .pz-puppet {
        transition: none;
        opacity: 0.25;
        transform: none;
    }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-eyebrow {
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.section-eyebrow.light {
    color: var(--ochre-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--coffee);
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.section-title.light {
    color: var(--cream);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-top: var(--space-sm);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   COLLECTIONS GRID
   ============================================ */
.collections {
    padding: var(--space-4xl) 0;
    position: relative;
}

/* Collection Filters */
.collection-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    cursor: pointer;
    transition: border-color var(--duration-normal) ease, color var(--duration-normal) ease, background var(--duration-normal) ease;
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.collection-card.hidden {
    display: none;
}

.collections-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    grid-template-rows: auto auto;
    gap: var(--space-xl);
    align-items: start;
}

.collections-grid .collection-card:nth-child(1) {
    grid-row: 1 / 3;
}

.collections-grid .collection-card:nth-child(2) {
    align-self: start;
}

.collections-grid .collection-card:nth-child(3) {
    align-self: end;
}

.collection-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
    position: relative;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.collection-card:hover .card-image {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 43, 31, 0.5) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

.collection-card:hover .card-overlay {
    opacity: 1;
}

.card-category {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(196, 162, 101, 0.8);
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(4px);
}

.card-content {
    padding: var(--space-lg) var(--space-xl) var(--space-xl);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--coffee);
    margin-bottom: var(--space-sm);
}

.card-description {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--gold);
    transition: color var(--duration-fast) ease, gap var(--duration-fast) ease;
}

.card-link:hover {
    color: var(--coffee);
    gap: 10px;
}

/* ============================================
   PERSONALIZADOS SECTION
   ============================================ */
.personalizados {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--coffee) 0%, var(--coffee-medium) 50%, var(--coffee-light) 100%);
    position: relative;
    overflow: hidden;
}

.personalizados::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2l2 3-2 3z' fill='%23ffffff' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.personalizados-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.personalizados-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--cream-dark);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.personalizados-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--cream-dark);
}

.feature-icon {
    color: var(--gold);
    font-size: 0.8rem;
}

.light-cta {
    background: var(--cream);
    color: var(--coffee);
    box-shadow: 0 4px 20px rgba(253, 246, 238, 0.2);
}

.light-cta:hover {
    background: var(--white);
    box-shadow: 0 8px 30px rgba(253, 246, 238, 0.3);
}

/* Personalizados image grid */
.pi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-md);
    height: 400px;
}

.pi-img {
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    transition: transform var(--duration-normal) var(--ease-out);
}

.pi-img:hover {
    transform: scale(1.03);
    z-index: 1;
}

.pi-1 {
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: var(--radius-lg);
}

.pi-2 {
    grid-column: 2;
    grid-row: 1;
}

.pi-3 {
    grid-column: 2;
    grid-row: 2;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-timeline {
    padding: var(--space-4xl) 0;
    background: var(--off-white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--ochre-light), var(--gold));
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
    position: relative;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 12px rgba(196, 162, 101, 0.15);
}

.timeline-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.timeline-content {
    padding-top: 0.5rem;
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--coffee);
    margin-bottom: var(--space-xs);
}

.timeline-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline-line { left: 20px; }
    .timeline-marker { width: 42px; height: 42px; }
    .timeline-number { font-size: 0.95rem; }
}

/* ============================================
   STORYTELLING — CREATION LAYERS
   ============================================ */
.storytelling {
    padding: var(--space-4xl) 0;
}

.story-layers {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
    max-width: 900px;
    margin: 0 auto;
}

.story-layer {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
    align-items: center;
}

.story-layer:nth-child(even) {
    direction: rtl;
}

.story-layer:nth-child(even) > * {
    direction: ltr;
}

.story-layer-visual {
    display: flex;
    justify-content: center;
}

.story-layer-img {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.story-layer-icon {
    font-size: 3rem;
}

.story-layer-step {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: var(--space-sm);
}

.story-layer-text h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--coffee);
    margin-bottom: var(--space-sm);
}

.story-layer-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .story-layer {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }
    .story-layer:nth-child(even) { direction: ltr; }
    .story-layer-img { max-width: 200px; margin: 0 auto; }
}

/* ============================================
   WORKSHOP SECTION
   ============================================ */
.workshop {
    padding: var(--space-4xl) 0;
    background: var(--cream-dark);
    position: relative;
}

.workshop-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.workshop-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.workshop-image {
    width: 100%;
    height: auto;
    display: block;
}

.workshop-image-accent {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    pointer-events: none;
}

.workshop-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--coffee);
    line-height: 1.2;
    margin-bottom: var(--space-xl);
}

.workshop-title-accent {
    color: var(--gold);
    font-weight: 700;
}

.workshop-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.workshop-text-final {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: var(--coffee-light);
    margin-top: var(--space-lg);
}

.workshop-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: var(--space-4xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(61, 43, 31, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-normal) ease;
}

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

.gallery-overlay span {
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(4px);
}

/* Stagger gallery items for visual interest */
.gi-1 { grid-row: span 2; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--space-4xl) 0;
    background: var(--cream-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--gold), var(--ochre));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
}

.author-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--coffee);
}

.author-location {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--space-4xl) 0;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-md);
    background: rgba(196, 162, 101, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

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

.contact-value {
    font-size: 0.9rem;
    color: var(--coffee);
    transition: color var(--duration-fast) ease;
}

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

/* Social links */
.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: color var(--duration-fast) ease, background var(--duration-fast) ease;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
    transform: translateY(-2px);
}

/* Contact form */
.contact-form-wrapper {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.1);
    background: var(--white);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%239B8B7A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-submit {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    background: var(--coffee);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: background var(--duration-normal) var(--ease-out), transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
    box-shadow: 0 4px 15px rgba(92, 61, 46, 0.2);
    width: 100%;
    justify-content: center;
}

.form-submit:hover {
    background: var(--coffee-medium);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(92, 61, 46, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--coffee);
    color: var(--cream-dark);
    padding: var(--space-3xl) 0 var(--space-xl);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--terracotta), var(--gold));
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(253, 246, 238, 0.1);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
    color: var(--cream-dark);
}

.footer-logo .logo-brand {
    color: var(--cream-dark);
}

.footer-logo .logo-sub {
    color: var(--gold);
}

.footer-tagline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(245, 237, 224, 0.6);
    margin-top: var(--space-sm);
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-links a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(245, 237, 224, 0.6);
    transition: color var(--duration-fast) ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(245, 237, 224, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(245, 237, 224, 0.6);
    transition: color var(--duration-fast) ease, background var(--duration-fast) ease;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--coffee);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(245, 237, 224, 0.4);
    letter-spacing: 0.05em;
}

/* ============================================
   SHIPPING BANNER
   ============================================ */
.shipping-banner {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, rgba(196, 162, 101, 0.08) 0%, rgba(212, 165, 116, 0.06) 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.shipping-inner {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    background: var(--white);
    padding: var(--space-2xl) var(--space-3xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.shipping-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--terracotta), var(--gold));
}

.shipping-icon {
    color: var(--gold);
    flex-shrink: 0;
}

.shipping-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--coffee);
    margin-bottom: 6px;
}

.shipping-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
}

.shipping-cta {
    flex-shrink: 0;
    margin-left: auto;
    white-space: nowrap;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform var(--duration-normal) var(--ease-out);
    animation: bounceIn 0.6s var(--ease-out) 1.5s both;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

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

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.6); }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

/* Scroll reveal animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s var(--ease-out);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s var(--ease-out);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

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

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        gap: var(--space-2xl);
        padding: var(--space-3xl) var(--space-xl);
    }

    .collections-grid {
        gap: var(--space-lg);
    }

    .testimonials-grid {
        gap: var(--space-lg);
    }
}

/* Mobile landscape & small tablets */
@media (max-width: 768px) {
    :root {
        --space-4xl: 4rem;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: var(--space-3xl);
        gap: var(--space-md);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right var(--duration-normal) var(--ease-out);
        z-index: 1000;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }

    .menu-toggle {
        display: flex;
    }

    .header-inner {
        height: 56px;
    }

    .hero {
        padding-top: 56px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
        padding: var(--space-xl) var(--space-xl) var(--space-lg);
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        margin: 0 auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-frame-corner {
        display: none;
    }

    .hero-decor {
        display: none;
    }

    .hero-image-frame {
        max-width: 400px;
    }

    .shipping-inner {
        flex-direction: column;
        text-align: center;
        padding: var(--space-2xl);
    }

    .shipping-desc {
        max-width: 100%;
    }

    .shipping-cta {
        margin-left: 0;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .collection-filters {
        gap: 6px;
    }

    .filter-btn {
        font-size: 0.72rem;
        padding: 0.4rem 0.9rem;
    }

    .personalizados-inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .pi-grid {
        height: 300px;
    }

    .workshop-inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gi-1 {
        grid-row: span 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-inner {
        flex-direction: column;
        gap: var(--space-xl);
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
    }

    .footer-social {
        justify-content: center;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-lg);
    }

    .header-inner {
        height: 52px;
        padding: 0 var(--space-lg);
    }

    .logo-brand {
        font-size: 0.72rem;
    }

    .logo-sub {
        font-size: 0.9rem;
    }

    .hero {
        padding-top: 52px;
        min-height: auto;
    }

    .hero-content {
        padding: var(--space-lg) var(--space-lg) var(--space-md);
        gap: var(--space-md);
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-eyebrow {
        font-size: 0.8rem;
    }

    .hero-line {
        margin-bottom: var(--space-md);
    }

    .hero-image-frame {
        max-width: 260px;
    }

    .hero-ctas {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero-stats {
        gap: var(--space-md);
    }

    .hero-stat-number {
        font-size: 1.1rem;
    }

    .hero-cta {
        font-size: 0.72rem;
        padding: 0.85rem 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .workshop-stats {
        gap: var(--space-lg);
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .gallery-grid {
        gap: var(--space-sm);
    }

    .personalizados-features {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 16px;
        right: 16px;
    }
}

/* Overlay for mobile nav */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(61, 43, 31, 0.3);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-normal) ease;
}

.nav-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--coffee);
    color: var(--cream);
    padding: 1rem 2rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10001;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Focus visible styles */
*:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

.nav-link:focus-visible,
.card-link:focus-visible,
.hero-cta:focus-visible,
.social-link:focus-visible,
.gallery-item:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-text,
    .hero-image-wrapper {
        opacity: 1;
        transform: none;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;
        transform: none;
    }
}
