/* ========================================
   CSS Custom Properties
======================================== */
:root {
    --color-navy: #0A1628;
    --color-navy-light: #132240;
    --color-navy-mid: #1A2D4A;
    --color-gold: #D4A843;
    --color-gold-light: #E8C46E;
    --color-gold-dark: #B8922E;
    --color-cream: #FAF6F0;
    --color-cream-dark: #F0E8DA;
    --color-white: #FFFFFF;
    --color-text-dark: #1A1A1A;
    --color-text-muted: #6B6B6B;
    --color-text-light: #F5F0E8;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Reset & Base
======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    background-color: var(--color-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ========================================
   Typography
======================================== */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.15;
}

.section__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.section__eyebrow--dark {
    color: var(--color-gold);
}

.section__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-navy);
    margin-bottom: var(--space-sm);
}

.section__title--light {
    color: var(--color-white);
}

.section__desc {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 560px;
    line-height: 1.7;
}

.text-gold {
    color: var(--color-gold);
}

/* ========================================
   Buttons
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: var(--color-gold);
    color: var(--color-navy);
    border: 2px solid var(--color-gold);
}

.btn--gold:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.35);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   Navigation
======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    transition: all var(--transition);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
}

.nav__logo-text {
    letter-spacing: 0.02em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--color-white);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gold);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(212, 168, 67, 0.4);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav__cta:hover {
    background: rgba(212, 168, 67, 0.15);
    border-color: var(--color-gold);
}

.nav__menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-white);
}

.nav__hamburger,
.nav__cross {
    position: absolute;
    transition: all var(--transition);
}

.nav__cross {
    opacity: 0;
    transform: rotate(-90deg);
}

.nav__menu-btn.active .nav__hamburger {
    opacity: 0;
    transform: rotate(90deg);
}

.nav__menu-btn.active .nav__cross {
    opacity: 1;
    transform: rotate(0);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-navy);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-white);
    font-weight: 700;
    transition: color var(--transition);
}

.mobile-menu__link:hover {
    color: var(--color-gold);
}

.mobile-menu__phone {
    font-size: 1.125rem;
    color: var(--color-gold);
    font-weight: 500;
    margin-top: var(--space-sm);
}

/* ========================================
   Hero Section
======================================== */
.hero {
    min-height: 100vh;
    background: var(--color-navy);
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero__split {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.hero__headline {
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    color: var(--color-white);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    max-width: 540px;
}

.hero__sub {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: var(--space-md);
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.hero__trust {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hero Image */
.hero__image-wrap {
    position: relative;
}

.hero__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

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

.hero__image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--color-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
}

/* ========================================
   Divider
======================================== */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) 0;
    background: var(--color-cream);
}

/* ========================================
   Flavors Section
======================================== */
.flavors {
    padding: var(--space-2xl) 0;
    background: var(--color-cream);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-header .section__desc {
    margin: 0 auto;
}

.flavors__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.flavor-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
    transition: all var(--transition);
}

.flavor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(10, 22, 40, 0.15);
}

.flavor-card__img {
    height: 220px;
    overflow: hidden;
}

.flavor-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.flavor-card:hover .flavor-card__img img {
    transform: scale(1.08);
}

.flavor-card__body {
    padding: var(--space-md);
}

.flavor-card__tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    background: rgba(212, 168, 67, 0.12);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: var(--space-xs);
}

.flavor-card__name {
    font-size: 1.375rem;
    color: var(--color-navy);
    margin-bottom: var(--space-xs);
}

.flavor-card__desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.flavors__note {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-navy-mid);
    padding: var(--space-md);
    border-top: 1px solid rgba(212, 168, 67, 0.3);
}

/* ========================================
   About Section
======================================== */
.about {
    padding: var(--space-2xl) 0;
    background: var(--color-navy);
}

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

.about__image-group {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__image-small {
    position: absolute;
    bottom: -30px;
    right: -20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--color-navy);
}

.about__image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__experience {
    position: absolute;
    top: -15px;
    left: -15px;
    background: var(--color-gold);
    color: var(--color-navy);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.4);
}

.about__experience-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.about__experience-text {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about__content {
    padding: var(--space-md) 0;
}

.about__paragraph {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.about__highlight {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 500;
}

/* ========================================
   Visit Section
======================================== */
.visit {
    padding: var(--space-2xl) 0;
    background: var(--color-cream-dark);
}

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

.visit__content .section__desc {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: var(--space-md);
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.visit__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.06);
}

.visit__detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.12);
    border-radius: var(--radius-sm);
    color: var(--color-gold-dark);
}

.visit__detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.visit__detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.visit__detail-value {
    font-size: 1rem;
    color: var(--color-navy);
    font-weight: 500;
    line-height: 1.5;
}

.visit__detail-link {
    font-size: 1rem;
    color: var(--color-gold-dark);
    font-weight: 600;
    transition: color var(--transition);
}

.visit__detail-link:hover {
    color: var(--color-gold);
}

/* ========================================
   Gallery Strip
======================================== */
.gallery {
    background: var(--color-navy);
    padding: var(--space-lg) 0;
    overflow: hidden;
}

.gallery__strip {
    display: flex;
    gap: var(--space-sm);
}

.gallery__item {
    flex: 1;
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.85);
}

.gallery__item:hover img {
    transform: scale(1.06);
    filter: brightness(1);
}

/* ========================================
   Contact Section
======================================== */
.contact {
    padding: var(--space-2xl) 0;
    background: var(--color-navy);
}

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

.contact__desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
    max-width: 440px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact__info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
    transition: color var(--transition);
}

.contact__info-item:hover {
    color: var(--color-gold);
}

/* Form */
.contact__form {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.form__group {
    margin-bottom: var(--space-md);
}

.form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text-dark);
    background: var(--color-cream);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--color-text-muted);
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.15);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__success {
    text-align: center;
    padding: var(--space-lg);
}

.form__success-title {
    font-size: 1.75rem;
    color: var(--color-navy);
    margin: var(--space-sm) 0 var(--space-xs);
}

.form__success-text {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: #060F1C;
    padding: var(--space-xl) 0 var(--space-md);
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.footer__tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 280px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

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

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__contact p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__phone,
.footer__email {
    font-size: 0.9375rem;
    color: var(--color-gold);
    transition: color var(--transition);
}

.footer__phone:hover,
.footer__email:hover {
    color: var(--color-gold-light);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ========================================
   Scroll Reveal Animations
======================================== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
    .hero__split {
        gap: var(--space-md);
    }

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

    .about__split {
        gap: var(--space-md);
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__menu-btn {
        display: flex;
    }

    .hero__split {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: var(--space-md);
        padding-bottom: var(--space-md);
    }

    .hero__headline {
        max-width: 100%;
    }

    .hero__sub {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

    .hero__image-wrap {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__image-accent {
        display: none;
    }

    .flavors__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .about__split {
        grid-template-columns: 1fr;
    }

    .about__image-group {
        max-width: 400px;
        margin: 0 auto;
    }

    .about__content {
        text-align: center;
    }

    .about__highlights {
        align-items: center;
    }

    .visit__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .visit__details {
        max-width: 480px;
        margin: 0 auto;
    }

    .gallery__strip {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .gallery__item {
        height: 240px;
    }

    .contact__inner {
        grid-template-columns: 1fr;
    }

    .contact__desc {
        max-width: 100%;
    }

    .footer__top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__logo {
        justify-content: center;
    }

    .footer__tagline {
        max-width: 100%;
    }

    .footer__links {
        align-items: center;
    }

    .footer__contact {
        align-items: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact__form {
        padding: var(--space-md);
    }
}
