/* ============================================================
   04 — SERVICES — Servicio Coma + Grilla, TV Carousel, About
   ============================================================ */

/* ============== SERVICIO COMA — NUEVO ============== */
.coma-section {
    padding: 160px 48px 140px;
    background: var(--paper);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
  }
  .coma-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 75% 30%, rgba(196, 18, 26, 0.06), transparent 55%),
      radial-gradient(ellipse at 15% 80%, rgba(232, 223, 209, 0.45), transparent 60%);
    pointer-events: none;
  }

  .coma-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .coma-symbol-wrap {
    position: relative;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }
  .coma-symbol {
    width: 65%;
    height: 90%;
    user-select: none;
    filter: drop-shadow(0 30px 60px rgba(196, 18, 26, 0.18));
    animation: comaFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
  }
  @keyframes comaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  .coma-frame {
    position: absolute;
    inset: 8% 12%;
    border: 1px solid var(--ink);
    opacity: 0.18;
    pointer-events: none;
    z-index: 1;
  }
  .coma-edition {
    position: absolute;
    top: 8%;
    right: 10%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    font-style: italic;
    color: var(--muted);
    letter-spacing: 0.1em;
    z-index: 3;
    background: var(--paper);
    padding: 4px 8px;
  }
  .coma-edition::before {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: var(--muted);
    margin-bottom: 8px;
    opacity: 0.5;
  }
  .coma-stamp {
    position: absolute;
    bottom: 10%;
    left: 10%;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.08em;
    line-height: 1.5;
    z-index: 3;
    max-width: 200px;
    background: var(--paper);
    padding: 4px 8px;
  }

  .coma-content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .coma-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
  }
  .coma-eyebrow .line {
    width: 36px;
    height: 1px;
    background: var(--red);
  }
  .coma-eyebrow .text {
    font-size: 10px;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
  }

  .coma-verse {
    border-left: 2px solid var(--red);
    padding: 6px 0 6px 24px;
    margin-bottom: 36px;
  }
  .coma-verse blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 560px;
  }
  .coma-verse cite {
    display: block;
    margin-top: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--red);
    font-style: normal;
    font-weight: 500;
  }
  .coma-verse cite .verse-ref {
    display: block;
    margin-top: 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    font-style: italic;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: none;
    font-weight: 400;
  }

  .coma-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 28px;
  }
  .coma-headline em {
    font-style: italic;
    color: var(--red);
  }

  .coma-body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 580px;
    margin-bottom: 40px;
  }
  .coma-body strong {
    color: var(--ink);
    font-weight: 500;
  }

  .coma-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    margin-bottom: 40px;
    border: 1px solid var(--line);
  }
  .coma-stage {
    background: var(--paper);
    padding: 24px 22px;
    transition: background 0.4s;
  }
  .coma-stage:hover { background: var(--paper-warm); }
  .coma-stage .roman {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--red);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
  .coma-stage h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    color: var(--ink);
  }
  .coma-stage p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--muted);
    margin: 0;
  }

  .coma-meta {
    display: flex;
    gap: 40px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: 32px;
  }
  .coma-meta .item .label {
    display: block;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .coma-meta .item .val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .coma-meta .item .val em { font-style: italic; color: var(--red); }

  .coma-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
  }

  .coma-cta-link {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    padding: 4px 0;
    border: none;
    border-bottom: 1px solid var(--ink);
    background: none;
    cursor: pointer;
    transition: color 0.4s, letter-spacing 0.4s, border-color 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 400;
  }
  .coma-cta-link::after {
    content: '↓';
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--red);
    transition: transform 0.4s ease;
  }
  .coma-cta-link:hover {
    color: var(--red);
    letter-spacing: 0.36em;
    border-color: var(--red);
  }
  .coma-cta-link:hover::after {
    transform: translateY(4px);
  }

  @media (max-width: 900px) {
    .coma-section { padding: 80px 20px; }
    .coma-inner { grid-template-columns: 1fr; gap: 40px; }
    .coma-symbol-wrap { height: 320px; order: -1; }
    .coma-symbol { font-size: 360px; }
    .coma-stages { grid-template-columns: 1fr; }
    .coma-meta { gap: 24px; flex-wrap: wrap; }
  }

/* ============== TV CAROUSEL — NUEVO ============== */
.tv-section {
    padding: 140px 48px;
    background: var(--paper-warm);
    position: relative;
    overflow: hidden;
  }
  .tv-inner { max-width: 1400px; margin: 0 auto; }
  .tv-head {
    display: grid; grid-template-columns: 320px 1fr;
    gap: 100px; margin-bottom: 64px; align-items: end;
  }
  .tv-head .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 96px; font-style: italic;
    color: var(--red); line-height: 1;
  }
  .tv-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 300; line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .tv-head h2 em { font-style: italic; color: var(--red); }
  .tv-head .channels {
    margin-top: 28px;
    display: flex; gap: 24px; flex-wrap: wrap;
    align-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px; letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .tv-head .channels .pill {
    border: 1px solid var(--line);
    padding: 8px 14px;
    background: var(--paper);
  }

  .tv-swiper {
    padding: 20px 0 60px;
    position: relative;
  }
  .tv-swiper .swiper-slide { width: 380px; height: auto; }

  .tv-card {
    background: var(--paper);
    border: 1px solid var(--line);
    overflow: hidden;
    display: flex; flex-direction: column;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .tv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  .tv-card .video-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--ink);
    overflow: hidden;
  }
  .tv-card .video-wrap video,
  .tv-card .video-wrap .placeholder {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  .tv-card .placeholder {
    background:
      linear-gradient(135deg, rgba(196,18,26,0.08), transparent 50%),
      linear-gradient(45deg, #1a1a1a, #2a2a2a);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--paper); padding: 24px; text-align: center;
    gap: 12px;
  }
  .tv-card .placeholder svg { opacity: 0.7; }
  .tv-card .placeholder .ph-label {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic; font-size: 14px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.05em;
  }
  .tv-card .play-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(17,17,17,0.0);
    transition: background 0.3s;
    cursor: pointer;
    z-index: 2;
  }
  .tv-card:hover .play-overlay { background: rgba(17,17,17,0.25); }
  .tv-card .play-icon {
    width: 64px; height: 64px;
    background: var(--red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s;
    box-shadow: 0 8px 20px rgba(196,18,26,0.4);
  }
  .tv-card:hover .play-icon { transform: scale(1.08); }
  .tv-card .play-icon::after {
    content: ''; width: 0; height: 0;
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
  }
  .tv-card .duration-badge {
    position: absolute; top: 12px; right: 12px;
    background: rgba(17,17,17,0.85); color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 6px 10px; z-index: 3;
  }
  .tv-card .meta {
    padding: 24px 26px 28px;
    display: flex; flex-direction: column; gap: 12px;
    flex-grow: 1;
  }
  .tv-card .channel {
    font-size: 9px; letter-spacing: 0.32em;
    text-transform: uppercase; color: var(--red);
    font-weight: 500;
  }
  .tv-card .title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 400;
    letter-spacing: -0.01em; line-height: 1.2;
    color: var(--ink);
  }
  .tv-card .title em { font-style: italic; }
  .tv-card .date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px; font-style: italic;
    color: var(--muted);
  }
  .tv-card .full-link {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 11px; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--ink);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: color 0.3s, gap 0.3s;
  }
  .tv-card .full-link:hover { color: var(--red); gap: 14px; }
  .tv-card .full-link::after { content: '→'; font-size: 14px; }

  .tv-controls {
    display: flex; gap: 12px;
    margin-top: 16px; align-items: center;
  }
  .tv-arrow {
    width: 48px; height: 48px;
    border: 1px solid var(--ink); background: transparent;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; color: var(--ink);
  }
  .tv-arrow:hover { background: var(--ink); color: var(--paper); }
  .tv-arrow svg { width: 18px; height: 18px; }
  .tv-arrow.swiper-button-disabled { opacity: 0.3; cursor: not-allowed; }

  .tv-cta {
    margin-top: 56px; text-align: center;
    padding-top: 48px; border-top: 1px solid var(--line);
  }
  .tv-cta p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-style: italic;
    color: var(--ink); margin-bottom: 24px;
  }

  @media (max-width: 900px) {
    .tv-section { padding: 80px 20px; }
    .tv-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
    .tv-swiper .swiper-slide { width: 280px; }
    .tv-card .title { font-size: 20px; }
  }

/* ============== ABOUT ============== */
.about {
    padding: 140px 48px; max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 320px 1fr;
    gap: 100px; align-items: start;
  }
  .about-label { position: sticky; top: 140px; }
  .about-label .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 96px; font-style: italic; font-weight: 300;
    color: var(--red); line-height: 1;
  }
  .about-label .num::after {
    content: ''; display: block; width: 60px; height: 1px;
    background: var(--ink); margin: 28px 0 20px;
  }
  .about-label h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 400; letter-spacing: 0.02em;
  }

  .about-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 300; line-height: 1.05;
    letter-spacing: -0.02em; margin-bottom: 48px;
    color: var(--ink);
  }
  .about-body h2 em { font-style: italic; color: var(--red); }

  .about-body p {
    font-size: 17px; line-height: 1.75; max-width: 620px;
    margin-bottom: 24px; color: var(--ink-soft);
  }
  .about-body p.lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 400; font-style: italic;
    color: var(--ink); line-height: 1.5; margin-bottom: 32px;
  }

  .pillars {
    margin-top: 56px;
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--line);
  }
  .pillars .pillar { background: var(--paper); padding: 32px 28px; }
  .pillars .pillar .eyebrow { display: block; margin-bottom: 16px; }
  .pillars .pillar h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 400; letter-spacing: -0.01em;
    margin-bottom: 12px; line-height: 1.1;
  }
  .pillars .pillar h4 em { font-style: italic; color: var(--red); }
  .pillars .pillar p {
    font-size: 14px; line-height: 1.6;
    color: var(--ink-soft); margin: 0;
  }

  @media (max-width: 900px) {
    .about { grid-template-columns: 1fr; gap: 48px; padding: 80px 20px; }
    .about-label { position: static; }
    .pillars { grid-template-columns: 1fr; }
  }

/* ============== SERVICES ============== */
.services {
    background: var(--paper);
    padding: 140px 48px; position: relative;
  }
  .services-inner { max-width: 1400px; margin: 0 auto; }
  .services-head {
    display: grid; grid-template-columns: 320px 1fr;
    gap: 100px; margin-bottom: 80px; align-items: end;
  }
  .services-head .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 96px; font-style: italic;
    color: var(--red); line-height: 1;
  }
  .services-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 300; line-height: 1.05;
    letter-spacing: -0.02em; color: var(--ink);
  }
  .services-head h2 em { font-style: italic; color: var(--red); }
  .services-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    color: var(--ink-soft);
    line-height: 1.5;
    margin-top: 24px;
    max-width: 540px;
  }

  .services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1px; background: var(--line); border: 1px solid var(--line);
  }
  .service-card {
    background: var(--paper);
    padding: 48px 40px; position: relative;
    transition: background 0.4s;
    display: flex; flex-direction: column; gap: 16px;
    min-height: 320px;
  }
  .service-card:hover { background: var(--paper-warm); }
  .service-card .service-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 20px; margin-bottom: 8px;
  }
  .service-card .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px; font-style: italic; color: var(--red);
    letter-spacing: 0.05em;
  }
  .service-card .duration {
    font-size: 10px; letter-spacing: 0.26em;
    text-transform: uppercase; color: var(--muted);
  }
  .service-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px; font-weight: 400;
    letter-spacing: -0.01em; line-height: 1.15;
    color: var(--ink);
  }
  .service-card h4 em { font-style: italic; color: var(--red); }
  .service-card p {
    font-size: 15px; line-height: 1.65;
    color: var(--ink-soft);
  }
  .service-card .price {
    margin-top: auto; padding-top: 20px;
    border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'Cormorant Garamond', serif;
  }
  .service-card .price .amount {
    font-size: 24px; font-weight: 400; color: var(--ink);
    letter-spacing: -0.01em;
  }
  .service-card .price .amount em { font-style: italic; color: var(--red); }
  .service-card .price .label {
    font-family: 'Inter', sans-serif;
    font-size: 10px; letter-spacing: 0.26em;
    text-transform: uppercase; color: var(--muted);
  }
  .service-card .service-actions {
    display: flex; gap: 10px; margin-top: 16px;
  }
  .service-card .btn-pay,
  .service-card .btn-form {
    flex: 1;
    font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
    padding: 14px 16px; text-align: center;
    text-decoration: none; cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--ink); font-family: inherit;
  }
  .service-card .btn-pay {
    background: var(--ink); color: var(--paper);
  }
  .service-card .btn-pay:hover { background: var(--red); border-color: var(--red); }
  .service-card .btn-form {
    background: transparent; color: var(--ink);
  }
  .service-card .btn-form:hover { background: var(--ink); color: var(--paper); }

/* === TARJETA SERVICIO COMA — Span 2 columnas === */
.service-card.service-coma {
    grid-column: span 2;
    background:
      linear-gradient(135deg, rgba(196, 18, 26, 0.05) 0%, transparent 50%),
      var(--paper);
    border-top: 2px solid var(--red);
    padding: 0;
    min-height: auto;
  }
  .service-card.service-coma:hover {
    background:
      linear-gradient(135deg, rgba(196, 18, 26, 0.07) 0%, transparent 50%),
      var(--paper-warm);
  }
  .coma-card-grid {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 0;
  }
  .coma-card-symbol {
    background: var(--ink);
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 360px;
  }
  .coma-card-img {
    width: 70%;
    max-width: 220px;
    height: auto;
    filter:
      drop-shadow(0 0 30px rgba(196, 18, 26, 0.5))
      drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .service-card.service-coma:hover .coma-card-img {
    transform: scale(1.05) translateY(-6px);
  }
  .coma-card-label {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--bone);
    opacity: 0.7;
    white-space: nowrap;
  }
  .coma-card-body {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
  }
  .coma-card-body .service-top {
    margin-bottom: 16px;
  }
  .coma-card-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .coma-card-headline em {
    font-style: italic;
    color: var(--red);
  }
  .coma-card-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 18px;
  }
  .coma-card-lead strong {
    font-style: normal;
    font-weight: 500;
    color: var(--red);
  }
  .coma-card-detail {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 28px;
  }
  .coma-card-detail strong {
    color: var(--ink);
    font-weight: 500;
  }
  .service-card.service-coma .price {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }
  .service-card.service-coma .btn-pay {
    background: var(--red);
    border-color: var(--red);
  }
  .service-card.service-coma .btn-pay:hover {
    background: var(--ink);
    border-color: var(--ink);
  }

  @media (max-width: 900px) {
    .service-card.service-coma {
      grid-column: span 1;
    }
    .coma-card-grid {
      grid-template-columns: 1fr;
    }
    .coma-card-symbol {
      min-height: 240px;
      padding: 40px 32px;
    }
    .coma-card-img {
      width: 50%;
    }
    .coma-card-body {
      padding: 36px 28px;
    }
  }

  @media (max-width: 900px) {
    .services { padding: 80px 20px; }
    .services-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 36px 28px; min-height: auto; }
    .service-card .service-actions { flex-direction: column; }
  }

/* === TARJETA WORKSHOP — Span 2 columnas (B2B institucional) === */
.service-card.service-workshop {
    grid-column: span 2;
    border-top: 2px solid var(--ink);
    background: linear-gradient(180deg, var(--paper), var(--paper-warm));
    padding: 0;
    overflow: hidden;
    min-height: auto;
  }
  .service-card.service-workshop:hover {
    background: linear-gradient(180deg, var(--paper-warm), var(--bone));
  }

  .workshop-card-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    min-height: 360px;
  }

  .workshop-card-symbol {
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    position: relative;
    overflow: hidden;
  }
  .workshop-card-symbol img {
    max-height: 280px;
    width: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  .service-card.service-workshop:hover .workshop-card-symbol img {
    transform: scale(1.03) translateY(-4px);
  }
  .workshop-card-label {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 1;
    white-space: nowrap;
  }

  .workshop-card-body {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .workshop-card-eyebrow {
    color: var(--red);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 500;
  }

  .workshop-card-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0;
    line-height: 1.05;
  }
  .workshop-card-headline em {
    color: var(--red);
    font-style: italic;
  }

  .workshop-card-lead {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 60ch;
    margin: 0;
  }

  .workshop-card-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.4;
    margin: 8px 0 0;
  }

  .workshop-card-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }
  .workshop-card-meta .meta-item {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .service-card.service-workshop .service-actions {
    margin-top: 16px;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
  }
  .service-card.service-workshop .btn-primary {
    flex: 0 0 auto;
  }
  .service-card.service-workshop .btn-form {
    flex: 0 0 auto;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    padding: 14px 22px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
    font-family: inherit;
  }
  .service-card.service-workshop .btn-form:hover {
    background: var(--ink);
    color: var(--paper);
  }

  .workshop-card-footer {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
  }

  @media (max-width: 900px) {
    .service-card.service-workshop {
      grid-column: span 1;
    }
    .workshop-card-grid {
      grid-template-columns: 1fr;
    }
    .workshop-card-symbol {
      padding: 24px;
      min-height: 240px;
    }
    .workshop-card-symbol img {
      max-height: 200px;
    }
    .workshop-card-body {
      padding: 32px 24px;
    }
    .service-card.service-workshop .service-actions {
      flex-direction: column;
      align-items: stretch;
    }
    .service-card.service-workshop .btn-primary,
    .service-card.service-workshop .btn-form {
      width: 100%;
      text-align: center;
    }
  }
