@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --wine: #2D6A4F;
    --wine-dark: #1B4332;
    --wine-light: #52B788;
    --olive: #40916C;
    --cream: #F4F7F4;
    --sand: #E2EDE4;
    --charcoal: #0F1E16;
    --text: #1A3A2A;
    --text-light: #5A7A6A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 22px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(15, 30, 22, 0.97);
    backdrop-filter: blur(15px);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 3px;
}

.logo span {
    color: var(--wine-light);
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(248, 244, 239, 0.7);
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--wine-light);
    transition: width 0.4s ease;
}

.nav-links a:hover {
    color: var(--cream);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-reserve {
    padding: 10px 28px;
    background: transparent;
    border: 1px solid var(--wine-light);
    color: var(--wine-light);
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.nav-reserve:hover {
    background: var(--wine);
    border-color: var(--wine);
    color: var(--cream);
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(to bottom, rgba(10,20,12,0.78) 0%, rgba(10,20,12,0.55) 50%, rgba(10,20,12,0.82) 100%),
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&h=900&fit=crop') center/cover no-repeat;
    overflow: hidden;
}

/* Animated grain texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

.hero-bg-circle {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(45, 106, 79, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseCircle 6s ease-in-out infinite;
}

.hero-bg-circle:nth-child(2) {
    width: 500px;
    height: 500px;
    animation-delay: 1s;
}

.hero-bg-circle:nth-child(3) {
    width: 300px;
    height: 300px;
    animation-delay: 2s;
}

@keyframes pulseCircle {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.6; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-ornament {
    font-size: 0.8rem;
    letter-spacing: 10px;
    color: var(--wine-light);
    margin-bottom: 30px;
    animation: fadeDown 1s ease-out 0.3s backwards;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ornament-star {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23A85751'%3E%3Cpath d='M12 2l1.5 4.5L18 8l-4.5 1.5L12 14l-1.5-4.5L6 8l4.5-1.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6.5rem;
    font-weight: 400;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 10px;
    animation: fadeUp 1s ease-out 0.5s backwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--wine-light);
}

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

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: rgba(248, 244, 239, 0.5);
    font-style: italic;
    margin-bottom: 40px;
    animation: fadeUp 1s ease-out 0.7s backwards;
}

.hero-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--wine-light), transparent);
    margin: 0 auto 30px;
    animation: growLine 1s ease-out 0.9s backwards;
}

@keyframes growLine {
    from { height: 0; opacity: 0; }
    to { height: 60px; opacity: 1; }
}

.hero p {
    font-size: 1rem;
    color: rgba(248, 244, 239, 0.6);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 40px;
    font-weight: 300;
    animation: fadeUp 1s ease-out 1.1s backwards;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeUp 1s ease-out 1.3s backwards;
}

.btn-wine {
    display: inline-block;
    padding: 16px 40px;
    background: var(--wine);
    color: var(--cream);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.btn-wine:hover {
    background: var(--wine-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 106, 79, 0.3);
}

.btn-outline-cream {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid rgba(248, 244, 239, 0.3);
    color: var(--cream);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
}

.btn-outline-cream:hover {
    border-color: var(--cream);
    background: rgba(248, 244, 239, 0.1);
}

/* ===== SECTIONS ===== */
section {
    padding: 120px 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: 15px;
    display: block;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--charcoal);
}

.section-header h2 em {
    font-style: italic;
    color: var(--wine);
}

.ornament-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.ornament-line span {
    width: 40px;
    height: 1px;
    background: var(--wine);
}

.ornament-line .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wine);
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== CONCEPT ===== */
.concept {
    background: var(--cream);
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.concept-photo {
    height: 200px;
    overflow: hidden;
    margin: -50px -35px 30px;
    position: relative;
    z-index: 1;
}
.concept-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.1);
    transition: transform 0.6s ease, filter 0.4s ease;
}
.concept-card:hover .concept-photo img {
    transform: scale(1.06);
    filter: saturate(1.3) brightness(1.05);
}

.concept-card {
    padding: 50px 35px;
    text-align: center;
    border: 1px solid var(--sand);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.concept-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--charcoal);
    transition: height 0.5s ease;
    z-index: 0;
}

.concept-card:hover::before {
    height: 100%;
}

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

.concept-card > * {
    position: relative;
    z-index: 1;
}

.concept-card:hover .concept-icon,
.concept-card:hover h3,
.concept-card:hover p {
    color: var(--cream);
}

.concept-card:hover .concept-number {
    color: var(--wine-light);
}

.concept-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    transition: color 0.5s;
}

.concept-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.concept-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--sand);
    position: absolute;
    top: 15px;
    right: 25px;
    font-weight: 700;
    transition: color 0.5s;
}

.concept-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    transition: color 0.5s;
}

.concept-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.8;
    transition: color 0.5s;
}

/* ===== MENU ===== */
.menu {
    background: var(--charcoal);
    color: var(--cream);
    position: relative;
}

.menu .section-tag {
    color: var(--wine-light);
}

.menu .section-header h2 {
    color: var(--cream);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.menu-tab {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(248, 244, 239, 0.15);
    color: rgba(248, 244, 239, 0.6);
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.menu-tab:hover,
.menu-tab.active {
    border-color: var(--wine);
    background: var(--wine);
    color: var(--cream);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 0;
    border-bottom: 1px solid rgba(248, 244, 239, 0.08);
    transition: all 0.3s;
}

.menu-item:hover {
    padding-left: 10px;
}

.menu-item:hover .menu-item-name {
    color: var(--wine-light);
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: rgba(248, 244, 239, 0.4);
    line-height: 1.6;
}

.menu-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--wine-light);
    white-space: nowrap;
    margin-left: 20px;
}

/* ===== CHEF ===== */
.chef {
    background: var(--cream);
}

.chef-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.chef-image {
    height: 550px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.chef-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s ease;
}

.chef-image:hover > img {
    transform: scale(1.04);
}

.chef-image .chef-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: var(--wine);
    color: var(--cream);
    text-align: center;
}

.chef-badge h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 3px;
}

.chef-badge span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.chef-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.chef-text h3 em {
    font-style: italic;
    color: var(--wine);
}

.chef-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 20px;
}

.chef-quote {
    padding: 25px 30px;
    border-left: 3px solid var(--wine);
    background: var(--sand);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-top: 30px;
}

/* ===== AMBIENCE ===== */
.ambience {
    background: var(--sand);
}

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

.ambience-card {
    background: var(--cream);
    padding: 40px 25px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
}

.ambience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.ambience-card:hover .ambience-icon {
    transform: scale(1.2);
}

.ambience-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    transition: transform 0.4s;
}

.ambience-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.ambience-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.ambience-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== FOOD GALLERY ===== */
.food-gallery {
    background: var(--charcoal);
    padding: 100px 60px;
}
.food-gallery .section-header h2 { color: var(--cream); }
.food-gallery .section-header .section-tag { color: var(--wine-light); }
.food-gallery .section-header p { color: var(--text-light); }
.food-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: repeat(2, 260px);
    gap: 12px;
    max-width: 1200px;
    margin: 50px auto 0;
}
.food-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.food-item.food-large {
    grid-row: span 2;
}
.food-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s ease;
    filter: brightness(0.75) saturate(1.15);
}
.food-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.9) saturate(1.3);
}
.food-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 16px 14px;
    background: linear-gradient(to top, rgba(10,20,12,0.92) 0%, transparent 100%);
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    letter-spacing: 0.5px;
    transform: translateY(6px);
    transition: transform 0.35s ease;
}
.food-item:hover .food-label { transform: translateY(0); }

/* ===== REVIEWS ===== */
.reviews {
    background: var(--cream);
}

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

.review-card {
    padding: 40px;
    border: 1px solid var(--sand);
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border-color: var(--wine);
}

.review-stars {
    margin-bottom: 20px;
    display: flex;
    gap: 2px;
}

.review-stars img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.review-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 25px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--wine);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-weight: 600;
    font-size: 0.9rem;
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
}

.review-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== RESERVATION ===== */
.reservation {
    background: var(--charcoal);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.reservation::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(45, 106, 79, 0.1);
    border-radius: 50%;
    bottom: -300px;
    left: -300px;
}

.reservation .section-tag {
    color: var(--wine-light);
}

.reservation .section-header h2 {
    color: var(--cream);
}

.reservation .ornament-line span {
    background: var(--wine-light);
}

.reservation .ornament-line .dot {
    background: var(--wine-light);
}

.reservation-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    border: 1px solid rgba(248, 244, 239, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(248, 244, 239, 0.5);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: transparent;
    border: 1px solid rgba(248, 244, 239, 0.15);
    color: var(--cream);
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--wine-light);
}

.form-group select {
    -webkit-appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--charcoal);
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.reservation-form .btn-wine {
    width: 100%;
    text-align: center;
    font-family: 'Jost', sans-serif;
    padding: 18px;
}

/* ===== FOOTER ===== */
footer {
    background: #111;
    color: var(--cream);
    padding: 80px 60px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand .logo {
    margin-bottom: 15px;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(248, 244, 239, 0.5);
    line-height: 1.8;
}

.footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    color: rgba(248, 244, 239, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--wine-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(248, 244, 239, 0.08);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(248, 244, 239, 0.4);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .concept-grid,
    .ambience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    nav {
        padding: 15px 25px;
    }

    .nav-links, .nav-reserve {
        display: none;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-sub {
        font-size: 1.1rem;
    }

    section {
        padding: 80px 25px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .concept-grid,
    .ambience-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .chef-wrapper {
        grid-template-columns: 1fr;
    }

    .chef-image {
        height: 300px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .menu-tabs {
        flex-wrap: wrap;
    }

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

    .reservation-form {
        padding: 30px;
    }
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark-bg, #0F0E0E);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.pl-candle { position: relative; text-align: center; }
.pl-candle-flame {
    width: 18px;
    height: 32px;
    background: radial-gradient(ellipse at 50% 100%, #ffe066 0%, #ff8c00 60%, transparent 100%);
    border-radius: 50% 50% 30% 30%;
    margin: 0 auto -3px;
    animation: flameDance 0.35s ease-in-out infinite alternate;
    position: relative;
    z-index: 1;
}
.pl-candle-body {
    width: 22px;
    height: 70px;
    background: linear-gradient(to bottom, #f0e6d3, #c8a87a);
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
}
.pl-candle-body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 12px;
    background: #333;
    border-radius: 1px;
}
@keyframes flameDance {
    0%   { transform: scaleX(1)    scaleY(1)    rotate(-3deg); filter: brightness(1);   }
    100% { transform: scaleX(0.82) scaleY(1.18) rotate(3deg);  filter: brightness(1.2); }
}
.pl-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: #F0EBE1;
    letter-spacing: 4px;
    margin-top: 22px;
}
.pl-logo-text span { color: var(--wine, #2D6A4F); }
.pl-bar {
    width: 160px;
    height: 1px;
    background: rgba(45, 106, 79, 0.2);
    margin-top: 12px;
    overflow: hidden;
}
.pl-bar-fill {
    height: 100%;
    background: var(--wine, #2D6A4F);
    animation: plFill 1.6s ease-out forwards;
    width: 0;
}
@keyframes plFill { to { width: 100%; } }

/* ===== BOKEH PARTICLES ===== */
.bokeh-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: bokehFloat linear infinite;
}
@keyframes bokehFloat {
    0%   { transform: translateY(0)     scale(1);    opacity: 0; }
    10%  { opacity: 0.7; }
    90%  { opacity: 0.3; }
    100% { transform: translateY(-350px) scale(0.4); opacity: 0; }
}


