/* =========================================================
   Esperanza Alzate — Esteticista Profesional
   Identity: warm blush / ivory, elegant serif + clean sans
   Plain CSS, no framework.
   ========================================================= */

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

:root {
    --rose: #c1417f;
    --rose-dark: #7a2159;
    --rose-light: #f0b8d9;
    --blush: #f8ecf2;
    --ivory: #fbf7f4;
    --charcoal: #362a34;
    --text-secondary: #7d6a76;
    --text-on-rose: #fff5fa;
    --gold: #cda555;
    --gold-light: #f0d38f;
    --gold-dark: #a17a34;
    --burgundy-deep: #4a1030;
    --card-shadow: 0 10px 30px rgba(60, 20, 45, 0.10);
    --card-shadow-hover: 0 18px 44px rgba(60, 20, 45, 0.16);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1120px;
    --radius: 16px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background: var(--ivory);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

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

h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; letter-spacing: -0.01em; }

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.85rem;
}

.section-head {
    max-width: 620px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-head h2 { font-size: clamp(2rem, 4.5vw, 2.75rem); color: var(--charcoal); }
.section-head p { margin-top: 0.9rem; color: var(--text-secondary); font-size: 1.05rem; }

/* ===== ORCHID BLOOM ACCENTS ===== */
.section-bloom {
    position: absolute;
    width: 420px;
    height: 420px;
    background: url('/assets/orchid-light.jpg') center/cover;
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,0.9) 45%, rgba(0,0,0,0) 72%);
    mask-image: radial-gradient(circle, rgba(0,0,0,0.9) 45%, rgba(0,0,0,0) 72%);
    opacity: 0.22;
    pointer-events: none;
    z-index: -1;
}

.bloom-tr { top: -8%; right: -6%; }
.bloom-bl { bottom: -10%; left: -6%; }

#acerca, #why, #ubicacion { position: relative; overflow: hidden; }

/* ===== NAV ===== */
.site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    background: rgba(251, 246, 241, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(54, 42, 52, 0.08);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--rose-dark);
    text-decoration: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span { width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    list-style: none;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.nav-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #25d366;
    color: #fff !important;
    padding: 0.55rem 1.05rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem !important;
}

.nav-whatsapp:hover { background: #1ebe5a; }

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 2px;
    border: 1px solid rgba(54, 42, 52, 0.18);
    border-radius: 999px;
    padding: 3px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active { background: var(--rose); color: #fff; }

/* ===== HERO ===== */
#hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 8rem 1.5rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/assets/hero-orchid.jpg') no-repeat center center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
	background: linear-gradient(
		100deg,
		rgba(74, 16, 48, 0.92) 0%,
		rgba(74, 16, 48, 0.75) 42%,
		rgba(74, 16, 48, 0.55) 66%,
		rgba(74, 16, 48, 0.35) 85%
	  );
}

.hero-inner {
    position: relative;
    max-width: var(--container);
    margin: 0 auto;
    color: #fff;
    max-width: 640px;
}

.hero-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-inner h1 {
    font-size: clamp(2.4rem, 5.5vw, 3.6rem);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--gold-light);
    background: linear-gradient(115deg, #f4e3b8 0%, var(--gold-light) 30%, var(--gold) 60%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-inner p {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    margin-bottom: 2.25rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.85rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary { background: var(--rose); color: #fff; box-shadow: 0 10px 26px rgba(122, 33, 89, 0.35); }
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); }

.btn-outline { background: rgba(255, 255, 255, 0.12); color: #fff; border: 1px solid rgba(255, 255, 255, 0.5); backdrop-filter: blur(6px); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.22); }

.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }

/* ===== SECTIONS ===== */
section { padding: clamp(4rem, 8vw, 6.5rem) 1.5rem; }
.bg-ivory { background: var(--ivory); }
.bg-blush { background: var(--blush); }
.bg-rose { background: var(--rose); color: var(--text-on-rose); }

/* ===== ABOUT ===== */
.about-wrap {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-badge {
    flex: 0 0 220px;
    background: var(--rose);
    color: #fff;
    border-radius: var(--radius);
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.about-badge strong { display: block; font-family: var(--font-serif); font-size: 3rem; }
.about-badge span { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; }

.about-text { flex: 1 1 400px; }
.about-text p { color: var(--text-secondary); margin-bottom: 1rem; font-size: 1.02rem; }
.about-text strong { color: var(--charcoal); }

/* ===== SERVICES ===== */
.service-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1040px;
    margin: 0 auto;
}

.service-group {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    box-shadow: var(--card-shadow);
}

.service-group h3 {
    color: var(--rose-dark);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--blush);
}

.service-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    font-size: 0.95rem;
}

.service-row span:first-child { color: var(--charcoal); }
.service-row span:last-child { color: var(--rose); font-weight: 600; white-space: nowrap; }

.service-subhead {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--rose-dark);
    margin: 1.1rem 0 0.3rem;
}

.service-note {
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--charcoal);
    opacity: 0.65;
    margin-top: 0.9rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--blush);
}

/* ===== WHY ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
    max-width: 1040px;
    margin: 0 auto;
}

.why-card { text-align: center; }

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-dark);
}

.why-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.why-card p { color: var(--text-secondary); font-size: 0.92rem; }

/* ===== REVIEWS ===== */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1040px;
    margin: 0 auto 2.5rem;
}

.review-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--card-shadow);
}

.review-header { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.9rem; }

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--rose);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.review-author { font-size: 0.95rem; font-weight: 600; }
.review-meta { font-size: 0.78rem; color: var(--text-secondary); }
.review-stars { color: var(--rose); font-size: 0.85rem; letter-spacing: 0.05em; }
.review-text { font-size: 0.92rem; color: var(--text-secondary); }

.review-cta { text-align: center; }

/* ===== BOOKING ===== */
.bg-orchid-banner {
    position: relative;
    background: linear-gradient(120deg, rgba(74, 16, 48, 0.88) 0%, rgba(122, 33, 89, 0.8) 100%), url('/assets/orchid-dark.jpg') center 30%/cover;
}

.bg-orchid-banner .eyebrow { color: var(--gold-light); }
.bg-orchid-banner .section-head h2 { color: #fff; }
.bg-orchid-banner .section-head p { color: rgba(255, 255, 255, 0.82); }

.booking-card {
    max-width: 620px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: 0 20px 55px rgba(20, 5, 14, 0.4);
}

.form-row { margin-bottom: 1.1rem; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--charcoal); }

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(54, 42, 52, 0.18);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--ivory);
    color: var(--charcoal);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { outline: none; border-color: var(--rose); }

.form-radio-group { display: flex; gap: 1.5rem; }
.form-radio-group label { display: flex; align-items: center; gap: 0.4rem; font-weight: 500; font-size: 0.92rem; }

.booking-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ===== LOCATION ===== */
.location-wrap {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
}

.location-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    min-height: 320px;
}

.location-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

.location-info {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.location-info p { color: var(--text-secondary); font-size: 0.95rem; }
.location-links { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ===== FOOTER ===== */
.site-footer {
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.72);
    padding: 3rem 1.5rem 1.75rem;
}

.footer-bloom {
    position: absolute;
    top: -18%;
    right: -8%;
    width: 380px;
    height: 380px;
    background: url('/assets/orchid-dark.jpg') center/cover;
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0) 70%);
    mask-image: radial-gradient(circle, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0) 70%);
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 1.5rem;
}

.footer-brand { font-family: var(--font-serif); font-weight: 600; color: #fff; font-size: 1.3rem; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.88rem; max-width: 260px; }

.footer-links { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.5); margin-bottom: 0.75rem; }
.footer-col a { display: block; color: #fff; text-decoration: none; font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--rose-light); }

.footer-bottom {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.72);
    transition: var(--transition);
}

.footer-credit a:hover { color: var(--rose-light); }

/* ===== SCROLL REVEAL ===== */
[data-animate] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .about-wrap { flex-direction: column; text-align: center; }
    .location-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--ivory);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1.1rem;
        display: none;
        border-bottom: 1px solid rgba(54, 42, 52, 0.1);
    }

    .nav-links.open { display: flex; }
    .footer-inner { flex-direction: column; }
    .form-radio-group { flex-direction: column; gap: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
