@font-face {
  font-family: "Rusther";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/Rusther-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Awesome Serif";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/AwesomeSerif-MediumExtraTall.woff2") format("woff2");
}

:root {

  --cream:      #2c1a1c;
  --cream-2:    #3a2427;
  --paper:      #342023;
  --blush:      #f6b5ad;
  --blush-soft: #fbdfd8;
  --blush-deep: #e78d84;
  --gold:       #eda42c;
  --gold-soft:  #f6c877;
  --gold-deep:  #c47f18;
  --rose:       #d9767a;
  --ink:        #fdf6ef;
  --ink-soft:   #f1e4da;
  --ink-mute:   #b49a95;
  --line:       rgba(253,246,239,0.14);
  --line-soft:  rgba(253,246,239,0.08);
  --dark-fixed:  #2c1a1c;
  --light-fixed: #fdf6ef;
  --pink:        #f2b4b4;

  --bg:         var(--cream);
  --text:       var(--ink);

  --display: "Playfair Display", "Georgia", serif;
  --title: "Awesome Serif", "Playfair Display", "Georgia", serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --script: "Rusther", "Playfair Display", serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 84px;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.06; letter-spacing: -0.01em; font-family: var(--display); font-weight: 600; }
::selection { background: var(--gold); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .7rem 1.2rem; background: var(--dark-fixed); color: var(--light-fixed);
  border-radius: 999px; font-weight: 600; font-size: .9rem;
  transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 960px) { .container { padding-inline: 2.5rem; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-weight: 700; font-size: .78rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: var(--gold-deep);
  display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-title {
  font-family: var(--title); font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin-top: .6rem;
  text-transform: uppercase; letter-spacing: .01em;
}
.section-title em { font-style: italic; color: var(--rose); }
.section-sub { margin-top: 1rem; font-size: 1.05rem; color: var(--ink-mute); max-width: 52ch; }
.is-center .section-sub { margin-inline: auto; }

.grain {
  position: fixed; top: -50%; left: -50%; width: 200%; height: 200%;
  z-index: 3; pointer-events: none; opacity: .12;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="3" stitchTiles="stitch" result="t"/><feColorMatrix in="t" type="matrix" values="0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0" result="w"/><feComponentTransfer in="w"><feFuncA type="linear" slope="2.4" intercept="-0.5"/></feComponentTransfer></filter><rect width="100%25" height="100%25" filter="url(%23n)"/></svg>');
  background-size: 220px 220px;
  animation: grain 0.8s steps(1) infinite;
}
@keyframes grain {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-2.5%, -3.5%); }
  20%  { transform: translate(-4.5%, 2%); }
  30%  { transform: translate(2.5%, -3%); }
  40%  { transform: translate(-1.5%, 4%); }
  50%  { transform: translate(-4%, 2.5%); }
  60%  { transform: translate(3.5%, 0); }
  70%  { transform: translate(0, 4.5%); }
  80%  { transform: translate(-3.5%, -1.5%); }
  90%  { transform: translate(3%, 2.5%); }
  100% { transform: translate(0, 0); }
}

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.reveal-child { transition-delay: calc(var(--i, 0) * 90ms); }

.script-tag {
  font-family: var(--script);
  font-weight: 400;
  color: var(--rose);
}

.btn {
  position: relative; display: inline-flex; align-items: center; gap: .6em;
  padding: 1rem 1.9rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  transition: transform .45s var(--ease-out), background .3s var(--ease-out), color .3s var(--ease-out), box-shadow .3s var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .35s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--paper);
  box-shadow: 0 14px 30px -12px rgba(196,127,24,.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -14px rgba(196,127,24,.65); }
.btn-ghost {
  background: transparent; color: var(--ink); border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--paper); transform: translateY(-3px); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { transform: translateY(-3px); background: var(--ink-soft); }
.btn-small { padding: .65rem 1.3rem; font-size: .85rem; }
.btn-block { width: 100%; justify-content: center; }

section[id] { scroll-margin-top: 84px; }
.site-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1.5rem;
  pointer-events: none;
  transition: background .4s var(--ease-out), padding .4s var(--ease-out);
}
@media (min-width: 960px) { .site-bar { padding-inline: 2.5rem; } }

.site-bar::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,12,13,.5) 0%, rgba(20,12,13,0) 100%);
  transition: opacity .4s var(--ease-out);
}
.site-bar.is-scrolled {
  background: rgba(30,18,20,.86);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding-block: .6rem;
}
.site-bar.is-scrolled::before { opacity: 0; }
.site-bar > * { pointer-events: auto; opacity: .9; }
.site-logo img { height: 34px; width: auto; display: block; }
@media (min-width: 960px) { .site-logo img { height: 40px; } }

.nav-burger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; align-items: center; color: var(--light-fixed);
}
.nav-burger span { width: 22px; height: 2px; background: currentColor; transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 450; background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 2rem;
  opacity: 0; visibility: hidden; transform: translateY(-16px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out), visibility 0s linear .4s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.mobile-link { font-family: var(--sans); font-weight: 600; font-size: 1.6rem; letter-spacing: -.01em; }

.footer { position: relative; overflow: hidden; background: var(--dark-fixed); color: var(--light-fixed); padding-block: 4rem 2.4rem; }

.footer-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden; opacity: .25; pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 55%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 55%);
}
.footer-bg img { position: absolute; left: 0; bottom: 0; width: 100%; height: auto; }
.footer-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 2.2rem; text-align: center; }
.footer-logo img { height: 34px; width: auto; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem 2.2rem; }
.footer-nav a { font-size: .9rem; font-weight: 600; opacity: .82; transition: opacity .3s var(--ease-out); }
.footer-nav a:hover { opacity: 1; color: var(--gold-soft); }
.footer-copy { font-size: .82rem; opacity: .55; }
.footer-line { width: 100%; max-width: 220px; height: 1px; background: rgba(253,246,239,.15); }

.subscribe { position: relative; width: 100%; max-width: 520px; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.subscribe-title {
  font-family: var(--title); font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.05rem);
  text-transform: uppercase; letter-spacing: .01em;
}
.subscribe-note { font-size: .88rem; opacity: .6; max-width: 34ch; }
.subscribe-row { margin-top: .9rem; width: 100%; display: flex; gap: .6rem; }
.subscribe-input {
  flex: 1; min-width: 0; padding: 1rem 1.3rem; border-radius: 999px;
  border: 1px solid rgba(253,246,239,.22); background: rgba(253,246,239,.06);
  color: var(--light-fixed); font: inherit; font-size: .95rem;
  transition: border-color .3s var(--ease-out), background .3s var(--ease-out);
}
.subscribe-input::placeholder { color: rgba(253,246,239,.42); }
.subscribe-input:focus { outline: none; border-color: var(--pink); background: rgba(253,246,239,.1); }
.subscribe-btn { flex: none; }

.subscribe-trap { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.subscribe-msg { min-height: 1.15em; font-size: .85rem; opacity: 0; transition: opacity .3s var(--ease-out); }
.subscribe-msg.is-on { opacity: 1; }
.subscribe-msg.is-ok { color: var(--pink); }
.subscribe-msg.is-bad { color: var(--pink); }
.subscribe.is-sending .subscribe-btn { opacity: .55; pointer-events: none; }
@media (max-width: 560px) {
  .subscribe-row { flex-direction: column; }
  .subscribe-btn { width: 100%; justify-content: center; }
}

.hero .subscribe-mini {
  position: absolute; z-index: 2;
  left: 50%; transform: translateX(-50%);
  bottom: clamp(6rem, 13vh, 8.5rem);
  width: min(430px, calc(100% - 2.5rem));
  gap: .3rem;
}
.subscribe-mini-label {
  font-size: .82rem; font-weight: 600;
  color: var(--light-fixed);
}
.subscribe-mini .subscribe-row { margin-top: .45rem; gap: .4rem; }

.subscribe-mini .subscribe-input,
.subscribe-mini .subscribe-btn {
  border: 1px solid rgba(253,246,239,.38); background: rgba(44,26,28,.45);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.subscribe-mini .subscribe-input { padding: .7rem 1.05rem; font-size: .88rem; }
.subscribe-mini .subscribe-btn {
  padding: .7rem 1.15rem; font-size: .85rem;
  color: var(--light-fixed); box-shadow: none;
}
.subscribe-mini .subscribe-btn:hover {
  background: rgba(44,26,28,.62); border-color: rgba(253,246,239,.6);
  transform: translateY(-2px); box-shadow: none;
}
.subscribe-mini .subscribe-msg { font-size: .78rem; }
@media (max-width: 560px) {

  .subscribe-mini .subscribe-row { flex-direction: row; }
  .subscribe-mini .subscribe-btn { width: auto; padding: .7rem .95rem; font-size: .8rem; }
  .subscribe-mini .subscribe-input { padding: .7rem .9rem; font-size: .85rem; }
}

.cursor { position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none; opacity: 0; transition: opacity .3s var(--ease-out); }
.cursor.is-ready { opacity: 1; }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; transform: translate3d(-50%,-50%,0); mix-blend-mode: difference; }
.cursor-dot { width: 7px; height: 7px; background: var(--gold); }
.cursor-ring { width: 34px; height: 34px; border: 1.5px solid var(--gold); transition: width .25s var(--ease-out), height .25s var(--ease-out), opacity .25s var(--ease-out); }
.cursor.is-active .cursor-ring { width: 54px; height: 54px; opacity: .6; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

.card {
  background: var(--paper); overflow: hidden;
  box-shadow: 0 1px 0 var(--line-soft);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -24px rgba(0,0,0,.45); }

.marquee { overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation-duration: 60s; } }

.stats-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.2rem 1.5rem;
}
@media (min-width: 720px) { .stats-row { grid-template-columns: repeat(5, 1fr); gap: 2.2rem 1rem; } }

@media (max-width: 719px) { .stats-row .stat:nth-child(5):last-child { grid-column: 1 / -1; } }
.stat { text-align: center; }
.stat-value { display: block; font-family: var(--title); font-style: italic; font-size: clamp(1.9rem, 3.8vw, 2.9rem); color: var(--ink); }
.stat-label { display: block; margin-top: .4rem; font-size: .8rem; letter-spacing: .05em; color: var(--ink-mute); }

.stat-mas { font-family: var(--display); font-style: italic; margin-left: .02em; }

.btn-whatsapp {
  background: var(--pink); color: var(--dark-fixed);
  box-shadow: 0 16px 34px -14px rgba(242,180,180,.55);
}
.btn-whatsapp:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 40px -14px rgba(242,180,180,.7); }

.page-hero {
  position: relative; padding-top: calc(var(--nav-h) + 4.5rem); padding-bottom: 4rem;
  background: linear-gradient(180deg, var(--blush-soft) 0%, var(--cream) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 70%;
  background: radial-gradient(50% 50% at 50% 20%, rgba(237,164,44,.22), transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; text-align: center; max-width: 720px; margin-inline: auto; }
.page-kicker { justify-content: center; }
.page-title { margin-top: 1rem; font-size: clamp(2.6rem, 6vw, 4.4rem); font-style: italic; }
.page-sub { margin-top: 1.1rem; font-size: 1.08rem; color: var(--ink-mute); max-width: 54ch; margin-inline: auto; }

.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; color: var(--light-fixed); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; transform: scale(1.06); }

@media (max-width: 719px) {
  .hero-bg img, .hero-bg video { object-position: 48.2% 22%; }
}
.hero-tint {
  position: absolute; inset: 0; z-index: 1;
  background: none;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 30px; height: 46px; border: 1.5px solid rgba(253,246,239,.6); border-radius: 999px;
}
.hero-scroll span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; background: var(--gold-soft); border-radius: 999px; transform: translateX(-50%); animation: scrollDot 2.1s var(--ease-soft) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 18px); } }
@media (prefers-reduced-motion: reduce) { .hero-scroll span { animation: none; opacity: .8; } }

.about {
  position: relative; overflow: hidden; background: var(--cream);
  padding-top: clamp(4.5rem, 9vw, 7.5rem);
}
.about-photo {
  position: relative; width: 100%; overflow: hidden;

  aspect-ratio: 3200 / 1416; max-height: 82vh;
}

.about-photo-move {
  position: absolute; inset: 0;
  transform: scale(1.06) translate3d(calc(var(--mx, 0) * -1.4%), calc(var(--my, 0) * -1.4%), 0);
  transition: transform .6s var(--ease-out);
}
.about-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 46% 38%; }
.about-particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; mix-blend-mode: screen; }

.about-photo .about-bg-reveal {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .4s var(--ease-out);
  --reveal-r: clamp(230px, 23vw, 400px);
  -webkit-mask-image: radial-gradient(circle var(--reveal-r) at var(--reveal-x, 50%) var(--reveal-y, 50%), #000 55%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(circle var(--reveal-r) at var(--reveal-x, 50%) var(--reveal-y, 50%), #000 55%, rgba(0,0,0,0) 100%);
}
.about-photo.is-revealing .about-bg-reveal { opacity: 1; }
@media (max-width: 719px) {

  .about-photo { aspect-ratio: 4 / 3; max-height: none; }
  .about-photo img { object-position: 46% 22%; }
  .about-text p { margin-top: .75rem; line-height: 1.5; }
}
@media (prefers-reduced-motion: reduce) {
  .about-photo-move { transform: none; transition: none; }
}
.about-text {
  position: relative; z-index: 1; max-width: 760px; margin-inline: auto; text-align: center;
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}
.about-logo { width: 100%; max-width: 250px; margin: 0 auto 2rem; }
.about-text p { margin-top: 1.15rem; color: var(--ink-soft); font-size: 1.02rem; text-align: justify; text-align-last: center; }
.about-text p:first-of-type { margin-top: 0; font-size: 1.18rem; color: var(--ink); }
.about-stats { margin-top: 2.6rem; padding-top: 2.4rem; border-top: 1px solid var(--line); }

.teasers { padding-block: 2rem 6.5rem; background: var(--cream); }
.teaser-grid { display: grid; gap: 1.6rem; }
@media (min-width: 720px) { .teaser-grid { grid-template-columns: repeat(2, 1fr); } }
.teaser-card {
  position: relative; overflow: hidden; min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2.2rem;
  color: var(--light-fixed); isolation: isolate;
}
.teaser-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.2s var(--ease-out); }
.teaser-card:hover img { transform: scale(1.08); }
.teaser-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(44,26,28,.1) 10%, rgba(44,26,28,.78) 100%); }
.teaser-tag { font-size: .76rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); }
.teaser-card h3 { margin-top: .6rem; font-size: clamp(1.6rem, 3vw, 2.1rem); font-style: italic; }
.teaser-card p { margin-top: .6rem; color: rgba(253,246,239,.85); font-size: .96rem; max-width: 40ch; }
.teaser-link { margin-top: 1.3rem; display: inline-flex; align-items: center; gap: .5em; font-weight: 700; font-size: .92rem; }
.teaser-link svg { width: 16px; height: 16px; transition: transform .35s var(--ease-out); }
.teaser-card:hover .teaser-link svg { transform: translateX(5px); }

.teaser-strip { display: grid; gap: 1.4rem; margin-top: 1.6rem; }
@media (min-width: 720px) { .teaser-strip { grid-template-columns: repeat(2, 1fr); } }
.strip-card {
  display: flex; align-items: center; gap: 1.4rem; padding: 1.6rem; border-radius: 22px;
  background: var(--paper); box-shadow: 0 1px 0 var(--line-soft);
}
.strip-card-icon { flex-shrink: 0; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: var(--blush-soft); }
.strip-card-icon svg { width: 26px; height: 26px; color: var(--rose); }
.strip-card h3 { font-size: 1.15rem; }
.strip-card p { margin-top: .3rem; font-size: .9rem; color: var(--ink-mute); }

.cta-band {
  position: relative; padding-block: 5.5rem; text-align: center; overflow: hidden;
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold-deep) 100%); color: var(--paper);
}
.cta-band::before {
  content: ""; position: absolute; inset: -40% -10%; background: radial-gradient(50% 50% at 30% 30%, rgba(255,255,255,.22), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { position: relative; font-size: clamp(2rem, 4.4vw, 3rem); font-style: italic; }
.cta-band p { position: relative; margin-top: .9rem; color: rgba(255,255,255,.9); max-width: 46ch; margin-inline: auto; }
.cta-band .btn { position: relative; margin-top: 1.8rem; }
.cta-band .btn-primary { background: var(--dark-fixed); box-shadow: 0 16px 34px -14px rgba(0,0,0,.4); }

.shows-list-section { background: var(--dark-fixed); color: var(--light-fixed); padding-block: 3.5rem; position: relative; }
.shows-list-section .section-head { max-width: none; }
.shows-list-section .eyebrow { color: var(--gold-soft); }
.shows-list-section .eyebrow::before { background: var(--gold-soft); }
.shows-list-section .section-title { color: var(--light-fixed); }

.shows-banners { position: relative; margin-bottom: 2.6rem; overflow: hidden; }
.banners-pista { display: flex; transition: transform .8s var(--ease-out); }
.banner-slide { flex: 0 0 100%; min-width: 0; }
.banner-slide img { width: 100%; height: auto; display: block; }
.banners-puntos { display: flex; justify-content: center; gap: .45rem; margin-top: 1rem; }
.banners-punto {
  width: 8px; height: 8px; padding: 0; border: 0; border-radius: 999px;
  background: rgba(253,246,239,.28); cursor: pointer;
  transition: width .4s var(--ease-out), background .4s var(--ease-out);
}
.banners-punto:hover { background: rgba(253,246,239,.55); }
.banners-punto.is-activo { width: 22px; background: var(--pink); }
@media (prefers-reduced-motion: reduce) {
  .banners-pista { transition: none; }
}
.shows-list { border-top: 1px solid rgba(253,246,239,.18); }
.shows-list-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1.6rem;
  padding: 1.9rem 0; border-bottom: 1px solid rgba(253,246,239,.18);
  transition: background .35s var(--ease-out), padding-inline .35s var(--ease-out);
}
.shows-list-row:hover { background: rgba(253,246,239,.04); padding-inline: .8rem; }
.shows-list-date { flex-shrink: 0; width: 92px; }
.shows-list-day { font-family: var(--sans); font-weight: 800; font-size: clamp(2rem, 3.6vw, 2.6rem); line-height: 1; color: var(--light-fixed); }
.shows-list-month { display: block; margin-top: .35rem; font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(253,246,239,.5); }
.shows-list-info { flex: 1; min-width: 0; }
.shows-list-city { font-family: var(--sans); font-size: 1.2rem; font-weight: 700; color: var(--light-fixed); }
.shows-list-tour { margin-top: .3rem; font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: var(--gold-soft); }
.shows-list-btn {
  flex-shrink: 0; display: inline-flex; align-items: center; padding: .8rem 1.7rem;
  border: 1.5px solid rgba(253,246,239,.35); border-radius: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--light-fixed);
  transition: background .35s var(--ease-out), border-color .35s var(--ease-out), color .35s var(--ease-out), transform .35s var(--ease-out);
}
.shows-list-row:hover .shows-list-btn { border-color: var(--gold); background: var(--gold); color: var(--dark-fixed); transform: translateY(-2px); }
@media (max-width: 719px) {
  .shows-list-row { flex-direction: column; align-items: center; text-align: center; gap: .7rem; }
  .shows-list-date { width: auto; text-align: center; }
  .shows-list-info { text-align: center; }
  .shows-list-tour { display: block; }
  .shows-list-btn { margin-left: 0; margin-top: .3rem; }
}

.shows-section { padding-block: 1rem 6.5rem; background: var(--cream); }
.shows-grid { display: grid; gap: 1.8rem; }
@media (min-width: 720px) { .shows-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .shows-grid { grid-template-columns: repeat(3, 1fr); } }
.show-card { position: relative; overflow: hidden; aspect-ratio: 4/5; isolation: isolate; }
.show-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease-out); }
.show-card:hover img { transform: scale(1.07) rotate(.3deg); }
.show-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(44,26,28,0) 45%, rgba(44,26,28,.85) 100%); }
.show-card-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem; color: var(--light-fixed); }
.show-card-body .btn { margin-top: 1rem; }
.show-card-tag { font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); }
.show-card-body h3 { margin-top: .4rem; font-size: 1.35rem; }
.show-card-body p { margin-top: .3rem; font-size: .88rem; color: rgba(253,246,239,.85); }

.show-card.is-placeholder {
  display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; gap: .8rem;
  background: var(--paper); border: 1.5px dashed var(--line);
}
.show-card.is-placeholder .accordion-icon { width: 50px; height: 50px; }
.show-card.is-placeholder p { max-width: 22ch; color: var(--ink-mute); font-size: .92rem; }

.album-feature { position: relative; padding-block: 2.25rem 4.25rem; background: var(--cream); }
.album-coming { text-align: center; padding-block: 2.5rem 1rem; }
.album-coming-kicker {
  font-family: var(--title); font-weight: 500;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem); letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1rem;
}
.album-coming-logo { width: 100%; max-width: 620px; height: auto; margin: 0 auto; display: block; }
.album-coming-label {
  margin-top: 1.4rem; font-family: var(--title); font-weight: 500;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
}
.countdown { margin-top: 2.2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.4rem; }
.countdown-unit { min-width: 78px; }
.countdown-num {
  display: block; font-family: var(--title); font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 3.6rem); line-height: 1; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.countdown-lbl {
  display: block; margin-top: .5rem; font-family: var(--sans); font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute);
}
@media (max-width: 539px) { .countdown { gap: 1rem 1.4rem; } .countdown-unit { min-width: 64px; } }

.singles-grid { display: grid; gap: 2.5rem; margin-top: 2.5rem; }

@media (min-width: 720px) {
  .singles-grid { grid-template-columns: repeat(3, 24%); justify-content: space-between; column-gap: 0; }
}
.single-card { position: relative; padding: 0; text-align: center; }

.single-card:hover { z-index: 3; }
.disc { position: relative; margin-bottom: 1.2rem; }
.disc-cover { position: relative; z-index: 2; width: 100%; height: auto; display: block; }
.disc-vinyl {
  position: absolute; top: 0; left: 0; z-index: 1;
  width: 100%; height: auto; display: block;
  transition: transform .7s var(--ease-out);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.5));
}
.single-card:hover .disc-vinyl, .single-card:focus-within .disc-vinyl { transform: translateX(50%); }
@media (prefers-reduced-motion: reduce) { .disc-vinyl { transition-duration: .2s; } }
.single-card .btn { width: auto; padding: .55rem 1.1rem; font-size: .8rem; }
.btn-blush { background: #f1acac; color: var(--dark-fixed); box-shadow: 0 14px 30px -16px rgba(241,172,172,.85); }
.btn-blush:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -16px rgba(241,172,172,.95); }
.btn-pink { background: var(--pink); color: var(--dark-fixed); box-shadow: 0 14px 30px -16px rgba(242,180,180,.85); }
.btn-pink:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -16px rgba(242,180,180,.95); }
.btn-pink:hover svg { transform: none; }

.spotify-feature { padding-block: 1rem 4.25rem; background: var(--cream); }
.spotify-embed-wrap { border-radius: 22px; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(0,0,0,.5); background: #121212; }
.spotify-embed-wrap iframe { display: block; width: 100%; border: 0; }

.gallery-section { padding-block: 2.25rem 4.5rem; background: var(--cream); }
.flow-gallery { position: relative; margin-top: 1.5rem; overflow: hidden; }
.flow-track {
  display: flex; gap: 1rem; width: max-content;
  animation: flow-scroll 32s linear infinite;
}
.flow-gallery:hover .flow-track { animation-play-state: paused; }

@keyframes flow-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--flow-shift, 50%))); }
}
.flow-item {
  position: relative; flex: 0 0 auto; width: 260px; aspect-ratio: 2/3;
  padding: 0; overflow: hidden;
  background: var(--dark-fixed); cursor: pointer;
}
.flow-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1s var(--ease-out);
}

.flow-duo {
  position: absolute; inset: 0;
  filter: url(#duotone);
  transition: transform 1s var(--ease-out), opacity .5s var(--ease-out);
}
.flow-item:hover .flow-duo, .flow-item:focus-visible .flow-duo { opacity: 0; }
.flow-item:hover img { transform: scale(1.05); }
@media (max-width: 719px) {
  .flow-track { gap: .7rem; animation-duration: 24s; }
  .flow-item { width: 170px; }
}

.videos-section { padding-block: 2.25rem 4.5rem; background: var(--cream); }
.video-card { display: block; position: relative; overflow: hidden; isolation: isolate; }
.video-card-thumb { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: var(--dark-fixed); }
.video-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.video-card:hover .video-card-thumb img { transform: scale(1.06); }
.video-card-tint {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,12,13,0) 45%, rgba(20,12,13,.82) 100%);
}
.video-card-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(20,12,13,.32); border: 1.5px solid rgba(253,246,239,.7);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
  display: grid; place-items: center; transition: transform .4s var(--ease-bounce), background .35s var(--ease-out);
}
.video-card:hover .video-card-play { transform: translate(-50%,-50%) scale(1.1); background: rgba(20,12,13,.5); }
.video-card-play svg { width: 18px; height: 18px; color: var(--light-fixed); margin-left: 2px; }
.video-card-title {
  position: absolute; left: 1.1rem; right: 1.1rem; bottom: .9rem; z-index: 1;
  margin: 0; font-size: 1rem; font-weight: 700; font-family: var(--sans); line-height: 1.3; color: var(--light-fixed);
}

.videos-main { margin-bottom: 1.6rem; }
.videos-main .video-card-play { width: 78px; height: 78px; }
.videos-main .video-card-play svg { width: 26px; height: 26px; }
.videos-main .video-card-title { font-size: 1.3rem; left: 1.6rem; bottom: 1.3rem; }

.videos-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(1, 1fr); }
@media (min-width: 540px) { .videos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px) { .videos-grid { grid-template-columns: repeat(3, 1fr); } }

.video-modal {
  position: fixed; inset: 0; z-index: 900; display: grid; place-items: center; padding: 1.5rem;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease-out), visibility 0s linear .35s;
}
.video-modal.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(20,12,13,.86); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.video-modal-inner { position: relative; width: 100%; max-width: 960px; }
.video-modal-frame { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; background: #000; }
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal-close, .img-modal-close {
  position: absolute; top: -3rem; right: 0; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(253,246,239,.12); color: var(--light-fixed); display: grid; place-items: center;
  transition: background .3s var(--ease-out), transform .3s var(--ease-out);
}
.video-modal-close:hover, .img-modal-close:hover { background: rgba(253,246,239,.24); transform: rotate(90deg); }
.video-modal-close svg, .img-modal-close svg { width: 18px; height: 18px; }

.img-modal {
  position: fixed; inset: 0; z-index: 900; display: grid; place-items: center; padding: 1.5rem;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease-out), visibility 0s linear .35s;
}
.img-modal.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.img-modal-backdrop { position: absolute; inset: 0; background: rgba(20,12,13,.9); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.img-modal-inner { position: relative; max-width: min(92vw, 640px); }
.img-modal-inner img {
  width: auto; max-width: 100%; max-height: 82vh;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.85);
}

.platforms-section { padding-block: 1rem 4.5rem; background: var(--cream); }
.platform-row { display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; justify-content: center; align-items: center; }
.platform-badge {
  display: block; opacity: .92;
  transition: transform .35s var(--ease-out), opacity .3s var(--ease-out);
}

.platform-badge img { width: 150px; height: auto; display: block; }
.platform-badge:hover { transform: translateY(-3px); opacity: 1; }

.podcast-hero { padding-block: 2.25rem 3rem; background: var(--cream); }
.podcast-hero-inner {
  display: grid; gap: 2.6rem; align-items: center; text-align: center;
}
.podcast-logo { width: 100%; max-width: 400px; margin-inline: auto; }

.podcast-next {
  margin-top: 1.4rem; font-family: var(--sans); font-weight: 600; font-size: .78rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink-mute);
}
.podcast-social-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 2rem; }
.podcast-social-row a {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--paper); box-shadow: 0 1px 0 var(--line-soft); transition: transform .35s var(--ease-out), background .3s;
}
.podcast-social-row svg { width: 19px; height: 19px; color: var(--rose); }
.podcast-social-row a:hover { transform: translateY(-3px); background: var(--blush-soft); }
.podcast-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .6rem 1rem; margin-top: 3.4rem; }

.podcast-actions .platform-badge img { width: 220px; }
.podcast-mail-row { text-align: center; }
.podcast-mail {
  margin-top: 1.2rem; display: inline-flex; align-items: center; gap: .6em; font-size: .92rem; font-weight: 600;
  padding: .7rem 1.3rem; border-radius: 999px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}

.episodes-section { padding-block: 1rem 4.25rem; background: var(--cream); }
.episodes-grid { display: grid; gap: 1.5rem; }
@media (min-width: 720px) { .episodes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .episodes-grid { grid-template-columns: repeat(3, 1fr); } }
.episode-card { display: block; overflow: hidden; }
.episode-thumb {
  position: relative; aspect-ratio: 16/9; display: grid; place-items: center; overflow: hidden;
  background: linear-gradient(135deg, var(--blush) 0%, var(--gold-soft) 100%);
}
.episode-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease-out);
}
.episode-card:hover .episode-thumb img { transform: scale(1.06); }
.episode-thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,12,13,.35) 0%, rgba(20,12,13,0) 35%, rgba(20,12,13,.1) 100%);
}
.episode-thumb .play-btn {
  position: relative; z-index: 1;
  width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.85);
  display: grid; place-items: center; transition: transform .4s var(--ease-bounce);
}
.episode-card:hover .play-btn { transform: scale(1.12); }
.episode-thumb .play-btn svg { width: 20px; height: 20px; color: var(--dark-fixed); margin-left: 3px; }
.episode-thumb .episode-num { position: absolute; z-index: 1; top: .9rem; left: 1rem; font-family: var(--script); color: rgba(255,255,255,.9); font-size: 1rem; text-shadow: 0 1px 6px rgba(0,0,0,.5); }
.episode-body { padding: 1.3rem 1.5rem 1.6rem; }
.episode-body h3 { font-size: 1.02rem; font-family: var(--sans); font-weight: 700; line-height: 1.35; }
.episode-body p { margin-top: .5rem; font-size: .82rem; color: var(--ink-mute); }

.labor-intro { padding-block: 2rem; background: var(--cream); }
.labor-intro-grid { display: grid; gap: 2.6rem; align-items: center; justify-items: center; text-align: center; }
.causes-section { padding-block: 1rem 4.5rem; background: var(--cream); }
.causes-grid { display: grid; gap: 1.8rem 1.4rem; grid-template-columns: repeat(1, 1fr); }
@media (min-width: 540px)  { .causes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .causes-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .causes-grid { grid-template-columns: repeat(5, 1fr); gap: 1.6rem 1rem; } }
.cause-card { margin: 0; display: flex; flex-direction: column; }
.cause-video {
  width: 100%; aspect-ratio: 9/16; display: block;
  background: var(--dark-fixed); object-fit: cover;
}
.cause-body { padding-top: 1rem; }
.cause-body h3 { font-size: 1.05rem; line-height: 1.25; }
.cause-num { font-family: var(--script); color: var(--blush-deep); font-size: 1rem; margin-right: .5rem; }
.cause-body p { margin-top: .5rem; font-size: .88rem; line-height: 1.55; color: var(--ink-mute); }

.booking-section { padding-block: 2.25rem 5rem; background: var(--cream); position: relative; overflow: hidden; }
.booking-card {
  max-width: 640px; margin-inline: auto; text-align: center; background: var(--paper);
  border-radius: 32px; padding: 3.4rem 2rem; box-shadow: 0 30px 60px -30px rgba(0,0,0,.5);
  position: relative;
}
.booking-icon {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 1.6rem;
  background: var(--pink); display: grid; place-items: center;
}
.booking-icon svg { width: 34px; height: 34px; color: var(--dark-fixed); }
.booking-phone { margin-top: .6rem; font-family: var(--title); font-size: 1.9rem; letter-spacing: .01em; color: var(--ink); }
.booking-card .btn { margin-top: 2rem; }
.booking-note { margin-top: 2.6rem; font-size: .92rem; color: var(--ink-mute); max-width: 46ch; margin-inline: auto; }

[data-magnetic] { will-change: transform; }

@media (min-width: 1600px) {
  .container { max-width: 1400px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-duration: 80s; }
  .flow-track { animation-duration: 90s; }
  .hero-scroll span { animation: none; }
}

@media (max-width: 719px) {
  .shows-list-section { padding-block: 3rem 3.25rem; }
  .gallery-section    { padding-block: 2rem 3.5rem; }
  .album-feature      { padding-block: 2rem 3.25rem; }
  .spotify-feature    { padding-block: 1rem 3.25rem; }
  .platforms-section  { padding-block: 1rem 3.5rem; }
  .videos-section     { padding-block: 2rem 3.5rem; }
  .podcast-hero       { padding-block: 2rem 2.5rem; }

  .episodes-section   { padding-block: 1rem 3rem; }
  .labor-intro        { padding-block: 1.5rem 1.5rem; }

  .podcast-actions { flex-wrap: nowrap; gap: .75rem; }
  .podcast-actions .platform-badge { flex: 1 1 0; min-width: 0; max-width: 200px; }
  .podcast-actions .platform-badge img { width: 100%; }
  .causes-section     { padding-block: 1rem 3.5rem; }
  .booking-section    { padding-block: 2rem 4rem; }
}
