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

:root {
    --bg: #f8fafc;
    --bg-alt: #f0f9ff;
    --bg-card: #ffffff;
    --text: #1e3a5f;
    --muted: #4a7dad;
    --accent: #0ea5e9;
    --accent-light: #e0f2fe;
    --border: #bfdbfe;
    --font-sans: 'DM Sans', sans-serif;
    --font-serif: 'DM Serif Display', serif;
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--text); line-height: 1.8; }

/* ── Hero ── */
.hero {
    background: var(--text);
    color: #fff;
    padding: 4rem 4rem 3.5rem;
}
.hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 3rem;
    align-items: center;
}
.hero-text { /* left column */ }
.hero-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}
.hero-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(147, 197, 253, 0.35);
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero-name {
    font-size: 0.85rem;
    color: var(--accent);
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.04em;
}
.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0.9rem;
    color: #fff;
}
.hero-sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: #93c5fd;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.hero-intro {
    font-size: 0.92rem;
    color: #bfdbfe;
    line-height: 1.85;
}

/* ── Inline link (used inside passion-text paragraphs on light background) ── */
.inline-link {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(14, 165, 233, 0.35);
}
.inline-link:hover {
    text-decoration-color: var(--accent);
}

/* ── Shared ── */
.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.section-intro {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

/* ── Passion sections (alternating) ── */
.passion-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 3.5rem 4rem;
}
.passion-section--alt {
    background: var(--bg-alt);
}
.passion-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}
.passion-section--alt .passion-inner {
    grid-template-columns: 0.85fr 1.15fr;
}
.passion-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.15;
}
.passion-text p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.85;
}
/* photo-wrap is the real positioning parent for the overlay */
.passion-photo {
    width: 100%;
}
.photo-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.story-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 40, 70, 0.93);
    color: #e0f2fe;
    padding: 1.4rem;
    opacity: 0;
    transition: opacity 0.25s ease;
    font-size: 0.87rem;
    line-height: 1.75;
    overflow-y: auto;
}
.photo-wrap:hover .story-overlay {
    opacity: 1;
}
.passion-photo figcaption {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.4;
}
.hover-hint {
    opacity: 0.55;
    font-style: italic;
}

/* ── Double-photo (Creating section) ── */
.photo-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.photo-pair-item {
    display: flex;
    flex-direction: column;
}
.photo-pair-item .photo-wrap {
    aspect-ratio: 4 / 3;
}
.photo-pair-item figcaption {
    margin-top: 0.4rem;
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.4;
}

/* ── Passion link ── */
.passion-link {
    display: inline-block;
    margin-top: 1.25rem;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(14, 165, 233, 0.35);
    padding-bottom: 1px;
    transition: border-color 0.2s;
}
.passion-link:hover {
    border-color: var(--accent);
}

/* ── Testimonials ── */
.testimonials-section {
    background: var(--text);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 3.5rem 4rem;
}
.testimonials-inner {
    max-width: 860px;
    margin: 0 auto;
}
.testimonials-section .section-title {
    color: #fff;
    margin-bottom: 3rem;
}
.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.testimonial {
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1.75rem;
}
.testimonial-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(147, 197, 253, 0.35);
    flex-shrink: 0;
}
.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.testimonial-content p {
    color: #e0f2fe;
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 0.6rem;
}
.testimonial-content cite {
    color: var(--accent);
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 500;
}
.cite-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(14, 165, 233, 0.45);
}
.cite-link:hover {
    text-decoration-color: var(--accent);
}

/* ── Videos ── */
.videos-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 3.5rem 4rem;
}
.videos-inner {
    max-width: 860px;
    margin: 0 auto;
}
.video-note {
    font-size: 0.82rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}
.video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}
.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── Footer ── */
.site-footer {
    background: var(--text);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    text-align: center;
    color: #93c5fd;
    font-size: 0.85rem;
}

/* ── Responsive ── */
@media (max-width: 720px) {
    .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero-profile { flex-direction: row; justify-content: flex-start; }
    .passion-inner,
    .passion-section--alt .passion-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .passion-photo { order: 2; }
    .passion-text  { order: 1; }
}

@media (max-width: 640px) {
    .hero { padding: 2.5rem 1.5rem 2rem; }
    .passion-section { padding: 2.5rem 1.5rem; }
    .testimonials-section { padding: 3rem 1.5rem; }
    .videos-section { padding: 3rem 1.5rem; }
    .testimonial { flex-direction: column; gap: 1rem; }
    .photo-pair { grid-template-columns: 1fr; }
}
