:root {
  --jv-bg: #060606;
  --jv-surface: rgba(12, 12, 12, 0.86);
  --jv-surface-soft: rgba(255, 255, 255, 0.05);
  --jv-border: rgba(255, 255, 255, 0.14);
  --jv-text: #f7f4ee;
  --jv-muted: rgba(247, 244, 238, 0.78);
  --jv-accent: #ff5a1f;
  --jv-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--jv-text);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  background:
    linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.86)),
    radial-gradient(
      circle at top left,
      rgba(255, 90, 31, 0.1),
      transparent 34%
    ),
    url("../img/backgorund-jovenes.jpg") center / cover no-repeat;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(
      circle at 20% 16%,
      rgba(255, 255, 255, 0.08),
      transparent 24%
    ),
    radial-gradient(circle at 78% 72%, rgba(255, 90, 31, 0.09), transparent 18%);
  mix-blend-mode: screen;
}

body::after {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 150px 150px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

.jv-page {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  padding: clamp(2.75rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.jv-home-btn {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 0.62rem 0.9rem;
  border: 1px solid rgba(246, 246, 246, 0.24);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  color: var(--jv-text);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.84rem;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.jv-copy,
.jv-visual {
  position: relative;
  z-index: 1;
}

.jv-copy {
  max-width: 640px;
  padding-right: clamp(0rem, 1.5vw, 1rem);
}

.jv-kicker {
  margin: 0 0 0.4rem;
  color: rgba(247, 244, 238, 0.58);
  font-size: 1rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.jv-copy h1,
.jv-closing p {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.jv-copy h1 {
  font-size: clamp(3.6rem, 8.8vw, 7.2rem);
  line-height: 0.92;
}

.jv-brush,
.jv-closing-brush {
  display: block;
  height: 16px;
  width: clamp(140px, 22vw, 260px);
  margin-top: 0.85rem;
  border-radius: 999px;
  background: var(--jv-accent);
  clip-path: polygon(
    0 60%,
    2% 40%,
    8% 55%,
    18% 32%,
    27% 48%,
    36% 26%,
    47% 44%,
    60% 22%,
    72% 38%,
    84% 28%,
    100% 42%,
    100% 86%,
    0 100%
  );
  filter: drop-shadow(0 8px 18px rgba(255, 90, 31, 0.32));
}

.jv-intro {
  margin: 2rem 0 2.2rem;
  max-width: 35rem;
  color: var(--jv-muted);
  font-size: clamp(1.18rem, 1.9vw, 1.55rem);
  line-height: 1.26;
  text-align: justify;
  text-wrap: pretty;
}

.jv-points {
  display: grid;
  gap: 1.55rem;
}

.jv-point {
  position: relative;
  padding-left: 1.2rem;
}

.jv-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  bottom: 0.15rem;
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7b38 0%, var(--jv-accent) 100%);
  box-shadow: 0 0 18px rgba(255, 90, 31, 0.28);
}

.jv-point p {
  margin: 0;
  color: var(--jv-muted);
  font-size: clamp(1.08rem, 1.75vw, 1.38rem);
  line-height: 1.24;
  text-align: justify;
  text-wrap: pretty;
}

.jv-point strong {
  color: var(--jv-text);
  font-weight: 700;
}

.jv-point span {
  color: var(--jv-accent);
  font-weight: 700;
}

.jv-contact {
  margin-top: 2.25rem;
  padding: 1.35rem 1.5rem;
  max-width: 560px;
  border: 1px solid var(--jv-border);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: var(--jv-shadow);
}

.jv-contact h2 {
  margin: 0 0 1rem;
  color: var(--jv-accent);
  font-size: 1.45rem;
  letter-spacing: 0.24em;
}

.jv-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.jv-contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  color: var(--jv-text);
  text-decoration: none;
}

.jv-contact-item small {
  display: block;
  color: rgba(247, 244, 238, 0.66);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.jv-contact-item strong {
  display: block;
  font-size: clamp(1.55rem, 2vw, 1.85rem);
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.jv-contact-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.jv-contact-icon svg {
  width: 30px;
  height: 30px;
}

.jv-visual {
  min-height: 720px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 1.25rem;
  padding: 2rem 0 1.5rem;
}

.jv-emblem {
  position: absolute;
  left: clamp(0.85rem, 2.8vw, 1.75rem);
  top: clamp(0.85rem, 2.8vw, 1.75rem);
  width: clamp(104px, 13vw, 180px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  z-index: 4;
  transform: none;
  pointer-events: none;
}

.jv-emblem-ring,
.jv-emblem-core {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.jv-emblem-ring {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(247, 244, 238, 0.92);
  font-size: clamp(0.72rem, 1vw, 0.95rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(220deg);
}

.jv-emblem-core {
  width: 54%;
  height: 54%;
  margin: auto;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.jv-photo-frame {
  position: relative;
  width: min(100%, 700px);
  margin: 1.2rem 0 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--jv-shadow);
  z-index: 1;
}

.jv-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.46)),
    radial-gradient(
      circle at 70% 28%,
      transparent 0 10%,
      rgba(0, 0, 0, 0.24) 68%,
      rgba(0, 0, 0, 0.46) 100%
    );
}

.jv-photo-frame img {
  display: block;
  width: 100%;
  height: min(68vh, 720px);
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.68);
}

.jv-arrow {
  width: min(48%, 280px);
  color: var(--jv-accent);
  justify-self: start;
  margin-left: clamp(2rem, 8vw, 5rem);
  transform: translateY(-18%);
  z-index: 2;
}

.jv-arrow svg {
  display: block;
  width: 100%;
  height: auto;
}

.jv-closing {
  position: relative;
  justify-self: end;
  margin-top: -1.4rem;
  padding-right: 0.35rem;
  text-align: right;
  z-index: 2;
}

.jv-closing p:first-child {
  font-size: clamp(3.4rem, 7vw, 5.7rem);
  line-height: 0.9;
}

.jv-closing p:last-of-type {
  font-size: clamp(4.2rem, 8vw, 6.8rem);
  line-height: 0.86;
}

.jv-closing-brush {
  margin-top: 0.5rem;
  margin-left: auto;
  width: clamp(180px, 24vw, 320px);
}

.jv-dots {
  position: absolute;
  width: 170px;
  height: 104px;
  background-image: radial-gradient(
    circle,
    var(--jv-accent) 2.2px,
    transparent 2.6px
  );
  background-size: 28px 24px;
  opacity: 0.95;
}

.jv-dots--top {
  top: 1rem;
  right: 1rem;
}

.jv-dots--bottom {
  left: 1rem;
  bottom: 1rem;
}

@media (max-width: 1100px) {
  .jv-page {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.2rem 3rem;
  }

  .jv-copy {
    max-width: none;
    padding-right: 0;
  }

  .jv-visual {
    min-height: auto;
    gap: 1rem;
    padding-top: 1.25rem;
  }

  .jv-emblem {
    left: 0.9rem;
    top: 0.9rem;
    width: clamp(96px, 18vw, 148px);
  }

  .jv-arrow {
    width: min(54%, 300px);
    margin-left: 1.5rem;
    transform: translateY(-10%);
  }

  .jv-closing {
    margin-top: -0.35rem;
  }
}

@media (max-width: 720px) {
  .jv-page {
    gap: 1.75rem;
    padding: 1.4rem 1rem 2.5rem;
  }

  .jv-copy h1 {
    font-size: clamp(2.8rem, 17vw, 4.7rem);
  }

  .jv-intro,
  .jv-point p {
    font-size: 1.08rem;
    line-height: 1.24;
  }

  .jv-contact {
    padding: 1.1rem 1rem 1.2rem;
  }

  .jv-contact h2 {
    letter-spacing: 0.16em;
    font-size: 1.25rem;
  }

  .jv-contact-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .jv-contact-item strong {
    font-size: 1.45rem;
  }

  .jv-photo-frame {
    margin-top: 0;
    border-radius: 22px;
  }

  .jv-photo-frame img {
    height: min(62vh, 460px);
  }

  .jv-arrow {
    width: min(68%, 240px);
    margin-left: 0.25rem;
    transform: translateY(-4%);
  }

  .jv-closing {
    margin-top: 0;
  }

  .jv-closing p:first-child {
    font-size: 2.7rem;
  }

  .jv-closing p:last-of-type {
    font-size: 3.35rem;
  }

  .jv-dots {
    width: 104px;
    height: 76px;
    background-size: 24px 22px;
  }
}

@media (max-width: 560px) {
  .jv-home-btn {
    top: 0.75rem;
    left: 0.75rem;
    min-width: 76px;
    padding: 0.56rem 0.76rem;
    font-size: 0.78rem;
  }

  .jv-page {
    padding: 1rem 0.8rem 2rem;
  }

  .jv-kicker {
    font-size: 0.84rem;
    letter-spacing: 0.18em;
  }

  .jv-intro,
  .jv-point p {
    font-size: 1rem;
  }

  .jv-contact {
    margin-top: 1.7rem;
    padding: 1rem 0.9rem 1.1rem;
  }

  .jv-contact-item {
    gap: 0.75rem;
  }

  .jv-contact-icon {
    width: 46px;
    height: 46px;
  }

  .jv-contact-icon svg {
    width: 26px;
    height: 26px;
  }

  .jv-contact-item strong {
    font-size: 1.28rem;
  }

  .jv-emblem {
    left: 0.7rem;
    top: 0.7rem;
    width: 92px;
  }

  .jv-photo-frame img {
    height: 360px;
  }

  .jv-arrow {
    width: min(72%, 210px);
  }

  .jv-closing p:first-child {
    font-size: 2.2rem;
  }

  .jv-closing p:last-of-type {
    font-size: 2.75rem;
  }

  .jv-closing-brush {
    width: 170px;
  }

  .jv-dots--top {
    right: 0.6rem;
  }

  .jv-dots--bottom {
    left: 0.6rem;
    bottom: 0.6rem;
  }
}
