:root {
  --cream: #fff8ec;
  --sand: #efe1cb;
  --sand-deep: #dfc8aa;
  --coffee: #2a110a;
  --espresso: #140906;
  --ink: #201511;
  --brown: #63311f;
  --copper: #a94b24;
  --burnt: #c35a27;
  --sun: #e7aa37;
  --sun-soft: #f5ce78;
  --white: #fffdf8;
  --muted: #75665d;
  --line: rgba(42, 17, 10, 0.17);
  --line-light: rgba(255, 248, 236, 0.2);
  --shadow: 0 30px 90px rgba(64, 29, 13, 0.18);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --header-height: 86px;
  --shell: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

iframe {
  border: 0;
}

::selection {
  background: var(--sun);
  color: var(--coffee);
}

:focus-visible {
  outline: 2px solid var(--sun);
  outline-offset: 4px;
}

.shell {
  width: min(100% - 64px, var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 14px;
  left: 14px;
  padding: 12px 18px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--white);
  color: var(--coffee);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow,
.hero-kicker {
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

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

.button-sun {
  background: var(--sun-soft);
  color: var(--coffee);
}

.button-sun:hover {
  background: var(--white);
}

.button-coffee {
  background: var(--coffee);
  color: var(--cream);
}

.button-coffee:hover {
  background: var(--copper);
}

.button-outline-light {
  border-color: var(--line-light);
  color: var(--cream);
}

.button-outline-light:hover {
  border-color: var(--sun-soft);
  color: var(--sun-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: var(--coffee);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 200ms ease, gap 200ms ease;
}

.text-link:hover {
  gap: 15px;
  color: var(--copper);
}

.text-link-light {
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  transition: background 260ms ease, box-shadow 260ms ease, height 260ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  content: "";
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(26, 10, 6, 0.93);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.header-shell {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100% - 56px, 1420px);
  height: 100%;
  margin-inline: auto;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand img {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 42px);
}

.desktop-nav a {
  position: relative;
  padding: 9px 0;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--sun-soft);
  content: "";
  transition: transform 200ms ease;
  transform-origin: right;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 200ms ease, color 200ms ease;
}

.header-cta:hover {
  background: var(--cream);
  color: var(--coffee);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

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

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

.mobile-nav {
  visibility: hidden;
  position: absolute;
  z-index: 1;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: flex;
  height: calc(100svh - var(--header-height));
  transform: translateY(-14px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--espresso);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.mobile-nav.is-open {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav > a {
  font-family: var(--display);
  font-size: clamp(2rem, 7vw, 3.2rem);
}

.mobile-nav .mobile-nav-cta {
  margin-top: 18px;
  padding: 14px 24px;
  border: 1px solid var(--sun);
  border-radius: 999px;
  color: var(--sun-soft);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  overflow: hidden;
  background: var(--espresso);
  color: var(--white);
}

.hero-media,
.hero-shade,
.manifesto-media,
.manifesto-shade,
.booking-media,
.booking-shade {
  position: absolute;
  inset: 0;
}

.hero-media img,
.manifesto-media img,
.booking-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  object-position: 54% center;
  animation: hero-scale 1.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 7, 4, 0.9) 0%, rgba(20, 8, 4, 0.6) 30%, rgba(20, 8, 4, 0.04) 65%),
    linear-gradient(180deg, rgba(9, 4, 2, 0.42) 0%, transparent 35%, rgba(12, 5, 2, 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding-top: calc(var(--header-height) + 70px);
  padding-bottom: clamp(78px, 10vh, 120px);
}

.hero-copy {
  width: min(620px, 57vw);
  animation: hero-copy 900ms 180ms ease both;
}

.hero-kicker {
  margin-bottom: 18px;
  color: var(--sun-soft);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(5rem, 9.2vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.73;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-left: 0.34em;
  color: var(--sun-soft);
  font-weight: 500;
}

.hero-intro {
  max-width: 510px;
  margin-top: 35px;
  color: rgba(255, 253, 248, 0.83);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions,
.release-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 43px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.scroll-cue i::after {
  display: block;
  width: 1px;
  height: 20px;
  background: var(--sun-soft);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

.release-section {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--sand);
}

.release-section::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 18%, rgba(255, 253, 248, 0.8), transparent 31%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 45%);
  content: "";
  pointer-events: none;
}

.sun-orbit {
  position: absolute;
  top: -270px;
  right: -180px;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(169, 75, 36, 0.17);
  border-radius: 50%;
}

.sun-orbit::before,
.sun-orbit::after {
  position: absolute;
  border: 1px solid rgba(169, 75, 36, 0.12);
  border-radius: inherit;
  content: "";
}

.sun-orbit::before {
  inset: 60px;
}

.sun-orbit::after {
  inset: 130px;
  background: rgba(231, 170, 55, 0.08);
}

.release-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}

.release-art {
  width: min(100%, 560px);
}

.release-art-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow);
}

.release-art-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  content: "";
  pointer-events: none;
}

.release-art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.release-art:hover img {
  transform: scale(1.015);
}

.release-art figcaption,
.music-atmosphere figcaption {
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.release-copy h2 {
  max-width: 680px;
  margin-top: 23px;
  font-family: var(--display);
  font-size: clamp(3.5rem, 6.2vw, 6.3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.release-lead {
  max-width: 590px;
  margin-top: 33px;
  color: #5f4f45;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.85;
}

.release-facts {
  display: grid;
  max-width: 680px;
  margin-top: 45px;
  border-block: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.release-facts div {
  padding: 22px 18px 22px 0;
}

.release-facts div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.release-facts dt {
  margin-bottom: 7px;
  color: var(--copper);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.release-facts dd {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 600;
}

.manifesto {
  position: relative;
  height: min(820px, 78vh);
  min-height: 590px;
  overflow: hidden;
  background: var(--espresso);
  color: var(--white);
}

.manifesto-media img {
  object-position: center center;
}

.manifesto-shade {
  background:
    linear-gradient(90deg, rgba(13, 5, 3, 0.83), rgba(13, 5, 3, 0.08) 60%),
    linear-gradient(180deg, rgba(13, 5, 3, 0.08), rgba(13, 5, 3, 0.62));
}

.manifesto-copy {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

.manifesto-copy > span {
  margin-bottom: 24px;
  color: var(--sun-soft);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.manifesto blockquote {
  max-width: 800px;
  font-family: var(--display);
  font-size: clamp(3.6rem, 7.5vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.88;
}

.story-section,
.video-section,
.press-section {
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px clamp(60px, 9vw, 140px);
}

.story-heading {
  grid-column: 1;
  grid-row: 1;
}

.story-heading h2,
.section-heading h2 {
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(3.8rem, 6.8vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.story-heading h2 em,
.section-heading h2 em {
  color: var(--copper);
  font-weight: 500;
}

.story-copy {
  grid-column: 2;
  grid-row: 1;
  padding-top: 42px;
}

.story-copy p {
  max-width: 650px;
  color: #65564e;
  line-height: 1.9;
}

.story-copy p + p {
  margin-top: 22px;
}

.story-copy .story-lead {
  color: var(--coffee);
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.story-copy .text-link {
  margin-top: 36px;
}

.story-photo {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 2;
  overflow: hidden;
  height: clamp(370px, 48vw, 620px);
}

.story-photo::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  content: "";
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.music-section {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 180px) 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(195, 90, 39, 0.17), transparent 30%),
    var(--espresso);
  color: var(--cream);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 70px;
}

.section-heading > p,
.section-heading > .text-link {
  max-width: 390px;
  margin-bottom: 8px;
}

.section-heading > p {
  color: var(--muted);
  line-height: 1.8;
}

.section-heading-light .eyebrow {
  color: var(--sun-soft);
}

.section-heading-light h2 em {
  color: var(--sun-soft);
}

.section-heading-light > p {
  color: rgba(255, 248, 236, 0.62);
}

.catalog {
  border-top: 1px solid var(--line-light);
}

.track {
  display: grid;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 70px 190px 1fr;
  align-items: center;
  gap: 35px;
}

.track-index {
  color: var(--sun-soft);
  font-family: var(--display);
  font-size: 1.35rem;
}

.track > img {
  width: 190px;
  height: 190px;
  min-width: 190px;
  aspect-ratio: 1;
  object-fit: cover;
}

.track-info > span {
  color: rgba(255, 248, 236, 0.52);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.track-info h3 {
  margin-top: 9px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.track-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin-top: 25px;
}

.track-links a {
  color: rgba(255, 248, 236, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.track-links a:hover {
  color: var(--sun-soft);
}

.music-atmosphere {
  position: relative;
  margin-top: 90px;
}

.music-atmosphere img {
  width: 100%;
  height: clamp(310px, 45vw, 590px);
  object-fit: cover;
}

.music-atmosphere figcaption {
  color: rgba(255, 248, 236, 0.5);
}

.catalog-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 50px;
}

.video-section .section-heading {
  margin-bottom: 55px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--espresso);
  box-shadow: var(--shadow);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.booking-section {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--espresso);
  color: var(--white);
}

.booking-media img {
  object-position: center center;
}

.booking-shade {
  background:
    linear-gradient(90deg, rgba(21, 8, 5, 0.92) 0%, rgba(21, 8, 5, 0.55) 54%, rgba(21, 8, 5, 0.3) 100%),
    linear-gradient(180deg, rgba(20, 8, 5, 0.18), rgba(20, 8, 5, 0.82));
}

.booking-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  padding-block: 105px;
  grid-template-columns: 1fr 440px;
  align-items: center;
  gap: clamp(60px, 10vw, 160px);
}

.booking-copy .eyebrow {
  color: var(--sun-soft);
}

.booking-copy h2 {
  max-width: 700px;
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.84;
}

.booking-copy > p:last-child {
  max-width: 570px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.booking-card {
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(26, 10, 6, 0.73);
  backdrop-filter: blur(16px);
}

.booking-card > span {
  color: var(--sun-soft);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-card h3 {
  margin-top: 20px;
  font-family: var(--display);
  font-size: 2.55rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.booking-card p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.93rem;
  line-height: 1.75;
}

.booking-card .button {
  width: 100%;
  margin-top: 30px;
}

.booking-email {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.press-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(70px, 10vw, 160px);
}

.press-intro h2 {
  max-width: 720px;
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(3.6rem, 6.2vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.press-intro > p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 28px;
  color: var(--muted);
  line-height: 1.85;
}

.press-intro .button {
  margin-top: 36px;
}

.press-list {
  align-self: center;
  border-top: 1px solid var(--line);
}

.press-list-label {
  display: block;
  padding: 0 0 18px;
  color: var(--copper);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.press-list a {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.6rem;
  transition: color 180ms ease, padding 180ms ease;
}

.press-list a:last-child {
  border-bottom: 1px solid var(--line);
}

.press-list a:hover {
  padding-inline: 8px;
  color: var(--copper);
}

.press-list i {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-style: normal;
}

.site-footer {
  padding: 76px 0 30px;
  background: var(--espresso);
  color: var(--cream);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand img {
  display: block;
  width: 190px;
  height: auto;
  object-fit: contain;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
}

.footer-social a {
  color: rgba(255, 248, 236, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer-social a:hover {
  color: var(--sun-soft);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 248, 236, 0.42);
  font-size: 0.7rem;
}

.footer-bottom a {
  color: rgba(255, 248, 236, 0.62);
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 18px;
  padding: 0 8px 0 19px;
  border-radius: 999px;
  background: #246d3b;
  box-shadow: 0 16px 35px rgba(16, 52, 27, 0.3);
  color: white;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.whatsapp-float b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.js [data-reveal] {
  transform: translateY(34px);
  opacity: 0;
  transition: transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 750ms ease;
}

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

@keyframes hero-scale {
  from { transform: scale(1.045); opacity: 0.72; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes hero-copy {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes scroll-line {
  0% { transform: translateY(-22px); }
  100% { transform: translateY(48px); }
}

/* Página de links do Instagram */
.links-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(231, 170, 55, 0.2), transparent 35%),
    var(--espresso);
  color: var(--cream);
}

.link-hub {
  width: min(100% - 32px, 610px);
  margin-inline: auto;
  padding: 42px 0 60px;
}

.link-profile {
  text-align: center;
}

.link-profile-logo {
  display: block;
  width: 210px;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
}

.link-profile h1 {
  margin-top: 17px;
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 500;
  line-height: 0.95;
}

.link-profile p {
  max-width: 440px;
  margin: 14px auto 0;
  color: rgba(255, 248, 236, 0.62);
  font-size: 0.87rem;
  line-height: 1.65;
}

.link-release {
  display: grid;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.04);
  grid-template-columns: 190px 1fr;
}

.link-release img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.link-release-copy {
  display: flex;
  padding: 25px;
  flex-direction: column;
  justify-content: center;
}

.link-release-copy span {
  color: var(--sun-soft);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.link-release-copy h2 {
  margin-top: 8px;
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 0.92;
}

.link-list {
  display: grid;
  gap: 11px;
  margin-top: 16px;
}

.hub-link {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hub-link:hover {
  transform: translateY(-2px);
  border-color: var(--sun-soft);
  background: rgba(231, 170, 55, 0.08);
}

.hub-link-featured {
  border-color: var(--sun-soft);
  background: var(--sun-soft);
  color: var(--coffee);
}

.hub-link-featured:hover {
  background: var(--white);
}

.link-group-title {
  margin: 32px 0 12px;
  color: rgba(255, 248, 236, 0.5);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.link-hub-footer {
  margin-top: 34px;
  color: rgba(255, 248, 236, 0.38);
  font-size: 0.68rem;
  text-align: center;
}

@media (max-width: 1100px) {
  :root {
    --header-height: 76px;
  }

  .header-shell {
    width: min(100% - 36px, 1420px);
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 96px;
    height: auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .release-grid {
    gap: 65px;
  }

  .booking-grid {
    grid-template-columns: 1fr 390px;
    gap: 55px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 42px, var(--shell));
  }

  .hero {
    min-height: 720px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-copy {
    width: min(630px, 78vw);
  }

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

  .release-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .release-art {
    width: min(78vw, 570px);
  }

  .release-copy {
    width: min(100%, 720px);
    margin-left: auto;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-heading,
  .story-copy,
  .story-photo {
    grid-column: 1;
    grid-row: auto;
  }

  .story-copy {
    padding-top: 0;
  }

  .story-photo {
    height: clamp(330px, 62vw, 540px);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-card {
    width: min(100%, 520px);
    margin-left: auto;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .hero {
    min-height: 730px;
  }

  .hero-media img {
    object-position: 60% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(16, 7, 4, 0.64), rgba(16, 7, 4, 0.05)),
      linear-gradient(180deg, rgba(9, 4, 2, 0.25) 10%, rgba(12, 5, 2, 0.27) 42%, rgba(12, 5, 2, 0.94) 84%);
  }

  .hero-content {
    padding-bottom: 70px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(4.35rem, 21.5vw, 6.5rem);
    line-height: 0.77;
  }

  .hero h1 em {
    margin-left: 0.1em;
  }

  .hero-intro {
    max-width: 390px;
    margin-top: 25px;
    font-size: 0.94rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
  }

  .scroll-cue {
    display: none;
  }

  .button {
    min-height: 51px;
    padding-inline: 22px;
  }

  .release-section,
  .story-section,
  .music-section,
  .video-section,
  .press-section {
    padding-block: 88px;
  }

  .release-art {
    width: 100%;
  }

  .release-copy h2,
  .story-heading h2,
  .section-heading h2,
  .press-intro h2 {
    font-size: clamp(3.35rem, 15vw, 5rem);
  }

  .release-facts {
    grid-template-columns: 1fr;
  }

  .release-facts div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .release-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .manifesto {
    min-height: 520px;
    height: 68vh;
  }

  .manifesto-media img {
    object-position: 58% center;
  }

  .manifesto blockquote {
    font-size: clamp(3.25rem, 15vw, 5.2rem);
  }

  .story-photo {
    height: 410px;
  }

  .story-photo img {
    object-position: 45% center;
  }

  .section-heading {
    gap: 25px;
    margin-bottom: 46px;
  }

  .track {
    padding: 25px 0 30px;
    grid-template-columns: 48px 110px 1fr;
    gap: 16px;
  }

  .track > img {
    width: 110px;
    height: 110px;
    min-width: 110px;
  }

  .track-info h3 {
    font-size: clamp(1.7rem, 8vw, 2.7rem);
  }

  .track-links {
    grid-column: 1 / -1;
  }

  .track-links a {
    font-size: 0.62rem;
  }

  .music-atmosphere {
    margin-top: 60px;
  }

  .music-atmosphere img {
    height: 340px;
    object-position: center;
  }

  .catalog-footer {
    justify-content: flex-start;
  }

  .video-frame {
    width: calc(100% + 32px);
    margin-left: -16px;
  }

  .booking-grid {
    min-height: auto;
    padding-block: 88px;
  }

  .booking-copy h2 {
    font-size: clamp(3.8rem, 16vw, 5.8rem);
  }

  .booking-media img {
    object-position: 42% center;
  }

  .booking-card {
    padding: 32px 24px;
  }

  .press-grid {
    gap: 70px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand img {
    width: 168px;
    height: auto;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .whatsapp-float {
    width: 48px;
    padding: 0;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .link-hub {
    padding-top: 30px;
  }

  .link-profile-logo {
    width: 184px;
    height: auto;
  }

  .link-profile h1 {
    font-size: 2.7rem;
  }

  .link-release {
    grid-template-columns: 128px 1fr;
  }

  .link-release-copy {
    padding: 18px;
  }

  .link-release-copy h2 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
