*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --naranja: #E8620A;
    --naranja-suave: #F07830;
    --crema: #FAF7F2;
    --carbon: #1A1A1A;
    --cuero: #C4956A;
    --arena: #8A7968;
    --arena-claro: #E2DDD5;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--crema);
    color: var(--carbon);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    align-items: center;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: auto 1fr auto;
    mix-blend-mode: normal;
    top: 0; left: 0; right: 0;
    padding: 1.4rem 3rem;
    position: fixed;
    z-index: 100;
  }

  nav.scrolled {
    background: rgba(250,247,242,0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--arena-claro);
    transition: all 0.4s ease;
  }

  .nav-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    transition: filter 0.4s ease;
  }

  nav.scrolled .nav-logo { filter: none; }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    list-style: none;
  }

  .nav-links a {
    color: rgba(255,255,255,0.9);
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: color 0.3s;
    text-transform: uppercase;
  }

  .nav-contact {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    list-style: none;
  }

  .nav-contact a {
    align-items: center;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    display: inline-flex;
    height: 2.4rem;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
    width: 2.4rem;
  }

  .nav-contact a:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.38);
    color: #fff;
    transform: translateY(-2px);
  }

  .nav-contact svg {
    height: 1rem;
    width: 1rem;
  }

  nav.scrolled .nav-links a { color: var(--carbon); }
  nav.scrolled .nav-contact a {
    border-color: rgba(26,26,26,0.14);
    color: var(--carbon);
  }

  nav.scrolled .nav-contact a:hover {
    background: rgba(26,26,26,0.06);
    border-color: rgba(26,26,26,0.26);
    color: var(--naranja);
  }

  .nav-links a:hover { color: var(--naranja); }

  /* ── HERO ── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }

  .hero-left {
    background: var(--carbon);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 5rem 4rem;
    position: relative;
  }

  .hero-left::before {
    content: '';
    background:
      radial-gradient(circle at top left, rgba(232,98,10,0.35), transparent 42%),
      linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
    inset: 0;
    opacity: 0.45;
    position: absolute;
    transition: transform 8s ease;
  }

  .hero:hover .hero-left::before { transform: scale(1.04); }

  .hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--naranja);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
  }

  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 5.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.0;
    color: #fff;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
  }

  .hero-headline em {
    font-style: italic;
    color: var(--naranja);
  }

  .hero-sub {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 2rem;
    max-width: 28rem;
    position: relative;
    z-index: 1;
  }

  .hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
  }

  .hero-highlights span {
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    color: rgba(255,255,255,0.78);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    padding: 0.55rem 1rem;
    text-transform: uppercase;
  }

  .hero-right {
    align-items: flex-end;
    background:
      radial-gradient(circle at top, rgba(250,247,242,0.38), transparent 35%),
      linear-gradient(160deg, #cf5b10 0%, #a54105 100%);
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
    padding: 4rem;
    position: relative;
  }

  .hero-right::before {
    content: 'LA CURRA';
    color: rgba(255,255,255,0.08);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: 0.08em;
    line-height: 0.9;
    position: absolute;
    right: -0.2rem;
    top: 3rem;
    transform: rotate(-90deg);
    transform-origin: top right;
  }

  .hero-panel-copy {
    backdrop-filter: blur(4px);
    background: rgba(26,26,26,0.14);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    max-width: 26rem;
    padding: 2rem;
    position: relative;
    width: 100%;
    z-index: 1;
  }

  .hero-panel-label {
    color: rgba(255,255,255,0.72);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }

  .hero-panel-lines {
    display: flex;
    flex-direction: column;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-style: italic;
    gap: 0.2rem;
    line-height: 0.95;
  }

  .hero-panel-text {
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    margin-top: 1.5rem;
    max-width: 20rem;
  }

  .hero-tag {
    bottom: 3rem;
    color: rgba(255,255,255,0.9);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.5;
    position: absolute;
    right: 3rem;
    text-align: right;
    z-index: 2;
  }

  .scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    z-index: 10;
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    animation: scrollDown 2s ease infinite;
  }

  @keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* ── MANIFIESTO ── */
  .manifiesto {
    padding: 8rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
  }

  .manifiesto-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--arena);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    align-self: center;
  }

  .manifiesto-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 300;
    line-height: 1.35;
    color: var(--carbon);
  }

  .manifiesto-text strong {
    font-weight: 600;
    color: var(--naranja);
  }

  /* ── DIAGONAL CUT ── */
  .diagonal-cut {
    position: relative;
    height: 200px;
    background: var(--carbon);
    clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 2rem 0;
  }

  .diagonal-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.12);
    white-space: nowrap;
    letter-spacing: 0.08em;
    user-select: none;
    animation: marqueeSlow 20s linear infinite;
  }

  @keyframes marqueeSlow {
    0% { transform: translateX(10%); }
    100% { transform: translateX(-40%); }
  }

  .diagonal-cut .overline-text {
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 3.8rem);
    font-style: italic;
    color: rgba(232,98,10,0.9);
    letter-spacing: 0.04em;
    pointer-events: none;
  }

  /* ── MODELOS ── */
  .modelos {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .modelos-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--arena-claro);
    padding-bottom: 1.5rem;
  }

  .modelos-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.01em;
  }

  .modelos-header span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--arena);
  }

  .modelos-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
  }

  .modelo-card {
    position: relative;
    overflow: hidden;
    background: var(--arena-claro);
    cursor: pointer;
  }

  .modelo-card:nth-child(1) { grid-column: 1 / 6; grid-row: 1; }
  .modelo-card:nth-child(2) { grid-column: 6 / 9; grid-row: 1; }
  .modelo-card:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 3; }
  .modelo-card:nth-child(4) { grid-column: 1 / 4; grid-row: 2; }

  .modelo-card-lead {
    aspect-ratio: 4 / 3;
  }

  .modelo-card-lead img {
    min-height: 100%;
  }

  .modelo-feature {
    background:
      linear-gradient(145deg, rgba(232,98,10,0.08), rgba(232,98,10,0)),
      var(--carbon);
    border: 1px solid rgba(196,149,106,0.18);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    grid-column: 4 / 9;
    grid-row: 2;
    justify-content: space-between;
    min-height: 300px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
  }

  .modelo-feature::before {
    content: 'LC';
    color: rgba(255,255,255,0.06);
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    font-style: italic;
    line-height: 1;
    position: absolute;
    right: 1rem;
    top: 1rem;
  }

  .modelo-feature > * {
    position: relative;
    z-index: 1;
  }

  .modelo-feature-label {
    color: var(--cuero);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .modelo-feature h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 2.7vw, 2.6rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.05;
    max-width: 14ch;
  }

  .modelo-feature p {
    color: rgba(255,255,255,0.72);
    font-size: 0.92rem;
    line-height: 1.8;
    max-width: 28rem;
  }

  .modelo-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .modelo-feature-pills span {
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    color: rgba(255,255,255,0.8);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    padding: 0.5rem 0.9rem;
    text-transform: uppercase;
  }

  .modelo-feature-link {
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .modelo-feature-link::after {
    content: ' \\2192';
  }

  .modelo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: saturate(0.85);
  }

  .modelo-card:hover img {
    transform: scale(1.06);
    filter: saturate(1);
  }

  .modelo-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, transparent 100%);
    color: #fff;
    transform: translateY(0);
  }

  .modelo-nombre {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
  }

  .modelo-desc {
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
    margin-top: 0.3rem;
    letter-spacing: 0.02em;
  }

  /* ── TERRITORIO ── */
  .territorio {
    background: var(--carbon);
    gap: 0;
    overflow: hidden;
    padding: 9rem 3rem;
    position: relative;
  }

  .territorio::before {
    content: '';
    background:
      radial-gradient(circle at top left, rgba(232,98,10,0.18), transparent 30%),
      radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 28%);
    inset: 0;
    pointer-events: none;
    position: absolute;
  }

  .territorio-content {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1280px;
    position: relative;
    z-index: 1;
  }

  .territorio-copy {
    max-width: 42rem;
  }

  .territorio-aside {
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 24rem;
    padding: 2rem;
    position: relative;
  }

  .territorio-aside::before {
    content: 'PRADO';
    color: rgba(255,255,255,0.06);
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-style: italic;
    line-height: 1;
    position: absolute;
    right: 1.5rem;
    top: 1rem;
  }

  .territorio-eyebrow {
    color: var(--naranja);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    margin-bottom: 2rem;
    text-transform: uppercase;
  }

  .territorio-content h2 {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
  }

  .territorio-content h2 em { font-style: italic; color: var(--cuero); }

  .territorio-content p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    max-width: 36rem;
  }

  .territorio-aside-label {
    color: var(--cuero);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    position: relative;
    text-transform: uppercase;
    z-index: 1;
  }

  .territorio-aside-quote {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-style: italic;
    line-height: 1.25;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }

  .territorio-stats {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 1;
  }

  .territorio-stat {
    border-top: 1px solid rgba(255,255,255,0.12);
    display: grid;
    gap: 0.2rem;
    padding-top: 1rem;
  }

  .territorio-stat strong {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 400;
  }

  .territorio-stat span {
    color: rgba(255,255,255,0.62);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
  }

  .pill {
    display: inline-block;
    padding: 0.45rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
  }

  /* ── ADN ── */
  .adn {
    padding: 8rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .adn-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 5rem;
    letter-spacing: -0.01em;
  }

  .adn-title em { font-style: italic; color: var(--naranja); }

  .adn-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }

  .adn-col {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--arena-claro);
  }

  .adn-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--naranja);
    line-height: 1;
    opacity: 0.35;
  }

  .adn-col h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    font-style: italic;
    margin: 0.8rem 0;
  }

  .adn-col p {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--arena);
  }

  /* ── CONTACTO ── */
  .contacto {
    background: var(--naranja);
    padding: 7rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .contacto::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    top: -300px;
    right: -200px;
    pointer-events: none;
  }

  .contacto::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    bottom: -200px;
    left: -100px;
    pointer-events: none;
  }

  .contacto h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }

  .contacto h2 em { font-style: italic; }

  .contacto-sub {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 4rem;
    max-width: 36rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
  }

  .contact-cards {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
  }

  .contact-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 2rem 2.5rem;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    min-width: 180px;
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
  }

  .contact-card:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-4px);
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: rgba(255,255,255,0.8);
    stroke-width: 1.5;
  }

  .contact-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
  }

  .contact-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #fff;
    text-align: center;
    line-height: 1.3;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--carbon);
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  footer img { height: 32px; filter: brightness(0) invert(0.4); }

  .footer-copy {
    font-size: 0.75rem;
    color: var(--arena);
    letter-spacing: 0.05em;
  }

  .footer-link {
    font-size: 0.75rem;
    color: var(--arena);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.3s;
  }

  @media (max-width: 980px) {
    nav {
      gap: 1rem;
      grid-template-columns: 1fr;
      justify-items: center;
      padding: 1.2rem 1.5rem;
    }

    .nav-links {
      flex-wrap: wrap;
      gap: 1rem 1.5rem;
    }

    .hero {
      grid-template-columns: 1fr;
      height: auto;
      min-height: 100vh;
    }

    .hero-left,
    .hero-right {
      min-height: 50vh;
    }

    .hero-right {
      align-items: flex-start;
      padding: 2rem 1.5rem 5rem;
    }

    .hero-tag {
      bottom: 1.5rem;
      right: 1.5rem;
    }

    .modelos-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto;
    }

    .territorio {
      padding: 7rem 1.5rem;
    }

    .territorio-content {
      flex-direction: column;
    }

    .territorio-aside {
      max-width: none;
    }

    .modelo-card:nth-child(1),
    .modelo-card:nth-child(2),
    .modelo-card:nth-child(3),
    .modelo-card:nth-child(4),
    .modelo-feature {
      grid-column: auto;
      grid-row: auto;
    }

    .modelo-feature h3 {
      max-width: none;
    }
  }

  @media (max-width: 640px) {
    nav {
      align-items: center;
      column-gap: 0.75rem;
      grid-template-columns: auto 1fr auto;
      grid-template-rows: auto;
      justify-items: stretch;
      padding: 1rem;
    }

    .nav-logo {
      height: 34px;
      justify-self: start;
    }

    .nav-links {
      display: none;
    }

    .nav-contact {
      gap: 0.5rem;
      grid-column: 3;
      grid-row: 1;
      justify-self: end;
    }

    .nav-contact a {
      height: 2.2rem;
      width: 2.2rem;
    }

    .hero-left {
      justify-content: center;
      padding: 8rem 1.25rem 3rem;
    }

    .hero-right {
      display: flex;
      min-height: 42vh;
      padding: 1.25rem 1.25rem 4.5rem;
      visibility: visible;
    }

    .hero-right::before {
      font-size: clamp(3.2rem, 18vw, 5.5rem);
      right: 0.5rem;
      top: 1.5rem;
    }

    .hero-panel-copy {
      background: rgba(26,26,26,0.2);
      padding: 1.5rem;
      width: 100%;
    }

    .hero-tag {
      font-size: 0.9rem;
      max-width: 11rem;
    }

    .scroll-hint {
      bottom: 1rem;
    }

    .modelos {
      padding: 5rem 1rem;
    }

    .modelos-header {
      align-items: flex-start;
      flex-direction: column;
      gap: 0.75rem;
    }

    .modelos-grid {
      grid-template-columns: 1fr;
    }

    .modelo-card {
      min-width: 0;
    }

    .modelo-card img {
      aspect-ratio: 4 / 3;
      min-height: 0;
    }

    .modelo-card:nth-child(1),
    .modelo-card:nth-child(2),
    .modelo-card:nth-child(3),
    .modelo-card:nth-child(4),
    .modelo-feature {
      aspect-ratio: 4 / 3;
      grid-column: 1;
      grid-row: auto;
    }

    .modelo-feature {
      gap: 1rem;
      min-height: auto;
      padding: 1.5rem;
    }

    .modelo-feature::before {
      font-size: 5rem;
    }

    .territorio {
      padding: 5rem 1rem;
    }

    .adn {
      padding: 5rem 1rem;
    }

    .adn-title {
      margin-bottom: 3rem;
    }

    .adn-cols {
      gap: 2rem;
      grid-template-columns: 1fr;
    }

    .territorio-content h2 {
      margin-bottom: 1.5rem;
    }

    .territorio-aside {
      padding: 1.5rem;
    }

    .territorio-aside-quote {
      font-size: 1.45rem;
    }
  }

  .footer-link:hover { color: var(--naranja); }

  /* ── SCROLL REVEALS ── */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  @media (prefers-reduced-motion: reduce) {
    .diagonal-text { animation: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
  }