/* ===== BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; cursor: none; overflow-x: hidden; color: #2c2c2c; }

/* ===== PAGE BACKGROUND (smooth color transitions) ===== */
.page-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-color: #fdfaf7;
    transition: background-color 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== COFFEE CURSOR ===== */
.coffee-cursor {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    top: 0; left: 0;
    transform: translate(-50%, -50%);
    will-change: transform;
}
.cc-cup {
    font-size: 1.8rem;
    line-height: 1;
    display: block;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,.35));
}
.cc-ring {
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1.5px solid rgba(139, 90, 43, 0.5);
    animation: ring-pulse 2.2s ease-in-out infinite;
}
@keyframes ring-pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.4); opacity: 0; }
}

/* ===== WS BADGE ===== */
.ws-badge {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 8px 16px 8px 10px;
    color: #fff;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: background 0.3s, transform 0.2s;
}
.ws-badge:hover { background: rgba(0,0,0,0.8); transform: translateX(4px); }
.ws-badge-icon { font-size: 1rem; }
.ws-badge-body { display: flex; flex-direction: column; gap: 1px; }
.ws-badge-name { display: block; font-size: 0.78rem; font-weight: 700; }
.ws-badge-sub { opacity: 0.7; font-size: 0.66rem; }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 0 5%;
    height: 72px;
    transition: background 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
    background: rgba(253, 250, 247, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 20px rgba(0,0,0,.07);
}
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #fff;
    margin-right: auto;
    transition: color 0.4s;
}
.nav.scrolled .nav-logo { color: #1a0a00; }
.nav-links { display: flex; gap: 2rem; list-style: none; margin-right: 2.5rem; }
.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: #4a3728; }
.nav-links a:hover { color: #d4a843; }
.nav-cta {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #1a0a00;
    background: #d4a843;
    text-decoration: none;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,168,67,.4); }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.12);
    will-change: transform;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0,0,0,0.65) 0%, rgba(26,10,0,0.5) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 1rem;
}
.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-bottom: 1.4rem;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.8rem, 8vw, 7.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: #d4a843; }
.hero-desc {
    font-size: 1.05rem;
    opacity: 0.82;
    max-width: 480px;
    margin: 0 auto 2.2rem;
    line-height: 1.7;
}
.btn-gold {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: #d4a843;
    color: #1a0a00;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 100px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(212,168,67,0.45); }
.hero-scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.scroll-line-anim {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.65));
    animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ===== MENU INTRO ===== */
.menu-intro {
    padding: 140px 5% 100px;
    text-align: center;
    background: transparent;
    position: relative;
    z-index: 1;
}
.mi-label {
    font-size: 0.68rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: #a08060;
    margin-bottom: 1.2rem;
}
.menu-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #1a0a00;
}
.menu-intro p { font-size: 1.05rem; opacity: 0.65; color: #4a3728; }

/* ===== COFFEE SECTIONS ===== */
.coffee-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100vh;
    padding: 100px 8%;
    gap: 6%;
    background: transparent;
    overflow: hidden;
    z-index: 1;
}
.coffee-section.cs-reverse .cs-image-wrap { order: 2; }
.coffee-section.cs-reverse .cs-content { order: 1; }

.cs-number {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: min(25vw, 290px);
    font-weight: 700;
    opacity: 0.045;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    color: currentColor;
    z-index: 0;
}

.cs-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.cs-image-ring {
    width: 440px;
    height: 440px;
    max-width: min(85vw, 440px);
    max-height: min(85vw, 440px);
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.3);
    box-shadow: 0 32px 80px rgba(0,0,0,0.18);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    animation: ring-float 6s ease-in-out infinite;
}
@keyframes ring-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    35% { transform: translateY(-12px) rotate(0.4deg); }
    65% { transform: translateY(-6px) rotate(-0.3deg); }
}
.cs-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}
.cs-image-ring:hover .cs-image { transform: scale(1.06); }
.cs-glow {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow, #c8a882) 0%, transparent 65%);
    opacity: 0.38;
    z-index: 1;
    pointer-events: none;
    animation: glow-breathe 4.5s ease-in-out infinite;
}
.cs-glow::after {
    content: '';
    position: absolute;
    inset: 20%;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow, #c8a882) 0%, transparent 70%);
    opacity: 0.45;
    animation: glow-breathe 4.5s ease-in-out infinite reverse;
}
@keyframes glow-breathe {
    0%, 100% { transform: scale(1); opacity: 0.32; }
    50% { transform: scale(1.22); opacity: 0.58; }
}

.cs-content { position: relative; z-index: 2; }
.cs-tag-row {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1.6rem;
    flex-wrap: wrap;
}
.cs-origin-tag {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.4rem 1.1rem;
    border: 1px solid currentColor;
    border-radius: 100px;
    opacity: 0.65;
}
.cs-roast-badge {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-weight: 600;
}
.cs-badge--dark { background: #1a0a00; color: #f5e6d3; }
.cs-badge--medium { background: #8b5e3c; color: #fff; }
.cs-badge--light { background: #d4a843; color: #1a0a00; }
.cs-badge--green { background: #4a7c59; color: #fff; }
.cs-badge--pink { background: #ff6b81; color: #fff; }

.cs-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    line-height: 1.05;
    margin-bottom: 1.6rem;
    color: currentColor;
}
.cs-desc {
    font-size: 0.96rem;
    line-height: 1.82;
    opacity: 0.75;
    max-width: 460px;
    margin-bottom: 2.2rem;
}
.cs-meta-row {
    display: flex;
    gap: 2.2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.cs-meta-item { display: flex; flex-direction: column; gap: 0.35rem; }
.cs-meta-label {
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    opacity: 0.5;
}
.cs-stars { font-size: 0.85rem; letter-spacing: 0.1em; color: #d4a843; }
.cs-meta-val { font-size: 0.82rem; font-weight: 500; }
.cs-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.cs-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 2.2rem;
    background: #1a0a00;
    color: #f5e6d3;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: 100px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cs-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.22); }
.cs-btn span { transition: transform 0.25s; }
.cs-btn:hover span { transform: translateX(5px); }
.cs-btn--brown { background: #7b4a2d; color: #fdf0e0; }
.cs-btn--brown:hover { box-shadow: 0 10px 28px rgba(123,74,45,.35); }
.cs-btn--green { background: #4a7c59; color: #fff; }
.cs-btn--green:hover { box-shadow: 0 10px 28px rgba(74,124,89,.4); }
.cs-btn--pink { background: #e05070; color: #fff; }
.cs-btn--pink:hover { box-shadow: 0 10px 28px rgba(224,80,112,.4); }
.cs-btn--blue { background: #2d5a8e; color: #fff; }
.cs-btn--blue:hover { box-shadow: 0 10px 28px rgba(45,90,142,.4); }
.cs-btn--caramel { background: #8b5e3c; color: #fdf4ec; }
.cs-btn--caramel:hover { box-shadow: 0 10px 28px rgba(139,94,60,.35); }
.cs-btn--charcoal { background: #2c2c2c; color: #f5f0eb; }
.cs-btn--charcoal:hover { box-shadow: 0 10px 28px rgba(44,44,44,.35); }
.cs-btn--gold { background: #d4a843; color: #1a0a00; }
.cs-btn--gold:hover { box-shadow: 0 10px 28px rgba(212,168,67,.45); }

/* ===== ABOUT ===== */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    padding: 120px 8%;
    background: #1a0a00;
    position: relative;
    z-index: 1;
}
.about-img {
    height: 520px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
}
.about-text { color: #f5e6d3; }
.section-label {
    font-size: 0.68rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: #d4a843;
    display: block;
    margin-bottom: 1.2rem;
}
.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1.4rem;
}
.about-text p { font-size: 0.94rem; line-height: 1.82; opacity: 0.76; margin-bottom: 2rem; }
.btn-outline {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1.5px solid rgba(212,168,67,0.55);
    color: #d4a843;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: 100px;
    transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: #d4a843; color: #1a0a00; }

/* ===== VISIT ===== */
.visit {
    padding: 120px 5%;
    text-align: center;
    background: #1a0a00;
    border-top: 1px solid rgba(212,168,67,0.15);
    position: relative;
    z-index: 1;
}
.visit-content { max-width: 900px; margin: 0 auto; color: #f5e6d3; }
.visit .section-label { color: #d4a843; }
.visit h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 3rem;
}
.visit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.visit-card {
    padding: 2rem 1.5rem;
    border: 1px solid rgba(212,168,67,0.22);
    border-radius: 12px;
    transition: border-color 0.3s, transform 0.3s;
}
.visit-card:hover { border-color: rgba(212,168,67,0.6); transform: translateY(-4px); }
.visit-card strong { display: block; color: #d4a843; font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 0.8rem; }
.visit-card p { font-size: 0.88rem; opacity: 0.76; line-height: 1.7; }

/* ===== FOOTER ===== */
.footer {
    padding: 2.5rem 5%;
    text-align: center;
    background: #0d0500;
    color: rgba(245,230,211,0.5);
    font-size: 0.78rem;
    border-top: 1px solid rgba(212,168,67,0.1);
    position: relative;
    z-index: 1;
}
.footer a { color: #d4a843; text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .coffee-section {
        grid-template-columns: 1fr;
        padding: 80px 5%;
        min-height: auto;
        gap: 3rem;
        text-align: center;
    }
    .coffee-section.cs-reverse .cs-image-wrap { order: 1; }
    .coffee-section.cs-reverse .cs-content { order: 2; }
    .cs-image-ring { width: 280px; height: 280px; max-width: 280px; max-height: 280px; margin: 0 auto; }
    .cs-glow { width: 320px; height: 320px; }
    .cs-desc { max-width: 100%; }
    .cs-meta-row { justify-content: center; }
    .cs-tag-row { justify-content: center; }
    .about { grid-template-columns: 1fr; gap: 40px; padding: 80px 5%; }
    .about-img { height: 300px; }
    .visit-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}
@media (max-width: 480px) {
    .cs-image-ring { width: 240px; height: 240px; max-width: 240px; max-height: 240px; }
    .hero-title { font-size: 2.8rem; }
}
