/* ============================================================
   CHRISTO FASOLI — Stylesheet
   Font: Space Grotesk (Google Fonts)
   Palette: Pure Black / Pure White — no color accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700&display=swap');

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── Base ───────────────────────────────────────────────── */
body {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: #000;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

/* ─── Typography Scale ───────────────────────────────────── */
.t-hero {
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.t-h2 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.t-h3 {
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.t-h4 {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.t-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.t-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
}

.t-body strong, .t-body b {
  font-weight: 500;
}

/* ─── Layout Utilities ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: 900px;
}

.section {
  padding: 100px 0;
}

.section--lg {
  padding: 140px 0;
}

.section--sm {
  padding: 60px 0;
}

/* ─── Navigation ─────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  background: #fff;
  border-bottom: 1px solid #000;
}

.site-nav__logo {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.site-nav__links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  transition: opacity 0.2s;
}

.site-nav__links a:hover,
.site-nav__links a.active {
  opacity: 0.4;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: #000;
  transition: all 0.3s;
}

/* Page offset for fixed nav */
main { padding-top: 65px; }

/* ─── Hero (Home) ────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 65px);
  border-bottom: 1px solid #000;
}

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 40px 80px 40px;
  border-right: 1px solid #000;
}

.hero__titles {
  margin-bottom: 60px;
}

.hero__titles .t-hero {
  display: block;
  line-height: 0.88;
}

.hero__titles .t-hero:nth-child(2) {
  padding-left: 1.2em;
}

.hero__titles .t-hero:nth-child(3) {
  padding-left: 2.4em;
}

.hero__desc {
  max-width: 480px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  border-top: 1px solid #000;
  padding-top: 32px;
}

.hero__image {
  position: relative;
  overflow: hidden;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero__image-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

/* ─── Page Header ────────────────────────────────────────── */
.page-header {
  padding: 100px 0 60px;
  border-bottom: 1px solid #000;
}

.page-header .t-hero {
  line-height: 0.88;
}

/* ─── Bio Page ───────────────────────────────────────────── */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.bio-image {
  position: sticky;
  top: 65px;
  height: calc(100vh - 65px);
  overflow: hidden;
  border-right: 1px solid #000;
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.bio-content {
  padding: 80px 60px;
}

.bio-content__intro {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #000;
}

.bio-content__section {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #000;
}

.bio-content__section:last-child {
  border-bottom: none;
}

.bio-section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.5;
}

/* ─── Arte Page ──────────────────────────────────────────── */
.arte-series {
  border-top: 1px solid #000;
}

.serie {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #000;
  min-height: 80vh;
}

.serie--reverse {
  direction: rtl;
}

.serie--reverse > * {
  direction: ltr;
}

.serie__images {
  overflow: hidden;
  position: relative;
}

.serie__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.serie__images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: transparent;
  height: 100%;
}

.serie__images-grid img {
  display: block;
}

.serie__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  border-right: 1px solid #000;
}

.serie--reverse .serie__info {
  border-right: none;
  border-left: 1px solid #000;
}

.serie__num {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0.4;
}

.serie__title {
  margin-bottom: 32px;
}

.serie__meta {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #000;
}

.serie__meta-item {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.6;
}

.serie__meta-item--italic {
  font-style: italic;
  text-transform: none;
  font-weight: 300;
}

.serie__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin-top: 28px;
}

/* ─── Glyph flip gesture ─────────────────────────────────── */
.glyph-flip-a {
  display: inline-block;
  transform: scaleY(-1);
  transform-origin: 50% 58%;
}
.glyph-flip-e {
  display: inline-block;
  transform: scaleX(-1);
}

/* ─── Arte Statement ─────────────────────────────────────── */
.arte-statement {
  max-width: 640px;
  padding: 64px 24px 72px;
  border-bottom: 1px solid #000;
}
.arte-statement p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.2em;
}
.arte-statement p:last-child { margin-bottom: 0; }

.texto-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid #000;
  padding: 12px 24px;
  transition: background 0.2s, color 0.2s;
}
.texto-link:hover {
  background: #000;
  color: #fff;
}

/* ─── Curador Page ───────────────────────────────────────── */
.curador-list {
  border-top: 1px solid #000;
}

.proyecto {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-bottom: 1px solid #000;
}

.proyecto__label-col {
  padding: 60px 40px;
  border-right: 1px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.proyecto__num {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.35;
}

.proyecto__role-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid #000;
  display: inline-block;
  padding: 5px 10px;
  align-self: flex-start;
}

.proyecto__body {
  padding: 60px 60px;
}

.proyecto__title {
  margin-bottom: 24px;
}

.proyecto__artists {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.6;
}

.proyecto__venue {
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 28px;
}

.proyecto__images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
  background: transparent;
  margin-top: 40px;
}

.proyecto__images .img-placeholder {
  height: 500px;
}

.proyecto__images .img-placeholder--wide {
  grid-column: 1 / -1;
  height: 560px;
}

.proyecto__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Mentorías Page ─────────────────────────────────────── */
.mentorias-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #000;
  min-height: 60vh;
}

.mentorias-hero__text {
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #000;
}

.mentorias-hero__side {
  padding: 100px 60px;
  display: flex;
  align-items: center;
}

.mentorias-hero__tagline {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.mentorias-hero__desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  border-top: 1px solid #000;
  padding-top: 32px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #000;
}

.servicio {
  padding: 60px 40px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}

.servicio:last-child,
.servicio:nth-child(3),
.servicio:nth-child(6) {
  border-right: none;
}

.servicio__num {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 24px;
}

.servicio__title {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.servicio__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
  color: #333;
}

.servicio__cta {
  margin-top: 28px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
  display: inline-block;
  cursor: pointer;
}

.proceso-section {
  border-top: 1px solid #000;
}

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #000;
}

.step {
  padding: 48px 36px;
  border-right: 1px solid #000;
}

.step:last-child {
  border-right: none;
}

.step__num {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.35;
  margin-bottom: 20px;
}

.step__title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.step__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

.recorridos-section {
  border-top: 1px solid #000;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.recorridos-section__intro {
  padding: 80px 60px;
  border-right: 1px solid #000;
}

.recorridos-section__detail {
  padding: 80px 60px;
}

.recorridos-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid #000;
}

.recorrido-type {
  padding: 32px 0;
  border-right: 1px solid #000;
  padding-right: 32px;
}

.recorrido-type:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 32px;
}

.recorrido-type__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.recorrido-type__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

/* ─── Contact Page ───────────────────────────────────────── */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #000;
  min-height: calc(100vh - 130px);
}

.contacto-info {
  padding: 80px 60px;
  border-right: 1px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contacto-info__text {
  margin-bottom: 60px;
}

.contacto-info__links {
  margin-top: 40px;
}

.contacto-info__link {
  display: block;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid #000;
  transition: opacity 0.2s;
}

.contacto-info__link:hover { opacity: 0.5; }

.contacto-form {
  padding: 80px 60px;
}

.form-title {
  margin-bottom: 48px;
}

.form-group {
  margin-bottom: 0;
  border-bottom: 1px solid #000;
}

.form-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 8px;
  opacity: 0.5;
}

.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  padding: 8px 0 20px;
  resize: none;
}

.form-textarea {
  min-height: 140px;
}

.form-submit {
  margin-top: 48px;
  background: #000;
  color: #fff;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 20px 48px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.form-submit:hover {
  background: #fff;
  color: #000;
  outline: 1px solid #000;
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid #000;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-footer__copy {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
}

.site-footer__links {
  display: flex;
  gap: 28px;
}

.site-footer__links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.site-footer__links a:hover { opacity: 1; }

/* ─── Image Placeholders ─────────────────────────────────── */
.img-placeholder {
  background: transparent;
  display: block;
  overflow: hidden;
  position: relative;
}

.img-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}

.img-placeholder img:hover {
  transform: scale(1.02);
}

/* ─── Lightbox ───────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.lightbox.open {
  display: flex;
}

.lightbox__img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  cursor: default;
  display: block;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.15s;
}

.lightbox__close:hover { opacity: 1; }

/* ─── Success Message ────────────────────────────────────── */
.form-success {
  display: none;
  padding: 24px;
  border: 1px solid #000;
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Home — Tipografía editorial ───────────────────────── */
.home-main {
  min-height: calc(100vh - 65px);
  display: flex;
  flex-direction: column;
}

.home-intro {
  display: flex;
  align-items: baseline;
  gap: 48px;
  padding: 32px 40px;
  border-bottom: 1px solid #000;
}

.home-intro__tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.38;
  font-weight: 400;
  flex-shrink: 0;
}

.home-intro__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0;
}

.home-sections {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-sec {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  padding: 36px 40px 40px;
  border-bottom: 1px solid #000;
  color: #000;
  text-decoration: none;
  transition: background 0.16s ease, color 0.16s ease;
}

.home-sec:hover {
  background: #000;
  color: #fff;
}

.home-sec__num {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.32;
  font-weight: 400;
  flex-shrink: 0;
  width: 26px;
  padding-bottom: 12px;
}

.home-sec__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-sec__title {
  font-size: clamp(68px, 9.5vw, 136px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.87;
  display: block;
}

.home-sec__sub {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.01em;
  opacity: 0.55;
  display: block;
}

.home-sec:hover .home-sec__sub { opacity: 0.5; }

.home-sec__arrow {
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  padding-bottom: 12px;
  transition: transform 0.16s ease;
}

.home-sec:hover .home-sec__arrow {
  transform: translateX(5px);
}

/* Bio strip */
.home-bio-strip {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 40px;
  border-bottom: 1px solid #000;
  color: #000;
  text-decoration: none;
  transition: background 0.16s, color 0.16s;
}

.home-bio-strip:hover {
  background: #000;
  color: #fff;
}

.home-bio-strip__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.38;
  flex-shrink: 0;
  width: 72px;
}

.home-bio-strip__text {
  font-size: 13px;
  font-weight: 300;
  flex: 1;
}

.home-bio-strip__arrow {
  font-size: 14px;
  transition: transform 0.16s;
}

.home-bio-strip:hover .home-bio-strip__arrow {
  transform: translateX(4px);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .proceso-steps { grid-template-columns: repeat(3, 1fr); }
  .step:nth-child(3) { border-right: none; }
  .step:nth-child(4) { border-top: 1px solid #000; }
  .step:nth-child(5) { border-top: 1px solid #000; }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .site-nav { padding: 18px 24px; }
  .site-nav__links { display: none; flex-direction: column; gap: 0; position: fixed; top: 57px; left: 0; right: 0; background: #fff; border-bottom: 1px solid #000; }
  .site-nav__links.open { display: flex; }
  .site-nav__links li a { display: block; padding: 16px 24px; border-top: 1px solid #eee; }
  .nav-toggle { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero__text { border-right: none; border-bottom: 1px solid #000; padding: 60px 24px; min-height: 60vh; }
  .hero__image { min-height: 60vw; }
  .hero__titles .t-hero:nth-child(2) { padding-left: 0.6em; }
  .hero__titles .t-hero:nth-child(3) { padding-left: 1.2em; }

  .bio-grid { grid-template-columns: 1fr; }
  .bio-image { position: relative; height: 70vw; top: 0; border-right: none; border-bottom: 1px solid #000; }
  .bio-content { padding: 48px 24px; }

  .serie { grid-template-columns: 1fr; min-height: auto; }
  .serie--reverse { direction: ltr; }
  .serie__info { padding: 48px 24px; border-right: none; border-bottom: 1px solid #000; }
  .serie--reverse .serie__info { border-left: none; }
  .serie__images { min-height: 60vw; }

  .proyecto { grid-template-columns: 1fr; }
  .proyecto__label-col { padding: 40px 24px; border-right: none; border-bottom: 1px solid #000; flex-direction: row; align-items: center; gap: 20px; }
  .proyecto__body { padding: 40px 24px; }

  .servicios-grid { grid-template-columns: 1fr 1fr; }
  .servicio:nth-child(3) { border-right: 1px solid #000; }
  .servicio:nth-child(2n) { border-right: none; }

  .proceso-steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(n+3) { border-top: 1px solid #000; }
  .step:nth-child(4) { border-right: none; }
  .step:nth-child(3) { border-right: 1px solid #000; }

  .recorridos-section { grid-template-columns: 1fr; }
  .recorridos-section__intro { border-right: none; border-bottom: 1px solid #000; padding: 48px 24px; }
  .recorridos-section__detail { padding: 48px 24px; }

  .mentorias-hero { grid-template-columns: 1fr; }
  .mentorias-hero__text { border-right: none; border-bottom: 1px solid #000; padding: 60px 24px; }
  .mentorias-hero__side { padding: 48px 24px; }

  .contacto-grid { grid-template-columns: 1fr; }
  .contacto-info { border-right: none; border-bottom: 1px solid #000; padding: 60px 24px; }
  .contacto-form { padding: 60px 24px; }

  .site-footer { flex-direction: column; gap: 16px; text-align: center; padding: 24px; }
  .page-header { padding: 60px 0 40px; }
  .section { padding: 60px 0; }

  /* Home responsive */
  .home-intro { flex-direction: column; gap: 10px; padding: 24px; }
  .home-sec { padding: 28px 24px 32px; gap: 18px; }
  .home-sec__num { width: 20px; }
  .home-bio-strip { padding: 18px 24px; gap: 16px; }
  .home-bio-strip__label { width: 60px; }
}

@media (max-width: 600px) {
  .servicios-grid { grid-template-columns: 1fr; }
  .servicio { border-right: none !important; }
  .proceso-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-top: 1px solid #000; }
  .step:first-child { border-top: none; }
  .recorridos-types { grid-template-columns: 1fr; }
  .recorrido-type { border-right: none; padding-right: 0; }
  .recorrido-type:last-child { padding-left: 0; border-top: 1px solid #000; }

  /* Home mobile */
  .home-sec { padding: 22px 20px 26px; gap: 14px; }
  .home-sec__sub { font-size: 12px; }
  .home-bio-strip { padding: 16px 20px; }
}
