/* ============================================================
   NEW STYLE COIFFEUR – Main Stylesheet
   Direction: Editorial Luxury · Italian Salon
   Palette: Champagne Gold · Warm Ivory · Deep Espresso
   Fonts: Cormorant Garamond + Italiana + Outfit
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
    --gold:         #c9a96e;
    --gold-light:   #e8d5ae;
    --gold-dark:    #8b6914;
    --champagne:    #d4bc8a;
    --rose-gold:    #b76e79;
    --ivory:        #faf6f0;
    --ivory-mid:    #f0e8da;
    --espresso:     #1c1510;
    --charcoal:     #1a1a1a;
    --charcoal-mid: #2a2420;
    --warm-gray:    #6b6259;
    --white:        #ffffff;

    --serif:    'Cormorant Garamond', Georgia, serif;
    --display:  'Italiana', Georgia, serif;
    --sans:     'Outfit', system-ui, sans-serif;

    --radius:    12px;
    --radius-lg: 24px;
    --shadow:    0 8px 40px rgba(28, 21, 16, 0.10);
    --shadow-lg: 0 24px 64px rgba(28, 21, 16, 0.18);

    --nav-h:      84px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100%;
}
body {
    font-family: var(--sans);
    background: var(--ivory);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
    -webkit-font-smoothing: antialiased;
}
main { overflow-x: clip; max-width: 100%; }
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    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");
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::selection {
    background: var(--gold-light);
    color: var(--espresso);
}

/* ---------- CONTAINER ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
    background: rgba(28, 21, 16, 0.92);
    backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}
.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    line-height: 1.1;
}
.brand-logo {
    height: 64px;
    width: auto;
    flex-shrink: 0;
    filter: invert(1);
    opacity: 0.8;
    transition: opacity var(--transition), filter var(--transition);
}
.navbar-brand:hover .brand-logo {
    opacity: 1;
}
.brand-mark {
    width: 2px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    flex-shrink: 0;
    transition: height var(--transition);
}
.navbar.scrolled .brand-mark { height: 32px; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
    font-family: var(--display);
    font-size: 1.55rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.06em;
}
.brand-sub {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 1px;
}
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}
.nav-link {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 50%;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition), left var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; left: 0; }
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(201, 169, 110, 0.6);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.06);
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.nav-cta:hover {
    background: var(--gold);
    color: var(--espresso);
    border-color: var(--gold);
    transform: translateY(-1px);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--champagne) 100%);
    color: var(--espresso);
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
    box-shadow: 0 4px 24px rgba(201, 169, 110, 0.4);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(201, 169, 110, 0.5);
    filter: brightness(1.05);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.1rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}
.btn-ghost:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.12);
    color: var(--gold-light);
    transform: translateY(-2px);
}
.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2.1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.1rem;
    background: #25D366;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-top: 2.5rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}
.btn-whatsapp i { font-size: 1.1rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 0 clamp(6rem, 12vh, 9rem) clamp(2rem, 8vw, 7rem);
    overflow: hidden;
    max-width: 100%;
}
.hero-bg {
    position: absolute;
    inset: 0;
    will-change: transform;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    animation: heroKenBurns 18s ease-in-out infinite alternate;
    will-change: transform;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 10% 95%, rgba(28, 21, 16, 0.92) 0%, rgba(28, 21, 16, 0.5) 45%, transparent 72%),
        radial-gradient(ellipse 60% 50% at 0% 100%, rgba(0, 0, 0, 0.7) 0%, transparent 60%),
        linear-gradient(
            165deg,
            rgba(28, 21, 16, 0.6) 0%,
            rgba(28, 21, 16, 0.4) 35%,
            rgba(28, 21, 16, 0.88) 100%
        );
}
.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-ornament {
    position: absolute;
    z-index: 2;
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.5), transparent);
    opacity: 0;
    animation: fadeIn 1.2s 1s ease both;
}
.hero-ornament--left { left: 8%; top: 30%; }
.hero-ornament--right { right: 8%; bottom: 25%; height: 80px; }
.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    padding: 2rem 2.5rem 2rem 2rem;
    max-width: min(920px, 100%);
}
.hero-content::before {
    content: '';
    position: absolute;
    inset: -1.5rem -2rem -1.5rem -1.5rem;
    background: radial-gradient(ellipse 110% 120% at 0% 100%, rgba(12, 8, 5, 0.72) 0%, rgba(12, 8, 5, 0.35) 50%, transparent 75%);
    border-radius: 4px;
    z-index: -1;
    pointer-events: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.4rem;
    opacity: 0;
    animation: fadeUp 1s 0.2s var(--ease-out) both;
}
.hero-badge-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}
.hero-eyebrow {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-light);
    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.8),
        0 2px 16px rgba(0, 0, 0, 0.6);
}
.hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 1.6rem;
    line-height: 1;
}
.hero-title-pre {
    display: block;
    font-family: var(--serif);
    font-size: clamp(1.15rem, 2.8vw, 1.75rem);
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.6rem;
    padding-left: 0.1em;
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.85),
        0 4px 20px rgba(0, 0, 0, 0.65),
        0 0 40px rgba(28, 21, 16, 0.5);
    opacity: 0;
    animation: fadeUp 0.9s 0.4s var(--ease-out) both;
}
.hero-title-focus {
    position: relative;
    display: block;
    margin-bottom: 0.35rem;
    opacity: 0;
    animation: heroWordReveal 1.1s 0.55s var(--ease-out) both;
}
.hero-title-word {
    display: block;
    font-family: var(--display);
    font-size: clamp(4.5rem, 15vw, 11rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 0.92;
    max-width: 100%;
    overflow-wrap: break-word;
    background: linear-gradient(
        135deg,
        var(--gold-light) 0%,
        var(--gold) 35%,
        var(--champagne) 65%,
        var(--gold-dark) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter:
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.9))
        drop-shadow(0 6px 20px rgba(0, 0, 0, 0.7))
        drop-shadow(0 0 40px rgba(201, 169, 110, 0.35));
}
.hero-title-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 38%,
        rgba(255, 255, 255, 0.18) 50%,
        transparent 62%
    );
    background-size: 200% 100%;
    animation: titleShine 5s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: overlay;
}
.hero-title-post {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    padding-left: 0.1em;
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.9),
        0 6px 24px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(28, 21, 16, 0.55);
    opacity: 0;
    animation: fadeUp 0.9s 0.75s var(--ease-out) both;
}
.hero-title-rule {
    display: block;
    width: clamp(48px, 7vw, 88px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(201, 169, 110, 0.5);
}
.hero-subtitle {
    font-size: clamp(0.78rem, 1.5vw, 0.92rem);
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 2.6rem;
    padding-left: 0.15em;
    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.85),
        0 3px 14px rgba(0, 0, 0, 0.6);
    opacity: 0;
    animation: fadeUp 1s 0.9s var(--ease-out) both;
}
.hero-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s 1.05s var(--ease-out) both;
}
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s 1.4s ease both;
}
.hero-scroll span {
    display: block;
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, rgba(201,169,110,0.8), transparent);
    animation: scrollPulse 2.5s ease infinite;
}

/* ============================================================
   STRIP BADGE (marquee)
   ============================================================ */
.strip-badge {
    background: var(--espresso);
    overflow: hidden;
    max-width: 100%;
    border-top: 1px solid rgba(201, 169, 110, 0.18);
    border-bottom: 1px solid rgba(201, 169, 110, 0.18);
    position: relative;
}
.strip-badge::before,
.strip-badge::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.strip-badge::before {
    left: 0;
    background: linear-gradient(to right, var(--espresso), transparent);
}
.strip-badge::after {
    right: 0;
    background: linear-gradient(to left, var(--espresso), transparent);
}
.strip-inner {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marquee 28s linear infinite;
}
.strip-inner span {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 3rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    white-space: nowrap;
    border-right: 1px solid rgba(201, 169, 110, 0.12);
}
.strip-inner i { color: var(--gold); font-size: 0.65rem; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
    padding: 6rem 0;
    position: relative;
    max-width: 100%;
    overflow-x: clip;
}
.section-header { text-align: center; margin-bottom: 4.5rem; }
.section-ornament {
    display: block;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0.7;
    letter-spacing: 0.5em;
}
.section-ornament--light { color: var(--champagne); }
.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.9rem;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.12;
    color: var(--espresso);
}
.section-title em { font-style: italic; color: var(--gold-dark); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
    background: var(--ivory);
    background-image:
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(201,169,110,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 0% 100%, rgba(183,110,121,0.04) 0%, transparent 50%);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}
.service-card {
    background: var(--white);
    border: 1px solid rgba(201, 169, 110, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.8rem 2rem 2.4rem;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--champagne), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease-out);
}
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201,169,110,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 169, 110, 0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-num {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    font-family: var(--serif);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(201, 169, 110, 0.35);
    transition: color var(--transition);
}
.service-card:hover .service-num { color: var(--gold); }
.service-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(145deg, var(--ivory-mid), var(--ivory));
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.6rem;
    font-size: 1.35rem;
    color: var(--gold-dark);
    transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
    position: relative;
    z-index: 1;
}
.service-card:hover .service-icon {
    background: linear-gradient(145deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: transparent;
    transform: scale(1.05);
}
.service-card h3 {
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--espresso);
    position: relative;
    z-index: 1;
}
.service-card p {
    font-size: 0.88rem;
    color: var(--warm-gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
    background: var(--espresso);
    overflow: hidden;
}
.about-section::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.about-section .section-eyebrow { color: var(--champagne); }
.about-section .section-title { color: var(--white); }
.about-section .section-title em { color: var(--gold); }
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    align-items: center;
}
.about-image-wrap {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.about-frame-outer {
    position: relative;
    padding: 12px;
    max-width: 100%;
}
.about-frame-outer::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: calc(var(--radius-lg) + 8px);
    transform: translate(16px, 16px);
}
.about-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 169, 110, 0.15);
    position: relative;
    z-index: 1;
}
.about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}
.about-img-frame:hover img { transform: scale(1.06); }
.about-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--champagne) 100%);
    color: var(--espresso);
    border-radius: var(--radius);
    padding: 1.4rem 1.6rem;
    text-align: center;
    box-shadow: var(--shadow);
    z-index: 2;
    transition: transform var(--transition);
}
.about-badge:hover { transform: scale(1.04); }
.badge-num {
    display: block;
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
}
.badge-txt {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.4;
    margin-top: 0.3rem;
}
.about-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.1rem;
    font-size: 0.95rem;
    line-height: 1.8;
}
.about-text strong { color: var(--champagne); font-weight: 500; }
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin: 2.2rem 0;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.75);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}
.value-item i { color: var(--gold); font-size: 0.85rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
    background: var(--ivory-mid);
    background-image: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,169,110,0.07) 0%, transparent 60%);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 270px 270px;
    gap: 1.2rem;
}
.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    min-height: 270px;
    transition: transform var(--transition), box-shadow var(--transition);
    background: var(--espresso);
}
.gallery-item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--shadow-lg);
}
.gallery-item.tall {
    grid-row: span 2;
    min-height: calc(270px * 2 + 1.2rem);
}
.gallery-item.wide {
    grid-column: span 2;
    min-height: 270px;
}
.gallery-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s var(--ease-out), filter var(--transition);
}
.gallery-item:hover .gallery-img {
    transform: scale(1.06);
    filter: brightness(0.85);
}
.gallery-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(28, 21, 16, 0.75) 0%, rgba(28, 21, 16, 0.1) 50%, transparent 100%);
    z-index: 1;
    transition: background var(--transition);
}
.gallery-item:hover .gallery-caption {
    background: linear-gradient(to top, rgba(28, 21, 16, 0.88) 0%, rgba(28, 21, 16, 0.25) 55%, transparent 100%);
}
.gallery-caption span {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    transform: translateY(4px);
    transition: transform var(--transition), color var(--transition);
}
.gallery-item:hover .gallery-caption span {
    transform: translateY(0);
    color: var(--gold-light);
}
.gallery-note {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--warm-gray);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}
.gallery-note i { color: #E1306C; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
    background: var(--white);
    padding-top: 4rem;
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.3rem;
    padding: 1.5rem 1.7rem;
    background: var(--ivory);
    border-radius: var(--radius);
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.contact-card:hover {
    border-color: rgba(201, 169, 110, 0.35);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}
.contact-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}
.contact-details h4 {
    font-family: var(--serif);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--espresso);
}
.contact-details p { font-size: 0.88rem; color: var(--warm-gray); line-height: 1.55; }
.contact-details a { color: var(--gold-dark); transition: color var(--transition); }
.contact-details a:hover { color: var(--gold); }
.contact-map-col {
    display: flex;
    flex-direction: column;
}
.contact-map {
    margin-top: 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(201, 169, 110, 0.15);
    max-width: 100%;
}
.contact-map iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    filter: grayscale(20%) contrast(1.05);
}
.contact-map-actions {
    text-align: center;
}

/* ============================================================
   CTA BOTTOM
   ============================================================ */
.cta-section {
    background: linear-gradient(160deg, var(--charcoal-mid) 0%, var(--espresso) 60%, #0d0a08 100%);
    text-align: center;
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(201,169,110,0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: ctaPulse 4s ease-in-out infinite;
}
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-section h2 {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1.2rem;
}
.cta-section h2 em { font-style: italic; color: var(--gold); }
.cta-section p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 2.8rem;
    font-size: 0.95rem;
    line-height: 1.7;
}
.cta-actions { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #0d0a08;
    padding: 4.5rem 2rem 0;
    border-top: 1px solid rgba(201, 169, 110, 0.12);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-brand .brand-name {
    font-family: var(--display);
    font-size: 1.7rem;
}
.footer-tagline {
    font-family: var(--serif);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.9rem;
    font-style: italic;
}
.footer-links h4, .footer-contact h4 {
    font-family: var(--serif);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--champagne);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.7rem;
    line-height: 1.55;
}
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255, 255, 255, 0.45); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.6rem 0;
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.04em;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50%       { opacity: 0.3; transform: scaleY(0.65); }
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes heroKenBurns {
    from { transform: scale(1); }
    to   { transform: scale(1.06); }
}
@keyframes heroWordReveal {
    from { opacity: 0; transform: translateY(40px) scale(0.96); letter-spacing: 0.04em; }
    to   { opacity: 1; transform: translateY(0) scale(1); letter-spacing: 0.04em; }
}
@keyframes titleShine {
    0%, 100% { background-position: 200% center; }
    50%       { background-position: -200% center; }
}
@keyframes ctaPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50%       { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(12, 8, 5, 0.55);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    pointer-events: none;
}
.nav-overlay.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-container { gap: 3.5rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
    .hero-ornament { display: none; }
}

@media (max-width: 768px) {
    :root { --nav-h: 68px; }

    .container,
    .navbar-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    /* Navbar */
    .navbar-container { padding-left: 1rem; padding-right: 1rem; }
    .brand-logo { height: 48px; }
    .brand-name { font-size: 1.35rem; }
    .brand-sub { font-size: 0.58rem; letter-spacing: 0.28em; }
    .brand-mark { height: 30px; }
    .hamburger {
        display: flex;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }
    .navbar-nav {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1001;
        background: rgba(28, 21, 16, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: stretch;
        padding: 2rem 1.5rem 2.5rem;
        padding-bottom: calc(2.5rem + env(safe-area-inset-bottom, 0px));
        gap: 0.5rem;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
        transition: opacity 0.35s var(--ease-out), visibility 0.35s var(--ease-out);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .navbar-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav-link {
        font-size: 0.95rem;
        letter-spacing: 0.12em;
        padding: 1rem 0.5rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .nav-link::after { display: none; }
    .nav-cta {
        justify-content: center;
        margin-top: 1rem;
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
        min-height: 52px;
    }

    /* Hero */
    .hero {
        min-height: 100svh;
        min-height: 100dvh;
        align-items: flex-end;
        justify-content: center;
        padding: 0 1rem calc(4.5rem + env(safe-area-inset-bottom, 0px));
    }
    .hero-content {
        text-align: center;
        padding: 1.25rem 0.75rem;
        width: 100%;
    }
    .hero-content::before {
        inset: -0.75rem -0.5rem;
        background: radial-gradient(ellipse 120% 100% at 50% 100%, rgba(12, 8, 5, 0.8) 0%, rgba(12, 8, 5, 0.4) 55%, transparent 80%);
    }
    .hero-title { align-items: center; margin-bottom: 1.2rem; }
    .hero-title-pre,
    .hero-subtitle { padding-left: 0; letter-spacing: 0.14em; }
    .hero-title-pre { font-size: 0.82rem; margin-bottom: 0.5rem; }
    .hero-title-word {
        font-size: clamp(2.4rem, 12vw, 3.8rem);
        line-height: 0.95;
        word-break: break-word;
        overflow-wrap: anywhere;
        letter-spacing: 0.02em;
    }
    .hero-title-focus {
        max-width: 100%;
        overflow: hidden;
    }
    .hero-title-post {
        padding-left: 0;
        justify-content: center;
        font-size: clamp(1.5rem, 6vw, 2rem);
        gap: 0.9rem;
        flex-wrap: wrap;
    }
    .hero-title-rule { width: 36px; }
    .hero-subtitle {
        letter-spacing: 0.12em;
        font-size: 0.68rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 100%;
        overflow-wrap: break-word;
    }
    .hero-badge { justify-content: center; margin-bottom: 1rem; }
    .hero-eyebrow {
        letter-spacing: 0.14em;
        font-size: 0.72rem;
        max-width: 100%;
        overflow-wrap: break-word;
    }
    .hero-actions {
        flex-direction: column;
        justify-content: center;
        width: 100%;
        gap: 0.75rem;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        width: 100%;
        justify-content: center;
        min-height: 52px;
        padding: 1rem 1.5rem;
    }
    .hero-scroll { display: none; }

    /* Sections */
    .section { padding: 4rem 0; }
    .section-header { margin-bottom: 3rem; }
    .section-title { font-size: clamp(2rem, 8vw, 2.8rem); }
    .contact-section { padding-top: 2rem; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-card { padding: 2rem 1.5rem; }

    /* About */
    .about-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-image-wrap { order: -1; }
    .about-badge { bottom: -0.5rem; right: 0.5rem; padding: 1rem 1.2rem; }
    .badge-num { font-size: 2.4rem; }
    .about-frame-outer::before { transform: translate(8px, 8px); }
    .about-content .btn-primary {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 0.85rem;
    }
    .gallery-item,
    .gallery-item.tall,
    .gallery-item.wide {
        grid-row: span 1;
        grid-column: span 1;
        min-height: 200px;
        aspect-ratio: 4 / 5;
    }

    /* Contact */
    .contact-container { grid-template-columns: 1fr; gap: 2rem; }
    .contact-map { margin-top: 1.5rem; }
    .contact-map iframe { height: 280px !important; }
    .contact-map-actions .btn-whatsapp {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }
    .contact-card { padding: 1.25rem 1.35rem; }
    .contact-card:hover { transform: none; }
    .gallery-item:hover { transform: none; }
    .about-frame-outer::before { transform: none; }

    /* CTA */
    .cta-section { padding: 4.5rem 1.25rem; }
    .cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    .cta-actions .btn-primary,
    .cta-actions .btn-ghost-light {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }

    /* Footer */
    .footer { padding: 3rem 1.25rem 0; }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
    .footer-brand {
        grid-column: span 2;
        text-align: center;
    }
    .footer-contact p { font-size: 0.78rem; }
    .footer-bottom {
        padding: 1.25rem 0;
        padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
        font-size: 0.68rem;
        line-height: 1.6;
    }
    .footer-bottom p {
        word-break: break-word;
        padding: 0 0.25rem;
    }

    /* Strip */
    .strip-inner span { padding: 0.9rem 2rem; font-size: 0.65rem; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item,
    .gallery-item.tall,
    .gallery-item.wide {
        aspect-ratio: 16 / 11;
        min-height: 220px;
    }
    .about-values { grid-template-columns: 1fr; }
    .hero-title-word { font-size: clamp(2.4rem, 13vw, 3.4rem); }
    .hero-title-post { font-size: clamp(1.35rem, 5.5vw, 1.75rem); }
    .service-card { padding: 1.75rem 1.25rem; }
    .section-eyebrow { letter-spacing: 0.22em; }
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 1rem 1.5rem 1.25rem;
    background: rgba(28, 21, 16, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}
.cookie-consent__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-consent__message {
    flex: 1;
    min-width: 240px;
    font-family: var(--sans);
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}
.cookie-consent__agree {
    flex-shrink: 0;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--champagne) 100%);
    color: var(--espresso);
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35);
}
.cookie-consent__agree:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 169, 110, 0.45);
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 1rem 1.25rem;
        padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    }
    .cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 1rem;
    }
    .cookie-consent__message {
        font-size: 0.8rem;
        min-width: 0;
    }
    .cookie-consent__agree {
        width: 100%;
        min-height: 48px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-img { animation: none; }
    .strip-inner { animation: none; }
    .hero-title-shine { animation: none; }
    .hero-title-focus { animation: fadeUp 0.9s 0.55s var(--ease-out) both; }
}