:root {
  --bg: #12100d;
  --bg-soft: #1d1712;
  --paper: #f1f3f0;
  --paper-muted: #b2aaa0;
  --blue: #2f8b83;
  --blue-soft: #17322f;
  --steel: #7bb8b2;
  --amber: #39a79e;
  --ink: #0b0d10;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 14%, rgba(57, 167, 158, 0.18), transparent 32rem),
    radial-gradient(circle at 90% 8%, rgba(47, 139, 131, 0.2), transparent 24rem),
    linear-gradient(135deg, #0b1110 0%, #121a19 52%, #090f0e 100%);
  color: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.bg-video-wrap {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  pointer-events: none;
}

.bg-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0.42;
}

body::before {
  position: fixed;
  inset: auto 0 0;
  z-index: -2;
  height: 100vh;
  background:
    linear-gradient(180deg, rgba(8, 9, 11, 0.58), rgba(8, 9, 11, 0.7)),
    linear-gradient(0deg, rgba(47, 139, 131, 0.24), transparent);
  content: "";
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      -14deg,
      rgba(255, 255, 255, 0.015) 0 1px,
      transparent 1px 22px
    );
  content: "";
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
    linear-gradient(25deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px);
  background-size: 42px 42px, 27px 27px;
  mix-blend-mode: screen;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 10;
  display: flex;
  width: min(calc(100% - 32px), var(--max-width));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 14px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(123, 184, 178, 0.2);
  border-radius: 999px;
  background: rgba(11, 14, 14, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-text,
.nav {
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text {
  color: var(--paper);
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 6px;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--paper-muted);
  transition: color 180ms ease, background-color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(241, 243, 240, 0.06);
  color: var(--paper);
}

.section {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  display: grid;
  min-height: calc(100vh - 84px);
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 56px;
  padding-top: 58px;
}

.eyebrow,
.section-kicker,
.instrument {
  margin: 0 0 16px;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 28px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(5.2rem, 14vw, 11rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.8;
  text-transform: uppercase;
}

h1 span {
  display: block;
  width: fit-content;
}

h1 span:nth-child(2) {
  color: #6dc6bd;
  text-shadow: 0 12px 40px rgba(57, 167, 158, 0.3);
}

h1 span:nth-child(3) {
  color: var(--paper);
}

h2 {
  margin-bottom: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.7rem);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.hero-text,
.vibe-panel p,
.booking-section p {
  max-width: 650px;
  color: var(--paper-muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #39a79e, #2a756f);
  color: var(--paper);
  box-shadow: 0 18px 38px rgba(42, 117, 111, 0.32);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 0 0 4px rgba(57, 167, 158, 0.25), 0 18px 38px rgba(42, 117, 111, 0.32);
}

.button-ghost {
  border-color: rgba(245, 234, 216, 0.24);
  background: rgba(245, 234, 216, 0.06);
  color: var(--paper);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(245, 234, 216, 0.13);
}

.hero-stage {
  position: relative;
  min-height: 640px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(240, 179, 91, 0.32);
  border-radius: 45% 55% 60% 40%;
  animation: float 9s ease-in-out infinite;
}

.orbit-one {
  inset: 10% 4% 8% 6%;
}

.orbit-two {
  inset: 4% 14% 16% 0;
  animation-delay: -4s;
  transform: rotate(-14deg);
}

.feature-card,
.tour-tile,
.portrait {
  --photo: linear-gradient(135deg, rgba(38, 56, 76, 0.95), rgba(77, 120, 168, 0.46));
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(21, 17, 13, 0.08), rgba(21, 17, 13, 0.56)),
    var(--photo),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.36), transparent 20rem),
    linear-gradient(135deg, rgba(38, 56, 76, 0.9), rgba(77, 120, 168, 0.45));
  background-color: var(--blue-soft);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.feature-card::before,
.tour-tile::before,
.portrait::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 13, 0.02), rgba(7, 10, 13, 0.16)),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.16), transparent 10rem);
  content: "";
}

.feature-card > *,
.tour-tile > *,
.portrait {
  position: relative;
}

.feature-main {
  --photo: url("assets/images/ass.jpeg");
  position: absolute;
  inset: 52px 30px 132px 30px;
  min-height: 440px;
  padding: 0;
  border: 1px solid rgba(123, 184, 178, 0.3);
  border-radius: 44px;
  background-position: center;
  background-size: cover;
}

.feature-main::before {
  background:
    linear-gradient(180deg, rgba(7, 10, 13, 0.04), rgba(7, 10, 13, 0.22)),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15), transparent 10rem);
}

.feature-small {
  position: absolute;
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(123, 184, 178, 0.26);
  border-radius: 18px;
  background: rgba(12, 14, 17, 0.84);
  text-align: center;
  backdrop-filter: blur(16px);
  color: var(--paper);
}

.feature-small span {
  display: block;
  color: var(--paper);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.7rem;
  line-height: 1;
}

.feature-small p {
  margin: -24px 0 0;
  color: var(--paper-muted);
  font-weight: 800;
  text-transform: uppercase;
}

.feature-top {
  top: 0;
  right: -30px;
}

.feature-bottom {
  bottom: 24px;
  left: -30px;
}

.vibe-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.28fr 1fr 0.78fr;
  gap: 30px;
}

.repertoire-strip {
  display: flex;
  flex-wrap: wrap;
  grid-column: 2 / -1;
  gap: 10px;
}

.repertoire-strip span {
  padding: 11px 14px;
  border: 1px solid rgba(123, 184, 178, 0.35);
  border-radius: 999px;
  background: rgba(123, 184, 178, 0.12);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.repertoire-strip span:nth-child(even) {
  background: rgba(123, 184, 178, 0.08);
}

.vibe-panel {
  padding: 30px;
  border: 1px solid rgba(123, 184, 178, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(21, 17, 13, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

.vibe-panel p {
  margin-bottom: 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 36px;
}

.tour-mosaic {
  display: grid;
  grid-auto-rows: 220px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.tour-tile {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid rgba(123, 184, 178, 0.22);
  border-radius: 22px;
  transition: transform 220ms ease, filter 220ms ease;
}

.tour-tile:nth-child(1) {
  --photo: url("assets/images/impressions/PHOTO-2025-08-16-18-12-23.jpg");
}

.tour-tile:nth-child(2) {
  --photo: url("assets/images/impressions/PHOTO-2025-08-16-14-21-19.jpg");
}

.tour-tile:nth-child(3) {
  --photo: url("assets/images/impressions/PHOTO-2025-08-17-16-35-45.jpg");
}

.tour-tile:nth-child(4) {
  --photo: url("assets/images/impressions/PHOTO-2025-08-14-23-01-56.jpg");
}

.tour-tile:nth-child(5) {
  --photo: url("assets/images/impressions/PHOTO-2025-08-16-14-20-59.jpg");
}

.tour-tile:nth-child(6) {
  --photo: url("assets/images/impressions/PHOTO-2025-08-17-16-55-25.jpg");
}

.tour-tile:hover {
  filter: saturate(1.08) contrast(1.06);
  transform: translateY(-5px);
}

.tour-tile p {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 900;
}

.tile-large {
  grid-column: span 2;
  grid-row: span 2;
}

.tile-tall {
  grid-row: span 2;
}

.band-section {
  padding-top: 70px;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.member-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  border: 1px solid rgba(123, 184, 178, 0.24);
  border-radius: 20px;
  background: rgba(241, 243, 240, 0.06);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.member-card:hover {
  box-shadow: 0 0 0 1px rgba(123, 184, 178, 0.34), 0 24px 60px rgba(0, 0, 0, 0.42);
  transform: translateY(-6px);
}

.portrait {
  background-position: center;
  display: grid;
  flex: 1;
  min-height: 310px;
  place-items: center;
  border-radius: 18px;
  color: rgba(21, 17, 13, 0.72);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.member-info {
  padding: 16px 6px 6px;
  color: var(--paper);
  text-align: center;
}

.member-info h3 {
  margin: 0;
  color: #e4c79f;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1;
}

.member-info .instrument {
  margin: 8px 0 0;
  color: var(--paper-muted);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
}

.member-card:nth-child(1) .portrait {
  --photo: url("assets/images/artists/luki.jpeg");
  background-position: 48% 34%;
}

.member-card:nth-child(2) .portrait {
  --photo: url("assets/images/artists/rene.JPG");
  background-position: 52% 28%;
}

.member-card:nth-child(3) .portrait {
  --photo: url("assets/images/artists/dani.jpeg");
  background-position: 50% 52%;
}

.member-card:nth-child(4) .portrait {
  --photo: url("assets/images/artists/maurice.png");
  background-position: 46% 38%;
}

.member-card:nth-child(5) .portrait {
  --photo: url("assets/images/artists/alex.jpeg");
  background-position: 30% 18%;
}

.member-card:nth-child(6) .portrait {
  --photo: url("assets/images/artists/felix.jpeg");
  background-position: 32% 20%;
}

.portrait-placeholder {
  --photo: linear-gradient(135deg, rgba(38, 56, 76, 0.92), rgba(77, 120, 168, 0.42));
  color: rgba(241, 243, 240, 0.72);
}

.booking-section {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 36px;
  margin-bottom: 70px;
  padding: 44px;
  border: 1px solid rgba(123, 184, 178, 0.28);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(123, 184, 178, 0.14), rgba(47, 139, 131, 0.1)),
    rgba(245, 234, 216, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.booking-section p {
  margin: 18px 0 0;
}

.site-footer {
  display: flex;
  width: min(calc(100% - 32px), var(--max-width));
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--paper-muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  overflow-wrap: anywhere;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(12px, -18px, 0) rotate(8deg);
  }
}

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

@media (max-width: 980px) {
  .brand-text {
    display: inline;
    font-size: 0.74rem;
  }

  .hero,
  .vibe-grid,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .repertoire-strip {
    grid-column: auto;
  }

  .hero-stage {
    min-height: 560px;
  }

  .tour-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-section {
    align-items: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: sticky;
    top: 8px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .brand {
    justify-content: flex-start;
    min-width: 0;
    flex: 1;
  }

  .brand-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.7rem;
  }

  .nav {
    justify-content: flex-end;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
    max-width: 58%;
  }

  .nav a {
    padding: 8px 9px;
    font-size: 0.68rem;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    gap: 28px;
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(3.7rem, 20vw, 5.6rem);
    line-height: 0.84;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-stage {
    min-height: 320px;
    margin-bottom: 10px;
  }

  .feature-main {
    inset: 18px 0 70px;
    border-radius: 24px;
    background-position: center top;
  }

  .feature-small {
    width: 100px;
    height: 100px;
    padding: 12px;
  }

  .feature-small span {
    font-size: 1.65rem;
  }

  .feature-small p {
    margin-top: -14px;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .tour-mosaic,
  .member-grid {
    display: block;
  }

  .tour-tile,
  .member-card {
    margin-bottom: 16px;
  }

  .member-card {
    min-height: 340px;
  }

  .portrait {
    min-height: 250px;
  }

  .member-info h3 {
    font-size: 1.6rem;
  }

  .booking-section {
    padding: 22px;
    margin-bottom: 36px;
  }

  .booking-section h2 {
    font-size: clamp(2.4rem, 14vw, 3.2rem);
  }

  .booking-section .button {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    font-size: 1.02rem;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .site-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 12px 18px;
    padding: 8px 0 30px;
    font-size: 0.8rem;
  }
}

@media (max-width: 460px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 6px 8px;
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand-text {
    display: block;
    overflow: visible;
    text-overflow: clip;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    line-height: 1.1;
    text-transform: none;
    white-space: normal;
  }

  .nav {
    max-width: none;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    padding: 7px 9px;
    font-size: 0.66rem;
  }

  .feature-top {
    display: none;
  }

  .feature-bottom {
    left: 6px;
    bottom: 6px;
    width: 92px;
    height: 92px;
  }

  .hero-stage {
    min-height: 286px;
    margin-bottom: 14px;
  }

  .feature-main {
    inset: 10px 0 62px;
    border-radius: 20px;
    background-position: center 18%;
  }

  .section {
    width: min(calc(100% - 22px), var(--max-width));
    padding: 54px 0;
  }

  .tour-tile,
  .member-card {
    margin-bottom: 12px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    font-size: 0.76rem;
  }

  .site-footer p {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }
}

@media (max-width: 390px) {
  .section {
    width: min(calc(100% - 16px), var(--max-width));
    padding: 46px 0;
  }

  .hero {
    gap: 20px;
    padding-top: 34px;
  }

  .hero-stage {
    min-height: 258px;
    margin-bottom: 16px;
  }

  .feature-main {
    inset: 8px 0 56px;
  }

  .booking-section {
    padding: 16px;
    border-radius: 22px;
    gap: 16px;
  }

  .booking-section .eyebrow {
    margin-bottom: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .booking-section h2 {
    font-size: clamp(1.95rem, 11.5vw, 2.45rem);
    line-height: 0.94;
  }

  .booking-section p {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .booking-section .button {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 4px 0 20px;
    font-size: 0.72rem;
  }

  .site-footer p {
    margin-bottom: 2px;
  }
}

.mallorca-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(233, 169, 101, 0.24), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(57, 167, 158, 0.2), transparent 24rem),
    linear-gradient(135deg, #100d0a 0%, #18201e 52%, #090f0e 100%);
}

.mallorca-page .bg-video {
  opacity: 0.3;
}

.mallorca-shell {
  display: grid;
  width: min(calc(100% - 32px), 1040px);
  min-height: 100vh;
  place-items: center;
  margin: 0 auto;
  padding: 44px 0;
}

.mallorca-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(235, 183, 125, 0.28);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(9, 12, 12, 0.86), rgba(15, 30, 28, 0.78)),
    rgba(11, 14, 14, 0.78);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
}

.mallorca-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 10%, rgba(233, 169, 101, 0.22), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 32%);
  content: "";
}

.mallorca-card > * {
  position: relative;
}

.mallorca-back {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--paper-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mallorca-card h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(4.2rem, 10vw, 8.5rem);
}

.mallorca-card h1 span:nth-child(2) {
  color: #e9a965;
  text-shadow: 0 12px 40px rgba(233, 169, 101, 0.22);
}

.mallorca-card h1 span:nth-child(3) {
  color: var(--paper);
}

.mallorca-intro {
  max-width: 720px;
  color: var(--paper-muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.mallorca-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.mallorca-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(233, 169, 101, 0.18);
  border-radius: 22px;
  background: rgba(241, 243, 240, 0.055);
}

.mallorca-grid span {
  display: block;
  margin-bottom: 18px;
  color: #e9a965;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.mallorca-grid h2 {
  margin-bottom: 14px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: none;
}

.mallorca-grid p,
.mallorca-note p {
  margin: 0;
  color: var(--paper-muted);
  line-height: 1.65;
}

.mallorca-video-card {
  margin-top: 34px;
}

.mallorca-video-card video {
  display: block;
  width: 100%;
  max-height: 560px;
  border: 1px solid rgba(233, 169, 101, 0.22);
  border-radius: 26px;
  background: #050706;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.mallorca-video-card p {
  margin: 12px 0 0;
  color: var(--paper-muted);
  font-size: 0.9rem;
}

.mallorca-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mallorca-facts span {
  padding: 10px 13px;
  border: 1px solid rgba(233, 169, 101, 0.2);
  border-radius: 999px;
  background: rgba(233, 169, 101, 0.1);
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mallorca-note {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(233, 169, 101, 0.16);
}

.mallorca-note p {
  max-width: 650px;
}

@media (max-width: 820px) {
  .mallorca-grid,
  .mallorca-note {
    grid-template-columns: 1fr;
  }

  .mallorca-note .button {
    width: fit-content;
  }
}

@media (max-width: 520px) {
  .mallorca-shell {
    width: min(calc(100% - 20px), 1040px);
    align-items: start;
    padding: 20px 0;
  }

  .mallorca-card {
    padding: 22px;
    border-radius: 24px;
  }

  .mallorca-back {
    margin-bottom: 24px;
    font-size: 0.68rem;
  }

  .mallorca-card h1 {
    font-size: clamp(3.1rem, 18vw, 4.8rem);
  }

  .mallorca-intro {
    font-size: 1rem;
  }

  .mallorca-grid {
    margin-top: 26px;
  }

  .mallorca-video-card {
    margin-top: 26px;
  }

  .mallorca-video-card video {
    max-height: none;
    border-radius: 18px;
  }

  .mallorca-grid article {
    min-height: auto;
    padding: 18px;
  }

  .mallorca-note .button {
    width: 100%;
    min-height: 50px;
    text-align: center;
  }
}
