/* =============================================
   Miel — Centro de Bienestar Integral
   Warm, elegant healthcare aesthetic
   ============================================= */

/* --- Tokens --- */
:root {
    /* Palette — Miel brand: dorado, teal, crema */
    --white: #FFFFFF;
    --gray-50: #FAF6EE;
    --gray-100: #F2EBD8;
    --gray-200: #E5E0D4;
    --gray-300: #D1CCC0;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #1A1A1A;

    --teal-50: #F0FAF5;
    --teal-100: #D1F0E4;
    --teal-500: #4A9B80;
    --teal-600: #2A6B56;
    --teal-700: #2A6B56;
    --teal-800: #1A4A3A;
    --teal-900: #1A4A3A;

    --sand-50: #FAF6EE;
    --sand-100: #F2EBD8;
    --sand-400: #E8D49A;
    --amber-500: #C4973A;
    --amber-600: #9A7220;

    --gold-light: #E8D49A;
    --cream: #FAF6EE;
    --sand: #F2EBD8;

    --blue-100: #DBEAFE;
    --blue-500: #3B82F6;
    --purple-100: #EDE9FE;
    --purple-500: #8B5CF6;
    --green-100: #DCFCE7;
    --green-500: #22C55E;
    --orange-100: #FFEDD5;
    --orange-500: #F97316;

    /* Semantic */
    --color-primary: var(--teal-700);
    --color-primary-hover: var(--teal-600);
    --color-accent: var(--amber-500);
    --color-accent-hover: var(--amber-600);
    --color-bg: var(--white);
    --color-bg-muted: var(--cream);
    --color-bg-dark: var(--gray-900);
    --color-text: var(--gray-800);
    --color-text-secondary: var(--gray-500);
    --color-border: var(--gray-200);

    /* Typography — Plus Jakarta Sans only */
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Plus Jakarta Sans', sans-serif;

    /* Spacing */
    --section-py: 96px;
    --container-max: 1140px;
    --container-px: 20px;

    /* Misc */
    --radius: 10px;
    --radius-lg: 16px;
    --radius-full: 100px;
    --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,.05), 0 2px 4px rgba(0,0,0,.04);
    --shadow-lg: 0 10px 25px rgba(0,0,0,.07);
    --shadow-xl: 0 20px 50px rgba(0,0,0,.1);
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* --- Reset --- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section { padding: var(--section-py) 0; }
.section--muted { background: var(--color-bg-muted); }
.section--dark { background: var(--color-bg-dark); }

/* --- Typography --- */
.label {
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}
.label--light { color: var(--teal-500); }

.heading-2 {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-text);
}
.heading-2--light { color: var(--white); }

.section__head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 56px;
}
.section__desc {
    color: var(--color-text-secondary);
    margin-top: 12px;
    font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: .9rem;
    gap: 8px;
    padding: 11px 28px;
    border: 1.5px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
}
.btn--primary {
    background: var(--color-primary);
    color: var(--white);
}
.btn--primary:hover {
    background: var(--color-primary-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}
.btn--accent {
    background: var(--color-accent);
    color: var(--gray-900);
    border-color: var(--color-accent);
}
.btn--accent:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: var(--white);
}
.btn--ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.35);
}
.btn--ghost:hover {
    border-color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.08);
}
.btn--outline-dark {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn--outline-dark:hover {
    background: var(--color-primary);
    color: var(--white);
}
.btn--lg { padding: 14px 36px; font-size: .95rem; }
.btn--sm { padding: 8px 20px; font-size: .82rem; }
.btn--full { width: 100%; }
.btn--nav { padding: 9px 24px; }

/* --- Navbar --- */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: box-shadow var(--transition);
}
.navbar--scrolled { box-shadow: var(--shadow-sm); }

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.navbar__logo-img {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.navbar__menu ul {
    display: flex;
    align-items: center;
    gap: 28px;
}
.navbar__menu ul a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition);
}
.navbar__menu ul a:hover { color: var(--color-primary); }

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.navbar__toggle span {
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition);
}

/* --- Hero --- */
.hero {
    padding: 130px 0 80px;
    background: linear-gradient(160deg, #0f2e24 0%, var(--teal-800) 40%, var(--teal-700) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74,155,128,.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,151,58,.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 520px;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--teal-100);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 24px;
}
.hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal-500);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.25rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero__title em {
    font-style: normal;
    color: var(--teal-100);
    position: relative;
}
.hero__title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    opacity: .7;
}

.hero__text {
    font-size: 1.08rem;
    color: rgba(255,255,255,.7);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.1);
}
.hero__trust-item {
    display: flex;
    flex-direction: column;
}
.hero__trust-item strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.hero__trust-item span {
    font-size: .75rem;
    color: rgba(255,255,255,.5);
    margin-top: 4px;
}
.hero__trust-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,.15);
}

/* Hero mosaic — 3 images in creative layout */
.hero__mosaic {
    position: relative;
    height: 480px;
}
.hero__mosaic-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 340px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.3);
    border: 2px solid rgba(255,255,255,.12);
}
.hero__mosaic-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__mosaic-secondary {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 52%;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.3);
    border: 3px solid rgba(255,255,255,.2);
    z-index: 2;
}
.hero__mosaic-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__mosaic-accent {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 160px;
    height: 120px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.3);
    border: 3px solid rgba(255,255,255,.2);
    z-index: 3;
}
.hero__mosaic-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- About --- */
.about__layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: start;
}
.about__col-left .heading-2 { margin-top: 4px; }
.about__images {
    margin-top: 28px;
    position: relative;
    height: 300px;
}
.about__img {
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}
.about__img--1 {
    width: 75%;
    height: 260px;
    position: relative;
    z-index: 1;
}
.about__img--2 {
    width: 55%;
    height: 180px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 4px solid var(--white);
}

.about__col-right p {
    color: var(--color-text-secondary);
    font-size: 1.02rem;
    margin-bottom: 16px;
}
.about__col-right p strong { color: var(--color-primary); font-weight: 600; }

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}
.about__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray-700);
}
.about__feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--teal-50);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- Process --- */
.process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}
.process-step__number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

/* Connector line between steps */
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 26px;
    left: calc(50% + 34px);
    width: calc(100% - 68px + 32px);
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}

.process-step__title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 10px;
}
.process-step__text {
    font-size: .9rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
}

.process__cta {
    text-align: center;
    margin-top: 48px;
}

/* --- Services --- */
.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    transition: height var(--transition);
}
.service-card[data-area="psicologia"]::before { background: var(--blue-500); }
.service-card[data-area="psiquiatria"]::before { background: var(--purple-500); }
.service-card[data-area="nutricion"]::before { background: var(--green-500); }
.service-card[data-area="terapia"]::before { background: var(--orange-500); }

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { height: 4px; }

.service-card__number {
    font-size: .75rem;
    font-weight: 700;
    color: var(--gray-300);
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 12px;
}
.service-card__text {
    font-size: .88rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 20px;
}
.service-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.service-card__cta {
    display: inline-block;
    margin-top: 16px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--color-primary);
    transition: color var(--transition), gap var(--transition);
}
.service-card__cta:hover { color: var(--color-primary-hover); }

.service-card__tags li {
    font-size: .72rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-600);
}

/* --- CTA Band --- */
.cta-band {
    background: var(--color-primary);
    padding: 32px 0;
}
.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-band__text {
    color: var(--white);
    font-size: 1.1rem;
}
.cta-band__text strong { color: var(--teal-100); }

/* --- Specialists --- */
.specialists__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sp-card {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.sp-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-3px);
}

.sp-card__photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
}

.sp-card__body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sp-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.sp-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: .95rem;
    flex-shrink: 0;
    overflow: hidden;
}
.sp-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-card__name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
}
.sp-card__role {
    font-size: .78rem;
    color: var(--color-primary);
    font-weight: 500;
}

.sp-card__tag {
    margin-left: auto;
    flex-shrink: 0;
    font-size: .7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}
.sp-card__tag--psicologia { background: var(--blue-100); color: var(--blue-500); }
.sp-card__tag--psiquiatria { background: var(--purple-100); color: var(--purple-500); }
.sp-card__tag--nutricion { background: var(--green-100); color: var(--green-500); }
.sp-card__tag--terapia { background: var(--orange-100); color: var(--orange-500); }

.sp-card__bio {
    font-size: .85rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 14px;
    flex: 1;
}

.sp-card__credentials {
    margin-bottom: 20px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
}
.sp-card__credentials h4 {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 10px;
    font-weight: 600;
}
.sp-card__credentials li {
    font-size: .84rem;
    color: var(--gray-600);
    padding: 4px 0 4px 18px;
    position: relative;
}
.sp-card__credentials li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-500);
    opacity: .5;
}

/* --- Calendar & Slots --- */
.cal {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 16px;
}
.cal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--color-border);
}
.cal__title {
    font-weight: 600;
    font-size: .9rem;
    color: var(--color-text);
}
.cal__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    color: var(--gray-600);
    transition: all var(--transition);
}
.cal__nav:hover { background: var(--gray-100); color: var(--color-primary); }
.cal__nav--disabled { opacity: .3; cursor: not-allowed; }
.cal__nav--disabled:hover { background: var(--white); color: var(--gray-600); }

.cal__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 8px;
}
.cal__day-name {
    text-align: center;
    font-size: .72rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    padding: 6px 0;
}
.cal__cell {
    text-align: center;
    padding: 8px 4px;
    font-size: .85rem;
    border-radius: 6px;
    cursor: default;
    transition: all var(--transition);
}
.cal__cell--empty { visibility: hidden; }
.cal__cell--past { color: var(--gray-300); }
.cal__cell--unavailable { color: var(--gray-400); }
.cal__cell--available {
    color: var(--color-text);
    font-weight: 600;
    cursor: pointer;
    position: relative;
}
.cal__cell--available::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal-500);
}
.cal__cell--available:hover {
    background: var(--teal-50);
    color: var(--color-primary);
}
.cal__cell--selected {
    background: var(--color-primary) !important;
    color: var(--white) !important;
}
.cal__cell--selected::after { background: var(--white); }

.slots { margin-top: 4px; }
.slots__label {
    font-size: .85rem;
    color: var(--gray-600);
    margin-bottom: 12px;
}
.slots__label strong { color: var(--color-text); }
.slots__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 8px;
}
.slots__btn {
    padding: 8px 4px;
    font-family: var(--font-sans);
    font-size: .85rem;
    font-weight: 500;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition);
}
.slots__btn:hover {
    border-color: var(--teal-500);
    color: var(--color-primary);
    background: var(--teal-50);
}
.slots__btn--selected {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: var(--white) !important;
}
.slots__loading, .slots__empty, .slots__error {
    font-size: .85rem;
    color: var(--gray-500);
    text-align: center;
    padding: 16px 0;
}
.slots__error { color: #ef4444; }

/* --- Testimonials --- */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--teal-500);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    border-left-color: var(--teal-500);
    transform: translateY(-2px);
}

.testimonial-card__stars {
    display: flex;
    gap: 2px;
    color: var(--amber-500);
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-size: .95rem;
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 20px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: .85rem;
    flex-shrink: 0;
}
.testimonial-card__name {
    font-style: normal;
    font-weight: 600;
    font-size: .88rem;
    display: block;
}
.testimonial-card__detail {
    font-size: .78rem;
    color: var(--color-text-secondary);
}

/* --- Booking --- */
.booking__layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 60px;
    align-items: start;
}

.booking__desc {
    color: rgba(255,255,255,.6);
    font-size: 1rem;
    margin-top: 16px;
    line-height: 1.7;
}

.booking__highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}
.booking__highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
}
.booking__highlight svg { color: var(--teal-500); flex-shrink: 0; }

.booking-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-xl);
}

.booking-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-form__group {
    margin-bottom: 18px;
}
.booking-form__group label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.booking-form__group .optional {
    font-weight: 400;
    color: var(--gray-400);
}

.booking-form__group input,
.booking-form__group select,
.booking-form__group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: .9rem;
    color: var(--color-text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.booking-form__group input:focus,
.booking-form__group select:focus,
.booking-form__group textarea:focus {
    outline: none;
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(20,184,166,.12);
}
.booking-form__group textarea { resize: vertical; }
.booking-form .btn { margin-top: 4px; }

.field-hint {
    display: block;
    font-size: .75rem;
    margin-top: 4px;
    min-height: 16px;
}
.field-hint--valid { color: var(--green-500); }
.field-hint--invalid { color: #DC2626; }

/* --- Contact --- */
.contact__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.contact-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition);
}
.contact-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.contact-card svg {
    margin: 0 auto 16px;
    color: var(--color-primary);
}
.contact-card h4 {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.contact-card p {
    font-size: .88rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

/* --- Gallery --- */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.gallery__item--wide {
    grid-column: span 2;
}
.gallery__item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.gallery__item--wide img { height: 260px; }
.gallery__item:hover img { transform: scale(1.03); }
.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,.5));
    color: var(--white);
    font-size: .85rem;
    font-weight: 500;
}

/* --- Footer --- */
.footer {
    background: var(--gray-900);
    padding: 40px 0 32px;
}
.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.footer .navbar__logo {
    font-size: 1.2rem;
    color: var(--white);
}
.footer .navbar__logo span { color: var(--color-accent); }

.footer__nav {
    display: flex;
    gap: 24px;
}
.footer__nav a {
    font-size: .85rem;
    color: var(--gray-400);
    transition: color var(--transition);
}
.footer__nav a:hover { color: var(--teal-500); }

.footer__copy {
    font-size: .78rem;
    color: var(--gray-600);
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.06);
    width: 100%;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1024px) {
    .hero { padding: 120px 0 60px; }
    .hero__split { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
    .hero__mosaic { height: 360px; }
    .hero__mosaic-main { width: 75%; height: 280px; }
    .hero__mosaic-secondary { width: 45%; height: 170px; bottom: 20px; }
    .hero__mosaic-accent { width: 130px; height: 100px; }
    .process__grid { gap: 24px; }
    .process-step:not(:last-child)::after { display: none; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .specialists__grid { grid-template-columns: repeat(2, 1fr); }
    .gallery__grid { grid-template-columns: 1fr; }
    .gallery__item--wide { grid-column: span 1; }
    .gallery__item--wide img, .gallery__item img { height: 220px; }
    .testimonials__grid { grid-template-columns: 1fr; }
    .about__layout { grid-template-columns: 1fr; gap: 32px; }
    .booking__layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    :root { --section-py: 64px; }

    .navbar__toggle { display: flex; }
    .navbar__menu {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 24px var(--container-px);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        transition: transform var(--transition);
        gap: 20px;
    }
    .navbar__menu.active { transform: translateY(0); }
    .navbar__menu ul { flex-direction: column; gap: 12px; }
    .navbar__menu ul a { font-size: 1rem; }
    .navbar__menu .btn--nav { width: 100%; text-align: center; }

    .process__grid { grid-template-columns: 1fr; }
    .services__grid { grid-template-columns: 1fr; }
    .specialists__grid { grid-template-columns: 1fr; }
    .contact__grid { grid-template-columns: 1fr 1fr; }
    .booking-form__row { grid-template-columns: 1fr; }
    .booking-form { padding: 24px; }
    .about__features { grid-template-columns: 1fr; }

    .hero__mosaic { height: 300px; }
    .hero__mosaic-main { width: 70%; height: 240px; }
    .hero__mosaic-secondary { width: 50%; height: 150px; bottom: 10px; }
    .hero__mosaic-accent { display: none; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; }
    .hero__trust { flex-wrap: wrap; gap: 16px; padding: 16px; }
}

@media (max-width: 480px) {
    .contact__grid { grid-template-columns: 1fr; }
    .footer__nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

/* --- WhatsApp FAB --- */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,.4);
    z-index: 99;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: waPulse 2s ease-in-out 3;
}
.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,.5);
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.4); }
    50% { box-shadow: 0 4px 24px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.15); }
}

/* --- Mobile CTA Bar --- */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background: var(--white);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -4px 12px rgba(0,0,0,.06);
    z-index: 98;
    transition: transform .3s ease;
}
.mobile-cta-bar.hidden { transform: translateY(100%); }

@media (max-width: 768px) {
    .mobile-cta-bar { display: block; }
    .whatsapp-fab { bottom: 80px; }
    .footer { padding-bottom: 72px; }
}

/* --- Scroll reveal utility (applied via JS) --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}
