:root {
  --ink: #1a1a1a;
  --ink-deep: #111111;
  --paper: #f4f0e9;
  --paper-soft: rgba(244, 240, 233, .72);
  --red: #e31c23;
  --red-dark: #a80f15;
  --line: rgba(244, 240, 233, .15);
  --line-strong: rgba(244, 240, 233, .28);
  --display: "Bebas Neue", Impact, sans-serif;
  --body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.025) 50%, transparent 50.1%),
    linear-gradient(var(--ink), var(--ink));
  font-family: var(--body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 82% 20%, rgba(227, 28, 35, .12), transparent 31rem),
    radial-gradient(circle at 10% 72%, rgba(227, 28, 35, .06), transparent 28rem),
    linear-gradient(130deg, #202020 0%, #1a1a1a 52%, #141414 100%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: .13;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}

.glow {
  position: fixed;
  z-index: -2;
  width: 31rem;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
}

.glow--one {
  top: -18rem;
  right: -8rem;
  background: rgba(227, 28, 35, .18);
}

.glow--two {
  bottom: -22rem;
  left: -10rem;
  background: rgba(227, 28, 35, .09);
}

.site-header,
.hero,
.site-footer {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
}

.mini-brand__mark {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-family: cursive;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  transform: rotate(-7deg);
  box-shadow: 0 10px 30px rgba(227, 28, 35, .23);
}

.mini-brand__name {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(244, 240, 233, .64);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.header-status__dot {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(227, 28, 35, .11);
  animation: status-pulse 2.2s ease-in-out infinite;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr);
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
  min-height: calc(100vh - 205px);
  padding-block: 54px 70px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 25px;
  color: rgba(244, 240, 233, .62);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.kicker::after {
  content: "";
  width: 72px;
  height: 1px;
  background: var(--line-strong);
}

.kicker span {
  color: var(--red);
}

h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(5.4rem, 10.1vw, 10.4rem);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.headline-accent {
  position: relative;
  display: inline-block;
  color: var(--red);
  text-shadow: 0 14px 55px rgba(227, 28, 35, .18);
}

.headline-accent::after {
  content: "";
  position: absolute;
  right: 1.5%;
  bottom: -.03em;
  left: 0;
  height: .055em;
  background: currentColor;
  transform: rotate(-1deg) scaleX(.98);
  transform-origin: left;
}

.hero__lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: var(--paper-soft);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.78;
  text-wrap: pretty;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  align-items: center;
  margin-top: 38px;
}

.availability {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-right: 25px;
  border-right: 1px solid var(--line);
  color: rgba(244, 240, 233, .62);
  font-size: .82rem;
  line-height: 1.55;
}

.availability strong {
  color: var(--paper);
  font-weight: 700;
}

.availability__icon {
  display: grid;
  width: 47px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .025);
}

.availability__icon svg {
  width: 25px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.domain-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(255, 255, 255, .025);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.domain-pill:hover {
  border-color: rgba(227, 28, 35, .65);
  background: rgba(227, 28, 35, .09);
  transform: translateY(-2px);
}

.domain-pill svg {
  width: 17px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__visual {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
  isolation: isolate;
}

.logo-card {
  position: relative;
  z-index: 3;
  width: min(90%, 500px);
  aspect-ratio: .88;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.01)),
    #1a1a1a;
  box-shadow:
    0 38px 90px rgba(0,0,0,.43),
    inset 0 1px 0 rgba(255,255,255,.06);
  transform: rotate(2.2deg);
  animation: card-float 6s ease-in-out infinite;
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: -35% 36% 58% -25%;
  z-index: 1;
  border-radius: 50%;
  background: rgba(227, 28, 35, .12);
  filter: blur(45px);
}

.logo-card__image {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("assets/malaga-fussion-logo.png");
  background-repeat: no-repeat;
  background-position: center 50.5%;
  background-size: 194%;
  filter: contrast(1.03) saturate(1.03);
}

.logo-card__corner {
  position: absolute;
  z-index: 4;
  width: 42px;
  height: 42px;
  opacity: .42;
}

.logo-card__corner--tl {
  top: 22px;
  left: 22px;
  border-top: 1px solid var(--paper);
  border-left: 1px solid var(--paper);
}

.logo-card__corner--br {
  right: 22px;
  bottom: 22px;
  border-right: 1px solid var(--paper);
  border-bottom: 1px solid var(--paper);
}

.steam {
  position: absolute;
  top: 12%;
  right: 12%;
  z-index: 5;
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 52px;
  opacity: .5;
  transform: rotate(-3deg);
}

.steam i {
  display: block;
  width: 2px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(to top, transparent, rgba(244,240,233,.75), transparent);
  filter: blur(.2px);
  animation: steam-rise 2.9s ease-in-out infinite;
}

.steam i:nth-child(2) {
  height: 43px;
  animation-delay: -.8s;
}

.steam i:nth-child(3) {
  height: 28px;
  animation-delay: -1.5s;
}

.orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(244, 240, 233, .12);
  border-radius: 50%;
}

.orbit--outer {
  width: 93%;
  aspect-ratio: 1;
  transform: rotate(20deg);
}

.orbit--outer::before,
.orbit--outer::after {
  content: "";
  position: absolute;
  width: 9px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(227,28,35,.08);
}

.orbit--outer::before {
  top: 10%;
  left: 17%;
}

.orbit--outer::after {
  right: 3%;
  bottom: 26%;
}

.orbit--inner {
  width: 75%;
  aspect-ratio: 1;
  border-style: dashed;
  opacity: .55;
  animation: orbit-spin 38s linear infinite;
}

.red-disc {
  position: absolute;
  right: 2%;
  bottom: 5%;
  z-index: 1;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #f2262c, #b70f15);
  box-shadow: 0 30px 65px rgba(227,28,35,.25);
}

.red-disc::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255,255,255,.85);
  font-family: var(--body);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  transform: translate(-50%, -52%);
}

.visual-label {
  position: absolute;
  z-index: 5;
  color: rgba(244,240,233,.45);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .29em;
}

.visual-label--top {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.visual-label--side {
  top: 50%;
  right: -2%;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: center;
}

.spark {
  position: absolute;
  z-index: 4;
  width: 10px;
  aspect-ratio: 1;
  border: 2px solid var(--red);
  transform: rotate(45deg);
}

.spark--one {
  top: 18%;
  right: 8%;
}

.spark--two {
  bottom: 14%;
  left: 3%;
  width: 7px;
  opacity: .65;
}

.menu-strip {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.13);
  background: var(--red);
  transform: rotate(-1deg) scale(1.015);
  transform-origin: center;
}

.menu-strip__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 22px;
  padding: 15px 0 13px;
  color: white;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.menu-strip__track b {
  font-family: var(--body);
  font-size: .7rem;
  font-weight: 400;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 105px;
  color: rgba(244, 240, 233, .43);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.72); }
}

@keyframes card-float {
  0%, 100% { transform: rotate(2.2deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-12px); }
}

@keyframes steam-rise {
  0%, 100% { opacity: .12; transform: translateY(11px) scaleY(.72); }
  48% { opacity: .82; transform: translateY(-4px) scaleY(1.08); }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr);
    gap: 30px;
  }

  h1 {
    font-size: clamp(5rem, 10vw, 8rem);
  }

  .hero__visual {
    min-height: 520px;
  }
}

@media (max-width: 820px) {
  .site-header,
  .hero,
  .site-footer {
    width: min(100% - 32px, 680px);
  }

  .site-header {
    min-height: 84px;
  }

  .mini-brand__name {
    display: none;
  }

  .header-status {
    font-size: .62rem;
    letter-spacing: .11em;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 52px 0 62px;
  }

  .hero__copy {
    text-align: center;
  }

  .kicker,
  .hero__meta {
    justify-content: center;
  }

  .kicker::after {
    display: none;
  }

  h1 {
    max-width: none;
    font-size: clamp(5rem, 19vw, 8rem);
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero__visual {
    min-height: 560px;
  }

  .logo-card {
    width: min(84vw, 470px);
  }

  .visual-label--side {
    right: 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .site-footer {
    width: min(100% - 24px, 480px);
  }

  .site-header {
    min-height: 76px;
  }

  .mini-brand__mark {
    width: 38px;
  }

  .header-status {
    max-width: 145px;
    justify-content: flex-end;
    line-height: 1.35;
    text-align: right;
  }

  .hero {
    padding-top: 42px;
  }

  .kicker {
    margin-bottom: 21px;
    font-size: .65rem;
    letter-spacing: .14em;
  }

  h1 {
    font-size: clamp(4.65rem, 23vw, 7rem);
    line-height: .8;
  }

  .hero__lead {
    margin-top: 27px;
    font-size: .96rem;
    line-height: 1.65;
  }

  .hero__meta {
    flex-direction: column;
    margin-top: 32px;
  }

  .availability {
    padding: 0;
    border: 0;
    text-align: left;
  }

  .domain-pill {
    min-height: 46px;
  }

  .hero__visual {
    min-height: 455px;
  }

  .logo-card {
    width: min(86vw, 385px);
    border-radius: 28px;
  }

  .orbit--outer {
    width: 103%;
  }

  .red-disc {
    right: -1%;
    bottom: 2%;
  }

  .visual-label--top {
    top: -1%;
  }

  .visual-label--side {
    display: none;
  }

  .site-footer {
    min-height: 118px;
    flex-direction: column;
    justify-content: center;
    gap: 9px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Ubicación */
.location-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 17px;
  align-items: center;
  width: min(100%, 610px);
  margin-top: 28px;
  padding: 17px 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--paper);
  background:
    linear-gradient(110deg, rgba(227, 28, 35, .11), transparent 42%),
    rgba(255, 255, 255, .025);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.location-card:hover {
  border-color: rgba(227, 28, 35, .62);
  background:
    linear-gradient(110deg, rgba(227, 28, 35, .17), transparent 48%),
    rgba(255, 255, 255, .035);
  transform: translateY(-3px);
}

.location-card__icon {
  display: grid;
  width: 52px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 16px;
  background: var(--red);
  box-shadow: 0 12px 30px rgba(227, 28, 35, .22);
}

.location-card__icon svg {
  width: 25px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-card__copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.location-card__copy small {
  color: var(--red);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.location-card__copy strong {
  font-size: .95rem;
  letter-spacing: .015em;
}

.location-card__copy > span {
  overflow: hidden;
  color: rgba(244, 240, 233, .58);
  font-size: .78rem;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.location-card__arrow {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color .25s ease, transform .25s ease;
}

.location-card:hover .location-card__arrow {
  border-color: rgba(227, 28, 35, .55);
  transform: translate(2px, -2px);
}

.location-card__arrow svg {
  width: 16px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 820px) {
  .location-card {
    margin-inline: auto;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .location-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 13px;
    padding: 14px;
    border-radius: 17px;
  }

  .location-card__icon {
    width: 46px;
    border-radius: 14px;
  }

  .location-card__copy > span {
    white-space: normal;
  }

  .location-card__arrow {
    display: none;
  }
}
