/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Exact from screenshot */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gold: #C9A961;
    --color-burgundy: #9B4A6F;
    --color-plum: #8B4789;
    --color-gray: #666666;
    --color-light-gray: #F8F6F3;
    --color-text: #000000;
    --color-text-secondary: #666666;

    /* Typography - Based on screenshot analysis */
    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', 'Proxima Nova', 'Brandon Grotesque', -apple-system, sans-serif;

    /* Font Sizes */
    --fs-xs: 0.6875rem;    /* 11px - navigation, labels */
    --fs-sm: 0.8125rem;    /* 13px - subtext, captions */
    --fs-base: 1rem;       /* 16px - body text */
    --fs-lg: 1.125rem;     /* 18px - large body */
    --fs-xl: 2.25rem;      /* 36px - section headings */
    --fs-2xl: 3rem;        /* 48px - hero title */

    /* Line Heights */
    --lh-tight: 1.25;
    --lh-normal: 1.6;
    --lh-relaxed: 1.75;

    /* Letter Spacing */
    --ls-tight: -0.5px;
    --ls-normal: 0.3px;
    --ls-wide: 1.5px;
    --ls-wider: 2px;
    --ls-widest: 3px;

    /* Spacing */
    --space-xs: 0.625rem;   /* 10px */
    --space-sm: 1.25rem;    /* 20px */
    --space-md: 1.875rem;   /* 30px */
    --space-lg: 3.75rem;    /* 60px */
    --space-xl: 5rem;       /* 80px */
    --space-2xl: 6.25rem;   /* 100px */
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

.container {
    max-width: 1584px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--color-black);
    color: var(--color-white);
    text-align: center;
    padding: 13px 20px;
    font-size: var(--fs-sm);
    letter-spacing: var(--ls-normal);
    font-weight: 400;
}

/* Header */
.header {
    background-color: var(--color-white);
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: block;
    line-height: 0;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

.header-ladies-icon {
    height: 80px;
    width: auto;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    margin-right: 10px;
}

.header.video-active .header-ladies-icon {
    opacity: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-list a {
    font-size: var(--fs-xs);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    font-weight: 500;
    color: var(--color-black);
}

.nav-list a:hover {
    color: var(--color-gold);
}

.has-dropdown {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li {
    padding: 0;
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
}

.dropdown a:hover {
    background-color: var(--color-light-gray);
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-black);
    padding: 8px;
}

.search-btn:hover {
    color: var(--color-gold);
}

/* Hero Section */
.hero {
    padding: 90px 0 110px;
    background-color: var(--color-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
}

.michelin-star {
    display: inline-block;
    margin-bottom: 35px;
    position: relative;
    transition: opacity 1.5s ease-in-out;
}

.michelin-star img {
    transition: opacity 1.5s ease-in-out;
}

.hero.video-active .michelin-star img {
    opacity: 0;
}

.michelin-text {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    letter-spacing: var(--ls-wider);
    font-weight: 700;
    color: var(--color-plum);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: var(--fs-2xl);
    font-weight: 400;
    line-height: var(--lh-tight);
    margin-bottom: 28px;
    color: var(--color-burgundy);
    letter-spacing: var(--ls-tight);
    transition: color 1.5s ease-in-out;
}

.hero-description {
    font-size: var(--fs-sm);
    line-height: var(--lh-normal);
    margin-bottom: 22px;
    color: #000000;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    transition: color 1.5s ease-in-out;
}

.established {
    font-size: var(--fs-xs);
    letter-spacing: var(--ls-widest);
    color: #000000;
    margin-bottom: 45px;
    font-weight: 400;
    transition: color 1.5s ease-in-out;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Video Background for Hero */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.video-background.fade-in {
    opacity: 1;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
}

/* Text readability over video - when video is active */
.hero.video-active .hero-title,
.hero.video-active .hero-description,
.hero.video-active .established {
    color: var(--color-white);
}

.hero.video-active .btn-secondary {
    background-color: var(--color-gold);
    color: var(--color-charcoal);
    border-color: var(--color-gold);
}

.hero .btn {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 42px;
    font-size: var(--fs-xs);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    font-weight: 600;
    border: 2px solid var(--color-black);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-black);
}

.btn-secondary:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-link {
    border: none;
    padding: 10px 0;
    color: var(--color-gold);
    position: relative;
}

.btn-link::after {
    content: ' →';
    margin-left: 5px;
}

.btn-link:hover {
    color: var(--color-black);
}

/* Section Styles */
section {
    padding: var(--space-xl) 0;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

.section-text h2 {
    font-family: var(--font-serif);
    font-size: var(--fs-xl);
    font-weight: 400;
    margin-bottom: var(--space-sm);
    color: var(--color-black);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
}

.section-text p {
    font-size: var(--fs-base);
    line-height: var(--lh-relaxed);
    margin-bottom: 28px;
    color: var(--color-text-secondary);
    font-weight: 400;
}

.image-placeholder {
    aspect-ratio: 4/3;
    background-color: var(--color-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    font-size: 14px;
    border: 1px solid #e5e5e5;
}

/* Image Tiles Section - Masonry Grid */
.image-tiles-section {
    padding: 0;
    margin: 0;
    background-color: var(--color-light-gray);
}

.grid {
    max-width: 100%;
    margin: 0 auto;
}

/* Grid sizer for Masonry column width calculation */
.grid-sizer,
.grid-item {
    width: 25%;
}

.grid-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    float: left;
}

.grid-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-item:hover .grid-item-overlay {
    opacity: 1;
}

.grid-item-content {
    color: var(--color-white);
}

.grid-item-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: var(--ls-tight);
}

.grid-item-content p {
    font-size: var(--fs-sm);
    letter-spacing: var(--ls-normal);
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-sizer,
    .grid-item {
        width: 33.333%;
    }
}

@media (max-width: 768px) {
    .grid-sizer,
    .grid-item {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .grid-sizer,
    .grid-item {
        width: 100%;
    }

    .grid-item-content h3 {
        font-size: 1.25rem;
    }
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: var(--space-2xl) 0;
}

.testimonial {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.testimonial blockquote {
    border: none;
}

.testimonial p {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 300;
    line-height: 1.45;
    margin-bottom: 30px;
    font-style: italic;
    letter-spacing: var(--ls-tight);
}

.testimonial cite {
    font-size: var(--fs-sm);
    letter-spacing: var(--ls-wide);
    font-style: normal;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 400;
}

/* Recognition Section */
.recognition-section {
    background-color: var(--color-white);
    padding: 80px 0;
}

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

.recognition-title {
    font-family: var(--font-serif);
    font-size: var(--fs-xl);
    font-weight: 400;
    margin-bottom: 50px;
    color: var(--color-black);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
}

.accolades-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.accolade-item {
    text-align: center;
}

.accolade-badge {
    margin-bottom: 20px;
}

.accolade-badge img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.accolade-name {
    font-size: var(--fs-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    margin-bottom: 8px;
    color: var(--color-black);
}

.accolade-year {
    font-size: var(--fs-xs);
    color: var(--color-text-secondary);
    letter-spacing: var(--ls-normal);
}

/* Responsive accolades grid */
@media (max-width: 1024px) {
    .accolades-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .accolades-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .accolade-badge img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .accolades-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Private Events Section */
.private-events-section {
    background-color: var(--color-light-gray);
}

/* Wine Section */
.wine-section {
    background-color: var(--color-white);
}

/* Footer */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-section h4 {
    font-size: var(--fs-sm);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--color-gold);
    font-weight: 600;
}

.footer-section p {
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed);
    margin-bottom: 6px;
    font-weight: 400;
}

.footer-section a {
    color: var(--color-white);
}

.footer-section a:hover {
    color: var(--color-gold);
}

.footer-section em {
    font-size: 12px;
    opacity: 0.8;
}

.footer-restaurants h4 {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--color-gold);
}

.footer-restaurants ul {
    list-style: none;
}

.footer-restaurants li {
    margin-bottom: 10px;
}

.footer-restaurants a {
    font-size: 14px;
    color: var(--color-white);
}

.footer-restaurants a:hover {
    color: var(--color-gold);
}

.footer-social h4 {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--color-gold);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--color-white);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--color-gold);
}

.footer-notice {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    margin-top: 30px;
}

.footer-notice p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-list {
        gap: 20px;
    }

    .nav-list a {
        font-size: 13px;
    }

    .section-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .nav {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-content,
    .section-content.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .section-text h2 {
        font-size: 32px;
    }

    .testimonial p {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .announcement-bar {
        font-size: 12px;
        padding: 10px;
    }

    .logo a {
        font-size: 24px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-text h2 {
        font-size: 28px;
    }

    .testimonial p {
        font-size: 22px;
    }

    .badge-number {
        font-size: 56px;
    }

    section {
        padding: 60px 0;
    }
}
