.home-hero,
.home-experience-section,
.home-legacy-section {
    --home-black: #000;
    --home-white: #fff;
    --home-gold: #c09d5b;
    --home-gold-light: rgb(238, 207, 144);
    --home-gold-soft: rgba(192, 157, 91, 0.2);
    --home-gold-glow: rgba(192, 157, 91, 0.35);
    --home-gray-300: #cecece;
}

.home-hero {
    position: relative;
    /* min-height: min(55vh, 720px);
    min-height: 660px; */
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: var(--home-black);
}

.home-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.25) 20%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.62) 73%,
        rgba(0, 0, 0, 0.95) 84%,
        rgb(0, 0, 0) 100%
    );
}

.home-hero-glow {
    position: absolute;
    inset: 0;
    /* background-image: radial-gradient(
        ellipse 1100px 700px at top,
        rgba(192, 157, 91, 0.14),
        transparent 70%
    ); */
    animation: homeHeroGlow 8s ease-in-out infinite;
}

.home-hero-inner {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 150px 0 100px;
    box-sizing: border-box;
    text-align: left;
    animation: homeHeroFadeUp 900ms ease-out both;
}

.home-hero-inner-logo {
    max-width: 60%;
    margin: 0 auto;
    display: block;
    position: relative;
    top: 40px;
    line-height: 0;
}

.logo-shine__img {
    display: block;
    width: 100%;
    height: auto;
}

.logo-shine__clip {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.logo-shine__band {
    position: absolute;
    top: -40%;
    bottom: -40%;
    left: -40%; /* starting position, now driven by keyframes below */
    width: 34%;
    transform: rotate(18deg); /* tilt only — position no longer lives here */
    background: linear-gradient(
        100deg,
        rgba(255, 240, 205, 0) 0%,
        rgba(255, 242, 210, 0.5) 48%,
        rgba(255, 250, 232, 0.75) 53%,
        rgba(255, 242, 210, 0.44) 58%,
        rgba(255, 240, 205, 0) 100%
    );
    mix-blend-mode: screen;
}

/* Hero logo: 2.5s shine, ~2.1s pause, 4.6s loop */
.logo-shine__band--hero {
    animation: shine-sweep-hero 4.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes shine-sweep-hero {
    0% {
        left: -40%;
    }
    55%,
    100% {
        left: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-shine__band {
        animation: none;
    }
}

.home-eyebrow--light {
    color: var(--color-gold);
    text-shadow:
        rgba(0, 0, 0, 0.98) 0px 1px 12px,
        rgba(0, 0, 0, 0.9) 0px 0px 30px;
}
.home-eyebrow {
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    white-space: nowrap;
}

.home-hero-eyebrow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    padding: 10px 0;
    background: radial-gradient(
        60% 260%,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.6) 55%,
        rgba(0, 0, 0, 0) 100%
    );
}

.home-hero-line {
    width: clamp(24px, 6vw, 60px);
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(201, 162, 77, 0) 0%,
        rgb(201, 162, 77) 100%
    );
}

.home-hero-line--right {
    background: linear-gradient(
        90deg,
        rgb(201, 162, 77) 0%,
        rgba(201, 162, 77, 0) 100%
    );
}

.home-hero-title {
    margin: 0 auto;
    font-weight: 400;
    font-size: clamp(44px, 9vw, 58px);
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--color-white);
    font-family: "Anziano Pro", serif;
    text-shadow: rgba(0, 0, 0, 0.9) 0px 4px 40px;
}

.home-hero-subtitle {
    margin: 18px 0 0;
    font-size: clamp(15px, 2vw, 19px);
    letter-spacing: 0.04em;
    color: var(--home-gold-light);
    text-shadow:
        rgba(0, 0, 0, 0.98) 0px 1px 12px,
        rgba(0, 0, 0, 0.9) 0px 0px 30px;
}

@keyframes homeHeroGlow {
    0%,
    100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@keyframes homeHeroFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-intro-section,
.home-performance-style-section,
.home-experience-section,
.home-legacy-section,
.home-booking-section {
    padding: 5rem 0;
}

.home-lead {
    font-size: 1.35rem;
    font-family: "Anziano Pro", serif;
    color: #c09d5b;
    margin-bottom: 1.5rem;
}

.home-intro-copy,
.home-performance-style-copy,
.home-legacy-copy,
.home-booking-copy {
    max-width: 100%;
    margin: 0 auto;
}

.home-intro-copy p,
.home-performance-style-copy p,
.home-legacy-copy p,
.home-booking-copy p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.home-section-header {
    margin-bottom: 1.5rem;
}

.home-heading {
    display: inline-block;
    font-family: "Anziano Pro", serif;
    font-size: 1.75rem;
    letter-spacing: 0.02em;
    color: #fff;
}

.home-rule {
    width: 60px;
    height: 2px;
    background-color: #c09d5b;
    margin: 1rem auto 1.5rem;
}

.home-section-intro {
    max-width: 75%;
    margin: 0;
    color: #fff;
    opacity: 0.8;
}

.home-performance-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: clamp(22px, 3.5vh, 34px);
}

.home-performance-heading {
    margin: 0;
    font-weight: 400;
    font-family: "Anziano Pro", serif;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.1;
    color: var(--color-white);
    flex-shrink: 0;
}

.home-performance-rule {
    flex: 1 1 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--home-gold) 0%,
        rgba(192, 157, 91, 0.06) 100%
    );
}

.home-experience-section {
    border-top: 1px solid var(--story-border-soft);
    background: linear-gradient(
        rgba(238, 207, 144, 0.035) 0%,
        rgba(8, 7, 10, 0) 42%
    );
}

.home-experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (max-width: 991.98px) {
    .home-experience-grid {
        grid-template-columns: 1fr;
    }
}

.home-experience-item {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.home-performance-card {
    display: block;
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid var(--home-gold-soft);
    background: var(--home-black);
    text-decoration: none;
    transition:
        border-color 300ms ease,
        transform 300ms ease,
        box-shadow 300ms ease;
}

.home-performance-card:hover {
    border-color: var(--home-gold);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.home-performance-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-performance-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0) 34%,
        rgba(0, 0, 0, 0.82) 76%,
        rgba(0, 0, 0, 0.96) 100%
    );
}

.home-performance-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: clamp(18px, 2.4vw, 26px);
}

.home-performance-eyebrow {
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--home-gray-300);
}

.home-performance-title {
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.14;
    color: var(--home-white);
    font-family: "Anziano Pro", serif;
}

.home-performance-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--home-gold);
}

.home-experience-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.72;
    color: #fff;
    opacity: 0.85;
}

.home-suited-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 3rem;
    max-width: 700px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 2rem;
}

@media (max-width: 575.98px) {
    .home-suited-list {
        grid-template-columns: 1fr;
    }
}

.home-suited-list li {
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.home-suited-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    background-color: #c09d5b;
    transform: rotate(45deg);
}

.home-cta-section {
    background: var(--color-black);
    background-image: radial-gradient(
        ellipse at bottom,
        rgba(192, 157, 91, 0.12),
        transparent 55%
    );
    padding: 0px 24px 96px;
}

.home-booking-cta {
    text-align: center;
}

.home-btn-primary {
    padding: 18px 46px;
    color: var(--color-black) !important;
    font-size: 17px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--color-gold);
    border: 1px solid rgba(192, 157, 91, 0.4);
    border-radius: 999px;
    transition:
        box-shadow 300ms ease,
        transform 300ms ease;
}

.home-btn-primary:hover {
    transform: translateY(-2px);
    color: var(--color-gold) !important;
    text-decoration: none;
    background: var(--color-white);
}

@media (max-width: 991.98px) {
    .home-intro-section,
    .home-performance-style-section,
    .home-experience-section,
    .home-legacy-section,
    .home-booking-section {
        padding: 2.5em 0;
    }
}

@media (max-width: 767.98px) {
    .home-intro-section,
    .home-performance-style-section,
    .home-experience-section,
    .home-legacy-section,
    .home-booking-section {
        padding: 2.5em 0;
    }

    .home-section-intro {
        max-width: 100%;
    }
}

/* ==========================================================================
		  Media Queries: iPad
		 ========================================================================== */

/* iPad [landscape] */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .home-hero-inner-logo {
        max-width: 320px !important;
        margin: 13em 2.5em 0 !important;
    }
}

/* iPad [portrait] */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
}

/* iPad 3/4 [landscape] */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
    .home-hero-inner-logo {
        max-width: 320px !important;
        margin: 13em 2.5em 0 !important;
    }
}

/* iPad 3/4 [portrait] */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
}

.home-video-section {
    padding-top: 0;
    padding-bottom: 0;
}

.home-video-btn {
    width: auto;
    padding: 0.5em 2em;
    font-size: 1.1rem;
    display: inline-block;
    position: relative;
    text-decoration: none;
    font-weight: 700;
    color: var(--color-black) !important;
    text-align: center;
    text-transform: uppercase;
    -webkit-border-radius: var(--radius-btn);
    -moz-border-radius: var(--radius-btn);
    border-radius: var(--radius-btn);
    background: var(--color-gold);
    border: 1px solid rgba(192, 157, 91, 0.4);
    -moz-transition: color 0s linear 0s;
    -webkit-transition: color 0s linear 0s;
    -o-transition: color 0s linear 0s;
}

.home-video-btn:hover {
    color: var(--color-gold) !important;
    background: var(--color-white) !important;
    text-decoration: none !important;
    border: var(--color-gold) 1px solid !important;
}

.home-video-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #c09d5b;
    color: #000;
    font-size: 12px;
}

.home-video-btn:hover .home-video-btn-icon {
    background: #000;
    color: #c09d5b;
}

/* ---- Video modal (fullscreen, borderless) ---- */

.home-video-modal .modal-content {
    background: #000;
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: 100%;
}

.home-video-modal .modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 100%;
}

.home-video-modal .responsive-iframe-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    aspect-ratio: 16 / 9;
    background: #000;
}

.home-video-modal .responsive-iframe-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.home-video-modal-close {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1060;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    border: none;
    border-radius: 999px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    transition:
        background-color 200ms ease,
        transform 200ms ease,
        box-shadow 200ms ease;
}

.home-video-modal-close svg {
    position: relative;
    top: 2px;
    color: var(--color-black);
}

.home-video-modal-close:hover {
    background: var(--color-white);
    transform: translateX(-50%) scale(1.08);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.6);
}

.home-video-modal-close:hover svg {
    color: var(--color-gold);
}

@media (max-width: 575.98px) {
    .home-video-modal-close {
        top: -18px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .home-video-modal-close svg {
        top: 1px;
    }
}

/* Caption under the video */

.home-video-modal-caption {
    margin: 18px 4px 0;
    padding: 0 4px;
    text-align: center;
    font-family: "Anziano Pro", serif;
    font-style: italic;
    font-size: clamp(14px, 1.8vw, 17px);
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: var(--home-gold-light, #eecf90);
}

@media (max-width: 575.98px) {
    .home-video-modal-caption {
        font-size: 14px;
    }
}

/* =========================================
   Hero image — feather left & bottom (desktop)
   ========================================= */
.home-hero-visual {
    position: relative;
}

.hero-home__img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 0;
}

.home-hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        ellipse 95% 90% at 50% 50%,
        transparent 78%,
        var(--home-black) 100%
    );
}

.home-hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    box-shadow: inset 0 0 min(3vw, 36px) min(1vw, 16px) var(--home-black);
}

.home-hero-visual::after {
    background:
        radial-gradient(
            ellipse 95% 90% at 50% 50%,
            transparent 78%,
            var(--home-black) 100%
        ),
        linear-gradient(to bottom, transparent 98%, var(--home-black) 100%),
        linear-gradient(to right, transparent 97%, var(--home-black) 100%);
}

/* =========================================
   Mobile: image becomes the backdrop,
   logo sits centered on top of it
   ========================================= */
@media (max-width: 991.98px) {
    .home-hero-inner .row {
        position: relative;
        min-height: 65vh;
    }

    .home-hero-visual {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .hero-home__img {
        width: 100%;
        object-fit: cover;
    }

    .home-hero-visual::after {
        background: linear-gradient(
            to bottom,
            var(--home-black) 0%,
            transparent 8%,
            transparent 35%,
            rgba(0, 0, 0, 0.5) 65%,
            var(--home-black) 100%
        );
    }

    .home-hero-visual::before {
        box-shadow: inset 1px 1px 8px 2vw var(--home-black);
    }

    .home-hero-logo-col {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 65vh;
    }

    .home-hero-logo-col::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.6) 35%,
            transparent 75%
        );
    }

    .home-hero-inner-logo {
        position: relative;
        z-index: 1;
        margin: 16em auto 0px;
        top: 100px;
        max-width: 50% !important;
    }
}

@media (max-width: 768px) {
    .home-hero-inner .row {
        position: relative;
        min-height: 65vh;
    }

    .home-hero-visual {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    .hero-home__img {
        width: 100%;
        object-fit: cover;
    }

    .home-hero-visual::after {
        background: linear-gradient(
            to bottom,
            var(--home-black) 0%,
            transparent 8%,
            transparent 35%,
            rgba(0, 0, 0, 0.5) 65%,
            var(--home-black) 100%
        );
    }

    .home-hero-visual::before {
        box-shadow: inset 1px 1px 8px 2vw var(--home-black);
    }

    .home-hero-logo-col {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 65vh;
    }

    .home-hero-logo-col::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.6) 35%,
            transparent 75%
        );
    }

    .home-hero-inner-logo {
        position: relative;
        z-index: 1;
        max-width: 65% !important;
        margin: 4em auto 0;
        top: 100px;
    }
}
