/* Nina's Beauty - Ultra Luxury Editorial Design
   Peluquería de alto nivel | Color y Alisados
   Design: editorial, refined, exclusive, high-value experience */

:root {
    /* Luxury palette — refined exclusivity, gold accents */
    --charcoal: #080808;
    --charcoal-soft: #121212;
    --black-pearl: #0C0C0C;
    --champagne: #B8956B;
    --champagne-light: #D4B896;
    --gold: #C9A962;
    --gold-bright: #E5D4A1;
    --champagne-muted: rgba(184, 149, 107, 0.45);
    --champagne-muted-text: #7A6B5A;
    --gold-subtle: rgba(201, 169, 98, 0.15);
    --ivory: #FAF8F5;
    --ivory-dark: #F0EBE4;
    --ivory-warm: #F7F3ED;
    --taupe: #5A5149;
    --taupe-light: #7A6F65;
    --taupe-deep: #4A423B;
    
    /* Semantic */
    --bg-dark: var(--charcoal);
    --bg-body: var(--ivory);
    --text-primary: var(--charcoal);
    --text-muted: var(--taupe);
    --accent: var(--champagne);
    --accent-hover: var(--champagne-light);
    
    /* Effects */
    --shadow-soft: 0 4px 32px rgba(10, 10, 10, 0.06);
    --shadow-elevated: 0 24px 80px rgba(10, 10, 10, 0.12);
    --shadow-luxury: 0 32px 100px rgba(10, 10, 10, 0.15);
    --shadow-gold: 0 8px 40px rgba(184, 149, 107, 0.2);
    --transition-default: 320ms cubic-bezier(0.33, 1, 0.68, 1);
    --transition-smooth: 500ms cubic-bezier(0.33, 1, 0.68, 1);
    --transition-luxe: 600ms cubic-bezier(0.22, 1, 0.36, 1);
    --transition-bounce: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Refined borders & lighting */
    --border-glow: 0 0 0 1px rgba(184, 149, 107, 0.08), 0 0 20px rgba(184, 149, 107, 0.04);
    --border-glow-hover: 0 0 0 1px rgba(184, 149, 107, 0.2), 0 0 30px rgba(184, 149, 107, 0.08);
    --inner-shadow-top: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    --inner-shadow-top-strong: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    --shadow-layered: 0 1px 0 rgba(255, 255, 255, 0.04), 0 4px 32px rgba(10, 10, 10, 0.06), 0 0 0 1px rgba(122, 111, 101, 0.08);
    --shadow-layered-hover: 0 0 0 1px rgba(184, 149, 107, 0.15), 0 8px 40px rgba(10, 10, 10, 0.08), 0 0 40px rgba(184, 149, 107, 0.06);
    
    /* Radius (sutil para mantener editorial) */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-pill: 9999px;
}


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

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

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0.01em;
    color: var(--text-primary);
    background: var(--bg-body);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-default), opacity var(--transition-default);
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--champagne);
    outline-offset: 2px;
}

::selection {
    background: rgba(184, 149, 107, 0.25);
    color: var(--charcoal);
}

/* Grain overlay — textura editorial sutil */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    mix-blend-mode: multiply;
    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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Scroll reveal base */
[data-animate] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 6%;
    background: rgba(250, 248, 245, 0.88);
    backdrop-filter: blur(32px) saturate(1.1);
    -webkit-backdrop-filter: blur(32px) saturate(1.1);
    border-bottom: 1px solid rgba(122, 111, 101, 0.06);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6), 0 4px 32px rgba(10, 10, 10, 0.02);
    transition: padding var(--transition-smooth), background var(--transition-smooth), box-shadow var(--transition-smooth);
}

.header.scrolled {
    padding: 0.75rem 6%;
    background: rgba(250, 248, 245, 0.96);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 40px rgba(10, 10, 10, 0.06);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.logo img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(184, 149, 107, 0.12), 0 4px 16px rgba(10, 10, 10, 0.06);
    transition: transform var(--transition-default), box-shadow var(--transition-default);
}

.logo:hover img {
    transform: scale(1.06);
    box-shadow: 0 0 0 1px rgba(184, 149, 107, 0.25), 0 8px 28px rgba(10, 10, 10, 0.08), 0 0 28px rgba(184, 149, 107, 0.06);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    transition: color var(--transition-default);
}

.logo:hover .logo-text {
    color: var(--champagne);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--taupe);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--champagne), var(--champagne-light));
    transition: width var(--transition-default);
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Servicios */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 4px;
    margin-left: 0.4em;
    vertical-align: 0.25em;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 6 4'%3E%3Cpath fill='currentColor' d='M0 0l3 4 3-4z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.nav-sublinks {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0.5rem);
    list-style: none;
    min-width: 200px;
    padding: 0.5rem 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(122, 111, 101, 0.08);
    border-radius: var(--radius-md);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7), 0 12px 40px rgba(10, 10, 10, 0.06), 0 0 0 1px rgba(184, 149, 107, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-default), visibility var(--transition-default), transform var(--transition-default);
    z-index: 50;
}

.nav-dropdown:hover .nav-sublinks {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0.25rem);
}

.nav-sublinks a {
    display: block;
    padding: 0.6rem 1.35rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--taupe);
    transition: color var(--transition-default), background var(--transition-default);
}

.nav-sublinks a:hover {
    color: var(--champagne);
    background: rgba(184, 149, 107, 0.06);
}

.nav-sublinks a::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform var(--transition-default);
}

.menu-toggle:hover {
    transform: scale(1.05);
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    transition: transform var(--transition-default), opacity var(--transition-default);
}

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

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

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

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 9rem 6% 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(184, 149, 107, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 60% 40% at 100% 90%, rgba(122, 111, 101, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 0% 70%, rgba(201, 169, 98, 0.05) 0%, transparent 45%),
        linear-gradient(180deg, var(--ivory) 0%, var(--ivory-warm) 100%);
}

.hero-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.06) 0%, transparent 45%, rgba(184, 149, 107, 0.04) 100%);
    pointer-events: none;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
}

.hero-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s forwards;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    line-height: 1.04;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    font-family: 'Cinzel', 'Cormorant Garamond', serif;
    letter-spacing: 0.02em;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.33, 1, 0.68, 1) 0.2s both;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    font-style: italic;
    color: var(--champagne);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-shadow: 0 0 80px rgba(184, 149, 107, 0.12);
}

.hero-subtitle {
    font-size: 1.08rem;
    color: var(--taupe);
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.02em;
    max-width: 480px;
    margin: 0 auto 2.75rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.33, 1, 0.68, 1) 0.25s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.33, 1, 0.68, 1) 0.35s both;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.33, 1, 0.68, 1) 0.45s both;
}

.hero-badge {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--taupe);
    padding: 0.55rem 1.1rem;
    border: 1px solid rgba(122, 111, 101, 0.2);
    border-radius: var(--radius-sm);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: all var(--transition-default);
}

.hero-badge:hover {
    border-color: var(--champagne);
    color: var(--champagne);
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(184, 149, 107, 0.25), 0 6px 20px rgba(184, 149, 107, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--taupe);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.33, 1, 0.68, 1) 0.6s both;
}

.hero-scroll svg {
    animation: bounce 2.5s ease-in-out infinite;
}

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

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

/* Experience Section */
.experience {
    position: relative;
    padding: 7rem 6%;
    background: var(--charcoal);
    color: var(--ivory);
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 70% 45% at 15% 15%, rgba(184, 149, 107, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 55% 35% at 85% 85%, rgba(201, 169, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.experience .section-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.experience .section-label {
    color: var(--champagne);
}

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

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.experience-card {
    position: relative;
    padding: 2.75rem 2.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(184, 149, 107, 0.1);
    border-radius: var(--radius-md);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-smooth);
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--champagne) 30%, var(--champagne-light) 70%, transparent 100%);
    opacity: 0;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    transition: opacity var(--transition-default);
}

.experience-card:hover {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(184, 149, 107, 0.22);
    transform: translateY(-6px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 0 0 1px rgba(184, 149, 107, 0.08), 0 28px 72px rgba(0, 0, 0, 0.28), 0 0 48px rgba(184, 149, 107, 0.06);
}

.experience-card:hover::before {
    opacity: 1;
}

.experience-icon {
    color: var(--champagne);
    margin-bottom: 1.5rem;
    transition: transform var(--transition-default);
}

.experience-card:hover .experience-icon {
    transform: scale(1.08);
}

.experience-card h3 {
    font-family: 'Cinzel', 'Cormorant Garamond', serif;
    font-size: 1.28rem;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 0.75rem;
    letter-spacing: 0.06em;
}

.experience-card p {
    font-size: 0.95rem;
    color: var(--taupe-light);
    line-height: 1.8;
}

.experience-quote {
    max-width: 720px;
    margin: 0 auto;
}

.experience-quote blockquote {
    margin: 0;
    padding: 2.75rem 3.25rem;
    border-left: 3px solid var(--champagne);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    box-shadow: inset 1px 0 0 rgba(184, 149, 107, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.experience-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--ivory);
    line-height: 1.75;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-default);
    min-height: 50px;
}

.btn-primary {
    background: var(--charcoal);
    color: var(--ivory);
    border: 2px solid var(--charcoal);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 4px 20px rgba(10, 10, 10, 0.12);
}

.btn-primary:hover {
    background: transparent;
    color: var(--charcoal);
    transform: translateY(-3px);
    box-shadow: 0 0 0 2px var(--champagne), 0 12px 40px rgba(10, 10, 10, 0.1), 0 0 32px rgba(184, 149, 107, 0.12);
    border-color: var(--champagne);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(10, 10, 10, 0.14);
}

.btn-secondary {
    background: transparent;
    color: var(--taupe);
    border: 1px solid rgba(139, 126, 116, 0.35);
}

.btn-secondary:hover {
    border-color: var(--champagne);
    color: var(--champagne);
}

.btn-full {
    width: 100%;
}

/* Section intro */
.section-intro {
    text-align: center;
    margin-bottom: 4.5rem;
    position: relative;
}

.section-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--champagne-muted-text);
    margin-bottom: 0.5rem;
    letter-spacing: 0.12em;
}

.section-number-about,
.section-number-contact {
    position: absolute;
    top: 0;
    left: 0;
    text-align: left;
}

.section-number-contact {
    top: 3rem;
}

.section-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.25rem);
    color: var(--charcoal);
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Services */
.services {
    padding: 7rem 6%;
    background: var(--ivory);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    background: var(--ivory-dark);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(122, 111, 101, 0.06);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-layered);
    transition: all var(--transition-smooth);
    cursor: default;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 149, 107, 0.2);
    box-shadow: var(--shadow-layered-hover);
}

.service-card h3 a {
    color: inherit;
    transition: color var(--transition-default);
}

.service-card h3 a:hover {
    color: var(--champagne);
}

.service-card p a {
    color: var(--champagne);
    transition: color var(--transition-default);
}

.service-card p a:hover {
    color: var(--charcoal);
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--champagne-muted-text);
    letter-spacing: 0.05em;
}

.service-card-featured .service-number {
    color: rgba(215, 208, 195, 0.85);
}

.service-card-featured {
    background: var(--charcoal);
    color: var(--ivory);
    border: 1px solid rgba(184, 149, 107, 0.12);
    border-radius: var(--radius-md);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 12px 48px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.service-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, var(--champagne) 45%, var(--champagne-light) 55%, transparent 95%);
    opacity: 0.8;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    box-shadow: 0 0 24px rgba(184, 149, 107, 0.25);
}

.service-card-featured:hover {
    transform: translateY(-8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 0 0 1px rgba(184, 149, 107, 0.2), 0 20px 64px rgba(0, 0, 0, 0.28), 0 0 56px rgba(184, 149, 107, 0.1);
}

.service-card-featured .service-icon {
    color: var(--champagne);
}

.service-card-featured h3 {
    color: var(--ivory);
}

.service-card-featured h3 a {
    color: var(--ivory);
}

.service-card-featured h3 a:hover {
    color: var(--champagne);
}

.service-card-featured p a {
    color: var(--champagne);
}

.service-card-featured p a:hover {
    color: var(--gold-bright);
}

.service-card-featured p {
    color: var(--taupe-light);
}

.service-icon {
    color: var(--champagne);
    margin-bottom: 1.5rem;
    transition: transform var(--transition-default);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--taupe);
    line-height: 1.7;
}

/* About */
.about {
    position: relative;
    padding: 7rem 6%;
    background: var(--charcoal);
    color: var(--ivory);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-visual {
    position: relative;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid rgba(184, 149, 107, 0.18);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25), 0 28px 88px rgba(0, 0, 0, 0.35), 0 0 64px rgba(184, 149, 107, 0.05);
}

.about-image-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
    transition: transform var(--transition-luxe);
}

.about-visual:hover .about-image-img {
    transform: scale(1.02);
}

.about-image-frame {
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(184, 149, 107, 0.22);
    border-radius: 2px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.about-badge {
    position: absolute;
    bottom: -2rem;
    right: 2rem;
    background: var(--champagne);
    color: var(--charcoal);
    padding: 1.5rem 2.25rem;
    text-align: center;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 0 1px rgba(184, 149, 107, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 16px 48px rgba(10, 10, 10, 0.22);
    transition: transform var(--transition-default), box-shadow var(--transition-default);
}

.about-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 0 1px rgba(184, 149, 107, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 20px 56px rgba(10, 10, 10, 0.25);
}

.about-badge-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.about-badge-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-content .section-label {
    color: var(--champagne);
}

.about-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
    color: var(--ivory);
}

.about-text {
    font-size: 1rem;
    color: var(--taupe-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--ivory);
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--champagne);
    margin-bottom: 0.25rem;
    transition: color var(--transition-default);
}

.stat:hover .stat-value {
    color: var(--gold-bright);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--taupe-light);
}

/* Gallery */
.gallery {
    padding: 7rem 6%;
    background: var(--ivory);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 280px);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    background-color: var(--charcoal-soft);
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(122, 111, 101, 0.06);
    border-radius: var(--radius-md);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all var(--transition-smooth);
    overflow: hidden;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 35%, transparent 65%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 10, 0.35) 100%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 0 0 1px rgba(184, 149, 107, 0.1), 0 16px 56px rgba(0, 0, 0, 0.22), 0 0 48px rgba(184, 149, 107, 0.05);
}

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

.gallery-item-large {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

/* FAQ Section - SEO rich snippets */
.faq-section {
    padding: 7rem 6%;
    background: var(--charcoal-soft);
}

.faq-section .section-intro {
    margin-bottom: 3rem;
}

.faq-section .section-label {
    color: var(--champagne);
}

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

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(184, 149, 107, 0.12);
    border-radius: var(--radius-md);
    padding: 1.35rem 1.75rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: all var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(184, 149, 107, 0.25);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 0 1px rgba(184, 149, 107, 0.06);
}

.faq-item[open] {
    border-color: rgba(184, 149, 107, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 28px rgba(184, 149, 107, 0.05);
}

.faq-item summary {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem;
    font-weight: 500;
    color: var(--ivory);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--champagne);
    flex-shrink: 0;
    transition: transform var(--transition-default), color var(--transition-default);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(184, 149, 107, 0.12);
    color: var(--taupe-light);
    font-size: 0.95rem;
    line-height: 1.75;
}

/* Contact */
.contact {
    position: relative;
    padding: 7rem 6%;
    background: var(--ivory-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info .section-label {
    color: var(--champagne);
}

.contact-title {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.contact-exclusive {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 0.75rem;
}

.contact-lead {
    color: var(--taupe);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Contador de contactos - prueba social */
.contact-counter {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.75rem 1.35rem;
    background: var(--gold-subtle);
    border: 1px solid rgba(184, 149, 107, 0.18);
    border-radius: var(--radius-md);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 4px 16px rgba(184, 149, 107, 0.06);
    transition: transform var(--transition-default), box-shadow var(--transition-default);
}

.contact-counter:hover {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 6px 20px rgba(184, 149, 107, 0.08);
}

.contact-counter-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--champagne);
    letter-spacing: 0.02em;
    transition: color var(--transition-default);
}

.contact-counter-value.counted {
    color: var(--charcoal);
}

.contact-counter-label {
    font-size: 0.85rem;
    color: var(--taupe);
    letter-spacing: 0.02em;
}

.contact-counter-attempts {
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    font-size: 0.9em;
}

.contact-counter-attempts .contact-counter-value {
    font-size: 1.25rem;
}

.contact-details {
    font-style: normal;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    flex-shrink: 0;
    color: var(--champagne);
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--taupe);
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--taupe);
}

.contact-item a:hover {
    color: var(--champagne);
}

/* Mapa Google Maps embebido */
.contact-map {
    margin-top: 2rem;
}

.contact-map-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--champagne);
    margin-bottom: 1rem;
    transition: color var(--transition-default);
}

.contact-map-link:hover {
    color: var(--champagne-light);
}

.map-responsive {
    overflow: hidden;
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    border: 1px solid rgba(122, 111, 101, 0.1);
    border-radius: var(--radius-md);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 24px rgba(10, 10, 10, 0.05);
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-form-wrapper {
    background: var(--ivory);
    padding: 2.75rem;
    border: 1px solid rgba(122, 111, 101, 0.06);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-layered);
}

.form-group {
    margin-bottom: 1.35rem;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    border: 1px solid rgba(122, 111, 101, 0.18);
    border-radius: var(--radius-sm);
    background: var(--ivory);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    transition: all var(--transition-default);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--champagne-muted-text);
    opacity: 0.8;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--champagne);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 0 0 1px rgba(184, 149, 107, 0.25);
}

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

/* Messages */
.success-message,
.error-message {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.35rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
}

.success-message {
    background: rgba(184, 149, 107, 0.1);
    border: 1px solid rgba(184, 149, 107, 0.25);
    color: var(--charcoal);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.error-message {
    background: rgba(205, 92, 92, 0.08);
    border: 1px solid rgba(205, 92, 92, 0.3);
    color: #8b0000;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 6px 24px rgba(10, 10, 10, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
    z-index: 99;
    transition: all var(--transition-default);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 16px 48px rgba(37, 211, 102, 0.4), 0 0 32px rgba(37, 211, 102, 0.15);
}

.whatsapp-float svg {
    transition: transform var(--transition-bounce);
}

.whatsapp-float:hover svg {
    transform: scale(1.08);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--ivory);
    padding: 4.5rem 5%;
    border-top: 1px solid rgba(184, 149, 107, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ivory);
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: color var(--transition-default);
}

.footer-logo:hover {
    color: var(--champagne);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--taupe-light);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social a {
    color: var(--taupe-light);
    transition: color var(--transition-default), transform var(--transition-default);
}

.footer-social a:hover {
    color: var(--champagne);
    transform: translateY(-2px);
}

.footer-social-instagram {
    display: inline-flex;
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--taupe);
    letter-spacing: 0.02em;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--taupe-light);
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    transition: color var(--transition-default);
}

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

/* Article pages (SEO content) */
.article-page {
    padding-top: 5rem;
    min-height: 100vh;
}

.article-hero {
    position: relative;
    padding: 5rem 6% 4rem;
    text-align: center;
    overflow: hidden;
}

.article-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 75% 50% at 50% 0%, rgba(184, 149, 107, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 45% 35% at 85% 25%, rgba(201, 169, 98, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--ivory) 0%, var(--ivory-warm) 100%);
}

.article-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 35%);
    pointer-events: none;
}

.article-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.article-label {
    display: inline-block;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: 0.75rem;
    padding: 0.4rem 1.1rem;
    border: 1px solid rgba(184, 149, 107, 0.22);
    border-radius: var(--radius-sm);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.article-title {
    font-family: 'Cinzel', 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5), 0 2px 24px rgba(184, 149, 107, 0.06);
}

.article-lead {
    font-size: 1.12rem;
    color: var(--taupe);
    line-height: 1.75;
}

.article-content {
    padding: 0 6% 5rem;
    max-width: 720px;
    margin: 0 auto;
}

.article-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--taupe-deep);
    padding: 2.5rem 0;
    position: relative;
}

.article-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 149, 107, 0.25), rgba(122, 111, 101, 0.15), rgba(184, 149, 107, 0.25), transparent);
}

.article-body p {
    margin-bottom: 1.25rem;
}

.article-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--charcoal);
    margin: 2.5rem 0 1rem;
}

.article-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--charcoal);
    margin: 2rem 0 0.75rem;
}

.article-cta {
    display: flex;
    gap: 1rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.article-related {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(122, 111, 101, 0.18);
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.55);
}

.article-related p {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 0.75rem;
}

.article-related ul {
    list-style: none;
}

.article-related li {
    margin-bottom: 0.5rem;
}

.article-related a {
    color: var(--champagne);
    transition: color var(--transition-default);
}

.article-related a:hover {
    color: var(--charcoal);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-quote p {
        font-size: 1.35rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card-featured {
        grid-column: span 2;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 220px);
    }
    
    .gallery-item-large {
        grid-row: span 1;
    }
    
    .gallery-item-wide {
        grid-column: span 1;
    }
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        box-shadow: -12px 0 48px rgba(8, 8, 8, 0.12), 0 0 0 1px rgba(122, 111, 101, 0.06);
        transition: right var(--transition-smooth);
        z-index: 200;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-dropdown > a::after {
        display: none;
    }
    
    .nav-sublinks {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        min-width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }
    
    .nav-sublinks a {
        font-size: 0.8rem;
        color: var(--taupe-light);
    }
    
    .menu-toggle {
        display: flex;
        z-index: 201;
    }
    
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        order: -1;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card-featured {
        grid-column: span 1;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 768px) {
    .section-number-about,
    .section-number-contact {
        position: static;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 5% 3rem;
    }
    
    .section-intro {
        margin-bottom: 3rem;
    }
}
