@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600&family=Lora:ital,wght@0,400;0,600;1,400&family=Tangerine:wght@700&display=swap');

/* ── VARIABLES ── */
:root {
    --ink:         #0f0e0c;
    --cream:       #f5f0e8;
    --gold:        #c9963a;
    --gold-light:  #e8bb6a;
    --warm-white:  #faf8f4;
    --sepia:       #f2ebe0;      
    --sepia-dark:  #e6dccf;
    --mid:         #6b6560;
    --rule:        rgba(201,150,58,.25);
    --rule-soft:   rgba(107,101,96,.15);
}

/* ── 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(--sepia);
    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(242,235,224,.95);
    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,.09); }

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900; font-size: 1.4rem;
    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(--sepia); 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);
}


/* ══ PAGE HERO ══ */
.page-hero {
    margin-top: 70px; background: var(--ink);
    padding: 5.5rem 2rem 4.5rem;
    text-align: center; position: relative; overflow: hidden;
}


.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 120% at 50% 120%, rgba(201,150,58,.16) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 50% -10%, rgba(201,150,58,.08) 0%, transparent 60%);
}

.page-hero::after {
    content: '— ✦ —';
    position: absolute; bottom: 1.5rem; left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    color: rgba(201,150,58,.35); font-size: .75rem; letter-spacing: .3em;
}

.page-hero-inner { text-align: center; }

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900; color: #fff; margin-bottom: .75rem;
    
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }

.page-hero p {
    color: rgba(255,255,255,.55); font-size: 1rem;
    max-width: 480px; margin: 0 auto; line-height: 1.75;
    font-family: 'Lora', serif; font-style: italic;
}

.breadcrumb-row {
    margin-top: 2.25rem; display: flex; justify-content: center;
    gap: .5rem; font-size: .78rem; color: rgba(255,255,255,.3);
}
.breadcrumb-row a { color: var(--gold); text-decoration: none; }
.breadcrumb-row a:hover { text-decoration: underline; }


.section-label {
    display: block; font-size: .72rem; letter-spacing: .22em;
    text-transform: uppercase; color: var(--gold);
    font-weight: 600; margin-bottom: 1rem;
    
    position: relative; padding: 0 .5rem;
}
.section-label::before,
.section-label::after {
    
    position: absolute; top: 50%; transform: translateY(-50%);
    font-size: .6rem; color: var(--gold); opacity: .6;
}
.section-label::before { right: 100%; margin-right: .25rem; }
.section-label::after  { left: 100%;  margin-left: .25rem; }

.gold-rule { width: 48px; height: 2px; background: var(--gold); border-radius: 2px; }
.gold-rule.center { margin: 1rem auto; }


/* ══ SERVICES INTRO ══ */
.services-intro {
    padding: 4.5rem 2rem 3rem;
    text-align: center;
    max-width: 700px; margin: 0 auto;
}
.services-intro h2 {
    font-family: 'Tangerine', cursive;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: .5rem;
}
.services-intro p { color: var(--mid); font-size: 1rem; line-height: 1.85; }


/* ══ SERVICE BLOCKS ══ */
.service-block { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }

.service-block:nth-child(even) {
    background: var(--cream); max-width: 100%;
    padding-left: 0; padding-right: 0;
}
.service-block:nth-child(even) .service-block-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 2rem;
    direction: rtl;
}
.service-block:nth-child(even) .service-block-inner > * { direction: ltr; }

.service-block-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
}

/* Image panel */
.service-img-wrap { position: relative; border-radius: 2px; overflow: hidden; }
.service-img-wrap img {
    max-width: 100%; width: 100%; height: auto; display: block;
    border-radius: 2px;
}

/* Badge overlaid on image */
.img-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--gold); color: var(--ink);
    font-family: 'DM Mono', monospace;
    font-size: .65rem; font-weight: 500;
    padding: .35rem .6rem; border-radius: 2px;
    letter-spacing: .1em; text-transform: uppercase;
}

/* Carousel for services */
.service-carousel { position: relative; width: 100%; overflow: hidden; border-radius: 2px; }
.service-carousel img { width: 100%; display: none; border-radius: 2px; }
.service-carousel img.active { display: block; }

/* Service text */
.service-text .service-num {
    font-family: 'Playfair Display', serif;
    font-size: 5rem; font-weight: 900;
    color: var(--gold-light); line-height: 1;
    margin-bottom: -.75rem;
    
    letter-spacing: -.05em;
}

.service-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700; margin-bottom: .35rem;
}

.service-text .gold-rule { margin: .75rem 0 1.25rem; }

.service-text p {
    color: var(--mid); font-size: .95rem;
    line-height: 1.85; margin-bottom: 1rem;
}
.service-text p:last-of-type { margin-bottom: 1.5rem; }

/* Feature list — spec sheet style */
.feature-list { list-style: none; margin-bottom: 1.75rem; }
.feature-list li {
    display: flex; align-items: center; gap: .75rem;
    font-size: .875rem; color: var(--mid);
    padding: .4rem 0;
    border-bottom: 1px solid var(--rule-hard);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
    content: '';
    display: inline-block; width: 5px; height: 5px;
    background: var(--gold); border-radius: 50%; flex-shrink: 0;
}

.service-cta {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .75rem 1.75rem;
    background: var(--ink); color: #fff;
    font-family: 'DM Mono', monospace;
    font-size: .72rem; font-weight: 500;
    letter-spacing: .12em; text-transform: uppercase;
    text-decoration: none; border-radius: 2px;
    border: 2px solid var(--ink);
    transition: background .25s, color .25s, transform .2s;
}
.service-cta:hover {
    background: var(--gold); border-color: var(--gold);
    color: var(--ink); transform: translateY(-2px);
}


/* ══ PROCESS STRIP ══ */
.process-strip { background: var(--ink); padding: 5.5rem 2rem; }
.process-inner { max-width: 1100px; margin: 0 auto; }

.process-header { text-align: center; margin-bottom: 4rem; }
.process-header .section-label { border-left-color: var(--gold); color: var(--gold); }
.process-header h2 {
    font-family: 'Tangerine', cursive;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700; color: #fff;
}

.process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 2rem; position: relative;
}

/* Connecting rule */
.process-steps::before {
    content: ''; position: absolute;
    top: 27px; left: 12%; right: 12%;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        var(--rule) 0, var(--rule) 8px,
        transparent 8px, transparent 16px
    );
}

.process-step { text-align: center; }

.step-circle {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--gold); color: var(--ink);
    font-family: 'DM Mono', monospace;
    font-size: 1.1rem; font-weight: 500;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem; position: relative; z-index: 1;
}

.process-step h4 {
    font-family: 'Playfair Display', serif;
    color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: .4rem;
}
.process-step p { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.6; }


/* ══ CTA STRIP ══ */
.contact-strip {
    background: var(--cream); padding: 5rem 2rem;
    text-align: center; color: #fff;
}
.contact-strip h2 {
    font-family: 'Tangerine', cursive; color: #080807;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700; margin-bottom: .75rem;
}
.contact-strip p { color: var(--mid); 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; margin: 0 .5rem;
}
.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:var(--cream);
    font-weight: 600; font-size: .8rem;
    letter-spacing: .1em; text-transform: uppercase;
    text-decoration: none; border-radius: 2px;
    border: 2px solid rgba(10, 10, 10, 0.25);
    transition: background .25s, color .25s, transform .25s; margin: 0 .5rem;
}
.cta-btn-dark:hover { background: transparent; color: var(--ink); 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); }


/* ══ RESPONSIVE ══ */
@media (max-width: 768px) {
    .nav-links, .nav-phone { display: none; }
    .nav-hamburger { display: flex; }
    .service-block-inner { grid-template-columns: 1fr; gap: 2rem; }
    .service-block:nth-child(even) .service-block-inner { direction: ltr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-steps::before { display: none; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .cta-btn-dark, .cta-btn-gold { margin: .4rem 0; display: flex; }
}