/* ============================================================
   Ps. Jenniffer Gil — Psicología y Bienestar
   Estilo: "Santuario Cálido" — Soft Luxury / Organic Wellness
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- Variables ------------------------------------------ */
:root {
    --cream:            #FAF8F5;
    --cream-dark:       #F0EDE8;
    --sage-deep:        #1E3D35;
    --sage:             #2F5E52;
    --sage-mid:         #4E8C7A;
    --sage-muted:       #7AAD9A;
    --sage-light:       #D8EDE6;
    --sage-pale:        #EFF7F4;
    --terracotta:       #B8735A;
    --terracotta-light: #EDCFC3;
    --terracotta-pale:  #FAF1ED;
    --gold:             #B8966A;
    --gold-light:       #EDE0CE;
    --text-dark:        #1A2822;
    --text-body:        #3D5248;
    --text-muted:       #7A9488;
    --white:            #FFFFFF;

    --font-display:  'Cormorant Garamond', Georgia, serif;
    --font-body:     'Plus Jakarta Sans', sans-serif;

    --r-sm:   8px;
    --r-md:   16px;
    --r-lg:   28px;
    --r-xl:   48px;
    --r-full: 100px;

    --shadow-xs: 0 1px 4px rgba(26, 40, 34, 0.06);
    --shadow-sm: 0 4px 16px rgba(26, 40, 34, 0.08);
    --shadow-md: 0 12px 32px rgba(26, 40, 34, 0.10);
    --shadow-lg: 0 24px 56px rgba(26, 40, 34, 0.13);

    --transition: all 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.22s ease;

    --max-w: 1140px;
    --header-h: 72px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-body);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }
a   { text-decoration: none; color: inherit; }

/* --- Typography ------------------------------------------ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: clamp(2.8rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

em { font-style: italic; color: var(--terracotta); }

p { color: var(--text-body); margin-bottom: 1rem; }

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage-mid);
    background: var(--sage-pale);
    border: 1px solid var(--sage-light);
    border-radius: var(--r-full);
    padding: 5px 14px;
    margin-bottom: 1.2rem;
}

/* --- Layout Helpers -------------------------------------- */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

section { overflow: hidden; }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header p {
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* --- Scroll Reveal --------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(26, 40, 34, 0.08), var(--shadow-xs);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--sage-deep);
    letter-spacing: -0.01em;
    transition: var(--transition-fast);
}
.logo span { color: var(--terracotta); }
.logo:hover { color: var(--sage); }

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
    padding: 7px 14px;
    border-radius: var(--r-full);
    transition: var(--transition-fast);
    position: relative;
}
.main-nav a:not(.nav-cta):hover,
.main-nav a:not(.nav-cta).active {
    color: var(--sage);
    background: var(--sage-pale);
}

.nav-cta {
    background: var(--sage);
    color: var(--white) !important;
    padding: 9px 20px !important;
    border-radius: var(--r-full) !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-sm);
    transition: var(--transition) !important;
}
.nav-cta:hover {
    background: var(--sage-deep) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md) !important;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--sage-deep);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 14px 28px;
    border-radius: var(--r-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
    background: var(--sage-deep);
    border-color: var(--sage-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--sage);
    border-color: var(--sage-light);
}
.btn-ghost:hover {
    background: var(--sage-pale);
    border-color: var(--sage-mid);
    transform: translateY(-2px);
}

.btn-terracotta {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
    box-shadow: var(--shadow-sm);
}
.btn-terracotta:hover {
    background: #9E6047;
    border-color: #9E6047;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
    box-shadow: var(--shadow-sm);
}
.btn-whatsapp:hover {
    background: #1DAA54;
    border-color: #1DAA54;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-email {
    background: var(--white);
    color: var(--sage);
    border-color: var(--sage-light);
    box-shadow: var(--shadow-xs);
}
.btn-email:hover {
    background: var(--sage-pale);
    border-color: var(--sage-mid);
    transform: translateY(-2px);
}

.btn svg, .btn img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 40px) 0 80px;
    background: var(--cream);
    overflow: hidden;
}

/* Background blobs */
.hero-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.blob {
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphBlob 10s ease-in-out infinite;
    opacity: 0.55;
}
.blob-1 {
    width: 620px;
    height: 620px;
    background: radial-gradient(ellipse, var(--sage-pale) 0%, transparent 70%);
    top: -100px;
    right: -120px;
    animation-delay: 0s;
}
.blob-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(ellipse, var(--terracotta-pale) 0%, transparent 70%);
    bottom: -50px;
    left: -100px;
    animation-delay: -4s;
    opacity: 0.7;
}
.blob-3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(ellipse, var(--gold-light) 0%, transparent 70%);
    top: 40%;
    left: 42%;
    animation-delay: -7s;
    opacity: 0.5;
}

@keyframes morphBlob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(0deg); }
    25%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: rotate(3deg); }
    50%       { border-radius: 50% 60% 30% 40% / 40% 50% 60% 50%; transform: rotate(-2deg); }
    75%       { border-radius: 40% 50% 60% 30% / 60% 40% 50% 40%; transform: rotate(1deg); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: heroFadeIn 1s ease both;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: var(--r-full);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-xs);
    animation: heroFadeIn 1s 0.1s ease both;
}
.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--terracotta);
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(3rem, 5.5vw, 4.8rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: heroFadeIn 1s 0.2s ease both;
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 480px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.2rem;
    animation: heroFadeIn 1s 0.3s ease both;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: heroFadeIn 1s 0.4s ease both;
}

.hero-trust {
    display: flex;
    gap: 24px;
    animation: heroFadeIn 1s 0.5s ease both;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}
.trust-icon { font-size: 0.9rem; }

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: heroFadeIn 1s 0.3s ease both;
}

.hero-photo-frame {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shape {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--sage-pale) 60%, var(--cream-dark) 100%);
    border-radius: 68% 32% 44% 56% / 58% 44% 56% 42%;
    animation: morphBlob 12s ease-in-out infinite;
}

.hero-photo-frame img {
    position: relative;
    z-index: 1;
    width: 75%;
    height: 75%;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(47, 94, 82, 0.15));
}

/* Decorative dots */
.hero-dots {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--sage-light) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.8;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--sage-deep);
    padding: 32px 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 48px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--sage-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 72px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: var(--r-lg);
    overflow: visible;
}

.about-image-frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--r-lg);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

.about-image-accent {
    position: absolute;
    inset: -14px -14px 14px 14px;
    border-radius: var(--r-lg);
    background: var(--sage-light);
    z-index: 0;
}

.about-image-badge {
    position: absolute;
    bottom: 28px;
    right: -24px;
    z-index: 2;
    background: var(--white);
    border-radius: var(--r-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 140px;
}
.about-image-badge .badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
}
.about-image-badge .badge-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.about-text-col h2 {
    margin: 0.6rem 0 1.5rem;
    line-height: 1.15;
}

.about-text-col p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 1.1rem;
}

.about-text-col p strong {
    color: var(--sage);
    font-weight: 600;
}

.about-qualities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1.6rem 0 2.2rem;
}

.quality-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--sage-pale);
    border: 1px solid var(--sage-light);
    color: var(--sage);
    border-radius: var(--r-full);
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 600;
}
.quality-tag .tag-dot {
    width: 6px;
    height: 6px;
    background: var(--sage-mid);
    border-radius: 50%;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
    padding: 100px 0;
    background: var(--sage-pale);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26, 40, 34, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--sage-mid));
    transform: scaleX(0);
    transition: transform 0.38s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
    width: 64px;
    height: 64px;
    background: var(--sage-pale);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}
.service-card:hover .service-icon-wrap {
    background: var(--sage-light);
    transform: scale(1.05);
}
.service-icon-wrap svg {
    width: 30px;
    height: 30px;
    color: var(--sage);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.9rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ============================================================
   MODALITIES
   ============================================================ */
.modalities {
    padding: 100px 0;
    background: var(--white);
}

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.modality-card {
    border-radius: var(--r-lg);
    padding: 48px 44px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.modality-card.virtual {
    background: linear-gradient(135deg, var(--sage-pale) 0%, var(--sage-light) 100%);
    border: 1px solid var(--sage-light);
}

.modality-card.presencial {
    background: linear-gradient(135deg, var(--terracotta-pale) 0%, var(--terracotta-light) 100%);
    border: 1px solid var(--terracotta-light);
}

.modality-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.modality-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.virtual .modality-icon-wrap  { background: rgba(47, 94, 82, 0.12); }
.presencial .modality-icon-wrap { background: rgba(184, 115, 90, 0.12); }

.modality-icon-wrap svg { width: 28px; height: 28px; }
.virtual .modality-icon-wrap svg { color: var(--sage); }
.presencial .modality-icon-wrap svg { color: var(--terracotta); }

.modality-body h3 { font-size: 1.35rem; margin-bottom: 0.7rem; color: var(--text-dark); }
.modality-body p  { font-size: 0.95rem; color: var(--text-body); margin-bottom: 0.5rem; line-height: 1.75; }

.modality-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.8rem;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 13px;
    border-radius: var(--r-full);
}
.virtual .modality-detail {
    background: rgba(47, 94, 82, 0.1);
    color: var(--sage);
}
.presencial .modality-detail {
    background: rgba(184, 115, 90, 0.1);
    color: var(--terracotta);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
    padding: 100px 0;
    background: var(--sage-deep);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.process .section-label {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.12);
    color: var(--sage-muted);
}

.process .section-header h2 { color: var(--white); }
.process .section-header p  { color: var(--sage-muted); }

.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
}

.step {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    text-align: center;
    transition: var(--transition);
}
.step:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--sage-muted);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.step h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.step p {
    color: var(--sage-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.06));
    align-self: center;
    margin: 0 8px;
    flex-shrink: 0;
    position: relative;
}
.step-connector::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgba(255,255,255,0.15);
    border-right: 2px solid rgba(255,255,255,0.15);
    transform: rotate(45deg);
}

/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule {
    padding: 100px 0;
    background: var(--cream);
}

.schedule-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}
.schedule-intro p { color: var(--text-muted); }

.calendar-wrapper {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--cream-dark);
    max-width: 900px;
    margin: 0 auto 2.5rem;
    background: var(--white);
}

.calendar-wrapper iframe {
    display: block;
    width: 100%;
    height: 620px;
    border: 0;
}

.schedule-alt {
    text-align: center;
    margin-top: 2rem;
}

.schedule-alt p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.4rem;
}

.schedule-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: var(--transition-fast);
}
.faq-item:hover { border-color: var(--sage-light); }
.faq-item.open  { border-color: var(--sage-light); background: var(--sage-pale); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.faq-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--sage);
}
.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    background: var(--sage);
    border-color: var(--sage);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
    padding: 0 24px;
}
.faq-answer p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.85;
    padding-bottom: 20px;
    margin: 0;
}
.faq-item.open .faq-answer { max-height: 240px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
    padding: 100px 0;
    background: var(--sage-pale);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 { margin-bottom: 0.8rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1rem; }

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--r-md);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-xs);
    border: 1px solid transparent;
    transition: var(--transition-fast);
    text-decoration: none;
}
.contact-card:hover {
    border-color: var(--sage-light);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    background: var(--sage-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--sage);
}
.contact-card-icon svg { width: 20px; height: 20px; }

.contact-card-body .cc-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 2px;
}
.contact-card-body .cc-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.map-container {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 380px;
    border: 3px solid var(--white);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--sage-deep);
    padding: 40px 0;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}
.footer-logo span { color: var(--sage-muted); }

footer p {
    font-size: 0.82rem;
    color: var(--sage-muted);
    margin: 0;
}

footer a { color: var(--sage-muted); transition: var(--transition-fast); }
footer a:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 400px;
        gap: 40px;
    }
    .about-grid {
        grid-template-columns: 360px 1fr;
        gap: 50px;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-ctas, .hero-trust { justify-content: center; }
    .hero-visual {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }
    .hero-photo-frame { width: 300px; height: 300px; }

    .about-grid { grid-template-columns: 1fr; }
    .about-image-col { max-width: 380px; margin: 0 auto; }
    .about-image-badge { right: 0; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .step-connector {
        width: 2px;
        height: 28px;
        background: rgba(255,255,255,0.12);
        justify-self: center;
        transform: none;
        margin: 0;
    }
    .step-connector::after { display: none; }

    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }

    .main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(250,248,245,0.97);
        backdrop-filter: blur(14px);
        padding: 20px 24px 28px;
        box-shadow: var(--shadow-md);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .main-nav ul { flex-direction: column; gap: 6px; }
    .main-nav a { display: block; padding: 11px 16px; border-radius: var(--r-sm); }
    .nav-cta { text-align: center; margin-top: 8px; }
    .menu-toggle { display: flex; }

    .stats-grid { flex-direction: column; gap: 16px; }
    .stat-divider { width: 40px; height: 1px; }

    .services-grid { grid-template-columns: 1fr; }
    .modalities-grid { grid-template-columns: 1fr; }
    .modality-card { flex-direction: column; gap: 16px; }

    .schedule-buttons { flex-direction: column; align-items: center; }
    .schedule-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }

    .calendar-wrapper iframe { height: 520px; }

    footer .container { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
    .hero-title { font-size: 2.6rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .about-image-badge { display: none; }
    .quality-tag { font-size: 0.78rem; }
}
