/* ── Services page (extracted from inline <style>; consolidate shared rules into main.css) ── */
    .grecaptcha-badge { visibility: hidden; }

    /* ── Services Intro ── */
    .services-intro-section { background: var(--surface); }
    .services-intro-content {
      max-width: 680px;
    }
    .services-intro-content .label { margin-bottom: 0.75rem; }
    .services-intro-content p {
      color: var(--text-muted);
      font-size: 1.0625rem;
      line-height: 1.75;
      margin-top: 0.75rem;
    }

    /* ── Service Cards ── */
    .services-cards-section {
      background: var(--surface);
      padding-top: 0;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .service-card {
      position: relative;
      overflow: hidden;
      border-radius: 3px;
      aspect-ratio: 4/5;
      background: var(--warm-gray);
    }
    .service-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .service-card:hover img { transform: scale(1.04); }
    .service-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(20,16,12,0.88) 0%, rgba(20,16,12,0.1) 55%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 1.75rem;
    }
    .service-card-num {
      font-size: 0.6875rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: var(--rose);
      margin-bottom: 0.5rem;
    }
    .service-card h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 0.5rem;
    }
    .service-card p {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.6;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, opacity 0.35s ease;
      opacity: 0;
    }
    .service-card:hover p {
      max-height: 5rem;
      opacity: 1;
    }
    .service-card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--rose);
      margin-top: 0.875rem;
      transition: gap 0.2s;
    }
    .service-card-link:hover { gap: 0.625rem; }

    .service-card-wide {
      grid-column: span 2;
      aspect-ratio: 2/1;
    }

    /* ── Contact Form Section ── */
    .contact-section { background: var(--warm-gray); }
    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: clamp(3rem, 6vw, 6rem);
      align-items: start;
    }
    .contact-text .label { margin-bottom: 0.75rem; }
    .contact-text h2 { margin-bottom: 1rem; }
    .contact-text p {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.75;
    }
    .contact-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .contact-form .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.375rem;
    }
    .contact-form .form-group.full-width {
      grid-column: span 2;
    }
    .contact-form .form-group label .required {
      color: var(--rose);
    }
    .form-submit {
      grid-column: span 2;
    }

    /* ── Responsive (page-specific) ── */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: 1fr 1fr; }
      .service-card-wide { grid-column: span 2; aspect-ratio: 16/9; }
    }

    @media (max-width: 768px) {
      .services-grid { grid-template-columns: 1fr; }
      .service-card-wide { grid-column: span 1; aspect-ratio: 4/3; }
      .contact-inner { grid-template-columns: 1fr; }
      .contact-form { grid-template-columns: 1fr; }
      .contact-form .form-group.full-width { grid-column: span 1; }
      .form-submit { grid-column: span 1; }
    }
