
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&family=Tangerine:wght@700&family=Great+Vibes&display=swap');
/* ── VARIABLES ── */
:root {
    --ink:        #0f0e0c;
    --cream:      #f5f0e8;
    --gold:       #c9963a;
    --gold-light: #e8bb6a;
    --warm-white: #faf8f4;
    --mid:        #6b6560;
    --rule:       rgba(201,150,58,.25);
    --ink-80:     rgba(15,14,12,.8);
    --ink-50:     rgba(15,14,12,.5);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ══ NAVBAR ══ */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(245,240,232,.93);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rule);
    padding: 0 2rem; height: 70px;
    display: flex; align-items: center; justify-content: space-between;
    transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(15,14,12,.1); }

.nav-logo {
    font-family: 'Tangerine', cursive;
    font-weight: 400; font-size: 2.9rem;
    letter-spacing: -.5px; color: var(--ink);
    text-decoration: none;
    display: flex; align-items: center; gap: .6rem;
}
.nav-logo span { color: var(--gold); }
.nav-logo img { height: 42px; width: auto; }

.nav-right { display: flex; align-items: center; gap: 2rem; }

.nav-phone {
    font-size: .9rem; font-weight: 500; color: var(--mid);
    display: flex; align-items: center; gap: .4rem;
    text-decoration: none; transition: color .2s;
}
.nav-phone:hover { color: var(--gold); }
.nav-phone svg { width: 16px; height: 16px; }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
    font-size: .875rem; font-weight: 500; color: var(--ink);
    text-decoration: none; letter-spacing: .04em;
    position: relative; padding-bottom: 2px;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1.5px; background: var(--gold);
    transition: width .3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-hamburger {
    display: none; flex-direction: column; gap: 5px;
    cursor: pointer; padding: 6px; background: none; border: none;
}
.nav-hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--ink); border-radius: 2px; transition: .3s;
}

.mobile-menu {
    display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--rule);
    padding: 1.5rem 2rem; z-index: 99;
    flex-direction: column; gap: 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-size: 1rem; color: var(--ink);
    text-decoration: none; font-weight: 500;
    padding: .25rem 0; border-bottom: 1px solid var(--rule);
}

@media (max-width: 768px) {

    nav {
        padding: 0 1rem;
        height: 80px;
    }

    .nav-logo {
        font-size: 2rem;
        line-height: 0.8;
        gap: 0.2rem;
    }

    .nav-logo img {
        height: 48px;
    }

    .nav-phone {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
}


/* ══ HERO SLIDER ══ */
.hero {
    margin-top: 70px;
    height: calc(100vh - 70px);
    min-height: 540px;
    position: relative; overflow: hidden;
}

/* Grain texture overlay  */
.hero::after {
    content: '';
    position: absolute; inset: 0; z-index: 4;
    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)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; opacity: .3;
}

.slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity 1s ease; }
.slide.active { opacity: 1; pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.slide-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(120deg, rgba(15,14,12,.78) 0%, rgba(15,14,12,.35) 55%, transparent 100%),
        linear-gradient(0deg, rgba(15,14,12,.35) 0%, transparent 40%);
    pointer-events: none;
}

/* Editorial column line on left edge */
.slide-column-rule {
    position: absolute; left: 6%; top: 15%; bottom: 15%;
    width: 1px; background: rgba(201,150,58,.3);
    z-index: 5;
}

.slide-content {
    position: absolute; bottom: 14%; left: 8%; max-width: 620px;
    color: #fff; z-index: 6;
    opacity: 0; transform: translateY(28px);
    transition: opacity .9s ease .5s, transform .9s ease .5s;
}
.slide.active .slide-content { opacity: 1; transform: translateY(0); }

.slide-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: .7rem; font-weight: 500;
    letter-spacing: .25em; text-transform: uppercase;
    color: var(--gold-light); margin-bottom: 1rem;
    display: flex; align-items: center; gap: .75rem;
}
.slide-eyebrow::before {
    content: '';
    display: inline-block; width: 28px; height: 1px;
    background: var(--gold); flex-shrink: 0;
}

.slide-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    line-height: 1.06; font-weight: 600;
    margin-bottom: 1.1rem;
    text-shadow: 0 2px 20px rgba(15,14,12,.4);
}
.slide-content h1 em { font-style: italic; color: var(--gold-light); }

.slide-content p {
    font-size: 1rem; font-weight: 300; line-height: 1.75;
    opacity: .82; max-width: 460px;
}

.hero-cta {
    display: inline-flex; align-items: center; gap: .6rem;
    margin-top: 1.75rem;
    padding: .8rem 2rem;
    background: var(--gold); color: var(--ink);
    font-weight: 600; font-size: .8rem;
    letter-spacing: .1em; text-transform: uppercase;
    text-decoration: none; border-radius: 2px;
    border: 2px solid var(--gold);
    transition: background .25s, color .25s, transform .25s;
}
.hero-cta:hover { background: transparent; color: var(--gold); transform: translateY(-2px); }

/* Slide counter */
.hero-folio {
    position: absolute; bottom: 2.5rem; right: 6%;
    z-index: 6; text-align: right;
    font-family: 'Playfair Display', serif;
    color: rgba(255,255,255,.3); font-size: .75rem;
    letter-spacing: .1em;
}
.hero-folio strong { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; display: block; }

.hero-dots {
    position: absolute; bottom: 2.5rem; left: 8%;
    display: flex; gap: .6rem; z-index: 6;
}
.dot {
    width: 28px; height: 3px;
    background: rgba(255,255,255,.3);
    border: none; cursor: pointer; border-radius: 2px;
    transition: background .3s, width .3s; padding: 0;
}
.dot.active { background: var(--gold); width: 44px; }


/* ══ SECTION LABEL (shared) ══ */
.section-label {
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: 'DM Mono', monospace;
    font-size: .68rem; letter-spacing: .2em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 500; margin-bottom: 1.1rem;
}
.section-label::before {
    content: ''; display: inline-block;
    width: 20px; height: 1px; background: var(--gold);
}

.gold-rule { width: 48px; height: 2px; background: var(--gold); border-radius: 2px; }
.gold-rule.center { margin: 1rem auto; }


/* ══ INTRO BAND ══ */
.intro {
    padding: 6rem 2rem 5rem;
    max-width: 860px; margin: 0 auto;
    text-align: center;
}

.intro h2 {
    font-family: 'Tangerine', cursive;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700; line-height: 1.2;
    margin-bottom: 1.25rem; color: var(--ink);
}

.intro p {
    font-size: 1.05rem; line-height: 1.9;
    color: var(--mid); max-width: 660px; margin: 0 auto;
}


/* ══ STATS BAR ══ */
.stats-bar { background: var(--ink); padding: 0; }
.stats-inner {
    max-width: 1000px; margin: 0 auto;
    display: flex; justify-content: space-around; align-items: stretch;
    flex-wrap: wrap;
}

.stat {
    text-align: center; color: #fff;
    padding: 2.5rem 1.5rem;
    flex: 1; min-width: 150px;
    border-right: 1px solid rgba(255,255,255,.07);
    position: relative;
}
.stat:last-child { border-right: none; }


.stat::before {
    content: ''; position: absolute; top: 0; left: 20%; right: 20%;
    height: 2px; background: var(--gold); opacity: .5;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem; font-weight: 900;
    color: var(--gold); line-height: 1; display: block;
}
.stat-label {
	font-family: 'Tangerine', cursive;
    font-size: 3.8rem; font-weight: 900;
    color: var(--gold); line-height: 1; display: block;
	
    
}


/* ══ SERVICES GRID ══ */
.services { padding: 6rem 2rem; background: var(--cream); }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header h2 {
    font-family: 'Tangerine', cursive;
    font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--warm-white);
    border: 1px solid rgba(201,150,58,.15);
    border-radius: 3px;
    padding: 2rem 1.5rem;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--gold); transition: height .4s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(15,14,12,.1);
    border-color: var(--gold);
}

/* Edition number watermark */
.service-card::after {
    content: attr(data-num);
    position: absolute; top: .8rem; right: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; font-weight: 900;
    color: rgba(201,150,58,.06);
    line-height: 1; pointer-events: none;
    user-select: none;
}

.service-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem;
}
.service-card p { font-size: .875rem; color: var(--mid); line-height: 1.65; }


/* ══ WHY SECTION ══ */
.why { padding: 6rem 2rem; max-width: 1100px; margin: 0 auto; }
.why-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
}
.why-text h1 {
    font-family: 'Tangerine', cursive;
    font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 1rem;
}
.why-text p { font-size: 1rem; color: var(--mid); line-height: 1.85; margin-bottom: 2rem; }

.why-list { list-style: none; }
.why-list li {
    display: flex; align-items: flex-start; gap: .75rem;
    margin-bottom: 1rem; font-size: .95rem;
    padding-bottom: 1rem; border-bottom: 1px dashed var(--rule);
}
.why-list li:last-child { border-bottom: none; }
.why-list li::before { content: '✦'; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.why-img-wrap { position: relative; border-radius: 3px; overflow: hidden; }
.why-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* caption overlay at bottom of image */
.why-img-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(15,14,12,.8) 0%, transparent 100%);
    padding: 2.5rem 1.5rem 1.25rem;
    color: rgba(255,255,255,.7);
    font-family: 'DM Mono', monospace;
    font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
}

.why-badge {
    position: absolute; bottom: -1.5rem; left: -1.5rem;
    background: var(--gold); color: var(--ink);
    padding: 1.25rem 1.5rem; border-radius: 3px; text-align: center;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 8px 30px rgba(201,150,58,.3);
}
.why-badge .big { font-size: 2rem; font-weight: 900; line-height: 1; display: block; }
.why-badge .small { font-size: .72rem; font-weight: 400; letter-spacing: .06em; }


/* ══ CTA STRIP ══ */
.contact-strip {
    background: var(--ink); padding: 5rem 2rem;
    text-align: center; color: #fff;
    position: relative; overflow: hidden;
}

.contact-strip::before {
    content: '';
    position: absolute; left: -10%; right: -10%; top: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact-strip::after {
    content: '';
    position: absolute; left: -10%; right: -10%; bottom: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--rule), transparent);
}

.contact-strip h3 {
    font-family: 'Tangerine', cursive;
    font-size: clamp(1.8rem, 4.5vw, 2.8rem); margin-bottom: .75rem;
}
.contact-strip p { color: rgba(255,255,255,.55); margin-bottom: 2rem; font-size: .95rem; }

.cta-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .9rem 2.4rem;
    background: var(--gold); color: var(--ink);
    font-weight: 600; font-size: .8rem;
    letter-spacing: .1em; text-transform: uppercase;
    text-decoration: none; border-radius: 2px;
    border: 2px solid var(--gold);
    transition: background .25s, color .25s, transform .25s;
}
.cta-btn:hover { background: transparent; color: var(--gold); transform: translateY(-2px); }

.cta-btn-dark {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .9rem 2.4rem;
    background: var(--ink); color: #fff;
    font-weight: 600; font-size: .8rem;
    letter-spacing: .1em; text-transform: uppercase;
    text-decoration: none; border-radius: 2px;
    border: 2px solid rgba(255,255,255,.3);
    transition: background .25s, color .25s, transform .25s; margin: 0 .5rem;
}
.cta-btn-dark:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

.cta-btn-gold {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .9rem 2.4rem;
    background: var(--gold); color: var(--ink);
    font-weight: 600; font-size: .8rem;
    letter-spacing: .1em; text-transform: uppercase;
    text-decoration: none; border-radius: 2px;
    border: 2px solid var(--gold);
    transition: background .25s, color .25s, transform .25s; margin: 0 .5rem;
}
.cta-btn-gold:hover { background: transparent; color: var(--gold); transform: translateY(-2px); }


/* ══ FOOTER ══ */
footer { background: #080807; color: rgba(255,255,255,.7); padding: 4rem 2rem 0; }
.footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem; padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; color: #fff; margin-bottom: .75rem;
}
.footer-brand p { font-size: .875rem; line-height: 1.75; max-width: 280px; }

footer h4 {
    font-family: 'Playfair Display', serif; color: #fff;
    font-size: 1rem; margin-bottom: 1.25rem;
    position: relative; padding-bottom: .6rem;
}
footer h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 30px; height: 2px; background: var(--gold);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
    color: rgba(255,255,255,.55); text-decoration: none;
    font-size: .875rem; transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact p { font-size: .875rem; line-height: 1.9; }
.footer-contact a {
    color: var(--gold); text-decoration: none; font-size: .875rem;
    display: inline-flex; align-items: center; gap: .4rem; margin-top: .5rem;
}
.footer-contact a:hover { text-decoration: underline; }

.footer-bottom {
    max-width: 1100px; margin: 0 auto; padding: 1.25rem 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: .78rem; color: rgba(255,255,255,.25);
    flex-wrap: wrap; gap: .5rem;
}


/* ══ WHATSAPP FLOAT ══ */
.whatsapp-float {
    position: fixed; bottom: 25px; right: 25px;
    width: 60px; height: 60px; background: #25D366;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    text-decoration: none; z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,.25);
    transition: transform .2s;
}
.whatsapp-float i { color: white; font-size: 32px; }
.whatsapp-float:hover { transform: scale(1.1); }


/* ══ SCROLL REVEAL ══ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ══ PAGE HERO ══ */
.page-hero {
    margin-top: 70px; background: var(--ink);
    padding: 5rem 2rem 4rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 20% 50%, rgba(201,150,58,.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 50%, rgba(201,150,58,.08) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; color: #fff; margin-bottom: .75rem;
}
.page-hero p { color: rgba(255,255,255,.55); font-size: 1rem; max-width: 500px; margin: 0 auto; line-height: 1.7; }
.breadcrumb-row {
    margin-top: 2rem; display: flex; justify-content: center;
    gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.35);
}
.breadcrumb-row a { color: var(--gold); text-decoration: none; }
.breadcrumb-row a:hover { text-decoration: underline; }


/* ══ RESPONSIVE ══ */
@media (max-width: 768px) {
    .nav-links, .nav-phone { display: none; }
    .nav-hamburger { display: flex; }
    .slide-content { left: 5%; right: 5%; bottom: 10%; }
    .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .why-badge { left: 1rem; bottom: 1rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .cta-btn-dark, .cta-btn-gold { margin: .4rem 0; display: flex; }
    .hero-folio { display: none; }
    .stats-inner { flex-direction: column; }
    .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
    .stat:last-child { border-bottom: none; }
}
