/* =========================
   VARIABLES
========================= */
:root {
  --primary: #A92034;
  --accent: #F8A645;

  --text-dark: #2d2d2d;
  --text-light: #ffffff;

  --border: rgba(0, 0, 0, 0.1);
  --nav-h: 96px;
}

/* =========================
   RESET + BASE
========================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
}

a { color: inherit; }

section { scroll-margin-top: var(--nav-h); }

/* =========================
   LAYOUT
========================= */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  width: 100%;
}

section:not(.hero-split) { padding: 9rem 0; }

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.logo-img {
  height: 70px;
  width: auto;
  transition: transform 0.25s ease;
}

.logo-img:hover { transform: scale(1.04); }

.logo-text {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.75rem 1.6rem;
  border: 2px solid var(--primary);
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  color: #fff;
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(169, 32, 52, 0.22);
}

.nav-link.active {
  background: var(--primary);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

/* =========================
   HERO
========================= */
.hero-split {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;

  background-image: url("img/hero-img-1x.png");
  background-repeat: no-repeat;
  background-position: right 20%;
  background-size: cover;
}

.hero-split::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;

  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent) 22%,
    rgba(248,166,69,0.55) 38%,
    rgba(248,166,69,0.30) 52%,
    rgba(248,166,69,0.10) 65%,
    transparent 75%
  ) !important;
}

.hero-split::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hero-split__container {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;

  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-split__right {
  width: 100%;
  max-width: 720px;
}

.hero-split__title {
  font-size: clamp(2.2rem, 3.4vw, 3.7rem);
  line-height: 1.15;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.hero-split__title-strong { font-weight: 900; }
.hero-split__title-accent { font-weight: 900; color: var(--primary); }

.hero-split__desc {
  margin-top: 1.1rem;
  font-size: 1.05rem;
  color: rgba(45, 45, 45, 0.75);
  line-height: 1.8;
  max-width: 52ch;
}

.hero-split__cta {
  display: flex;
  gap: 1rem;
  margin-top: 1.7rem;
  flex-wrap: wrap;
}

.hero-split__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-split__btn--primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  box-shadow: 0 10px 24px rgba(169, 32, 52, 0.22);
}

.hero-split__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(169, 32, 52, 0.28);
}

.hero-split__btn--ghost {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.hero-split__btn--ghost:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.hero-line,
.hero-split__desc,
.hero-split__cta {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: heroTextUp 0.85s ease-out forwards;
}

.hero-line--1 { animation-delay: 0.45s; }
.hero-line--2 { animation-delay: 0.68s; }
.hero-line--3 { animation-delay: 0.92s; }
.hero-split__desc { animation-delay: 1.10s; }
.hero-split__cta  { animation-delay: 1.25s; }

@keyframes heroTextUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 968px) {
  .hero-split {
    background-position: center bottom;
    background-size: cover;
  }

  .hero-split__container {
    padding: 0 1.5rem;
  }
}

/* =========================
   ABOUT
========================= */
.about {
  min-height: 100vh;
  background: linear-gradient(135deg, #d8dadc 0%, #e8eaeb 40%, #d2d5d7 100%);
  position: relative;
  padding: 9rem 0;
  display: flex;
  align-items: center;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.8;
}

.about-header { margin-bottom: 5rem; position: relative; z-index: 1; }

.about-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 0.8rem;
}

.about-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  position: relative;
  z-index: 1;
}

.about-description { max-width: 820px; }

.about-text {
  color: #4a4a4a;
  font-size: 1.05rem;
  line-height: 1.85;
  font-weight: 400;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  margin-top: 1rem;
}

.stat-item { text-align: left; opacity: 1; transform: none; }

.stat-item.is-hidden {
  opacity: 0;
  transform: translateY(24px);
}

.about-stats.animate .stat-item {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.about-stats.animate .stat-item:nth-child(1) { transition-delay: 0.1s; }
.about-stats.animate .stat-item:nth-child(2) { transition-delay: 0.25s; }
.about-stats.animate .stat-item:nth-child(3) { transition-delay: 0.4s; }

.stat-number {
  font-size: clamp(3.2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.92rem;
  color: #666;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* =========================
   MISSION
========================= */
.mission {
  background: linear-gradient(135deg, #d8dadc 0%, #e8eaeb 40%, #d2d5d7 100%);
  padding: 9rem 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.8;
}

.mission-header { margin-bottom: 5rem; position: relative; z-index: 1; }

.mission-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 1rem;
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.mission-card {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.75) 0%, rgba(255,255,255,0.60) 100%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.mission-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  z-index: 10;
  transform: translateX(0%);
  transition: transform 1.1s cubic-bezier(0.77, 0, 0.18, 1) var(--block-delay, 0s);
  pointer-events: none;
}

.mission-card.is-visible::before {
  transform: translateX(101%);
}

.mission-card-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.mission-card-text {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 400;
}

/* =========================
   PROYECTOS
========================= */
.proyectos {
  background: linear-gradient(135deg, #d8dadc 0%, #e8eaeb 40%, #d2d5d7 100%);
  padding: 9rem 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.proyectos::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.8;
}

.proyect-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.proyectos-grid--cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  position: relative;
  z-index: 1;
}

.cat-card {
  position: relative;
  height: 360px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cat-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.05);
  transform: scale(1.02);
  transition: transform 0.25s ease;
}

.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.40);
  z-index: 1;
  transition: background 0.25s ease;
}

.cat-card__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  padding: 1rem;
  transition: transform 0.25s ease;
}

.cat-card__cta {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  user-select: none;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.09),
    0 6px 14px rgba(0, 0, 0, 0.05);
}

.cat-card:hover::before { background: rgba(0, 0, 0, 0.49); }
.cat-card:hover .cat-card__img { transform: scale(1.04); }
.cat-card:hover .cat-card__label { transform: scale(1.02); }
.cat-card:hover .cat-card__cta { opacity: 1; transform: translateX(-50%) translateY(-2px); }

.cat-card:focus-visible {
  outline: 3px solid rgba(248, 166, 69, 0.75);
  outline-offset: 4px;
}

/* =========================
   MODAL PROYECTOS (FIX: usar __container como en tu HTML)
========================= */
.ocp-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
  isolation: isolate;
}

.ocp-modal.is-open { display: block; }

.ocp-modal__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
}

.ocp-modal__container {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 2rem));
  margin: calc(var(--nav-h) + 1.5rem) auto 1.5rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  animation: ocpModalIn 0.22s ease-out forwards;
}

@keyframes ocpModalIn { to { transform: translateY(0); opacity: 1; } }

.ocp-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ocp-modal__close:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.ocp-modal__header {
  padding: 2.2rem 2.2rem 1.2rem;
  background: linear-gradient(135deg, #ffffff 0%, #fbfbfb 55%, #f7f7f7 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ocp-modal__title {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.ocp-modal__subtitle {
  margin-top: 0.55rem;
  color: rgba(45, 45, 45, 0.75);
  line-height: 1.7;
  max-width: 70ch;
}

.ocp-modal__content {
  padding: 1.6rem 2.2rem 2.2rem;
  max-height: min(60vh, 520px);
  overflow: auto;
  background: #d0d0d0;
}

.ocp-modal__list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.ocp-modal__list li {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #e8e8e8;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  position: relative;
}

.ocp-modal__list li::before { display: none; }

/* =========================
   SERVICIOS
========================= */
.servicios {
  background: linear-gradient(135deg, #d8dadc 0%, #e8eaeb 40%, #d2d5d7 100%);
  padding: 9rem 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.servicios::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.8;
}

.servicios-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  position: relative;
  z-index: 1;
}

.servicio-card {
  border-radius: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  position: relative;
}

.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.servicio-card__body {
  padding: 1.4rem 1.6rem 1rem;
  order: -1;
}

.servicio-card__img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-radius: 0;
}

.servicio-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  z-index: 10;
  transform: translateX(0%);
  transition: transform 1.1s cubic-bezier(0.77, 0, 0.18, 1) var(--block-delay, 0s);
  pointer-events: none;
}

.servicio-card.is-visible::before {
  transform: translateX(101%);
}

.servicio-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(10%) contrast(1.05);
  transition: transform 0.35s ease;
}

.servicio-card:hover .servicio-card__img {
  transform: scale(1.05);
}

.servicio-card__title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.servicio-card__text {
  color: #4a4a4a;
  font-size: 0.97rem;
  line-height: 1.8;
  font-weight: 400;
}

/* =========================
   SCROLL REVEAL
========================= */
.reveal-card {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-mission {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal-mission.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* El efecto principal es el bloque rojo, no el slide-up */
.mission-card.reveal-mission {
  opacity: 1;
  transform: none;
}

/* =========================
   CONTACTO
========================= */
.contact {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f5f5f5 100%);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/services-bg-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}

.contact > * { position: relative; z-index: 2; }

.contact-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 1cm;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1280px) {
  .nav-container { padding: 0 1.5rem; }
  .logo-text { font-size: 0.75rem; }
  .nav-menu { gap: 0.5rem; }
  .nav-link {
    font-size: 0.7rem;
    padding: 0.55rem 0.85rem;
    white-space: nowrap;
  }
}

@media (max-width: 1200px) {
  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: var(--nav-h);
    flex-direction: column;
    background: #fff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 1.2rem;
    font-size: initial;
  }

  .nav-menu .nav-link {
    font-size: 0.85rem;
    padding: 0.75rem 2rem;
  }

  .nav-menu.active { left: 0; }
  .nav-container { padding: 0 1.5rem; }
  .section-container { padding: 0 1.5rem; }
}

@media (max-width: 1100px) {
  .proyectos-grid--cats { gap: 1.2rem; }
  .servicios-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
  .cat-card { height: 300px; }
  .cat-card__label { font-size: 1rem; letter-spacing: 0.10em; }
  .cat-card__cta { font-size: 0.70rem; bottom: 18px; }

  .hero-split__container { padding: 0 1.5rem; }
  .hero-split__title { font-size: clamp(2rem, 4vw, 2.8rem); }
  .hero-split__desc { font-size: 1rem; }
}

@media (max-width: 968px) {
  .mission-cards { grid-template-columns: 1fr; gap: 2rem; }
  .servicios-grid { grid-template-columns: 1fr; gap: 2rem; }
  .proyectos-grid--cats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .cat-card { height: 280px; }
  .cat-card__label { font-size: 0.95rem; letter-spacing: 0.10em; line-height: 1.3; }
  .cat-card__cta { font-size: 0.68rem; letter-spacing: 0.12em; bottom: 16px; }

  .hero-split__container {
    padding: 0 1.5rem;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-split__desc {
    max-width: 48ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-split__cta { justify-content: center; }
}

@media (max-width: 768px) {
  .cat-card { height: 300px; }
}

@media (max-width: 640px) {
  .proyectos-grid--cats { grid-template-columns: 1fr; gap: 1.5rem; }
  .cat-card { height: 320px; }
  .cat-card__label { font-size: 1.05rem; letter-spacing: 0.11em; }
  .cat-card__cta { font-size: 0.72rem; bottom: 20px; }

  .ocp-modal__header { padding: 1.6rem 1.4rem 1rem; }
  .ocp-modal__content { padding: 1.2rem 1.4rem 1.6rem; }
  .ocp-modal__title { font-size: 1.5rem; }

  .hero-split__container {
    height: calc(100vh - var(--nav-h));
    padding: 0 1.25rem;
  }

  .hero-split__title {
    font-size: clamp(1.6rem, 6vw, 2.1rem);
    line-height: 1.15;
  }

  .hero-split__desc {
    font-size: 0.95rem;
    max-width: 42ch;
  }

  .hero-split__cta {
    width: 100%;
    gap: 0.8rem;
  }

  .hero-split__btn {
    flex: 1;
    max-width: 180px;
  }

  .hero-split::before {
    background: linear-gradient(
      180deg,
      rgba(255,255,255,0.90) 0%,
      rgba(255,255,255,0.70) 55%,
      rgba(255,255,255,0.40) 100%
    );
  }
}

@media (max-width: 420px) {
  .hero-split__cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-split__btn {
    width: 100%;
    max-width: 260px;
  }
}

