:root {
  --bg: #07080b;
  --bg-2: #0e1117;
  --surface: rgba(255, 255, 255, 0.074);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --ink: #fff7ea;
  --muted: #c9c2b8;
  --soft: rgba(255, 247, 234, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --gold: #f2b21a;
  --red: #d84a3a;
  --teal: #1fb7ad;
  --blue: #6f8cff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(145deg, rgba(7, 8, 11, 0.96) 0%, rgba(14, 17, 23, 0.98) 42%, rgba(12, 19, 22, 0.98) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 84px);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(115deg, rgba(216, 74, 58, 0.18), transparent 28%),
    linear-gradient(245deg, rgba(31, 183, 173, 0.14), transparent 34%),
    linear-gradient(180deg, transparent 0%, rgba(242, 178, 26, 0.09) 48%, transparent 100%);
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 80%, transparent 100%);
  pointer-events: none;
}

img,
video,
iframe {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(22px, calc((100vw - var(--max)) / 2));
  transition: background 180ms ease, border 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 11, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 158px;
  height: 48px;
  object-fit: contain;
}

.nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 0;
}

.nav a {
  flex: 0 1 auto;
  padding: 10px 12px;
  border-radius: 6px;
  color: rgba(255, 247, 234, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.brand-mini,
.menu-button,
.button {
  border-radius: 6px;
}

.brand-mini,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.brand-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  cursor: pointer;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease;
}

.site-header.is-open .menu-button span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .menu-button span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(242, 178, 26, 0.82);
  background: linear-gradient(135deg, #ffe08a 0%, var(--gold) 52%, #d58d0b 100%);
  color: #151009;
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(242, 178, 26, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, border 160ms ease;
}

.button:hover,
.button:focus-visible,
.brand-mini:hover,
.menu-button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 42px;
  padding-right: 15px;
  padding-left: 15px;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  color: var(--ink);
  box-shadow: none;
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(21, 16, 9, 0.16);
  line-height: 1;
}

.play-dot {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 86vh;
  overflow: hidden;
  padding: 106px max(22px, calc((100vw - var(--max)) / 2)) 64px;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 11, 0.96) 0%, rgba(7, 8, 11, 0.82) 43%, rgba(7, 8, 11, 0.3) 100%),
    linear-gradient(0deg, rgba(7, 8, 11, 0.82) 0%, transparent 24%),
    url("/assets/images/hero-ronaldo-full.webp") right bottom / auto 100% no-repeat;
  transform: scale(1.02);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 24%, rgba(242, 178, 26, 0.12) 24% 24.4%, transparent 24.4% 100%),
    linear-gradient(108deg, transparent 0 63%, rgba(31, 183, 173, 0.14) 63% 63.5%, transparent 63.5% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 90px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 auto;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex: 1 1 640px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 690px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-logo {
  width: 290px;
  max-width: 76vw;
  margin-bottom: 18px;
}

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

h1,
h2,
h3 {
  font-family: Oswald, Inter, sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 18px;
  font-size: 5.8rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.2rem;
}

h3 {
  margin-bottom: 0;
  font-size: 1.36rem;
}

.hero-copy p {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 247, 234, 0.82);
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-actions,
.booking-actions,
.track-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-aside {
  display: flex;
  flex: 0 1 310px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1px;
  min-width: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(7, 8, 11, 0.44);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-aside div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-aside span,
.track-body span,
.video-card span,
.social-card small,
.streaming-card small,
.site-footer span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-aside strong {
  text-align: right;
}

.section {
  position: relative;
  padding: 84px max(22px, calc((100vw - var(--max)) / 2));
}

.section:nth-of-type(even) {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.018);
}

.section-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.section-copy {
  display: flex;
  flex: 1 1 420px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

.section-copy p,
.section-heading p,
.booking-layout p {
  max-width: 680px;
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.75;
}

.intro-layout,
.clip-layout,
.gallery-layout,
.booking-layout,
.split-heading {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 34px;
}

.intro-layout {
  align-items: center;
}

.portrait-panel {
  position: relative;
  display: flex;
  flex: 0 1 430px;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.portrait-panel img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.portrait-panel figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(7, 8, 11, 0.72);
  backdrop-filter: blur(14px);
}

.portrait-panel figcaption span {
  color: var(--muted);
  text-align: right;
}

.tag-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.tag-row span {
  flex: 0 0 auto;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--soft);
  font-weight: 800;
}

.clip-section {
  padding-top: 92px;
  padding-bottom: 92px;
  background:
    linear-gradient(120deg, rgba(242, 178, 26, 0.08), transparent 42%),
    linear-gradient(270deg, rgba(111, 140, 255, 0.1), transparent 50%),
    rgba(255, 255, 255, 0.02);
}

.clip-layout {
  align-items: center;
}

.youtube-shell {
  position: relative;
  flex: 1 1 660px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.youtube-shell::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.youtube-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 900;
}

.text-link::after {
  content: ">";
}

.split-heading {
  align-items: flex-start;
}

.social-grid,
.streaming-grid {
  display: flex;
  flex: 1 1 580px;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 0;
}

.social-card,
.streaming-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 230px;
  min-width: 210px;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.068);
  transition: transform 160ms ease, border 160ms ease, background 160ms ease;
}

.social-card:hover,
.streaming-card:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 178, 26, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.social-card.is-disabled,
.streaming-card.is-disabled {
  opacity: 0.54;
  cursor: not-allowed;
}

.social-card.is-disabled:hover,
.streaming-card.is-disabled:hover {
  transform: none;
  border-color: var(--line);
}

.icon-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(242, 178, 26, 0.24), rgba(216, 74, 58, 0.18)),
    rgba(255, 255, 255, 0.08);
}

.social-card span:last-child,
.streaming-card span:last-child {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.social-card strong,
.streaming-card strong {
  overflow-wrap: anywhere;
}

.streaming-section {
  background:
    linear-gradient(120deg, rgba(31, 183, 173, 0.09), transparent 44%),
    rgba(255, 255, 255, 0.014);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 760px;
  margin-bottom: 30px;
}

.tracks {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.track-card {
  display: flex;
  flex: 1 1 520px;
  align-items: stretch;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--track-accent) 16%, transparent), transparent 44%),
    rgba(255, 255, 255, 0.072);
}

.track-cover {
  flex: 0 0 168px;
  width: 168px;
  min-height: 168px;
  object-fit: cover;
}

.track-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  padding: 18px;
}

.track-meter {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;
}

.track-meter strong {
  color: var(--gold);
  font-size: 1.35rem;
}

.play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border: 1px solid color-mix(in srgb, var(--track-accent) 60%, white 12%);
  border-radius: 6px;
  background: color-mix(in srgb, var(--track-accent) 85%, black 10%);
  color: #111;
  cursor: pointer;
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
}

.play-button.is-playing span {
  width: 12px;
  height: 16px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(90deg, currentColor 0 4px, transparent 4px 8px, currentColor 8px 12px);
}

.track-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 900;
}

.video-grid {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.video-card {
  display: flex;
  flex: 1 1 320px;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.072);
}

.video-card.is-featured {
  flex-basis: 560px;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: cover;
}

.video-card div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
}

.gallery-section {
  background:
    linear-gradient(105deg, rgba(216, 74, 58, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.018);
}

.gallery-layout {
  align-items: flex-start;
}

.gallery-grid {
  display: flex;
  flex: 1 1 650px;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.gallery-grid figure {
  flex: 1 1 190px;
  min-width: 150px;
  height: 220px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.gallery-grid figure.wide {
  flex-basis: 390px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.booking-section {
  padding-top: 92px;
  padding-bottom: 92px;
  background:
    linear-gradient(135deg, rgba(242, 178, 26, 0.16), transparent 38%),
    linear-gradient(255deg, rgba(31, 183, 173, 0.13), transparent 46%),
    #0a0c10;
}

.booking-layout {
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.booking-layout > div:first-child {
  flex: 1 1 620px;
  min-width: 0;
}

.booking-actions {
  flex: 0 1 340px;
  justify-content: flex-end;
}

.site-footer {
  padding: 28px max(22px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: rgba(7, 8, 11, 0.88);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-inner img {
  flex: 0 0 auto;
  width: 132px;
  height: 42px;
  object-fit: contain;
}

.footer-inner div {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
}

@media (max-width: 980px) {
  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .site-header {
    gap: 14px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 8, 11, 0.94);
    backdrop-filter: blur(18px);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav a {
    padding: 13px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-inner,
  .intro-layout,
  .clip-layout,
  .gallery-layout,
  .booking-layout,
  .split-heading {
    flex-direction: column;
  }

  .hero-aside,
  .portrait-panel,
  .youtube-shell,
  .booking-actions {
    flex-basis: auto;
    width: 100%;
  }

  .booking-actions {
    justify-content: flex-start;
  }

  .portrait-panel {
    min-height: 430px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand img {
    width: 128px;
  }

  .brand-mini {
    display: none;
  }

  .button-small {
    min-height: 40px;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.82rem;
  }

  .hero,
  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(7, 8, 11, 0.58) 0%, rgba(7, 8, 11, 0.94) 52%, rgba(7, 8, 11, 1) 100%),
      url("/assets/images/hero-ronaldo-full.webp") center top / auto 58% no-repeat;
  }

  .hero-inner {
    padding-top: 280px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-copy p,
  .section-copy p,
  .section-heading p,
  .booking-layout p {
    font-size: 0.96rem;
  }

  .hero-actions,
  .booking-actions {
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .button,
  .booking-actions .button {
    flex: 1 1 100%;
  }

  .track-card {
    flex-direction: column;
    flex-basis: 100%;
  }

  .track-cover {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .social-card,
  .streaming-card {
    min-width: 0;
    flex-basis: 100%;
  }

  .portrait-panel figcaption {
    flex-direction: column;
    align-items: flex-start;
  }

  .portrait-panel figcaption span {
    text-align: left;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.72rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-logo {
    width: 230px;
  }

  .header-actions {
    gap: 7px;
  }

  .hero-aside div,
  .booking-layout {
    padding: 16px;
  }
}
