:root {
  --bg: #0b0b0c;
  --bg-2: #121214;
  --red: #e21d2d;
  --text: #f4f3ef;
  --muted: #a4a4a8;
  --line: #303033;
  --font-display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --header-h: 88px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}
svg {
  width: 24px;
  height: 24px;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 6px;
}
.container {
  width: min(1280px, 88%);
  margin: auto;
}
.section {
  padding: 110px 0;
}
.section-tag {
  font-size: 11px;
  letter-spacing: 2.2px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.6vw, 80px);
  line-height: 1;
  letter-spacing: 0.3px;
  font-weight: 400;
}
.section-title span {
  color: var(--red);
}
.section-sub {
  max-width: 590px;
  color: var(--muted);
  font-size: 14px;
  margin-top: 24px;
}
.section-head {
  margin-bottom: 48px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 18px 25px;
  font-size: 12px;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.2s;
  border: 1px solid transparent;
}
.btn:hover {
  transform: translateY(-3px);
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover {
  background: #ba1624;
}
.btn-ghost {
  border-color: #565659;
  background: #10101280;
}
.btn-ghost:hover {
  background: #28282a;
}
.btn span {
  font-size: 19px;
}
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 88px;
  background: #0b0b0cf5;
  border-bottom: 1px solid #ffffff16;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-logo img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}
.brand-wordmark {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 2.5px;
}
.brand-wordmark small {
  display: block;
  font-size: 8px;
  letter-spacing: 3.4px;
  margin-top: 6px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 27px;
}
.nav-link {
  font-size: 11px;
  color: #c2c2c4;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
}
.nav-cta {
  border: 1px solid #4d4d50;
  padding: 12px 17px;
  color: #fff;
}
.nav-toggle {
  display: none;
}
.hero {
  position: relative;
  min-height: 800px;
  height: min(900px, 100svh);
  padding-top: 88px;
  isolation: isolate;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 88px 0 0 40%;
  z-index: -3;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
  filter: brightness(0.65) saturate(0.65);
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #0b0b0c 0%, #0b0b0c30 50%, transparent),
    linear-gradient(0deg, #0b0b0c, transparent 40%);
}
.hero-gridlines {
  position: absolute;
  inset: 88px 0 0;
  z-index: -2;
  background: linear-gradient(
    90deg,
    transparent 49.95%,
    #ffffff05 50%,
    transparent 50.05%
  );
  pointer-events: none;
}
.hero-content {
  padding-top: 95px;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #c0c0c2;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 15px #e21d2d80;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(85px, 9.7vw, 145px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -1px;
  margin: 33px 0 24px;
}
.hero h1 em {
  color: var(--red);
  font-style: normal;
}
.hero-description {
  color: #bcbcc0;
  font-size: 15px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.hero-signature {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 38px;
  font-size: 9px;
  letter-spacing: 2px;
}
.signature-line {
  width: 30px;
  height: 1px;
  background: var(--red);
}
.hero-signature small {
  display: block;
  color: #77777d;
  font-size: 10px;
  letter-spacing: 0;
  margin-top: 3px;
}
.hero-caption {
  position: absolute;
  right: 6%;
  bottom: 130px;
  border-left: 2px solid var(--red);
  padding-left: 18px;
}
.hero-caption span,
.hero-caption a {
  display: block;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #bbb;
}
.hero-caption strong {
  display: block;
  font-size: 15px;
  margin: 5px 0 15px;
  font-weight: 500;
}
.hero-bottom {
  position: absolute;
  bottom: 25px;
  left: 6%;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff26;
  padding-top: 20px;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #aaa;
}
.racing-strip {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  padding: 18px 4%;
  background: var(--red);
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 1px;
  overflow: hidden;
  white-space: nowrap;
}
.racing-strip i {
  font-style: normal;
  color: #520810;
}
.stage-lab {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: #151517;
  border: 1px solid var(--line);
  margin: 45px 0 28px;
}
.stage-intro {
  padding: 40px;
}
.stage-intro h3 {
  font-family: var(--font-display);
  font-size: 43px;
  font-weight: 400;
  line-height: 1.05;
}
.stage-intro > p:not(.section-tag) {
  color: var(--muted);
  font-size: 12px;
  margin: 18px 0 25px;
}
.stage-tabs {
  display: flex;
  gap: 8px;
}
.stage-tabs button {
  background: transparent;
  border: 1px solid #454548;
  padding: 12px 17px;
  font-size: 11px;
}
.stage-tabs button.selected {
  background: var(--red);
  border-color: var(--red);
}
.stage-detail {
  padding: 45px 38px 30px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #19191c, #101012);
  border-left: 1px solid var(--line);
}
.stage-number {
  position: absolute;
  right: 15px;
  top: -40px;
  font-family: var(--font-display);
  font-size: 240px;
  color: #ffffff05;
  line-height: 1;
}
.stage-copy {
  position: relative;
}
.stage-kicker {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--red);
}
.stage-copy h4 {
  font-size: 21px;
  margin: 14px 0;
}
.stage-copy p {
  font-size: 13px;
  color: var(--muted);
  max-width: 430px;
  min-height: 65px;
}
.text-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  border-bottom: 1px solid var(--red);
  padding-bottom: 7px;
}
.stage-meter {
  display: flex;
  gap: 5px;
  margin: 27px 0 8px;
}
.stage-meter i {
  height: 4px;
  flex: 1;
  background: #39393d;
}
.stage-meter i:first-child {
  background: var(--red);
}
.stage-note {
  font-size: 9px;
  color: #88888e;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  padding: 30px;
  border: 1px solid var(--line);
  background: #101012;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.service-card:hover {
  border-color: var(--red);
  transform: translateY(-5px);
}
.service-icon {
  color: var(--red);
  margin-bottom: 35px;
}
.service-icon svg {
  width: 32px;
  height: 32px;
}
.service-title {
  font-size: 17px;
  margin-bottom: 16px;
}
.service-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.service-desc strong {
  color: #eee;
}
.about {
  background: #141416;
  border-top: 1px solid #242427;
  border-bottom: 1px solid #242427;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 9%;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo-frame {
  height: 590px;
  overflow: hidden;
}
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  filter: saturate(0.65);
}
.about-photo-tag {
  position: absolute;
  bottom: 25px;
  left: -18px;
  background: var(--red);
  font-family: var(--font-display);
  font-size: 30px;
  padding: 12px 30px;
  letter-spacing: 2px;
}
.about-content .section-head {
  margin-bottom: 25px;
}
.about-text p {
  font-size: 13px;
  color: var(--muted);
  margin: 16px 0;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 26px 0;
  font-size: 11px;
}
.about-points li:before {
  content: "↗";
  color: var(--red);
  margin-right: 8px;
}
.about-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.about-actions .btn {
  font-size: 10px;
  padding: 15px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-tile {
  position: relative;
  border: 0;
  background: #18181a;
  overflow: hidden;
  text-align: left;
  aspect-ratio: 0.7;
}
.gallery-tile:nth-child(even) {
  margin-top: 38px;
  margin-bottom: -38px;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: saturate(0.7);
}
.gallery-tile:hover img {
  transform: scale(1.07);
}
.gallery-label {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 60px 18px 20px;
  background: linear-gradient(transparent, #000e);
  font-size: 8px;
  letter-spacing: 1px;
}
.gallery-label strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0;
  margin-top: 6px;
  font-weight: 500;
}
.gallery-label b {
  font-size: 23px;
  font-weight: 400;
}
.process {
  padding-top: 80px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
  border-top: 1px solid var(--line);
}
.process-grid article {
  padding: 35px 35px 0 0;
}
.process-grid article + article {
  padding-left: 35px;
  border-left: 1px solid var(--line);
}
.process-grid article > span {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--red);
}
.process-grid h3 {
  font-size: 20px;
  margin: 12px 0;
}
.process-grid p {
  font-size: 13px;
  color: var(--muted);
  max-width: 330px;
}
.instagram {
  background: #151517;
}
.instagram-feature {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid #38383b;
}
.instagram-feature img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: brightness(0.25);
}
.instagram-feature > span {
  position: relative;
  padding: 45px;
}
.instagram-feature small {
  font-size: 9px;
  letter-spacing: 2px;
}
.instagram-feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 68px);
  font-weight: 400;
}
.instagram-feature em {
  font-size: 12px;
  font-style: normal;
  color: #ccc;
}
.instagram-action {
  margin-top: 25px;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 65px;
  align-items: center;
}
.location-address {
  display: flex;
  gap: 15px;
  font-size: 19px;
  max-width: 350px;
}
.location-address svg {
  flex-shrink: 0;
  color: var(--red);
  margin-top: 5px;
}
.location-hint {
  font-size: 13px;
  color: var(--muted);
  margin: 25px 0;
}
.location-map {
  border: 1px solid var(--line);
  height: 330px;
  background: #1a1a1d;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(1) invert(0.9) contrast(0.9);
}
.contact {
  background: var(--red);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact:before {
  content: "MADRID";
  font-family: var(--font-display);
  position: absolute;
  font-size: 330px;
  line-height: 1;
  bottom: -70px;
  left: -15px;
  color: #0000000d;
  pointer-events: none;
}
.contact-inner {
  position: relative;
}
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.95;
}
.contact-title em {
  font-style: normal;
  color: #160a0c;
}
.contact-text {
  max-width: 510px;
  margin: 25px auto;
  font-size: 14px;
  color: #fff;
}
.contact .btn-primary {
  background: #0b0b0c;
}
.contact .btn-primary:hover {
  background: #28282c;
}
.contact-socials {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 28px;
}
.footer {
  padding: 48px 0;
  background: #09090a;
}
.footer-grid {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  align-items: center;
  gap: 50px;
}
.footer-logo img {
  width: 55px;
}
.footer-address,
.footer-credit {
  font-size: 10px;
  color: #88888f;
}
.footer-socials {
  display: flex;
  gap: 20px;
  font-size: 11px;
  margin-top: 10px;
}
.footer-credit {
  max-width: 330px;
  justify-self: end;
}
.footer-credit-sub {
  margin-top: 8px;
}
.whatsapp-float {
  position: fixed;
  right: 23px;
  bottom: 23px;
  z-index: 20;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #161619;
  border: 1px solid #67676b;
  box-shadow: 0 6px 25px #0008;
}
.whatsapp-float:hover {
  background: var(--red);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: white;
  color: black;
  padding: 10px;
}
.skip-link:focus {
  top: 10px;
}
dialog {
  margin: auto;
  border: 1px solid #555;
  background: #151517;
  color: white;
  padding: 15px;
  max-width: 90vw;
  max-height: 92svh;
}
dialog::backdrop {
  background: #000d;
  backdrop-filter: blur(7px);
}
dialog img {
  max-height: 76svh;
  margin: auto;
  object-fit: contain;
}
dialog p {
  font-size: 12px;
  padding: 10px 4px 0;
}
.dialog-close {
  position: absolute;
  right: 22px;
  top: 22px;
  background: #111e;
  border: 1px solid #888;
  width: 42px;
  height: 42px;
  font-size: 26px;
}
.reveal {
  opacity: 1;
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.motion-ready .reveal.in-view {
  opacity: 1;
  transform: none;
}
@media (min-width: 1600px) {
  .hero-content {
    padding-top: 120px;
  }
}
@media (max-width: 1100px) {
  .nav-list {
    gap: 16px;
  }
  .nav-link {
    font-size: 10px;
  }
  .hero-caption {
    right: 6%;
    bottom: 110px;
    max-width: 220px;
  }
  .hero h1 {
    font-size: 110px;
  }
  .hero-photo {
    left: 30%;
  }
  .about-grid {
    gap: 6%;
  }
  .stage-intro {
    padding: 30px;
  }
  .stage-tabs button {
    padding: 12px;
  }
  .about-photo-frame {
    height: 570px;
  }
  .gallery-label {
    padding-inline: 12px;
  }
  .footer-grid {
    gap: 25px;
  }
}
@media (max-width: 800px) {
  :root {
    --header-h: 76px;
  }
  .container {
    width: 88%;
  }
  .header {
    height: 76px;
  }
  .header-logo img {
    width: 36px;
    height: 36px;
  }
  .brand-wordmark {
    font-size: 18px;
  }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid #454548;
    padding: 12px;
    z-index: 32;
  }
  .nav-toggle span {
    width: 20px;
    height: 1px;
    background: #fff;
  }
  .nav {
    display: none;
    position: fixed;
    inset: 76px 0 0;
    background: #101012;
    padding: 35px 6%;
    overflow: auto;
  }
  .nav.open {
    display: block;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-link {
    display: block;
    font-size: 22px;
    padding: 17px 0;
    border-bottom: 1px solid #303033;
  }
  .nav-cta {
    margin-top: 25px;
    padding: 15px;
    border-color: var(--red);
    font-size: 17px;
  }
  .hero {
    height: auto;
    min-height: 800px;
    padding-top: 76px;
  }
  .hero-photo {
    inset: 76px 0 0 10%;
    opacity: 0.65;
  }
  .hero-photo:after {
    background:
      linear-gradient(90deg, #0b0b0ce0, transparent),
      linear-gradient(0deg, #0b0b0c, transparent 90%);
  }
  .hero-content {
    padding-top: 80px;
  }
  .hero h1 {
    font-size: clamp(75px, 13vw, 105px);
  }
  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .hero-caption {
    bottom: 100px;
    left: 6%;
    right: auto;
  }
  .hero-signature {
    margin-top: 30px;
  }
  .hero-bottom {
    left: 6%;
    font-size: 7px;
  }
  .hero-bottom > span:last-child {
    display: none;
  }
  .racing-strip {
    justify-content: flex-start;
    font-size: 20px;
    padding: 15px 6%;
  }
  .section {
    padding: 75px 0;
  }
  .stage-lab {
    grid-template-columns: 1fr;
  }
  .stage-detail {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .stage-intro h3 br {
    display: none;
  }
  .stage-intro h3 {
    font-size: 36px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 28px;
  }
  .service-icon {
    float: right;
    margin: 0 0 20px 20px;
  }
  .service-desc {
    max-width: 600px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-photo-wrap {
    max-width: 460px;
    width: 100%;
    margin-bottom: 45px;
  }
  .about-photo-frame {
    height: 500px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .gallery-tile:nth-child(even) {
    margin-top: 20px;
    margin-bottom: -20px;
  }
  .gallery-label strong {
    font-size: 11px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid article,
  .process-grid article + article {
    padding: 25px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }
  .process-grid article > span {
    float: right;
  }
  .process-grid p {
    max-width: 90%;
  }
  .instagram-feature > span {
    padding: 25px;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .location-map {
    height: 300px;
  }
  .footer-grid {
    grid-template-columns: 55px 1fr;
    gap: 25px;
  }
  .footer-credit {
    grid-column: 1/-1;
    justify-self: start;
  }
  .contact-text {
    font-size: 13px;
  }
  .contact .btn {
    font-size: 11px;
    padding: 17px;
  }
  .section-title {
    font-size: 54px;
  }
}
@media (max-width: 400px) {
  .hero-actions {
    gap: 8px;
    flex-wrap: wrap;
  }
  .hero-actions .btn {
    padding: 15px;
    gap: 12px;
    font-size: 11px;
  }
  .hero h1 {
    font-size: 78px;
  }
  .hero {
    min-height: 810px;
  }
  .hero-bottom {
    letter-spacing: 0.5px;
  }
  .stage-detail {
    padding: 30px 24px;
  }
  .stage-intro {
    padding: 25px;
  }
  .about-points {
    grid-template-columns: 1fr;
  }
  .gallery-label {
    padding: 40px 10px 15px;
  }
  .gallery-label strong {
    font-size: 10px;
  }
  .section-title {
    font-size: 47px;
  }
  .contact-title {
    font-size: 58px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
