/* ═══════════════════════════════════════════════════════════════
   BERSAGLIO JEWELRY — Premium Stylesheet
   Palette: Emerald Deep, Black Carbon, Ivory/Champagne, Gold Accents
   Typography: Cormorant Garamond (editorial) + Montserrat (clean)
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
    /* Brand Colors */
    --emerald-deep: #0B3D2E;
    --emerald: #1A5C3A;
    --emerald-light: #2A7A50;
    --emerald-glow: #3D9B6A;

    --black: #0A0A0A;
    --black-carbon: #141414;
    --black-soft: #1E1E1E;
    --charcoal: #2C2C2C;

    --ivory: #FAF7F2;
    --ivory-warm: #F5F0E8;
    --champagne: #E8DFD0;
    --champagne-dark: #D4C9B8;

    --gold: #C9A96E;
    --gold-light: #D4B87A;
    --gold-dark: #A8894E;

    /* Semantic */
    --text-primary: #1A1A1A;
    --text-secondary: #5A5A5A;
    --text-muted: #8A8A8A;
    --text-on-dark: #F5F0E8;
    --text-on-dark-muted: #B8B0A4;

    --border: #E5E0D8;
    --border-dark: #333;

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

    /* Typography */
    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --container: 1200px;
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10,10,10,0.06);
    --shadow-md: 0 4px 20px rgba(10,10,10,0.08);
    --shadow-lg: 0 8px 40px rgba(10,10,10,0.12);
    --shadow-gold: 0 4px 20px rgba(201,169,110,0.15);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s var(--ease);
    --transition-slow: 0.6s var(--ease);
}

/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--ivory);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; transition: var(--transition); }
input, select, textarea { font-family: var(--font-body); }

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

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

/* ─── Scroll Animations ─── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}

.header.header-hidden { transform: translateY(-100%); }
.header { transition: background var(--transition), box-shadow var(--transition), transform var(--transition); }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--emerald-deep);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    letter-spacing: -0.5px;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--black);
}

.logo-sub {
    display: none;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-top: -2px;
}

/* Logo wordmark wrapper (used in snippets) */
.logo-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

/* Legacy flat layout (index.html inline logo, if present) */
.logo:not(:has(.logo-wordmark)) {
    flex-wrap: wrap;
}
.logo:not(:has(.logo-wordmark)) .logo-text,
.logo:not(:has(.logo-wordmark)) .logo-sub {
    flex-basis: 100%;
}
.logo:not(:has(.logo-wordmark)) .logo-mark + .logo-text { flex-basis: auto; }
.logo:not(:has(.logo-wordmark)) .logo-sub { margin-left: 50px; margin-top: -6px; }

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

.nav-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover { color: var(--emerald-deep); }
.nav-link:hover::after { width: 100%; }

.nav-link--cta {
    background: var(--emerald-deep);
    color: var(--ivory) !important;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
}

.nav-link--cta::after { display: none; }
.nav-link--cta:hover { background: var(--emerald); }

/* ─── Dropdowns ─── */
.nav-item { position: relative; }

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.nav-item.dropdown:hover .dropdown-arrow,
.nav-item.dropdown.is-open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 48px rgba(10,10,10,0.1), 0 2px 8px rgba(10,10,10,0.06);
    min-width: 280px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility 0s var(--transition);
    z-index: 200;
}

/* Dropdown "caret" bridge — prevents gap from closing menu on hover */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 0s;
}

/* Dropdown items with icon + body */
.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    transition: background var(--transition);
    text-decoration: none;
}

.dropdown-link:hover {
    background: var(--ivory);
}

.dropdown-link-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ivory-warm);
    border-radius: var(--radius-sm);
    color: var(--emerald-deep);
    transition: background var(--transition), color var(--transition);
}

.dropdown-link:hover .dropdown-link-icon {
    background: rgba(11,61,46,0.08);
    color: var(--emerald);
}

.dropdown-link-icon svg {
    width: 16px;
    height: 16px;
}

.dropdown-link-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-link-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
}

.dropdown-link-desc {
    font-size: 11px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.4;
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

/* "Ver todo" row */
.dropdown-link--all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--gold-dark);
}

.dropdown-link--all:hover {
    background: var(--ivory);
    color: var(--emerald-deep);
}

.dropdown-link--all svg {
    transition: transform var(--transition);
}

.dropdown-link--all:hover svg {
    transform: translateX(3px);
}

/* ─── Nav Actions ─── */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* WhatsApp nav button */
.nav-wa-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #25D366;
    border: 1px solid rgba(37,211,102,0.25);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-wa-btn:hover {
    background: rgba(37,211,102,0.08);
    border-color: rgba(37,211,102,0.5);
}

.nav-wa-label {
    font-family: var(--font-body);
}

/* Lista de deseos */
.wishlist-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: color var(--transition);
}

.wishlist-btn:hover { color: var(--emerald-deep); }

.wishlist-count {
    position: absolute;
    top: 1px;
    right: 1px;
    min-width: 16px;
    height: 16px;
    background: var(--gold);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    border-radius: 8px;
    padding: 0 3px;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.wishlist-count.has-items { display: flex; }

/* Active nav link */
.nav-link--active { color: var(--emerald-deep) !important; }
.nav-link--active::after { width: 100% !important; }

/* Header on dark hero */
.header:not(.scrolled) .logo-text { color: var(--ivory); }
.header:not(.scrolled) .logo-sub { color: var(--champagne-dark); }
.header:not(.scrolled) .nav-link { color: var(--text-on-dark-muted); }
.header:not(.scrolled) .nav-link:hover { color: var(--ivory); }
.header:not(.scrolled) .nav-link--cta { color: var(--ivory) !important; }
.header:not(.scrolled) .hamburger span { background: var(--ivory); }
.header:not(.scrolled) .wishlist-btn { color: var(--text-on-dark-muted); }
.header:not(.scrolled) .wishlist-btn:hover { color: var(--ivory); }
.header:not(.scrolled) .nav-wa-btn { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.15); }
.header:not(.scrolled) .nav-wa-btn:hover { color: #25D366; border-color: rgba(37,211,102,0.4); background: rgba(37,211,102,0.06); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: var(--transition);
}

.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(11,61,46,0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(201,169,110,0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.7) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border: 1px solid rgba(201,169,110,0.08);
    border-radius: 50%;
    animation: hero-pulse 8s ease-in-out infinite;
}

@keyframes hero-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: var(--space-3xl) var(--space-md);
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
    position: relative;
    padding: 0 var(--space-lg);
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold-dark);
}

.hero-eyebrow::before { left: 0; }
.hero-eyebrow::after { right: 0; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ivory);
    margin-bottom: var(--space-md);
    letter-spacing: -0.5px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-desc {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-on-dark-muted);
    margin-bottom: var(--space-xl);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    color: var(--champagne-dark);
    animation: scroll-bounce 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    border: 1px solid rgba(201,169,110,0.4);
    color: var(--gold-light);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(201,169,110,0.1);
}

.btn-lg { padding: 16px 40px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════
   BRAND STATEMENT
   ═══════════════════════════════════════════════════════════════ */
.brand-statement {
    background: var(--ivory);
    padding: var(--space-3xl) 0;
}

.brand-statement-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.brand-divider {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.brand-divider svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.brand-quote {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.brand-origin {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS (General)
   ═══════════════════════════════════════════════════════════════ */
.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.section-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════
   COLLECTIONS
   ═══════════════════════════════════════════════════════════════ */
.collections {
    background: var(--ivory);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.collection-card {
    background: white;
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald-deep), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.collection-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.collection-card:hover::before { transform: scaleX(1); }

.collection-icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.collection-icon svg {
    width: 40px;
    height: 40px;
    color: var(--emerald-deep);
}

.collection-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.collection-subtitle {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: var(--space-sm);
}

.collection-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.collection-count {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--emerald-deep);
}

.collection-link:hover { color: var(--gold-dark); }
.collection-link svg { transition: transform var(--transition); }
.collection-link:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════════
   FEATURED PIECES
   ═══════════════════════════════════════════════════════════════ */
.featured {
    background: var(--black);
    color: var(--text-on-dark);
}

.featured .section-eyebrow { color: var(--gold); }
.featured .section-title { color: var(--ivory); }
.featured .section-desc { color: var(--text-on-dark-muted); }

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-lg);
}

.piece-card {
    background: var(--black-soft);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.piece-card:hover { border-color: rgba(201,169,110,0.3); box-shadow: var(--shadow-gold); }

.piece-image-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--black-carbon);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.piece-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--charcoal);
}

.piece-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.3;
}

.piece-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.piece-info {
    padding: var(--space-lg);
}

.piece-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: var(--space-xs);
}

.piece-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-on-dark-muted);
    margin-bottom: var(--space-md);
}

.piece-specs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs) var(--space-md);
    margin-bottom: var(--space-md);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border-dark);
}

.spec-item {
    font-size: 11px;
    color: var(--text-on-dark-muted);
    letter-spacing: 0.3px;
}

.spec-item strong {
    color: var(--gold-dark);
    font-weight: 500;
}

.piece-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border-dark);
}

.piece-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
}

.piece-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 8px 16px;
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: var(--radius-sm);
}

.piece-cta:hover {
    background: rgba(201,169,110,0.1);
    border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about {
    background: var(--ivory-warm);
}

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

.about-image-placeholder {
    aspect-ratio: 3 / 4;
    background: var(--emerald-deep);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    color: var(--gold);
    position: relative;
    overflow: hidden;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: var(--radius-sm);
}

.about-image-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.4;
}

.about-image-placeholder span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    opacity: 0.5;
}

.about-content .section-eyebrow { display: block; text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: var(--space-md); }

.about-content p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.about-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--emerald-deep);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */
.services {
    background: var(--ivory);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
    transition: var(--transition);
}

.service-card:hover { box-shadow: var(--shadow-sm); }

.service-icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-md);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    color: var(--emerald-deep);
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.service-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════════ */
.cta-banner {
    background: var(--emerald-deep);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(201,169,110,0.08);
    border-radius: 50%;
}

.cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: var(--space-sm);
}

.cta-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--champagne);
    margin-bottom: var(--space-xl);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact {
    background: var(--ivory-warm);
}

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

.contact-info .section-eyebrow { display: block; text-align: left; }
.contact-info .section-title { text-align: left; margin-bottom: var(--space-md); }

.contact-info p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: white;
    transition: var(--transition);
}

.contact-channel:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.contact-channel svg { flex-shrink: 0; color: var(--emerald-deep); }
.contact-channel strong { display: block; font-size: 14px; font-weight: 500; color: var(--text-primary); }
.contact-channel span { font-size: 13px; color: var(--text-muted); }

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: var(--space-xl);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    text-align: center;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--ivory);
    color: var(--text-primary);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(26,92,58,0.08);
}

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

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
    background: var(--black);
    color: var(--text-on-dark);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: var(--space-sm);
}

.footer-logo .logo-mark {
    background: var(--emerald);
}

.footer-logo .logo-text {
    color: var(--ivory);
}

.footer-logo .logo-sub {
    color: var(--text-on-dark-muted);
    margin-left: 50px;
    margin-top: -6px;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.footer-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-on-dark-muted);
}

.footer-heading {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ivory);
    margin-bottom: var(--space-md);
}

.footer-links li { margin-bottom: var(--space-xs); }

.footer-links a {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-on-dark-muted);
}

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

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

.footer-social a {
    color: var(--text-on-dark-muted);
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-dark);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-on-dark-muted);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 12px;
    color: var(--text-on-dark-muted);
}

.footer-legal a { color: var(--text-on-dark-muted); }
.footer-legal a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════════════════════ */
.wa-float {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 900;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
    transition: var(--transition);
}

.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 968px) {
    .hamburger { display: flex; }
    .nav-actions { display: none; }
    .nav-wa-label { display: none; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--ivory);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right var(--transition-slow);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.is-open { right: 0; }

    .nav-list {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
        padding: var(--space-xl) 0;
    }

    .nav-link {
        font-size: 14px;
        color: var(--text-primary) !important;
    }

    .nav-link--cta {
        color: var(--ivory) !important;
    }

    /* Mobile dropdowns */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: var(--space-xs) 0 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-slow);
    }

    .nav-item.dropdown.is-open .dropdown-menu {
        max-height: 400px;
    }

    .dropdown-link {
        color: var(--text-muted);
        font-size: 13px;
        padding: 6px 0;
        letter-spacing: 0.5px;
    }

    .dropdown-link:hover {
        padding-left: 0;
        color: var(--emerald-deep);
        background: transparent;
    }

    .dropdown-divider { display: none; }

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

    .about-image-placeholder { aspect-ratio: 16 / 9; }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: var(--space-lg);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.2rem; }
    .hero-desc br { display: none; }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn { width: 100%; justify-content: center; }

    .collections-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }

    .about-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .wa-float {
        bottom: var(--space-md);
        right: var(--space-md);
        width: 48px;
        height: 48px;
    }

    .wa-float svg { width: 22px; height: 22px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FASE 4 — WISHLIST
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Botón ♡ en tarjetas de pieza ─────────────────────────────────────────── */
.piece-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-muted);
    box-shadow: 0 2px 8px rgba(10,10,10,0.12);
    transition: color var(--transition), background var(--transition), transform var(--transition);
    z-index: 2;
    backdrop-filter: blur(4px);
}

.piece-wishlist-btn svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: fill var(--transition), stroke var(--transition);
}

.piece-wishlist-btn:hover {
    color: var(--gold-dark);
    background: white;
    transform: scale(1.1);
}

.piece-wishlist-btn.is-saved {
    color: var(--gold-dark);
    background: white;
}

.piece-wishlist-btn.is-saved svg {
    fill: var(--gold);
    stroke: var(--gold-dark);
}

/* ─── Toast notifications ───────────────────────────────────────────────────── */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--black);
    color: var(--ivory);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font-body);
    letter-spacing: 0.2px;
    box-shadow: 0 4px 20px rgba(10,10,10,0.25);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: auto;
    max-width: 280px;
}

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

.toast-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.toast--added   .toast-icon { color: var(--gold); }
.toast--removed .toast-icon { color: var(--text-muted); }
.toast--error   .toast-icon { color: #e05252; }

/* ─── Page hero (lista-deseos + future inner pages) ─────────────────────────── */
.page-hero {
    padding: calc(var(--header-h) + 60px) 0 50px;
    background: var(--black);
    text-align: center;
}

.page-hero-label {
    display: block;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: var(--space-sm);
    letter-spacing: 1px;
}

.page-hero-sub {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-on-dark-muted);
    letter-spacing: 0.5px;
}

/* ─── Wishlist actions bar ──────────────────────────────────────────────────── */
.wishlist-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--space-xl);
}

.wishlist-item-count {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.wishlist-action-btns {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.btn-wa-share {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.btn-wa-share:hover {
    background: #1ebe59;
    transform: translateY(-1px);
}

.btn-clear-wishlist {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition);
}

.btn-clear-wishlist:hover {
    color: #e05252;
    border-color: #e05252;
}

/* ─── Empty state ───────────────────────────────────────────────────────────── */
.wishlist-empty {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
}

.wishlist-empty-icon {
    color: var(--border);
    margin-bottom: var(--space-lg);
}

.wishlist-empty-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.5px;
}

.wishlist-empty-desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    max-width: 400px;
    margin-inline: auto;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--emerald-deep);
    color: white;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background var(--transition), transform var(--transition);
}

.btn-explore:hover {
    background: var(--emerald);
    transform: translateY(-1px);
}

.btn-explore:hover svg { transform: translateX(3px); }
.btn-explore svg { transition: transform var(--transition); }

/* ─── Pieces grid (wishlist page reutiliza .piece-card del home) ─────────────── */
.pieces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

/* ─── Wishlist responsive ───────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .toast-container { bottom: 16px; right: 16px; left: 16px; }
    .toast { max-width: 100%; }
    .wishlist-actions { flex-direction: column; align-items: flex-start; }
    .wishlist-action-btns { width: 100%; }
    .btn-wa-share, .btn-clear-wishlist { flex: 1; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PHASE 7 — Dev Banner, Cart, Content Pages
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Dev Overlay (luxury — se muestra en cada visita) ──────────────────── */
@keyframes devOverlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes devCardIn {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

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

.dev-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: devOverlayIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.dev-overlay--closing {
    animation: devOverlayOut 0.4s cubic-bezier(0.4, 0, 1, 1) both;
}

.dev-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.90);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.dev-overlay-card {
    position: relative;
    z-index: 1;
    max-width: 440px;
    width: 100%;
    background: #080e0c;
    border: 1px solid rgba(201, 168, 76, 0.30);
    border-radius: 2px;
    padding: 52px 48px 44px;
    text-align: center;
    animation: devCardIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
    box-shadow:
        0 0 0 1px rgba(201, 168, 76, 0.08),
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(11, 61, 46, 0.15);
}

.dev-overlay-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: rgba(201, 168, 76, 0.5);
    cursor: pointer;
    border-radius: 2px;
    transition: color 0.2s ease, background 0.2s ease;
}

.dev-overlay-close:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.dev-overlay-gem {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: var(--gold);
    opacity: 0.85;
}

.dev-overlay-eyebrow {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    opacity: 0.8;
}

.dev-overlay-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 300;
    color: var(--ivory);
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.dev-overlay-text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: rgba(250, 247, 242, 0.55);
    line-height: 1.8;
    margin-bottom: 10px;
}

.dev-overlay-instagram {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 14px 0 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.35);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.dev-overlay-instagram:hover {
    color: #e8ca7a;
    border-color: rgba(201, 168, 76, 0.7);
}

.dev-overlay-dismiss {
    display: block;
    width: 100%;
    padding: 14px 32px;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.45);
    border-radius: 1px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.dev-overlay-dismiss:hover {
    background: rgba(201, 168, 76, 0.10);
    border-color: rgba(201, 168, 76, 0.7);
    color: #e8ca7a;
}

@media (max-width: 480px) {
    .dev-overlay-card { padding: 40px 28px 36px; }
}

/* ─── Cart button in nav ─────────────────────────────────────────────────── */
.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--text-primary);
    border-radius: 50%;
    transition: color var(--transition), background var(--transition);
}

.cart-btn:hover { color: var(--gold); background: var(--ivory-warm); }

.cart-count {
    position: absolute;
    top: 3px;
    right: 3px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity var(--transition), transform var(--transition);
    pointer-events: none;
}

.cart-count.has-items {
    opacity: 1;
    transform: scale(1);
}

/* ─── Cart button on piece cards ─────────────────────────────────────────── */
.piece-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.piece-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-muted);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: color var(--transition), transform var(--transition), background var(--transition);
}

.piece-cart-btn:hover {
    color: var(--gold);
    transform: scale(1.08);
}

.piece-cart-btn.is-in-cart {
    color: var(--gold);
    background: #fdf8ef;
}

/* Remove the old absolute positioning from wishlist-only, now handled by .piece-actions */
.piece-image-wrapper .piece-wishlist-btn {
    position: static;
}

/* ─── Cart remove button (inside cart page cards) ────────────────────────── */
.piece-footer-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.cart-remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition);
}

.cart-remove-btn:hover {
    color: #e05252;
    border-color: #e05252;
}

/* ─── Cart page ──────────────────────────────────────────────────────────── */
.cart-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--space-xl);
}

.cart-item-count {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.cart-action-btns {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.btn-cart-wa {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.btn-cart-wa:hover { background: #1ebe59; transform: translateY(-1px); }

.btn-clear-cart {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition);
}

.btn-clear-cart:hover { color: #e05252; border-color: #e05252; }

/* ─── About teaser (index) ───────────────────────────────────────────────── */
.about-teaser {
    background: var(--charcoal);
    color: var(--ivory);
    padding: var(--space-2xl) 0;
}

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

.about-teaser-stats {
    display: flex;
    gap: var(--space-xl);
}

.about-teaser-content .section-eyebrow { color: var(--gold-light); }
.about-teaser-content .section-title   { color: var(--ivory); }
.about-teaser-content p {
    color: var(--text-on-dark-muted);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
    .about-teaser-inner { grid-template-columns: 1fr; }
    .about-teaser-stats { flex-wrap: wrap; gap: var(--space-md); }
}

/* ─── Nosotros page ──────────────────────────────────────────────────────── */
.nosotros-story { padding: var(--space-2xl) 0; }

.nosotros-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
    margin-bottom: var(--space-2xl);
}

.nosotros-values {
    background: var(--ivory-warm);
    padding: var(--space-2xl) 0;
}

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

.value-card {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-md);
    color: var(--gold);
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.value-desc {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .nosotros-story-grid { grid-template-columns: 1fr; }
    .values-grid         { grid-template-columns: 1fr; }
}

/* ─── Servicios page ─────────────────────────────────────────────────────── */
.services-detail {
    padding: var(--space-2xl) 0;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.service-detail-card {
    padding: var(--space-xl);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.service-detail-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.service-detail-icon {
    width: 44px;
    height: 44px;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.service-detail-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.service-detail-desc {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.9;
}

@media (max-width: 768px) {
    .services-detail-grid { grid-template-columns: 1fr; }
}

/* ─── Colecciones page ───────────────────────────────────────────────────── */
.catalog-section { padding: var(--space-2xl) 0; }

.catalog-collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.catalog-collection-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition-slow);
}

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

.catalog-collection-visual {
    aspect-ratio: 16/9;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.catalog-collection-body {
    padding: var(--space-lg);
}

.catalog-collection-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.catalog-collection-count {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}

.catalog-collection-desc {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
    .catalog-collections-grid { grid-template-columns: 1fr; }
}

/* ─── Pieza detail page ──────────────────────────────────────────────────── */
.pieza-section { padding: var(--space-2xl) 0; }

.pieza-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.pieza-gallery {
    position: sticky;
    top: 100px;
}

.pieza-main-image {
    aspect-ratio: 1;
    background: var(--ivory-warm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.pieza-badge-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.pieza-name {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.pieza-collection-link {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-bottom: var(--space-lg);
}

.pieza-desc {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: var(--space-xl);
}

.pieza-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-xl);
}

.pieza-specs-table th,
.pieza-specs-table td {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 13px;
    text-align: left;
}

.pieza-specs-table th {
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    width: 40%;
}

.pieza-specs-table td {
    font-weight: 400;
    color: var(--text-primary);
}

.pieza-price-row {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.pieza-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-primary);
}

.pieza-cta-group {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.pieza-cta-group .btn { flex: 1; min-width: 180px; justify-content: center; }

.pieza-note {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.pieza-not-found {
    text-align: center;
    padding: var(--space-3xl) 0;
}

@media (max-width: 768px) {
    .pieza-layout     { grid-template-columns: 1fr; }
    .pieza-gallery    { position: static; }
    .pieza-cta-group  { flex-direction: column; }
    .pieza-cta-group .btn { min-width: auto; }
}

/* ─── Contacto page ──────────────────────────────────────────────────────── */
.contact-page-section { padding: var(--space-2xl) 0; }

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

@media (max-width: 900px) {
    .contact-page-grid { grid-template-columns: 1fr; }
}

/* ─── Cart responsive ────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .cart-actions { flex-direction: column; align-items: flex-start; }
    .cart-action-btns { width: 100%; }
    .btn-cart-wa, .btn-clear-cart { flex: 1; justify-content: center; }
}

/* ─── Cart "coming soon" note ────────────────────────────────────────────── */
.cart-coming-soon {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: var(--space-2xl);
    padding: var(--space-md) var(--space-lg);
    background: var(--ivory-warm);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
}

.cart-coming-soon svg { flex-shrink: 0; color: var(--gold); margin-top: 1px; }

/* ─── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: var(--space-xl);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current="page"] { color: var(--text-primary); }

/* ─── Piece cart btn (large, on detail page) ─────────────────────────────── */
.piece-cart-btn-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.piece-cart-btn-lg.is-in-cart {
    background: #fdf8ef;
    border-color: var(--gold);
    color: var(--gold);
}

/* ─── Contact info note ──────────────────────────────────────────────────── */
.contact-info-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-xl);
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
}

/* ─── Section footer (centered CTA below sections) ──────────────────────── */
.section-footer {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ─── Stat overrides inside dark about-teaser ────────────────────────────── */
.about-teaser .stat-number { color: var(--gold); }
.about-teaser .stat-label  { color: var(--text-on-dark-muted); }

/* ═══════════════════════════════════════════════════════════════════════════
   JOURNAL / BLOG — Editorial Magazine
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Shared journal tokens ──────────────────────────────────────────────── */
.journal-chip {
    display: inline-block;
    padding: 3px 10px;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--chip-color, var(--gold));
    border: 1px solid var(--chip-color, var(--gold));
    border-radius: 1px;
    opacity: 0.85;
}

.journal-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.journal-meta-dot {
    width: 3px;
    height: 3px;
    background: var(--text-muted);
    border-radius: 50%;
    opacity: 0.5;
}

.journal-visual-grain {
    position: absolute;
    inset: 0;
    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)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.35;
    pointer-events: none;
}

.journal-visual-icon {
    position: relative;
    z-index: 1;
    opacity: 0.75;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ─── INDEX: Journal Preview Section ─────────────────────────────────────── */
.journal-preview {
    background: #050908;
    padding: var(--space-2xl) 0;
    border-top: 1px solid rgba(201,169,110,0.08);
    border-bottom: 1px solid rgba(201,169,110,0.08);
}

.journal-preview .section-eyebrow {
    color: var(--gold);
    letter-spacing: 4px;
}

.journal-preview .section-title {
    color: var(--ivory);
}

.journal-preview .section-desc {
    color: var(--text-on-dark-muted);
}

.journal-preview-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

/* Featured card */
.journal-featured-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.4s ease;
    background: rgba(255,255,255,0.02);
}

.journal-featured-card:hover {
    border-color: rgba(201,169,110,0.25);
}

.journal-featured-card:hover .journal-visual-icon {
    opacity: 1;
    transform: scale(1.06);
}

.journal-featured-visual {
    position: relative;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.journal-featured-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.journal-featured-title {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    color: var(--ivory);
    line-height: 1.3;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.journal-featured-card:hover .journal-featured-title { color: var(--gold-light); }

.journal-featured-excerpt {
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 300;
    color: rgba(250,247,242,0.5);
    line-height: 1.8;
    flex: 1;
}

/* Side cards */
.journal-side-cards {
    display: flex;
    flex-direction: column;
}

.journal-side-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    cursor: pointer;
    transition: padding-left 0.35s cubic-bezier(0.4,0,0.2,1);
}

.journal-side-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), transparent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.journal-side-card:hover::before { transform: scaleY(1); }
.journal-side-card:hover { padding-left: 14px; }

.journal-side-card:last-child { border-bottom: none; }
.journal-side-card:first-child { padding-top: 0; }

.journal-side-num {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 300;
    color: rgba(201,169,110,0.10);
    line-height: 1;
    user-select: none;
    transition: color 0.3s ease;
    min-width: 44px;
}

.journal-side-card:hover .journal-side-num { color: rgba(201,169,110,0.22); }

.journal-side-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.journal-side-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--ivory);
    line-height: 1.4;
    letter-spacing: 0.1px;
    transition: color 0.3s ease;
}

.journal-side-card:hover .journal-side-title { color: var(--gold-light); }

/* Preview section footer */
.journal-preview .section-footer { margin-top: var(--space-xl); }

/* ─── JOURNAL PAGE ──────────────────────────────────────────────────────── */

/* Editorial hero */
.journal-hero {
    background: #050908;
    padding: var(--space-2xl) 0 var(--space-xl);
    border-bottom: 1px solid rgba(201,169,110,0.10);
}

.journal-hero-inner { max-width: 680px; }

.journal-hero-label {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.journal-hero-vol {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    opacity: 0.7;
}

.journal-hero-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,169,110,0.4), transparent);
}

.journal-hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    color: var(--ivory);
    letter-spacing: -1px;
    line-height: 0.9;
    margin-bottom: 24px;
}

.journal-hero-subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-on-dark-muted);
    letter-spacing: 0.5px;
    line-height: 1.7;
}

/* Category filter bar */
.journal-filter-bar {
    background: #050908;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 70px;
    z-index: 10;
}

.journal-filters {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.journal-filters::-webkit-scrollbar { display: none; }

.journal-filter-btn {
    flex-shrink: 0;
    padding: 14px 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(250,247,242,0.4);
    cursor: pointer;
    transition: color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.journal-filter-btn:hover { color: var(--ivory); }

.journal-filter-btn.is-active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Journal grid page */
.journal-grid-section { background: #060b08; }

/* Hero article (large) */
.journal-hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
    text-decoration: none;
    margin-bottom: var(--space-xl);
    transition: border-color 0.4s ease;
}

.journal-hero-card:hover { border-color: rgba(201,169,110,0.25); }

.journal-hero-card-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    overflow: hidden;
}

.journal-hero-card:hover .journal-visual-icon { opacity: 1; transform: scale(1.06); }

.journal-hero-card-body {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    background: rgba(255,255,255,0.015);
}

.journal-hero-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--ivory);
    line-height: 1.25;
    transition: color 0.3s ease;
}

.journal-hero-card:hover .journal-hero-card-title { color: var(--gold-light); }

.journal-hero-card-excerpt {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: rgba(250,247,242,0.5);
    line-height: 1.85;
}

.journal-read-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 8px;
    transition: gap 0.3s ease;
}

.journal-hero-card:hover .journal-read-cta { gap: 12px; }

/* Full grid */
.journal-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.journal-grid-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.journal-grid-card:hover {
    border-color: rgba(201,169,110,0.2);
    transform: translateY(-3px);
}

.journal-grid-card:hover .journal-visual-icon { opacity: 0.9; transform: scale(1.05); }

.journal-grid-card-visual {
    position: relative;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.journal-grid-card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    background: rgba(255,255,255,0.015);
}

.journal-grid-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    font-style: italic;
    color: var(--ivory);
    line-height: 1.35;
    transition: color 0.3s ease;
}

.journal-grid-card:hover .journal-grid-card-title { color: var(--gold-light); }

.journal-grid-card-excerpt {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: rgba(250,247,242,0.45);
    line-height: 1.8;
    flex: 1;
}

/* Empty state */
.journal-empty {
    text-align: center;
    padding: var(--space-2xl) 0;
    color: var(--text-on-dark-muted);
    font-family: var(--font-body);
    font-size: 14px;
}

/* ─── ARTICLE DETAIL (entrada.html) ─────────────────────────────────────── */
.entrada-hero {
    background: var(--entry-bg, #050908);
    padding: var(--space-xl) 0 var(--space-2xl);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.entrada-hero-inner { max-width: 760px; }

.entrada-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(250,247,242,0.4);
    letter-spacing: 0.5px;
}

.entrada-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--ivory);
    line-height: 1.15;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

.entrada-excerpt {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: rgba(250,247,242,0.55);
    line-height: 1.9;
    max-width: 620px;
}

/* Article body */
.entrada-body { padding: var(--space-2xl) 0; background: var(--ivory-warm); }

.entrada-content {
    max-width: 680px;
    margin: 0 auto var(--space-2xl);
    position: relative;
    padding-left: 28px;
}

.entrada-lead-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 1px;
    opacity: 0.4;
}

.entrada-paragraph {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: var(--space-lg);
}

.entrada-paragraph:last-child { margin-bottom: 0; }

/* Entry CTA */
.entrada-cta-block {
    max-width: 680px;
    margin: 0 auto var(--space-2xl);
}

.entrada-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-xl) var(--space-lg);
    border: 1px solid;
    border-radius: 2px;
    background: white;
}

.entrada-cta-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 460px;
}

/* More articles */
.entrada-more {
    max-width: 680px;
    margin: 0 auto var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.entrada-more-title {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

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

.entrada-more-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: 2px;
    text-decoration: none;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.entrada-more-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.entrada-more-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.4;
}

/* Back link */
.entrada-back { max-width: 680px; margin: 0 auto; }

.entrada-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease, gap 0.3s ease;
}

.entrada-back-link:hover { color: var(--gold); gap: 12px; }

/* ─── Responsive journal ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .journal-full-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .journal-preview-grid { grid-template-columns: 1fr; }
    .journal-hero-card     { grid-template-columns: 1fr; }
    .journal-hero-card-visual { min-height: 200px; }
    .journal-full-grid     { grid-template-columns: 1fr; }
    .journal-hero-title    { font-size: clamp(3rem, 12vw, 5rem); }
    .entrada-title         { font-size: clamp(1.7rem, 6vw, 2.5rem); }
    .entrada-content       { padding-left: 16px; }
    .entrada-more-grid     { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   DESIGN OVERHAUL V2 — Luxury Editorial Redesign
   Avant-garde, technológico, interactivo
   ═══════════════════════════════════════════════════════════════ */

/* ─── Custom Cursor ─────────────────────────────────────────── */
@media (pointer: fine) {
    body { cursor: none; }
    a, button, [role="button"], .collection-panel, .piece-card { cursor: none; }
}

.cursor {
    position: fixed;
    top: 0; left: 0;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    will-change: transform;
}

.cursor-follower {
    position: fixed;
    top: 0; left: 0;
    width: 32px; height: 32px;
    border: 1px solid rgba(201, 169, 110, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    will-change: transform;
}

.cursor.cursor--hover {
    width: 10px; height: 10px;
    background: var(--gold-light);
}

.cursor-follower.cursor-follower--hover {
    width: 48px; height: 48px;
    border-color: var(--gold);
}

.cursor--hidden {
    opacity: 0 !important;
    pointer-events: none;
}

/* ─── Stagger Animations ────────────────────────────────────── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grid children */
.collections-grid .animate-on-scroll:nth-child(1),
.featured-grid .animate-on-scroll:nth-child(1),
.services-grid .service-row:nth-child(1) { transition-delay: 0ms; }

.collections-grid .animate-on-scroll:nth-child(2),
.featured-grid .animate-on-scroll:nth-child(2),
.services-grid .service-row:nth-child(2) { transition-delay: 100ms; }

.collections-grid .animate-on-scroll:nth-child(3),
.featured-grid .animate-on-scroll:nth-child(3),
.services-grid .service-row:nth-child(3) { transition-delay: 200ms; }

.collections-grid .animate-on-scroll:nth-child(4),
.featured-grid .animate-on-scroll:nth-child(4),
.services-grid .service-row:nth-child(4) { transition-delay: 300ms; }

.featured-grid .animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.featured-grid .animate-on-scroll:nth-child(6) { transition-delay: 500ms; }

/* ─── Hero V2 — Left-aligned, Cinematic ─────────────────────── */
.hero-content {
    text-align: left !important;
    max-width: 1000px;
    margin-left: 0;
    margin-right: auto;
    padding-top: 160px;
    padding-bottom: 100px;
}

.hero-eyebrow {
    display: inline-flex !important;
    align-items: center;
    gap: 14px;
    padding: 0 !important;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px !important;
    height: 1px !important;
    background: var(--gold);
    position: static !important;
}

.hero-eyebrow::after { display: none !important; }

.hero-title {
    font-size: clamp(3.5rem, 9vw, 8rem) !important;
    line-height: 1.0 !important;
    letter-spacing: -3px !important;
    margin-bottom: var(--space-lg) !important;
}

.hero-desc {
    max-width: 520px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-size: 15px;
    line-height: 1.9;
}

.hero-actions {
    justify-content: flex-start !important;
}

/* Hero decorative year tag */
.hero::after {
    content: '2025';
    position: absolute;
    bottom: 48px;
    right: 48px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    color: rgba(201,169,110,0.3);
    z-index: 2;
}

/* Hero vertical line */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 80px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(201,169,110,0.08) 30%, rgba(201,169,110,0.08) 70%, transparent 100%);
    z-index: 1;
}

/* ─── Section Typography V2 ─────────────────────────────────── */
.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem) !important;
    letter-spacing: -1px;
    line-height: 1.1 !important;
}

.section {
    padding: var(--space-2xl) 0 !important;
}

/* ─── Buttons V2 — Magnetic Ready ───────────────────────────── */
.btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s, border-color 0.25s !important;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}

.btn:hover::before { transform: scaleX(1); }

.btn-primary {
    background: var(--gold) !important;
    color: #0a0a0a !important;
    border: none;
    letter-spacing: 2.5px;
}

.btn-primary:hover {
    background: var(--gold-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,169,110,0.35) !important;
}

.btn-outline {
    border: 1px solid rgba(201,169,110,0.35) !important;
    color: var(--gold-light) !important;
    letter-spacing: 2.5px;
}

.btn-outline:hover {
    border-color: var(--gold) !important;
    background: rgba(201,169,110,0.08) !important;
    transform: translateY(-2px);
}

/* ─── Brand Statement V2 ────────────────────────────────────── */
.brand-statement {
    background: var(--black) !important;
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
}

.brand-statement::before {
    content: 'BERSAGLIO';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(6rem, 18vw, 16rem);
    font-weight: 700;
    letter-spacing: 20px;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.brand-statement-inner {
    position: relative;
    z-index: 1;
}

.brand-quote {
    color: var(--ivory) !important;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem) !important;
    line-height: 1.5 !important;
    letter-spacing: -0.3px;
}

.brand-divider svg { color: var(--gold) !important; }

.brand-origin {
    color: var(--text-on-dark-muted) !important;
    letter-spacing: 4px;
}

/* ─── Collections V2 — Dark Editorial Panels ────────────────── */
.collections {
    background: var(--black-carbon) !important;
    padding: var(--space-2xl) 0 !important;
}

.collections .section-eyebrow { color: var(--gold) !important; }
.collections .section-title { color: var(--ivory) !important; }
.collections .section-desc { color: var(--text-on-dark-muted) !important; }
.collections .btn-outline { border-color: rgba(201,169,110,0.3) !important; color: var(--gold-light) !important; }

.collections-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2px !important;
}

/* Override old collection-card entirely */
.collection-card { display: none !important; }

/* New panel styles */
.collection-panel {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.collection-panel.is-visible { opacity: 1; transform: translateY(0); }

.collection-panel[data-col="esmeraldas-colombianas"] {
    background: linear-gradient(145deg, #050e0a 0%, #071f14 50%, #0d3323 100%);
}
.collection-panel[data-col="diamantes-eternos"] {
    background: linear-gradient(145deg, #080810 0%, #10102a 50%, #18184a 100%);
}
.collection-panel[data-col="oro-escultorico"] {
    background: linear-gradient(145deg, #100e06 0%, #231a08 50%, #332810 100%);
}
.collection-panel[data-col="novias"] {
    background: linear-gradient(145deg, #0d0810 0%, #1d1020 50%, #2d1838 100%);
}

.collection-panel-link {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding: 36px 40px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.collection-panel-bg-icon {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    opacity: 0.05;
    transition: opacity 0.6s, transform 0.6s;
    pointer-events: none;
}

.collection-panel-bg-icon svg {
    width: 180px;
    height: 180px;
    color: var(--gold);
}

.collection-panel:hover .collection-panel-bg-icon {
    opacity: 0.12;
    transform: translateY(-50%) scale(1.12) rotate(5deg);
}

/* Bottom gold bar */
.collection-panel::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.5s var(--ease);
}

.collection-panel:hover::after { width: 100%; }

/* Top left number */
.collection-panel-num {
    position: absolute;
    top: 28px; left: 40px;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--gold);
    opacity: 0.55;
}

.collection-panel-sub {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.75;
    margin-bottom: 10px;
    display: block;
}

.collection-panel-name {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.8vw, 2.8rem);
    font-weight: 300;
    color: var(--ivory);
    letter-spacing: -0.5px;
    line-height: 1.05;
    margin-bottom: 0;
    transition: transform 0.4s var(--ease);
}

.collection-panel:hover .collection-panel-name {
    transform: translateY(-6px);
}

.collection-panel-desc {
    font-size: 13px;
    color: var(--text-on-dark-muted);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.45s var(--ease), opacity 0.4s, margin-top 0.4s;
}

.collection-panel:hover .collection-panel-desc {
    max-height: 80px;
    opacity: 1;
    margin-top: 14px;
}

.collection-panel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}

.collection-panel:hover .collection-panel-footer {
    opacity: 1;
    transform: translateY(0);
}

.collection-panel-count {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}

.collection-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.collection-panel-cta svg {
    transition: transform 0.3s;
}

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

/* ─── Featured Pieces V2 — Editorial Grid ───────────────────── */
.featured-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1px !important;
    background: #111 !important;
    border: 1px solid #111;
}

.piece-card {
    background: #0d0d0d !important;
    border: none !important;
    border-radius: 0 !important;
    transition: background 0.3s !important;
}

.piece-card:hover {
    background: #141414 !important;
    box-shadow: none !important;
}

.piece-image-wrapper {
    aspect-ratio: 3 / 4 !important;
    background: #0a0a0a !important;
    position: relative;
    overflow: hidden;
}

/* Reveal overlay on hover */
.piece-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.piece-card:hover .piece-image-wrapper::after { opacity: 1; }

.piece-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #0a0a0a, #141414);
}

.piece-placeholder svg {
    width: 64px !important;
    height: 64px !important;
    color: rgba(201,169,110,0.12) !important;
    opacity: 1 !important;
    transition: transform 0.5s, color 0.5s;
}

.piece-card:hover .piece-placeholder svg {
    transform: scale(1.08) rotate(5deg);
    color: rgba(201,169,110,0.22) !important;
}

.piece-info {
    padding: 24px 28px 28px !important;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.piece-name {
    font-size: 1.2rem !important;
    letter-spacing: -0.2px;
    margin-bottom: 6px !important;
}

.piece-desc {
    font-size: 12px !important;
    line-height: 1.65 !important;
    margin-bottom: var(--space-sm) !important;
    opacity: 0.7;
}

.piece-specs {
    margin-bottom: 16px !important;
    padding-top: 12px !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
}

.piece-footer {
    padding-top: 16px !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
}

.piece-price {
    font-size: 1rem !important;
}

/* Piece action buttons V2 */
.piece-actions {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 3;
}

.piece-card:hover .piece-actions {
    opacity: 1;
    transform: translateX(0);
}

.piece-wishlist-btn,
.piece-cart-btn {
    width: 36px !important;
    height: 36px !important;
    background: rgba(10,10,10,0.85) !important;
    border: 1px solid rgba(201,169,110,0.2) !important;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s !important;
    border-radius: 0 !important;
    padding: 0 !important;
    color: var(--text-on-dark-muted) !important;
}

.piece-wishlist-btn:hover,
.piece-cart-btn:hover {
    background: rgba(201,169,110,0.15) !important;
    border-color: var(--gold) !important;
    color: var(--gold) !important;
    transform: scale(1.05);
}

.piece-wishlist-btn.is-saved {
    color: var(--gold) !important;
    border-color: rgba(201,169,110,0.5) !important;
}

.piece-cart-btn.is-in-cart {
    color: var(--gold) !important;
    border-color: rgba(201,169,110,0.5) !important;
}

.piece-badge {
    border-radius: 0 !important;
    font-size: 9px !important;
    letter-spacing: 1.5px !important;
    top: 14px !important;
    left: 14px !important;
    z-index: 3;
}

/* ─── Services V2 — Numbered Rows ───────────────────────────── */
.services {
    background: var(--ivory) !important;
}

.services .section-title { color: var(--text-primary) !important; }

/* Hide old service cards */
.service-card { display: none !important; }

.services-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    grid-template-columns: unset !important;
}

.service-row {
    display: grid;
    grid-template-columns: 72px 52px 1fr;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    transition: padding-left 0.35s var(--ease), background 0.3s;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), padding-left 0.35s, background 0.3s;
}

.service-row.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.service-row::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s var(--ease);
}

.service-row:hover::before { transform: scaleY(1); }
.service-row:hover { padding-left: 18px; }
.service-row:first-child { border-top: 1px solid var(--border); }

.service-row-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--champagne-dark);
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.3s;
}

.service-row:hover .service-row-num {
    color: var(--gold-dark);
}

.service-row-icon {
    display: flex;
    align-items: center;
}

.service-row-icon svg {
    width: 26px;
    height: 26px;
    color: var(--emerald-deep);
    transition: color 0.3s;
}

.service-row:hover .service-row-icon svg {
    color: var(--gold-dark);
}

.service-row-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.service-row-desc {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ─── About Teaser V2 ───────────────────────────────────────── */
.about-teaser .stat-number {
    font-size: 2.5rem !important;
    letter-spacing: -1px;
}

/* ─── CTA Banner V2 ─────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, #060f0b 0%, var(--emerald-deep) 50%, #0d1f16 100%) !important;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem) !important;
    letter-spacing: -0.5px;
}

/* ─── Section Footer V2 ─────────────────────────────────────── */
.section-footer {
    text-align: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(201,169,110,0.12);
}

/* ─── Cart button badge V2 ──────────────────────────────────── */
.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: color var(--transition);
}

.cart-btn:hover { color: var(--emerald-deep); }

.cart-count {
    position: absolute;
    top: 1px; right: 1px;
    min-width: 16px; height: 16px;
    background: var(--gold);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    border-radius: 8px;
    padding: 0 3px;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-count.has-items { display: flex; }

.header:not(.scrolled) .cart-btn { color: var(--text-on-dark-muted); }
.header:not(.scrolled) .cart-btn:hover { color: var(--ivory); }

/* ─── Noise Texture Overlay ─────────────────────────────────── */
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 80px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.07) 30%, rgba(201,169,110,0.07) 70%, transparent);
    z-index: 1;
}

/* ─── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── Selection ─────────────────────────────────────────────── */
::selection {
    background: rgba(201,169,110,0.25);
    color: var(--ivory);
}

/* ─── Journal Preview V2 ────────────────────────────────────── */
.journal-preview {
    background: #050908 !important;
}

/* ─── Hero Meta Strip ───────────────────────────────────────── */
.hero-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(245,240,232,0.4);
}

.hero-meta-item svg { color: var(--gold); flex-shrink: 0; }

.hero-meta-sep {
    color: rgba(245,240,232,0.15);
    font-size: 14px;
}

/* ─── Featured section: full-bleed dark ─────────────────────── */
.featured {
    background: var(--black) !important;
}

.featured .section-header {
    padding-bottom: var(--space-xl);
}

.featured .section-eyebrow { color: var(--gold) !important; }
.featured .section-title   { color: var(--ivory) !important; }
.featured .section-desc    { color: var(--text-on-dark-muted) !important; }

/* Piece card border on dark BG — subtle grid lines */
.featured-grid {
    border-top: 1px solid #111 !important;
    border-left: 1px solid #111 !important;
}

.piece-card {
    border-right: 1px solid #111 !important;
    border-bottom: 1px solid #111 !important;
}

/* ─── Collections section: section header left-aligned ──────── */
.collections .section-header { text-align: left; }
.collections .section-eyebrow::before,
.collections .section-eyebrow::after { display: none; }
.collections .section-eyebrow {
    padding: 0;
    letter-spacing: 4px;
}

/* ─── Mobile Responsive V2 ──────────────────────────────────── */
@media (max-width: 968px) {
    .collections-grid {
        grid-template-columns: 1fr !important;
    }

    .collection-panel { aspect-ratio: 3 / 2 !important; }

    .featured-grid {
        grid-template-columns: 1fr !important;
        gap: 1px !important;
    }

    .hero-title {
        font-size: clamp(2.8rem, 12vw, 5rem) !important;
        letter-spacing: -1px !important;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem) !important;
    }

    .service-row {
        grid-template-columns: 48px 40px 1fr;
        gap: 16px;
        padding: 20px 0;
    }

    .service-row-num { font-size: 1.6rem; }

    .cursor, .cursor-follower { display: none; }

    .hero::after { display: none; }
}

@media (max-width: 600px) {
    .featured-grid {
        grid-template-columns: 1fr !important;
    }

    .hero-content {
        padding-top: 120px;
        padding-bottom: 80px;
    }
}
