.section--services {
    background: var(--bg);
}

.services__head {
    margin: 0 auto 72px;
    text-align: center;
}

.services__title {
    font-family: var(--serif);
    font-weight: 600;
    /* Match Portfolio / Colaboraciones — same fluid scale. */
    font-size: clamp(22px, calc((100vw - 4rem) / 22), 58px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--ink);
}

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

.service {
    padding: 48px 36px 56px;
    background: var(--bg-soft);
    transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}

.service:hover {
    background: var(--bg-strip);
    transform: translateY(-3px);
}

/* Make clickable variants (anchor + button) look identical to the article version. */
a.service,
button.service {
    display: block;
    width: 100%;
    text-align: left;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    font: inherit;
}

a.service:focus-visible,
button.service:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 4px;
}

.service__title {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 24px;
}

.service__lead {
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--ink);
    margin-bottom: 12px;
}

.service__body {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--ink-soft);
}

@media (max-width: 700px) {
    .services__grid { grid-template-columns: 1fr; }
}

/* ── YOUTUBE MODAL ────────────────────────────────── */
.yt-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: clamp(20px, 4vw, 60px);
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}
.yt-modal[hidden] { display: none; }
.yt-modal.is-open { background: rgba(0, 0, 0, 0.92); }

.yt-modal__close {
    position: absolute;
    top: 28px;
    right: 28px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    color: rgba(255, 255, 255, 0.78);
    background: transparent;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s, transform 0.3s var(--ease);
}
.yt-modal__close:hover {
    color: #fff;
    border-color: #fff;
    transform: rotate(90deg);
}

.yt-modal__stage {
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    background: #000;
    transform: scale(0.96);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s ease;
}
.yt-modal.is-open .yt-modal__stage {
    transform: scale(1);
    opacity: 1;
}

.yt-modal__video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .yt-modal__close { top: 16px; right: 16px; width: 38px; height: 38px; }
}
