:root {
    /* Opaque so dark sections (especially the footer) keep their intended tone. */
    --black: #080808;
    --ivory: #f4efe7;
    --terracotta: #b85f45;
    --copper: #c99a48;
    --copper-hover: #dcac58;
    --white: #ffffff;

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", Arial, sans-serif;

    --gutter: 1.25rem;
    --max-width: 1280px;
    --ease: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--black);
    font-family: var(--sans);
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
}

.site {
    overflow: hidden;
}

.section {
    width: min(100% - 2.5rem, var(--max-width));
    margin-inline: auto;
    padding-block: 5rem;
}

.intro__eyebrow {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin: 0 0 2rem;
}

.intro__scroll {
    display: none;
    /* shown on desktop only */
}

/* =========================================
   IMAGE PLACEHOLDERS (BLANK SPACES)
========================================= */

.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: transparent;
    border: 1px dashed rgba(11, 11, 10, 0.15);
    transition: border-color var(--ease);
}

.image-placeholder:hover {
    border-color: rgba(184, 95, 69, 0.4);
}

.image-placeholder--hero {
    width: 100%;
    height: 100%;
    min-height: 320px;
}


.image-placeholder--card {
    height: 100%;
    aspect-ratio: 6 / 7;
}

.image-placeholder--dark {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(201, 154, 72, 0.3);
    color: var(--ivory);
}

.image-placeholder--dark:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--copper);
}

.image-placeholder__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    color: rgba(11, 11, 10, 0.45);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
}

.image-placeholder--dark .image-placeholder__inner {
    color: rgba(244, 239, 231, 0.5);
}

.image-placeholder__inner svg {
    opacity: 0.75;
}

/* =========================================
   HEADER
========================================= */

.site-header {
    position: relative;
    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 80px;
    padding: 1.25rem var(--gutter);

    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    width: 148px;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    display: block;
}

/* Mobile: full-screen overlay nav */
.main-nav {
    position: fixed;
    inset: 80px 0 0 0;
    z-index: 99;

    display: flex;
    flex-direction: column;
    gap: 0.25rem;

    padding: 2.5rem var(--gutter);

    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);

    opacity: 0;
    visibility: hidden;
    transition:
        opacity 200ms ease,
        visibility 200ms ease;
}

.main-nav.is-open {
    opacity: 1;
    visibility: visible;
}

/* Mobile nav links */
.main-nav .nav-link,
.main-nav a {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 400;
    color: var(--ivory);
    letter-spacing: -0.01em;
    line-height: 1.2;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: color 180ms ease;
}

.main-nav .nav-link:last-child,
.main-nav a:last-child {
    border-bottom: none;
}

.main-nav .nav-link:hover,
.main-nav a:hover,
.main-nav .nav-link.is-active {
    color: var(--copper);
}

/* Mobile Actions inside Hamburger Drawer */
.main-nav__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-nav__actions .button {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    padding: 0.85rem 1rem;
}

/* Hamburger */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;

    width: 38px;
    height: 38px;
    padding: 8px 6px;

    border: none;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ivory);
    transition: width 180ms ease;
}

.menu-toggle span:last-child {
    width: 65%;
}

.menu-toggle:hover span {
    width: 100%;
}

.header-actions {
    display: none;
}

/* Header Dark Variant (alias) */
.site-header--dark {
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---- Dropdown (mobile) ---- */
.nav-dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
}

.nav-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0.6rem 0;
    font-family: var(--sans);
    font-size: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--ivory);
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: color 180ms ease;
}

.nav-dropdown__toggle:hover {
    color: var(--copper);
}

.nav-dropdown__arrow {
    transition: transform var(--ease);
    flex-shrink: 0;
    margin-left: auto;
    opacity: 0.5;
}

.nav-dropdown.is-open .nav-dropdown__arrow {
    transform: rotate(180deg);
}

/* Mobile dropdown sub-items */
.nav-dropdown__menu {
    display: none;
    flex-direction: column;
    padding: 0.5rem 0 0.5rem 1.25rem;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-dropdown.is-open .nav-dropdown__menu {
    display: flex;
}

.nav-dropdown__item {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.04em;
    color: rgba(244, 239, 231, 0.65);
    padding: 0.5rem 0;
    transition: color 150ms ease;
}

.nav-dropdown__item:hover {
    color: var(--copper);
}

/* =========================================
   TYPOGRAPHY
========================================= */

.eyebrow {
    margin: 0 0 1rem;

    color: var(--terracotta);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow--copper {
    color: var(--copper);
}

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

h1,
h2,
h3 {
    font-family: var(--serif);
}

h1 em,
h2 em {
    color: var(--terracotta);
    font-style: normal;
}

h1 {
    max-width: 620px;
    margin-bottom: 1.5rem;

    font-size: clamp(3.5rem, 14vw, 7rem);
    letter-spacing: -0.05em;
    line-height: 0.84;
}

h2 {
    margin-bottom: 2rem;
    font-size: clamp(2.8rem, 10vw, 5rem);
    letter-spacing: -0.045em;
    line-height: 0.9;
}

h3 {
    margin-bottom: 0.75rem;
    font-size: 1.8rem;
    line-height: 1;
}

/* =========================================
   HERO / INTRO (UNIFIED MOBILE & DESKTOP)
========================================= */

.intro {
    position: relative;
    min-height: calc(100vh - 80px);
    min-height: calc(100svh - 80px);
    overflow: hidden;
    background: var(--black);
}

.intro__media {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    height: calc(100svh - 80px);
    overflow: hidden;
    background: #0d0c0a;
}

.intro__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.2) 65%),
        linear-gradient(0deg,
            rgba(0, 0, 0, 0.75),
            transparent 60%);
    pointer-events: none;
}

.intro__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.intro__overlay {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
    padding: 1rem;
}

.intro__artist-name {
    margin: 0 0 1.5rem;
    color: var(--ivory);
    font-family: var(--serif);
    font-size: clamp(2.8rem, 8vw, 6.5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.04em;
    white-space: normal;
}

.intro .text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 0.45rem;

    color: var(--ivory);
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;

    border-bottom: 1px solid var(--terracotta);
    transition: color 220ms ease;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 0.45rem;

    color: var(--ivory);
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;

    border-bottom: 1px solid var(--terracotta);
    transition: color 200ms ease, border-color 200ms ease;
}

.text-link:hover {
    color: var(--terracotta);
    border-color: var(--terracotta);
}

/* =========================================
   ABOUT HERO SECTION (50% TEXT / 50% IMAGE - FLUID TRANSITION)
========================================= */

.about-hero {
    width: 100%;
    background: #000000;
    color: var(--ivory);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero__container {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    max-width: 100%;
}

.about-hero__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 5.5rem);
    background: #000000;
    z-index: 2;
}

.about-hero__title {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0 0 1.25rem;
}

.about-hero__description {
    font-family: var(--sans);
    font-size: clamp(0.88rem, 1.05vw, 0.98rem);
    line-height: 1.8;
    color: rgba(244, 239, 231, 0.75);
    margin: 0 0 2rem;
    max-width: 520px;
}

.about-hero__cta {
    margin-bottom: 0.5rem;
}

.about-hero__media {
    flex: 1;
    position: relative;
    min-height: 360px;
    max-height: 680px;
    background: #000000;
    overflow: hidden;
}

.about-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.about-hero__fade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom,
            transparent 60%,
            #000000 100%);
}

/* =========================================
   BUTTONS & LINKS
========================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 2.8rem;
    padding: 0.75rem 1.25rem;

    border: 1px solid transparent;

    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;

    transition:
        background-color var(--ease),
        color var(--ease),
        border-color var(--ease),
        transform var(--ease);
}

/* Pedir proposta — copper filled */
.button--primary {
    background: var(--copper);
    color: var(--ivory);
    border-color: var(--copper);
}

.button--primary:hover {
    background: var(--copper-hover);
    border-color: var(--copper-hover);
}

.button--outline {
    background: transparent;
    border-color: rgba(11, 11, 10, 0.25);
    color: var(--black);
}

.button--outline:hover {
    border-color: var(--black);
}

.button--small {
    min-height: 2.2rem;
    padding: 0.5rem 1.1rem;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
}

.button--gold {
    background: transparent;
    color: #ffffff;
}

.button--gold:hover {
    color: var(--copper);
}

/* Login — white ghost */
.button--outline-gold {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.12em;
}

.button--outline-gold:hover {
    color: #ffffff;
    background: transparent;
}

.button-icon {
    font-size: 0.75rem;
    margin-right: 0.4rem;
}

.button--with-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

/* =========================================
   PROJECTS SHOWCASE (Stacked Editorial Banners)
========================================= */

.projects-showcase {
    width: 100%;
    background: #000000;
    color: #ffffff;
    position: relative;
}

.project-banner {
    position: relative;
    width: 100%;
    min-height: clamp(440px, 48vh, 560px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.project-banner:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* Background Media & Seamless Gradient */
.project-banner__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.project-banner__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: contrast(1.06) brightness(0.95);
    transition: transform 1000ms cubic-bezier(0.16, 1, 0.3, 1), filter 800ms ease;
}

.project-banner:hover .project-banner__media img {
    transform: scale(1.035);
}

.project-banner__fade {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.8) 45%,
            rgba(0, 0, 0, 0.45) 100%);
}

/* Foreground Content */
.project-banner__container {
    position: relative;
    z-index: 2;
    width: min(100% - 2.5rem, var(--max-width));
    margin-inline: auto;
    padding: clamp(3.5rem, 5.5vw, 5.5rem) var(--gutter);
    pointer-events: none;
}

.project-banner__content {
    max-width: 480px;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Eyebrow with custom line beneath */
.project-banner__eyebrow-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
}

.project-banner__eyebrow {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.9;
}

.project-banner__line {
    width: 38px;
    height: 1px;
    background: rgba(255, 255, 255, 0.38);
    transition: width 350ms ease, background-color 350ms ease;
}

.project-banner:hover .project-banner__line {
    width: 52px;
    background: var(--copper);
}

/* Title */
.project-banner__title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5.2vw, 4.6rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: #ffffff;
    margin: 0 0 1.25rem;
}

/* Description */
.project-banner__description {
    font-family: var(--sans);
    font-size: clamp(0.85rem, 1.05vw, 0.95rem);
    line-height: 1.7;
    color: rgba(244, 239, 231, 0.72);
    margin: 0 0 2rem;
    max-width: 420px;
    font-weight: 400;
}

/* Outlined Box Action Button matching reference */
.project-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0.85rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    color: #ffffff;
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.project-banner__btn:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.project-banner__arrow {
    font-size: 1rem;
    line-height: 1;
}


/* =========================================
   VIDEO SHOWCASE SECTION (Minimalist Dark Stage)
========================================= */

.video-showcase-section {
    background: #000000;
    width: 100%;
    padding-block: clamp(5rem, 8vw, 8rem);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.video-showcase-container {
    width: min(100% - 2.5rem, var(--max-width));
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.video-showcase__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-showcase__title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4.8vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 1.25rem;
}

.video-showcase__title em {
    color: var(--copper);
    font-style: normal;
}

.video-showcase__description {
    max-width: 480px;
    color: rgba(244, 239, 231, 0.72);
    font-size: clamp(0.88rem, 1.05vw, 0.98rem);
    line-height: 1.75;
    margin: 0;
}

.video-showcase__player-wrapper {
    width: 100%;
}

.video-player-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0d0d0c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.video-player__media-slot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #0d0d0c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-player__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #151514 0%, #080807 100%);
}

.video-player__placeholder-inner {
    color: rgba(255, 255, 255, 0.15);
}

/* Play button (clean, no pulse, no scale jump) */
.video-player__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline: none;
    display: grid;
    place-items: center;
}

.video-player__play-ring {
    display: grid;
    place-items: center;
    width: clamp(3.75rem, 5vw, 4.5rem);
    height: clamp(3.75rem, 5vw, 4.5rem);
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background-color 220ms ease, border-color 220ms ease;
}

.video-player__play-btn:hover .video-player__play-ring {
    background: var(--copper);
    border-color: var(--copper);
}

.video-player__play-icon {
    margin-left: 3px;
    fill: #ffffff;
    transition: fill 220ms ease;
}

.video-player__play-btn:hover .video-player__play-icon {
    fill: #000000;
}

/* Video Control Bar */
.video-player__controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    z-index: 5;
    color: #ffffff;
}

.video-control-btn {
    background: transparent;
    border: none;
    padding: 6px;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: #ffffff;
    opacity: 0.85;
    transition: opacity 180ms ease, color 180ms ease;
}

.video-control-btn:hover {
    opacity: 1;
    color: var(--copper);
}

.video-control-time {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.video-control-progress {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    cursor: pointer;
    margin-inline: 6px;
    border-radius: 2px;
}

.video-control-progress__bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 25%;
    background: var(--copper);
    border-radius: 2px;
}

.video-control-progress__handle {
    position: absolute;
    top: 50%;
    left: 25%;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 150ms ease;
}

.video-control-progress:hover .video-control-progress__handle {
    background: var(--copper);
}


/* =========================================
   AUDIO SECTION (Clean Editorial Listening)
========================================= */

.audio-section {
    width: 100%;
    background: var(--black);
    color: var(--ivory);
    padding-block: clamp(5rem, 8vw, 8rem);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.audio-container {
    width: min(100% - 2.5rem, var(--max-width));
    margin-inline: auto;
}

.audio-header {
    margin-bottom: clamp(2.5rem, 4.5vw, 3.75rem);
}

.audio-header__title {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4.8vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.audio-header__title em {
    color: var(--copper);
    font-style: normal;
}

.audio-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.audio-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: center;
    padding: 1.4rem 0.5rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background-color 200ms ease;
    position: relative;
}

.audio-card:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.audio-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.audio-play {
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid rgba(201, 154, 72, 0.6);
    background: transparent;
    color: var(--copper);
    cursor: pointer;
    transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
    padding: 0;
    flex-shrink: 0;
}

.audio-play__icon {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 9px;
    border-color: transparent transparent transparent currentColor;
    margin-left: 2px;
}

.audio-card.is-playing .audio-play__icon {
    width: 9px;
    height: 10px;
    border: none;
    background:
        linear-gradient(currentColor, currentColor) 0 0 / 3px 100% no-repeat,
        linear-gradient(currentColor, currentColor) 6px 0 / 3px 100% no-repeat;
    margin-left: 0;
}

.audio-play:hover,
.audio-card.is-playing .audio-play {
    background: var(--copper);
    border-color: var(--copper);
    color: #000000;
}

.audio-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.audio-card__info h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -0.015em;
    line-height: 1.15;
}

.audio-card__info p {
    margin: 0;
    font-family: var(--sans);
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    color: rgba(244, 239, 231, 0.55);
}

.audio-card__scrubber {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    margin-top: 0.25rem;
}

.audio-card__track {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.audio-card__progress {
    height: 100%;
    width: 0%;
    background: var(--copper);
    border-radius: 2px;
    transition: width 250ms ease;
}

.audio-card.is-playing .audio-card__progress {
    background: var(--copper);
}

.audio-card__time {
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    font-weight: 500;
    color: rgba(244, 239, 231, 0.5);
    white-space: nowrap;
}

/* =========================================
   MOSAIC PHOTO GALLERY (REFERENCE GRID)
========================================= */

.mosaic-gallery {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    background: #080807;
    padding: clamp(0.75rem, 1.5vw, 1.5rem) 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 154, 72, 0.3) transparent;
}

.mosaic-gallery__container {
    width: 100%;
    min-width: 1080px;
}

.mosaic-gallery__grid {
    display: flex;
    gap: 6px;
    height: clamp(380px, 36vw, 560px);
    width: 100%;
    padding: 0 6px;
    background: #080807;
}

/* Base columns */
.mosaic-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
}

/* Proportional Column Widths matching reference layout */
.mosaic-col--1 {
    flex: 1.1;
}

.mosaic-col--2 {
    flex: 2.15;
}

.mosaic-col--3 {
    flex: 2.15;
}

.mosaic-col--4 {
    flex: 1.35;
}

.mosaic-col--5 {
    flex: 1.7;
}

.mosaic-col--6 {
    flex: 1.15;
}

/* Individual photo tile (sleek black placeholder space) */
.mosaic-item {
    position: relative;
    background-color: #0d0d0c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.mosaic-item:hover,
.mosaic-item:focus-visible {
    background-color: #151413;
    border-color: rgba(201, 154, 72, 0.35);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
    outline: none;
}

/* When actual photos are inserted */
.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 380ms cubic-bezier(0.2, 0, 0.2, 1), filter 380ms ease;
}

.mosaic-item:hover img {
    transform: scale(1.04);
}

/* Subtle magnifying glass hover cue (as in Column 5 of reference image) */
.mosaic-item__hover-icon {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
}

.mosaic-item:hover .mosaic-item__hover-icon,
.mosaic-item:focus-visible .mosaic-item__hover-icon {
    opacity: 1;
    transform: scale(1);
}

/* Col 1 vertical split */
.mosaic-item--c1-top {
    flex: 1.45;
}

.mosaic-item--c1-bottom {
    flex: 1;
}

/* Col 2 vertical split (subgroup top + wide base) */
.mosaic-subgroup--top {
    flex: 1.45;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
}

.mosaic-item--c2-top {
    flex: 1.85;
}

.mosaic-row-trio {
    flex: 1;
    display: flex;
    gap: 6px;
}

.mosaic-row-trio .mosaic-item {
    flex: 1;
    height: 100%;
}

.mosaic-item--c2-bottom {
    flex: 1;
}

/* Col 3 vertical split (large top + 2 side-by-side bottom) */
.mosaic-item--c3-top {
    flex: 1.45;
}

.mosaic-row-duo {
    flex: 1;
    display: flex;
    gap: 6px;
}

.mosaic-row-duo .mosaic-item {
    flex: 1;
    height: 100%;
}

/* Col 4 vertical split (top + 2 side-by-side bottom) */
.mosaic-item--c4-top {
    flex: 1.45;
}

/* Col 5: 100% full height single vertical span */
.mosaic-item--c5-tall {
    flex: 1;
    height: 100%;
}

/* Col 6 vertical split (top + bottom) */
.mosaic-item--c6-top {
    flex: 1.45;
}

.mosaic-item--c6-bottom {
    flex: 1;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem var(--gutter);

    background: var(--black);
    color: var(--ivory);

    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.site-footer a:hover {
    color: var(--terracotta);
}

@media (max-width: 600px) {
    .site-footer {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 0.85rem;
        padding: 2rem 1rem;
    }
}

/* =========================================
   PRIVATE CONTRACTOR AREA
========================================= */

.private-page {
    min-height: 100vh;
    background: #000;
    color: var(--ivory);
}

.auth-layout,
.contractor-layout {
    width: min(100% - 2.5rem, 1120px);
    margin-inline: auto;
}

.auth-layout {
    min-height: calc(100vh - 80px);
    display: grid;
    place-items: center;
    padding-block: 4rem;
}

.auth-card {
    width: min(100%, 470px);
    padding: clamp(2rem, 7vw, 4rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 2px solid var(--copper);
    background: #080808;
}

.auth-card__eyebrow,
.contractor-section__heading > p,
.contractor-document__type {
    margin: 0 0 1rem;
    color: var(--copper);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.auth-card h1,
.contractor-intro h1,
.contractor-section h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #fff;
}

.auth-card__intro,
.contractor-intro > p {
    margin: 1.5rem 0 2rem;
    color: rgba(244, 239, 231, 0.72);
    line-height: 1.7;
}

.auth-card form {
    display: grid;
    gap: 0.65rem;
}

.auth-card label {
    margin-top: 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.auth-card input {
    width: 100%;
    min-height: 48px;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font: inherit;
}

.auth-card input:focus-visible,
.auth-card__reset:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 3px;
}

.auth-card__submit {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.form-status {
    min-height: 1.2rem;
    margin: 0.5rem 0 0;
    color: #f5b09b;
    font-size: 0.75rem;
    line-height: 1.5;
}

.form-status[data-state="success"] { color: #b7dfa3; }

.auth-card__reset {
    margin-top: 1.25rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(244, 239, 231, 0.75);
    font: inherit;
    font-size: 0.72rem;
    text-decoration: underline;
    cursor: pointer;
}

.contractor-layout { padding-block: clamp(4rem, 9vw, 8rem); }
.contractor-intro { max-width: 650px; margin-bottom: clamp(4rem, 9vw, 7rem); }
.contractor-section { padding-block: 2.5rem; border-top: 1px solid rgba(255, 255, 255, 0.12); }
.contractor-section__heading { margin-bottom: 2rem; }
.contractor-section h2 { font-size: clamp(2.1rem, 5vw, 3.8rem); }

.contractor-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.contractor-photo { overflow: hidden; background: #111; }
.contractor-photo img { aspect-ratio: 4 / 5; object-fit: cover; }
.contractor-card__footer { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem; }
.contractor-card__footer h2,
.contractor-document h2 { font-family: var(--sans); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.03em; line-height: 1.4; }
.contractor-card__footer a { color: var(--copper); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }

.contractor-documents { display: grid; gap: 0.75rem; }
.contractor-document { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem; background: #111; }
.contractor-document__type { display: block; margin-bottom: 0.5rem; }
.contractor-empty-state { margin: 0; padding: 2rem; border: 1px dashed rgba(255, 255, 255, 0.2); color: rgba(244, 239, 231, 0.65); line-height: 1.6; }

/* =========================================
   TRIBUTO — EDITORIAL PRESENTATION
========================================= */

.tribute-page {
    background: #0a0a09;
    color: var(--ivory);
}

.tribute-shell {
    width: min(100% - 2.5rem, 1240px);
    margin-inline: auto;
}

.tribute-hero {
    position: relative;
    min-height: min(820px, calc(100vh - 80px));
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #111;
}

.tribute-hero__image,
.tribute-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.tribute-hero__image {
    object-fit: cover;
    object-position: center;
    filter: grayscale(0.15) contrast(1.06);
}

.tribute-hero__shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.08) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 65%);
}

.tribute-hero__content {
    position: relative;
    z-index: 1;
    padding-block: clamp(4rem, 9vw, 8.5rem);
}

.tribute-kicker {
    margin: 0 0 1rem;
    color: var(--copper);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.tribute-hero h1 {
    max-width: 680px;
    margin: 0;
    color: #fff;
    font-family: var(--serif);
    font-size: clamp(3.6rem, 8vw, 7.25rem);
    font-weight: 400;
    line-height: 0.84;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.tribute-hero__lead {
    max-width: 450px;
    margin: 2rem 0;
    color: #fff;
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.3vw, 2.1rem);
    line-height: 1.17;
}

.tribute-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.tribute-button--outline {
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #fff;
    background: transparent;
}

.tribute-feature { padding-block: clamp(5rem, 10vw, 9rem); background: #11100f; }
.tribute-feature__grid { display: grid; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }

.tribute-video-placeholder {
    display: grid;
    min-height: 340px;
    place-content: center;
    gap: 0.45rem;
    padding: 2rem;
    border: 1px solid rgba(201, 154, 72, 0.5);
    background: #080808;
    color: var(--ivory);
    text-align: center;
}

.tribute-video-placeholder span { color: var(--copper); font-size: 0.67rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.tribute-video-placeholder p { margin: 0; font-family: var(--serif); font-size: 1.8rem; }
.tribute-feature__copy { max-width: 510px; }

.tribute-feature__copy h2,
.tribute-gallery__intro h2 {
    margin: 0 0 1.5rem;
    color: #fff;
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4.5vw, 4.1rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.tribute-feature__statement { margin: -0.55rem 0 1.5rem; color: var(--copper); font-family: var(--serif); font-size: clamp(1.45rem, 2.3vw, 2rem); line-height: 1.12; }
.tribute-feature__copy > p:not(.tribute-kicker) { color: rgba(244, 239, 231, 0.74); line-height: 1.75; }
.tribute-feature__copy > .tribute-feature__statement { color: var(--copper); line-height: 1.12; }
.tribute-text-link { display: inline-block; margin-top: 1rem; color: var(--copper); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; }
.tribute-text-link span { margin-left: 0.5rem; }

.tribute-gallery { padding-block: clamp(5rem, 10vw, 9rem); background: #0a0a09; }
.tribute-gallery__intro { max-width: 620px; margin-bottom: 2.5rem; }
.tribute-gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.tribute-gallery__image { position: relative; min-height: 235px; margin: 0; overflow: hidden; background: #1a1a1a; }
.tribute-gallery__image--tall { grid-row: span 2; min-height: 478px; }
.tribute-gallery__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.tribute-gallery__image figcaption { position: absolute; right: 1rem; bottom: 0.9rem; color: #fff; font-size: 0.63rem; font-weight: 600; letter-spacing: 0.16em; text-shadow: 0 1px 8px #000; text-transform: uppercase; }

.tribute-venue {
    width: 100%;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.tribute-venue__container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    width: 100%;
    min-height: clamp(280px, 36vw, 480px);
}

.tribute-venue__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 5vw, 5rem) clamp(1.5rem, 5vw, 5rem);
    background: var(--black);
}

.tribute-venue__copy h2 {
    margin: 0;
    margin-bottom: 2.5rem;
    color: var(--ivory);
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.95;
}

.tribute-venue__place {
    margin: 0.75rem 0 1.25rem;
    color: var(--copper);
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.tribute-venue__text {
    margin: 0;
    color: rgba(244, 239, 231, 0.72);
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.75;
    max-width: 400px;
}

.tribute-venue__media {
    width: 100%;
    overflow: hidden;
    background: #080808;
    min-height: 260px;
}

.tribute-venue__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

@media (min-width: 768px) {
    .tribute-venue__container {
        grid-template-columns: 2fr 3fr;
    }
    .tribute-venue__media {
        min-height: 0;
    }
}

.tribute-testimonials { padding-block: clamp(5rem, 9vw, 8rem); background: var(--ivory); color: #151412; }
.tribute-testimonials__heading { max-width: 700px; margin-bottom: 3rem; }
.tribute-testimonials__heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 4.8rem); font-weight: 400; letter-spacing: -0.045em; line-height: 0.95; }
.tribute-testimonials__grid { display: grid; gap: 1rem; }
.tribute-testimonial { min-height: 210px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.5rem; border-top: 1px solid rgba(21, 20, 18, 0.25); }
.tribute-testimonial p { max-width: 300px; margin: 0; font-family: var(--serif); font-size: 1.6rem; line-height: 1.05; }
.tribute-testimonial span { color: rgba(21, 20, 18, 0.62); font-size: 0.63rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

.tribute-testimonial-video,
.tribute-vertical-video {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    aspect-ratio: 9 / 16;
    padding: 1.25rem;
    background: #11100f;
    color: #fff;
    border: 1px solid rgba(201, 154, 72, 0.38);
}

.tribute-testimonial-video { width: min(100%, 340px); margin-inline: auto; min-height: 500px; }
.tribute-testimonial-video span,
.tribute-vertical-video span { color: var(--copper); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.tribute-testimonial-video p { margin: 0.55rem 0 0; font-family: var(--serif); font-size: 1.75rem; line-height: 1; }

.tribute-videos { padding-block: clamp(5rem, 9vw, 8rem); background: #0a0a09; }
.tribute-videos__heading { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.25rem 2rem; margin-bottom: 2.5rem; }
.tribute-videos h2 { max-width: 550px; margin: 0; color: #fff; font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 4.8rem); font-weight: 400; letter-spacing: -0.045em; line-height: 0.95; }
.tribute-videos__controls { display: flex; gap: 0.55rem; flex-shrink: 0; }
.tribute-videos__control { display: grid; width: 2.7rem; height: 2.7rem; place-items: center; border: 1px solid rgba(201, 154, 72, 0.65); background: transparent; color: var(--ivory); font-size: 1.2rem; cursor: pointer; transition: background 180ms ease, color 180ms ease; }
.tribute-videos__control:hover { background: var(--copper); color: #15110a; }
.tribute-videos__viewport { position: relative; min-height: clamp(360px, 42vw, 540px); overflow: hidden; outline-offset: 0.5rem; }
.tribute-videos__grid { position: relative; width: 100%; height: clamp(360px, 42vw, 540px); }
.tribute-vertical-video { min-height: 250px; }
.tribute-video-card { position: absolute; top: 50%; left: 50%; z-index: calc(10 - var(--distance)); display: flex; width: clamp(185px, 23vw, 305px); min-height: 0; height: clamp(305px, 36vw, 465px); padding: 1.2rem; overflow: hidden; border: 1px solid rgba(255, 237, 185, 0.55); border-radius: 1rem; box-shadow: none; opacity: var(--card-opacity); transform: translate(-50%, -50%) translateX(var(--card-x)) scale(var(--card-scale)) rotateY(var(--card-tilt)); transform-origin: center bottom; transition: transform 480ms cubic-bezier(.22,.85,.32,1), opacity 320ms ease, filter 320ms ease; }
.tribute-video-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, 0.83) 2%, rgba(0, 0, 0, 0.06) 64%); pointer-events: none; }
.tribute-video-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(var(--card-brightness)) saturate(var(--card-saturation)); }
.tribute-video-card.is-active { cursor: pointer; }
.tribute-video-card:not(.is-active) { pointer-events: none; }
.tribute-vertical-video p { margin: 0.45rem 0 0; color: rgba(244, 239, 231, 0.76); font-family: var(--serif); font-size: 1.25rem; line-height: 1.05; }

.tribute-video-card__controls {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
    z-index: 15;
    display: flex;
    gap: 0.6rem;
    pointer-events: auto;
}

.tribute-video-card__btn {
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
    border: 1px solid rgba(255, 237, 185, 0.65);
    border-radius: 50%;
    background: rgba(10, 10, 9, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--ivory);
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.tribute-video-card__btn svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tribute-video-card__btn:hover {
    background: var(--copper);
    color: #15110a;
    transform: scale(1.08);
}

@media (max-width: 600px) {
    .tribute-videos__heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .tribute-videos__controls {
        justify-content: flex-start;
    }

    .tribute-video-card__btn {
        width: 3.4rem;
        height: 3.4rem;
    }

    .tribute-video-card__btn svg {
        width: 1.6rem;
        height: 1.6rem;
    }
}

@media (min-width: 768px) {
    .tribute-videos__viewport,
    .tribute-videos__grid {
        min-height: clamp(440px, 48vw, 620px);
        height: clamp(440px, 48vw, 620px);
    }

    .tribute-video-card {
        width: clamp(235px, 28vw, 370px);
        height: clamp(390px, 44vw, 565px);
    }
}

/* =========================================
   BOOKING BANNER
========================================= */

.tribute-booking {
    position: relative;
    width: 100%;
    min-height: clamp(380px, 48vw, 580px);
    overflow: hidden;
    background: #0a0a09;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tribute-booking__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.tribute-booking__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    filter: brightness(0.38) saturate(0.85);
}

.tribute-booking__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
    max-width: 680px;
    margin-inline: auto;
}

.tribute-booking__kicker {
    margin: 0 0 1.5rem;
    color: var(--copper);
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.tribute-booking__content {
    width: 100%;
}

.tribute-booking__content h2 {
    margin: 0 0 1.25rem;
    color: var(--ivory);
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.92;
}

.tribute-booking__content p {
    max-width: 480px;
    margin: 0 auto 2.5rem;
    color: rgba(244, 239, 231, 0.72);
    font-family: var(--sans);
    font-size: 0.82rem;
    line-height: 1.65;
}

.tribute-booking__button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--copper);
    color: var(--ivory);
    font: var(--sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background 200ms ease, color 200ms ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.tribute-booking__button:hover {
    background: var(--copper-hover);
}

.tribute-booking__button span {
    margin-left: 0.5rem;

    font: var(--sans);
    font-size: 1rem;
    font-weight: 400;
    line-height: 0.5;
}


.tribute-closing { padding-block: clamp(4rem, 8vw, 7rem); background: var(--ivory); color: #111; }
.tribute-closing .tribute-shell { display: flex; flex-direction: column; gap: 1.75rem; align-items: flex-start; }
.tribute-closing p { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(2.7rem, 5.5vw, 5.25rem); font-weight: 400; line-height: 0.92; letter-spacing: -0.045em; }

@media (min-width: 760px) {
    .tribute-feature__grid { grid-template-columns: 1.1fr 0.9fr; }
    .tribute-gallery__grid { grid-template-columns: 1.1fr 1fr 1fr; }
    .tribute-gallery__image--tall { grid-row: auto; min-height: 460px; }
    .tribute-gallery__image { min-height: 460px; }
    .tribute-closing .tribute-shell { flex-direction: row; align-items: end; justify-content: space-between; gap: 3rem; }
    .tribute-venue__grid { grid-template-columns: 0.8fr 1.2fr; }
    .tribute-venue__image { min-height: 520px; }
    .tribute-testimonials__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .tribute-videos__grid { display: block; }
    .tribute-vertical-video { min-height: 360px; }
    .tribute-booking { min-height: 430px; }
    .tribute-booking__content { width: min(100%, 590px); margin-left: 0; }
}


/* =========================================
   TRIBUTO PAGE STYLES
========================================= */

.page-tributo {
    background: var(--black);
    color: var(--ivory);
}

.tributo-container {
    width: min(100% - 2.5rem, 1380px);
    margin-inline: auto;
}

/* 1. Hero Section */
.tributo-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: clamp(6rem, 12vw, 10rem) 0;
    overflow: hidden;
    background: #0b0b0a;
}

.tributo-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.tributo-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: brightness(0.65) contrast(1.05);
}

.tributo-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(11, 11, 10, 0.95) 0%, rgba(11, 11, 10, 0.8) 45%, rgba(11, 11, 10, 0.4) 100%),
        linear-gradient(to top, #0b0b0a 0%, transparent 35%);
}

.tributo-hero__container {
    position: relative;
    z-index: 2;
    width: min(100% - 2.5rem, 1380px);
    margin-inline: auto;
}

.tributo-hero__content {
    max-width: 620px;
}

.eyebrow--gold {
    color: var(--copper);
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    font-weight: 700;
}

.tributo-hero__title {
    font-family: var(--serif);
    font-size: clamp(3.4rem, 8vw, 6.8rem);
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin: 0 0 1.5rem;
    text-transform: uppercase;
}

.tributo-hero__tagline {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 400;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1.25rem;
}

.gold-highlight {
    color: var(--copper);
    font-style: normal;
}

.tributo-hero__desc {
    font-size: clamp(0.9rem, 1.05vw, 1.02rem);
    line-height: 1.7;
    color: rgba(244, 239, 231, 0.78);
    margin: 0 0 2.5rem;
    max-width: 480px;
}

.tributo-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

/* 2. O Espetáculo */
.tributo-about {
    background: #0b0b0a;
    padding-block: clamp(5rem, 8vw, 8rem);
}

.tributo-about__grid {
    display: grid;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.video-player-card--tributo {
    border-color: rgba(201, 154, 72, 0.2);
}

.tributo-about__title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: #ffffff;
    margin: 0 0 1.5rem;
    font-weight: 500;
}

.tributo-about__body {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.25rem;
}

.tributo-about__body p {
    margin: 0;
    font-size: clamp(0.88rem, 1.05vw, 0.98rem);
    line-height: 1.7;
    color: rgba(244, 239, 231, 0.75);
}

/* 3. 4 Pilares */
.tributo-pillars {
    background: #0b0b0a;
    padding-bottom: clamp(5rem, 8vw, 8rem);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.pillar-card {
    display: flex;
    flex-direction: column;
    background: #121110;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pillar-card:hover {
    border-color: rgba(201, 154, 72, 0.35);
}

.pillar-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #181716;
    overflow: hidden;
}

.pillar-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: rgba(201, 154, 72, 0.6);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
}

.pillar-card__info {
    padding: 1.25rem;
}

.pillar-card__title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--copper);
    margin: 0 0 0.5rem;
}

.pillar-card__desc {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(244, 239, 231, 0.7);
}

/* 4. Formatos (Light Ivory Section) */
.tributo-formats {
    background: var(--ivory);
    color: var(--black);
    padding-block: clamp(5rem, 9vw, 8.5rem);
}

.tributo-formats__heading {
    text-align: center;
    max-width: 680px;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.tributo-formats__heading h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 500;
    margin: 0;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
}

.format-card {
    background: #11100f;
    color: var(--ivory);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.format-card__header {
    padding: clamp(1.75rem, 3vw, 2.5rem);
}

.format-card__header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--copper);
    margin: 0 0 0.75rem;
}

.format-card__header p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(244, 239, 231, 0.75);
}

.format-card__media {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #1a1918;
    overflow: hidden;
}

.format-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(201, 154, 72, 0.6);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
}

/* 5. Para Diferentes Palcos e Programações */
.tributo-venues {
    background: #0b0b0a;
    color: var(--ivory);
    padding-block: clamp(5rem, 8vw, 8.5rem);
}

.tributo-venues__grid {
    display: grid;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.tributo-venues__title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--copper);
    margin: 0 0 2rem;
    font-weight: 500;
}

.venues-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.venue-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: rgba(244, 239, 231, 0.9);
}

.venue-icon {
    font-size: 1.1rem;
}

.venues-note {
    font-size: 0.85rem;
    line-height: 1.65;
    color: rgba(244, 239, 231, 0.55);
    margin: 0;
    max-width: 440px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.tributo-venues__media {
    width: 100%;
}

.venues-media__frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.venues-media__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venues-media__overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

/* 7. Case Study: Casino Figueira */
.tributo-case {
    background: #080807;
    color: var(--ivory);
    padding-block: clamp(4.5rem, 7vw, 7rem);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tributo-case__grid {
    display: grid;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
}

.tributo-case__venue {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1;
    color: #ffffff;
    margin: 0 0 0.4rem;
    font-weight: 500;
}

.tributo-case__city {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--copper);
    margin: 0 0 1.5rem;
}

.tributo-case__desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(244, 239, 231, 0.72);
    margin: 0;
    max-width: 420px;
}

.tributo-case__media {
    width: 100%;
}

.tributo-case__frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.tributo-case__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tributo-case__overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}


/* =========================================
   DESKTOP MEDIA QUERIES (>= 768px / 900px)
========================================= */

@media (min-width: 768px) {

    .site-header {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: clamp(2rem, 4vw, 5rem);

        min-height: 88px;
        padding-inline: clamp(2rem, 5vw, 5rem);
    }

    .logo {
        justify-self: start;
        width: 180px;
    }

    /* Desktop Nav — reset mobile serif, back to clean sans */
    .main-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: clamp(1.75rem, 2.5vw, 2.75rem);
        margin: 0;
        padding: 0;
        background: transparent;
        border: none;
        opacity: 1;
        visibility: visible;
    }

    .main-nav .nav-link,
    .main-nav a {
        font-family: var(--sans);
        font-size: .88rem;
        font-style: normal;
        font-weight: 400;
        letter-spacing: 0.06em;
        color: var(--ivory);
        border-bottom: none;
        padding: 0;
        line-height: normal;
        white-space: nowrap;
        transition: color var(--ease);
    }

    .main-nav .nav-link:hover,
    .main-nav a:hover,
    .main-nav .nav-link.is-active {
        color: var(--copper);
    }

    .site-header--dark .main-nav .nav-link,
    .site-header--dark .main-nav a {
        color: var(--ivory);
        border-bottom: none;
    }

    .site-header--dark .main-nav .nav-link:hover,
    .site-header--dark .main-nav a:hover {
        color: var(--copper);
    }

    /* Right header actions */
    .header-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .main-nav__actions {
        display: none;
    }

    .menu-toggle {
        display: none;
    }


    .intro {
        position: relative;
        min-height: calc(100vh - 88px);
        overflow: hidden;
        background: var(--black);
    }

    .intro__media {
        position: relative;
        width: 100%;
        height: calc(100vh - 88px);
        overflow: hidden;
    }

    .intro__media::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(90deg,
                rgba(0, 0, 0, 0.45),
                transparent 65%),
            linear-gradient(0deg,
                rgba(0, 0, 0, 0.7),
                transparent 55%);
        pointer-events: none;
    }

    .intro__media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .intro__overlay {
        position: absolute;
        z-index: 2;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
        max-width: 800px;
    }

    .intro__artist-name {
        margin: 0 0 1.5rem;
        color: var(--ivory);
        font-family: var(--serif);
        font-size: clamp(3.2rem, 6vw, 6.5rem);
        font-weight: 400;
        line-height: 0.92;
        letter-spacing: -0.04em;
        white-space: normal;
    }

    /* Audio Desktop: 3 Columns Grid (Play, Title+Subtitle, Scrubber) */
    .audio-card {
        grid-template-columns: auto minmax(200px, 320px) 1fr;
        gap: 2.5rem;
        padding: 1.4rem 0.5rem;
    }

    .audio-card__scrubber {
        grid-column: auto;
        margin-top: 0;
    }

    /* Desktop Dropdown */
    .nav-dropdown {
        position: relative;
        display: inline-flex;
        align-items: center;
    }

    /* Toggle same size/weight as sibling links */
    .nav-dropdown__toggle {
        font-family: var(--sans);
        font-size: 0.88rem;
        font-style: normal;
        font-weight: 400;
        letter-spacing: 0.06em;
        color: var(--ivory);
        border-bottom: none;
        padding: 0;
        line-height: normal;
        transition: color var(--ease);
    }

    .nav-dropdown__toggle:hover {
        color: var(--copper);
    }

    .site-header--dark .nav-dropdown__toggle {
        color: var(--ivory);
    }

    .site-header--dark .nav-dropdown__toggle:hover {
        color: var(--copper);
    }

    /* Desktop dropdown panel */
    .nav-dropdown__menu {
        position: absolute;
        top: calc(100% + 1.2rem);
        left: 50%;
        transform: translateX(-50%);

        min-width: 320px;
        min-height: 110px;
        padding: 1.25rem 0 0 1.25rem;

        display: flex;
        flex-direction: column;
        gap: 1.1rem;

        background: var(--black);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: 2px solid var(--copper);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 180ms ease, visibility 180ms ease;
        z-index: 100;
    }

    .nav-dropdown:hover .nav-dropdown__menu,
    .nav-dropdown:focus-within .nav-dropdown__menu,
    .nav-dropdown.is-open .nav-dropdown__menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-dropdown__item {
        font-family: var(--sans);
        font-size: 0.8rem;
        font-weight: 400;
        letter-spacing: 0.04em;
        color: rgba(244, 239, 231, 0.8);
        padding: 0.85rem 1.4rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: color 150ms ease, background-color 150ms ease;
    }

    .nav-dropdown__item:last-child {
        border-bottom: none;
    }

    .nav-dropdown__item:hover {
        color: var(--copper);
    }

    .nav-dropdown__item:hover strong {
        color: var(--copper);
    }

    /* Tributo Desktop Grids (>=768px) */
    .pillars-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: clamp(1rem, 2vw, 1.8rem);
    }

    .formats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(1.5rem, 3vw, 3rem);
    }

}

@media (min-width: 900px) {

    /* Video Section Desktop: Title on top, player full-width below */
    .video-showcase-container {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        max-width: min(100% - 2.5rem, var(--max-width));
    }

    .video-showcase__content {
        max-width: 680px;
        padding-right: 0;
    }

    .video-showcase__player-wrapper {
        width: 100%;
    }

    /* About Hero Desktop: 50% Text / 50% Image Split (Seamless Flow) */
    .about-hero__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 480px;
    }

    .about-hero__text {
        padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 5vw, 5.5rem);
    }

    .about-hero__media {
        min-height: 100%;
        height: 100%;
    }

    .about-hero__fade {
        background: linear-gradient(to right,
                #000000 0%,
                rgba(0, 0, 0, 0.75) 15%,
                transparent 32%);
    }

    /* Projects Showcase Desktop Split */
    .project-banner {
        min-height: 600px;
    }

    /* Tributo: image on the RIGHT, text on the left (default) */
    #proj-tributo .project-banner__media {
        left: auto;
        right: 0;
        width: 62%;
    }

    #proj-tributo .project-banner__fade {
        background: linear-gradient(90deg,
                #000000 0%,
                #000000 14%,
                rgba(0, 0, 0, 0.9) 28%,
                rgba(0, 0, 0, 0.35) 55%,
                transparent 80%),
            linear-gradient(0deg,
                rgba(0, 0, 0, 0.45) 0%,
                transparent 30%);
    }

    #proj-tributo .project-banner__container {
        padding-inline: clamp(2rem, 5vw, 5.5rem);
    }

    /* Piano & Voz: image on the LEFT, text on the right */
    #proj-piano-voz .project-banner__media {
        left: 0;
        right: auto;
        width: 62%;
    }

    #proj-piano-voz .project-banner__fade {
        background: linear-gradient(-90deg,
                #000000 0%,
                #000000 14%,
                rgba(0, 0, 0, 0.9) 28%,
                rgba(0, 0, 0, 0.35) 55%,
                transparent 80%),
            linear-gradient(0deg,
                rgba(0, 0, 0, 0.45) 0%,
                transparent 30%);
    }

    #proj-piano-voz .project-banner__container {
        padding-inline: clamp(2rem, 5vw, 5.5rem);
        display: flex;
        justify-content: flex-end;
    }


    /* Tributo Desktop Grids (>=900px) */
    .tributo-about__grid {
        grid-template-columns: 1.15fr 1fr;
        gap: clamp(3rem, 6vw, 6rem);
    }

    .tributo-venues__grid {
        grid-template-columns: 1fr 1.2fr;
        gap: clamp(3rem, 6vw, 6rem);
    }

    .tributo-case__grid {
        grid-template-columns: 0.9fr 1.3fr;
        gap: clamp(3rem, 6vw, 6rem);
    }

}
