:root {
    --bg-dark: #0a0c10;
    --bg-accent: #16181d;
    --gold: #c5a059;
    --gold-dim: #a68545;
    --text-white: #f8f9fa;
    --text-gray: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-med: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hero Section Specifics */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    perspective: 1500px;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #000;
}

.hero-3d-layer {
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1544025162-d76694265947?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    scale: 1.1;
    filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 12, 16, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    z-index: 10;
    opacity: 1;
    /* Explicitly visible as per previous request */
}

.hero-pretitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 12px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-content h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.95;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: -2px;
}

.hero-sub {
    font-size: 1.4rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.btn-main,
.btn-ghost {
    padding: 1.5rem 4rem;
    letter-spacing: 4px;
    font-weight: 600;
}

/* Decorative Element */
.hero-decor {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 15vh;
    background: linear-gradient(to top, var(--gold), transparent);
    z-index: 5;
}

/* Signature Section Enhancements */
.signature {
    padding: 5rem 0;
    position: relative;
    background: var(--bg-dark);
}

.signature::before {
    content: 'HERITAGE';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.01);
    z-index: 1;
    pointer-events: none;
    letter-spacing: 2vw;
}

.signature-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 12rem;
    align-items: center;
}

.sig-content {
    opacity: 1;
}

.sig-content h2 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 3rem;
    letter-spacing: -2px;
}

.sig-main-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    line-height: 1.8;
}

.sig-stats {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 3rem;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--text-gray);
}

.sig-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.detail-box h4 {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.detail-box p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Premium Stack Effect */
.sig-reveal-wrapper {
    position: relative;
    height: 700px;
}

.premium-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.stack-card {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    background: var(--bg-accent);
}

.card-1 {
    top: 0;
    left: 0;
    z-index: 2;
}

.card-2 {
    bottom: 0;
    right: 0;
    z-index: 1;
    transform: scale(0.95);
    filter: brightness(0.5);
}

.sig-quote-box {
    position: absolute;
    bottom: 10%;
    left: -15%;
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border: 1px solid var(--glass-border);
    z-index: 5;
    max-width: 300px;
    border-radius: 4px;
}

.sig-quote-box p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.sig-quote-box span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.mouse {
    width: 20px;
    height: 35px;
    border: 1px solid var(--text-gray);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 2px;
    height: 6px;
    background: var(--gold);
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .signature-grid {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
}

/* Chef Section Enhancements */
.chef-section {
    padding: 5rem 0;
    background: var(--bg-accent);
}

.chef-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr;
    gap: 15rem;
    align-items: center;
}

.chef-branding {
    opacity: 1;
}

.chef-title {
    font-size: 8rem;
    line-height: 0.85;
    margin-bottom: 4rem;
    letter-spacing: -4px;
}

.chef-credentials {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
}

.cred-item {
    font-size: 2rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.cred-item span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-gray);
    letter-spacing: 2px;
    margin-top: 1rem;
    font-family: 'Outfit', sans-serif;
}

.chef-quote {
    font-size: 2rem;
    font-style: italic;
    color: var(--text-white);
    line-height: 1.4;
    margin-bottom: 6rem;
    border-left: 2px solid var(--gold);
    padding-left: 4rem;
    font-family: 'Playfair Display', serif;
}

.chef-signatures h3 {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 3rem;
    color: var(--gold);
}

.chef-signatures ul {
    list-style: none;
}

.chef-signatures li {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.chef-signatures li span {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 0.9rem;
    opacity: 0.5;
}

.chef-image-feature {
    position: relative;
}

.main-portrait {
    height: 900px;
    width: 650px;
    position: relative;
    border: 1px solid var(--glass-border);
    padding: 1rem;
    background: var(--glass);
}

.main-portrait .placeholder-img {
    height: 100%;
    width: 100%;
}

.img-reveal-box {
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}

.floating-honor {
    position: absolute;
    top: 50%;
    right: -10%;
    background: var(--gold);
    color: var(--bg-dark);
    padding: 4rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    transform: rotate(2deg);
}

.floating-honor p {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Private Dining Enhancements */
.private-section {
    padding: 20rem 0;
    background: var(--bg-dark);
}

.private-header h2 {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.section-sub {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 8rem;
    line-height: 1.6;
}

.private-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.vault-card {
    background: var(--bg-accent);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-med);
}

.vault-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.vault-img-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.vault-img-wrapper .space-img {
    height: 100%;
    width: 100%;
}

.vault-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.vault-specs {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    gap: 3rem;
    z-index: 5;
}

.spec {
    font-size: 1.1rem;
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
}

.spec span {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.vault-content {
    padding: 4rem;
}

.vault-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.vault-title-row h3 {
    font-size: 2.2rem;
    color: var(--gold);
}

.vault-id {
    font-size: 0.8rem;
    color: var(--text-gray);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    letter-spacing: 2px;
}

.vault-content p {
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.vault-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.vault-features li {
    font-size: 0.85rem;
    color: var(--text-white);
    letter-spacing: 1px;
    position: relative;
    padding-left: 1.5rem;
}

.vault-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Testimonials Enhancements */
.testimonials {
    padding: 5rem 0;
    background: radial-gradient(circle at center, #1a1e26 0%, #0a0c10 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 30rem;
    color: rgba(197, 160, 89, 0.05);
}

.testi-container {
    max-width: 1100px;
    margin: 8rem auto;
    position: relative;
    height: auto;
}

.testi-item {
    display: none;
    opacity: 1;
    /* Keeping visible as per request when active */
}

.testi-item.active {
    display: block;
    animation: testi-fade 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes testi-fade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.publication {
    font-size: 1.1rem;
    letter-spacing: 8px;
    color: var(--gold);
    margin-bottom: 4rem;
    text-transform: uppercase;
    font-weight: 600;
}

.testimonials .quote {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    color: var(--text-white);
    margin-bottom: 5rem;
    font-style: italic;
    letter-spacing: -1px;
}

.testi-footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.testi-footer .author {
    font-size: 1.2rem;
    letter-spacing: 4px;
    color: var(--text-white);
    font-weight: 600;
}

.testi-footer .title {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-gray);
    text-transform: uppercase;
}

.testi-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 5rem;
}

.control-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: var(--transition-med);
}

.control-dot.active {
    background: var(--gold);
    width: 40px;
    border-radius: 100px;
}

/* Social Gallery */
.social-gallery {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 6rem;
}

.gallery-item {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    filter: grayscale(1);
    transition: var(--transition-med);
    border: 1px solid var(--glass-border);
}

.gallery-item:hover {
    filter: grayscale(0);
    transform: scale(1.03);
    border-color: var(--gold);
}

/* New Newsletter Styling */
.newsletter {
    padding: 15rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #000 100%);
    overflow: hidden;
    clip-path: polygon(0 10%, 180% 0, 100% 100%, 0 100%);
}

.newsletter-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(circle at 20% 30%, rgba(197, 160, 89, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(197, 160, 89, 0.1) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(10, 12, 16, 0.9) 0%, rgba(10, 12, 16, 0.4) 50%, rgba(10, 12, 16, 0.9) 100%),
        url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) contrast(1.2) saturate(0.8);
    opacity: 0.8;
    animation: slow-pan 30s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

@keyframes slow-pan {
    from {
        transform: translate(-52%, -50%) scale(1);
    }

    to {
        transform: translate(-48%, -50%) scale(1.1);
    }
}

.newsletter-box {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 12, 16, 0.4);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 10rem 8rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 0 100px rgba(197, 160, 89, 0.05);
}

.newsletter-box h2 {
    font-size: 5rem;
    margin-bottom: 3rem;
    line-height: 1;
}

.news-desc {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 6rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 2rem;
    margin-bottom: 8rem;
    align-items: flex-end;
}

.input-wrapper {
    flex-grow: 1;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 0;
    color: var(--text-white);
    font-size: 1.2rem;
    outline: none;
    transition: all 0.4s ease;
}

.focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.newsletter-form input:focus~.focus-line {
    width: 100%;
}

.newsletter-form .btn-main {
    padding: 1.5rem 4rem;
    min-width: 250px;
}

.news-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

.n-item {
    display: flex;
    flex-direction: column;
}

.n-num {
    font-size: 2.2rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.n-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.n-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

@media (max-width: 1024px) {
    .newsletter-box {
        padding: 6rem 3rem;
    }

    .newsletter-box h2 {
        font-size: 3rem;
    }

    .news-desc {
        font-size: 1rem;
        margin-bottom: 4rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .newsletter-form .btn-main {
        width: 100%;
    }

    .news-footer {
        flex-direction: column;
        gap: 3rem;
    }

    .n-divider {
        display: none;
    }

    .hero-pretitle {
        letter-spacing: 5px;
        margin-bottom: 1.5rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }

    .hero-sub {
        font-size: 1.1rem;
        margin-bottom: 4rem;
        padding: 0;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 2rem;
    }

    .btn-main,
    .btn-ghost {
        padding: 1.2rem 2.5rem;
        width: 100%;
        text-align: center;
        font-size: 0.9rem;
    }

    .signature {
        padding: 8rem 0;
    }

    .signature-grid {
        grid-template-columns: 1fr;
        gap: 6rem;
    }

    .sig-content {
        text-align: center;
    }

    .sig-content h2 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .sig-stats {
        justify-content: center;
        gap: 2rem;
    }

    .stat-num {
        font-size: 2rem;
    }

    .sig-details {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .sig-reveal-wrapper {
        height: 500px;
    }

    .sig-quote-box {
        left: 50%;
        transform: translateX(-50%);
        bottom: -5rem;
        width: 90%;
        padding: 2.5rem;
    }

    .chef-grid {
        grid-template-columns: 1fr;
        gap: 6rem;
        text-align: center;
    }

    .chef-title {
        font-size: 3.5rem;
        margin-bottom: 3rem;
    }

    .chef-credentials {
        justify-content: center;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .cred-item {
        font-size: 1.5rem;
    }

    .chef-quote {
        font-size: 1.5rem;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--gold);
        padding-top: 2rem;
        margin-bottom: 4rem;
    }

    .chef-signatures li {
        justify-content: center;
        gap: 1.5rem;
        font-size: 1.1rem;
    }

    .main-portrait {
        width: 100%;
        height: 600px;
    }

    .floating-honor {
        padding: 2rem;
        bottom: -3rem;
        top: auto;
        right: 5%;
        width: 90%;
    }

    .private-section {
        padding: 8rem 0;
    }

    .private-header h2 {
        font-size: 3rem;
    }

    .private-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .vault-img-wrapper {
        height: 400px;
    }

    .vault-content {
        padding: 2.5rem;
    }

    .vault-title-row h3 {
        font-size: 1.8rem;
    }

    .vault-features {
        grid-template-columns: 1fr;
    }

    .testimonials .quote {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        height: 250px;
    }
}