:root {
    --bg: #faf7f1;
    --white: #ffffff;
    --text: #241818;
    --muted: #766b63;
    --gold: #d6ad45;
    --soft-gold: #f2dfaa;
    --beige: #efe5d6;
    --border: rgba(36, 24, 24, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--bg);
    color: var(--text);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}


/* Header */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 86px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 50;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: 0.35s ease;
}

.logo-wrap img {
    width: 150px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--text);
    margin: 6px auto;
}


/* Hero */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 6% 80px;
}

.hero-slider,
.hero-slide,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.2s ease, transform 5s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.eyebrow,
.section-label {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 18px;
}

.hero h1,
.section h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    line-height: 0.95;
    color: var(--text);
}

.hero h1 {
    font-size: clamp(58px, 9vw, 118px);
    max-width: 760px;
}

.hero-subtitle {
    max-width: 560px;
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.9;
    color: var(--muted);
}

.hero-actions {
    margin-top: 38px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    border-radius: 100px;
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--text);
    color: var(--white);
    border: 1px solid var(--text);
}

.btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(214, 173, 69, 0.28);
}

.btn-outline:hover {
    background: var(--text);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline:hover {
    background: var(--text);
    color: var(--white);
}

.slider-dots {
    position: absolute;
    z-index: 3;
    left: 6%;
    bottom: 42px;
    display: flex;
    gap: 12px;
}

.slider-dots button {
    width: 34px;
    height: 3px;
    border: none;
    background: rgba(36, 24, 24, 0.25);
    cursor: pointer;
}

.slider-dots button.active {
    background: var(--gold);
}


/* Sections */

.section {
    padding: 110px 6%;
}

.about-section {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.section h2 {
    font-size: clamp(42px, 6vw, 76px);
}

.section p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--muted);
    margin-top: 22px;
}

.event-section {
    background: var(--white);
}

.event-card {
    border: 1px solid var(--border);
    background: linear-gradient(135deg, #fff, #fbf3e5);
    padding: 54px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.event-details {
    display: grid;
    gap: 14px;
}

.event-details span {
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 14px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gallery-item {
    height: 440px;
    overflow: hidden;
    background: var(--beige);
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.exhibit-section {
    text-align: center;
    background: var(--text);
    color: var(--white);
}

.exhibit-section h2 {
    color: var(--white);
}

.exhibit-section p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.72);
}

.exhibit-section .btn {
    margin-top: 34px;
    background: var(--gold);
    border-color: var(--gold);
    color: var(--text);
}


/* Animation */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Premium Mobile Menu */

@media (max-width: 900px) {
    .menu-btn {
        position: relative;
        z-index: 100;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }
    .menu-btn span {
        margin: 0;
        transition: 0.3s ease;
    }
    .menu-btn.active span:first-child {
        transform: rotate(45deg) translate(4px, 4px);
    }
    .menu-btn.active span:last-child {
        transform: rotate(-45deg) translate(4px, -4px);
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        width: 100%;
        height: 100vh;
        background: rgba(250, 247, 241, 0.96);
        backdrop-filter: blur(22px);
        z-index: 90;
        padding: 95px 9% 40px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 22px;
        transition: 0.55s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto;
        border-left: none;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(34px, 9vw, 48px);
        line-height: 1;
        letter-spacing: 0;
        text-transform: none;
        color: var(--text);
        opacity: 0;
        transform: translateX(30px);
        transition: 0.45s ease;
    }
    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }
    .nav-links.active a:nth-child(1) {
        transition-delay: 0.15s;
    }
    .nav-links.active a:nth-child(2) {
        transition-delay: 0.22s;
    }
    .nav-links.active a:nth-child(3) {
        transition-delay: 0.29s;
    }
    .nav-links.active a:nth-child(4) {
        transition-delay: 0.36s;
    }
    .nav-links.active a:nth-child(5) {
        transition-delay: 0.43s;
    }
    .nav-links.active a:nth-child(6) {
        transition-delay: 0.50s;
    }
    .nav-links a::after {
        bottom: -6px;
    }
}


/* Premium Mixed Media Gallery */

.media-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 18px;
}

.media-item {
    position: relative;
    overflow: hidden;
    background: var(--beige);
}

.media-item img,
.media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.media-item:hover img,
.media-item:hover video {
    transform: scale(1.06);
}

.media-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, transparent, rgba(0, 0, 0, 0.18));
    opacity: 0;
    transition: 0.4s ease;
}

.media-item:hover::after {
    opacity: 1;
}

.media-item.tall {
    grid-row: span 2;
}

.media-item.wide {
    grid-column: span 2;
}

.video-item::before {
    content: "REEL";
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    padding: 7px 13px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    font-size: 10px;
    letter-spacing: 1.5px;
    border-radius: 100px;
}

@media (max-width: 900px) {
    .media-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 420px;
    }
    .media-item.tall,
    .media-item.wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}


/* Premium Event Section */

.event-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.premium-event-card {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 40px;
    padding: 54px;
    background: linear-gradient( 135deg, #ffffff, #f9f2e8);
    border: 1px solid rgba(214, 173, 69, 0.18);
}

.event-badge {
    display: inline-flex;
    padding: 10px 18px;
    background: rgba(214, 173, 69, 0.12);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.event-left h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.05;
    font-weight: 500;
    color: var(--text);
    max-width: 700px;
}

.event-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.meta-box {
    padding: 22px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.meta-box small {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.meta-box strong {
    font-size: 15px;
    color: var(--text);
}

.event-address {
    margin-top: 24px;
    max-width: 640px;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(214, 173, 69, 0.18);
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.countdown-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    color: var(--gold);
    margin-bottom: 28px;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.countdown-grid div {
    padding: 24px 16px;
    background: var(--white);
    text-align: center;
}

.countdown-grid span {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 56px;
    line-height: 1;
    color: var(--text);
}

.countdown-grid small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
}

@media (max-width: 900px) {
    .event-top {
        flex-direction: column;
        align-items: flex-start;
    }
    .premium-event-card {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    .event-meta {
        grid-template-columns: 1fr;
    }
    .countdown-grid span {
        font-size: 42px;
    }
}


/* Exhibitor Form */

.exhibit-section {
    background: var(--text);
    color: var(--white);
}

.exhibit-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.exhibit-content h2 {
    color: var(--white);
}

.exhibit-content p {
    color: rgba(255, 255, 255, 0.72);
}

.exhibit-points {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.exhibit-points span {
    border: 1px solid rgba(214, 173, 69, 0.45);
    color: var(--soft-gold);
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 12px;
    letter-spacing: 1px;
}

.exhibit-form {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(214, 173, 69, 0.25);
    padding: 36px;
    display: grid;
    gap: 16px;
}

.exhibit-form input,
.exhibit-form select,
.exhibit-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding: 15px 16px;
    font-family: inherit;
    outline: none;
}

.exhibit-form input::placeholder,
.exhibit-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.exhibit-form select {
    color: rgba(255, 255, 255, 0.75);
}

.exhibit-form select option {
    color: #241818;
}

.exhibit-form textarea {
    min-height: 120px;
    resize: vertical;
}

.exhibit-form .btn {
    margin-top: 8px;
    border: none;
    cursor: pointer;
}

@media (max-width: 900px) {
    .exhibit-wrap {
        grid-template-columns: 1fr;
    }
    .exhibit-form {
        padding: 26px;
    }
}


/* Premium Footer Clean Final */

.premium-footer {
    background: #f7f2ea;
    padding: 90px 6% 34px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 70px;
    align-items: flex-start;
}

.footer-brand img {
    width: 230px;
    margin-bottom: 26px;
}

.footer-brand p,
.footer-newsletter p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 15px;
}

.footer-socials {
    margin-top: 26px;
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(214, 173, 69, 0.35);
    background: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 17px;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links-column h4,
.footer-newsletter h4 {
    font-size: 13px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--text);
}

.footer-links-column a,
.footer-links-column span {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.newsletter-form {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.newsletter-form input {
    height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.75);
    outline: none;
    font-family: inherit;
}

.newsletter-form button {
    height: 52px;
    border: none;
    background: var(--text);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    font-family: inherit;
}

.newsletter-form button:hover {
    background: var(--gold);
}

.footer-bottom {
    max-width: 1180px;
    margin: 70px auto 0;
    padding-top: 26px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom span {
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 900px) {
    .premium-footer {
        padding: 70px 6% 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }
    .footer-links-wrap {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .footer-bottom {
        flex-direction: column;
    }
}


/* Cinematic Luxury Loader */

.page-loader {
    position: fixed;
    inset: 0;
    background: #faf7f1;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
    animation: loaderFade 1.4s ease;
}

.loader-inner img {
    width: 260px;
    margin: 0 auto;
}

.loader-inner span {
    display: block;
    width: 120px;
    height: 1px;
    margin: 28px auto 0;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    animation: loaderLine 1.4s ease infinite;
}

@keyframes loaderFade {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loaderLine {
    0% {
        transform: scaleX(0.2);
        opacity: 0.3;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
    100% {
        transform: scaleX(0.2);
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .loader-inner img {
        width: 210px;
    }
}


/* Premium About Section */

.about-section {
    max-width: none;
    text-align: left;
    margin: 0;
    background: #faf7f1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 70px;
    align-items: center;
}

.about-text {
    max-width: 760px;
}

.about-text h2 {
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.95;
}

.about-text p {
    max-width: 680px;
}

.about-signature {
    margin-top: 36px;
    padding-left: 24px;
    border-left: 2px solid var(--gold);
}

.about-signature span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.about-signature strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--text);
}

.about-card {
    min-height: 420px;
    padding: 42px;
    background: linear-gradient(135deg, #ffffff, #f6ead8);
    border: 1px solid rgba(214, 173, 69, 0.22);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.about-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 16px;
}

.about-card p {
    color: var(--muted);
    line-height: 1.8;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-card {
        min-height: auto;
    }
}


/* Inner Pages */

.inner-hero {
    min-height: 62vh;
    padding: 150px 6% 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #faf7f1, #f4eadc);
}

.inner-hero h1 {
    max-width: 900px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 8vw, 104px);
    font-weight: 500;
    line-height: 0.95;
    color: var(--text);
}

.inner-hero p {
    max-width: 680px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}


/* Values Section */

.values-section {
    background: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.value-card {
    padding: 38px;
    background: #faf7f1;
    border: 1px solid rgba(214, 173, 69, 0.18);
}

.value-card span {
    font-family: "Cormorant Garamond", serif;
    font-size: 56px;
    color: rgba(214, 173, 69, 0.45);
}

.value-card h3 {
    margin-top: 26px;
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 500;
}

.value-card p {
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.8;
}

@media (max-width: 900px) {
    .inner-hero {
        min-height: 54vh;
        padding-top: 130px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}


/* Contact Page */

.contact-section {
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 500;
    line-height: 0.95;
}

.contact-list {
    margin-top: 42px;
    display: grid;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: #faf7f1;
    border: 1px solid rgba(214, 173, 69, 0.18);
    transition: 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    background: #f4eadc;
}

.contact-item i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(214, 173, 69, 0.16);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-item span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.contact-item strong {
    font-size: 15px;
    color: var(--text);
}

.contact-form {
    padding: 38px;
    background: #faf7f1;
    border: 1px solid rgba(214, 173, 69, 0.18);
    display: grid;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.75);
    padding: 15px 16px;
    font-family: inherit;
    outline: none;
    color: var(--text);
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form .btn {
    border: none;
    cursor: pointer;
}

.venue-section {
    background: #faf7f1;
}

.map-box {
    height: 460px;
    overflow: hidden;
    border: 1px solid rgba(214, 173, 69, 0.2);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 26px;
    }
    .map-box {
        height: 360px;
    }
}


/* Cinematic Inner Hero */

.inner-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 6% 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(250, 247, 241, 0.94) 0%, rgba(250, 247, 241, 0.78) 42%, rgba(250, 247, 241, 0.28) 100%), linear-gradient( 180deg, rgba(250, 247, 241, 0.35), rgba(250, 247, 241, 0.10));
    z-index: 1;
}

.inner-hero .section-label,
.inner-hero h1,
.inner-hero p {
    position: relative;
    z-index: 2;
}

.inner-hero h1 {
    max-width: 900px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(58px, 8vw, 118px);
    font-weight: 500;
    line-height: 0.92;
    color: var(--text);
}

.inner-hero p {
    max-width: 680px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

@media (max-width: 900px) {
    .inner-hero {
        min-height: 88vh;
        padding-top: 130px;
    }
    .inner-hero h1 {
        font-size: 58px;
    }
    .inner-hero p {
        font-size: 15px;
    }
}


/* Cinematic Inner Hero */

.inner-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 6% 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(250, 247, 241, 0.94) 0%, rgba(250, 247, 241, 0.78) 42%, rgba(250, 247, 241, 0.28) 100%), linear-gradient( 180deg, rgba(250, 247, 241, 0.35), rgba(250, 247, 241, 0.10));
    z-index: 1;
}

.inner-hero .section-label,
.inner-hero h1,
.inner-hero p {
    position: relative;
    z-index: 2;
}

.inner-hero h1 {
    max-width: 900px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(58px, 8vw, 118px);
    font-weight: 500;
    line-height: 0.92;
    color: var(--text);
}

.inner-hero p {
    max-width: 680px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

@media (max-width: 900px) {
    .inner-hero {
        min-height: 88vh;
        padding-top: 130px;
    }
    .inner-hero h1 {
        font-size: 58px;
    }
    .inner-hero p {
        font-size: 15px;
    }
}


/* Compact Register Popup */

.popup-box {
    position: relative;
    z-index: 2;
    width: min(400px, 92%);
    background: #faf7f1;
    padding: 26px 24px;
    border: 1px solid rgba(214, 173, 69, 0.28);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
    border-radius: 4px;
    max-height: none;
    overflow: visible;
}

.popup-box .section-label {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.popup-box h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    color: var(--text);
}

.popup-box p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
}

.popup-form {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    width: 100%;
    padding: 11px 13px;
    font-size: 13px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.78);
    font-family: inherit;
    outline: none;
}

.popup-form textarea {
    min-height: 70px;
    resize: none;
}

.popup-form .btn {
    min-height: 42px;
    font-size: 11px;
    margin-top: 2px;
    border: none;
    cursor: pointer;
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(214, 173, 69, 0.35);
    background: rgba(255, 255, 255, 0.85);
    color: var(--text);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.popup-close:hover {
    background: var(--gold);
    color: #fff;
    transform: rotate(90deg);
}

@media (max-width: 600px) {
    .popup-box {
        width: 90%;
        padding: 24px 20px;
    }
    .popup-box h2 {
        font-size: 29px;
    }
    .popup-form textarea {
        min-height: 58px;
    }
}


/* Instagram Reel Style Section */

.reels-section {
    background: #fff;
}

.reels-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.reel-card {
    position: relative;
    height: 560px;
    overflow: hidden;
    border-radius: 180px 180px 10px 10px;
    background: var(--beige);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.reel-card:hover video {
    transform: scale(1.06);
}

.reel-card::after {
    content: "REEL";
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.85);
    color: var(--text);
    font-size: 10px;
    letter-spacing: 2px;
    padding: 8px 16px;
    border-radius: 100px;
}

@media (max-width: 900px) {
    .reels-row {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }
    .reel-card {
        min-width: 78%;
        height: 520px;
        scroll-snap-align: center;
    }
}


/* Video Audio Popup Button */

.audio-open-btn {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(214, 173, 69, 0.45);
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

.audio-open-btn:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}


/* Video Popup */

.video-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.video-popup.active {
    display: flex;
}

.video-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(36, 24, 24, 0.72);
    backdrop-filter: blur(12px);
}

.video-popup-box {
    position: relative;
    z-index: 2;
    width: min(520px, 94vw);
    max-height: 90vh;
    background: #000;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.video-popup-box video {
    width: 100%;
    max-height: 88vh;
    display: block;
    object-fit: contain;
    background: #000;
}

.video-popup-close {
    position: absolute;
    right: -14px;
    top: -14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--text);
    font-size: 28px;
    cursor: pointer;
    z-index: 4;
}

@media (max-width: 600px) {
    .video-popup-box {
        width: 94vw;
    }
    .video-popup-close {
        right: 8px;
        top: 8px;
    }
}


/* Final Reel Size Fix */

.reels-row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 22px !important;
}

.reel-card {
    position: relative !important;
    height: 560px !important;
    overflow: hidden !important;
    border-radius: 180px 180px 10px 10px !important;
    background: var(--beige) !important;
}

.reel-card video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

@media (max-width: 900px) {
    .reels-row {
        display: flex !important;
        overflow-x: auto !important;
    }
    .reel-card {
        min-width: 78% !important;
        height: 520px !important;
    }
}


/* Audio Button Final Fix */

.reel-card .audio-open-btn {
    top: auto !important;
    bottom: 18px !important;
    right: 18px !important;
}

.reel-card::after {
    z-index: 2 !important;
}

.reel-card video {
    position: relative;
    z-index: 1;
}

.floating-socials {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 80;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-socials a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(214, 173, 69, 0.45);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}

.floating-socials a:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-3px);
}


/* About Card Final Clean Style */

.about-card {
    min-height: 420px;
    padding: 44px;
    background: linear-gradient(135deg, #ffffff, #f8efe1);
    border: 1px solid rgba(214, 173, 69, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
}

.about-card-badge {
    display: inline-flex;
    width: fit-content;
    padding: 10px 18px;
    background: rgba(214, 173, 69, 0.10);
    border: 1px solid rgba(214, 173, 69, 0.28);
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 100px;
}

.about-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1;
    margin: 0;
}

.about-card p {
    color: var(--muted);
    line-height: 1.85;
    margin: 0;
}


/* Clean Mobile Hero Fix */

@media (max-width: 900px) {
    .hero {
        min-height: 92vh;
        padding: 110px 6% 70px;
        align-items: center;
    }
    .hero-overlay {
        display: block !important;
        background: linear-gradient( 90deg, rgba(250, 247, 241, 0.72), rgba(250, 247, 241, 0.48)) !important;
        z-index: 1;
    }
    .hero-content {
        position: relative;
        z-index: 5;
        max-width: 92%;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        padding: 0 !important;
    }
    .hero-content,
    .hero-content *,
    .hero h1,
    .hero-subtitle,
    .hero-actions,
    .hero-actions a {
        opacity: 1 !important;
        visibility: visible !important;
        animation: none !important;
        transform: none !important;
    }
    .hero .eyebrow {
        color: #b88928 !important;
    }
    .hero h1 {
        color: #241818 !important;
        font-size: 52px !important;
        line-height: 0.95 !important;
    }
    .hero-subtitle {
        color: #3f3532 !important;
        font-size: 15px !important;
        line-height: 1.7 !important;
    }
    .btn-primary {
        background: #241818 !important;
        color: #ffffff !important;
    }
    .btn-outline {
        background: rgba(255, 255, 255, 0.9) !important;
        color: #241818 !important;
        border: 1px solid #241818 !important;
    }
}


/* Popup Fix */

.register-popup {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.35s ease;
}

.register-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* Desktop Hero Light Overlay Fix */

.hero-overlay {
    background: linear-gradient( 90deg, rgba(250, 247, 241, 0.94) 0%, rgba(250, 247, 241, 0.78) 45%, rgba(250, 247, 241, 0.18) 100%) !important;
    z-index: 1;
}


/* Register Popup Center Fix */

.register-popup {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9998 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}

.popup-box {
    margin: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
}

.register-popup {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.register-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* Popup Scroll Fix */

.register-popup {
    overflow-y: auto !important;
    overscroll-behavior: contain !important;
}

.popup-box {
    max-height: none !important;
    overflow: visible !important;
}