:root {
    --brown-900: #241510;
    --brown-800: #3a261a;
    --brown-700: #5a3924;
    --brown-500: #8c6e54;
    --beige-50:  #fbf6ee;
    --beige-100: #f6efe6;
    --beige-200: #efe5d4;
    --beige-300: #e8d6bb;
    --beige-400: #d8c19d;
    --white:     #ffffff;
    --ink:       #2b1d14;
    --shadow:    0 12px 40px rgba(36, 21, 16, 0.12);
    --radius:    14px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--ink);
    background: var(--beige-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--brown-800); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brown-700); }

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--brown-900);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }

p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 780px; }

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--brown-700);
    margin-bottom: 12px;
    font-weight: 500;
}

.lead { font-size: 1.12rem; color: #4a382b; }
.muted { color: var(--brown-500); }
.small { font-size: 0.85rem; }

/* ---- Announcement bar ---- */
.announcement-bar {
    background: var(--brown-900);
    color: var(--beige-200);
    text-align: center;
    padding: 9px 16px;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}

/* ---- Header / nav ---- */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--beige-200);
    position: sticky; top: 0; z-index: 50;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--brown-900); }
.brand-logo { width: 46px; height: 46px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.25rem; }
.brand-tag { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brown-500); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
    font-size: 0.95rem; font-weight: 500; color: var(--brown-800);
    position: relative; padding: 6px 0;
}
.nav-links a.active::after,
.nav-links a:hover::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
    height: 2px; background: var(--brown-700);
}
.nav-links a.cta {
    background: var(--brown-900); color: var(--beige-100);
    padding: 10px 18px; border-radius: 999px;
}
.nav-links a.cta::after { display: none; }
.nav-links a.cta:hover { background: var(--brown-700); color: var(--white); }

.nav-toggle {
    display: none; background: none; border: 0; cursor: pointer;
    width: 40px; height: 40px; padding: 0;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--brown-900); margin: 4px auto; }

@media (max-width: 820px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch;
        background: var(--white); padding: 16px 24px 24px;
        border-bottom: 1px solid var(--beige-200);
        gap: 14px;
        transform: translateY(-12px); opacity: 0; pointer-events: none;
        transition: all 0.2s;
    }
    .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
    .brand-tag { display: none; }
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 22px; border-radius: 999px; font-weight: 500;
    border: 1.5px solid transparent; cursor: pointer; transition: all 0.2s;
    font-size: 0.95rem; line-height: 1;
}
.btn-primary { background: var(--brown-900); color: var(--beige-100); }
.btn-primary:hover { background: var(--brown-700); color: var(--white); }
.btn-ghost { background: transparent; color: var(--brown-900); border-color: var(--brown-900); }
.btn-ghost:hover { background: var(--brown-900); color: var(--beige-100); }

/* ---- Hero ---- */
.hero {
    position: relative;
    background: linear-gradient(180deg, var(--beige-100) 0%, var(--beige-50) 100%);
    overflow: hidden;
    padding: 80px 0 100px;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(140, 110, 84, 0.18), transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(58, 38, 26, 0.08),  transparent 50%);
    pointer-events: none;
}
.hero-inner {
    position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
}
.hero-copy h1 { margin-bottom: 16px; }
.hero-copy .lead { max-width: 520px; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-art { display: flex; justify-content: center; }
.hero-art img {
    width: min(360px, 100%);
    filter: drop-shadow(0 20px 40px rgba(36, 21, 16, 0.25));
    animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 820px) {
    .hero { padding: 56px 0 64px; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-copy .lead { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-art img { width: 240px; }
}

/* ---- Section base ---- */
.section { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 48px; }

/* ---- Featured cards ---- */
.card-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.drink-card {
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); overflow: hidden;
    border: 1px solid var(--beige-200);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex; flex-direction: column;
}
.drink-card:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(36, 21, 16, 0.18); }
.drink-thumb {
    background: linear-gradient(135deg, var(--beige-200), var(--beige-300));
    aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
}
.drink-thumb img { width: 100%; height: 100%; object-fit: cover; }
.drink-thumb-placeholder img { width: 96px; height: auto; }
.drink-body { padding: 22px; }
.drink-row { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.drink-row h3 { margin: 0; }
.price { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--brown-800); }
.tag {
    display: inline-block; margin-top: 8px;
    font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--brown-500);
}
.tag-featured {
    background: var(--brown-900); color: var(--beige-100);
    padding: 4px 10px; border-radius: 999px; letter-spacing: 0.1em;
}

/* ---- About strip ---- */
.about-strip { background: var(--white); }
.two-col {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start;
}
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; } }

.visit-card {
    background: var(--brown-900); color: var(--beige-100);
    padding: 32px; border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.visit-card h3, .visit-card h2 { color: var(--white); }
.visit-card .btn { margin-top: 16px; background: var(--beige-100); color: var(--brown-900); }
.visit-card .btn:hover { background: var(--white); }

.hours-list { list-style: none; padding: 0; margin: 16px 0; }
.hours-list li {
    display: flex; justify-content: space-between; gap: 16px;
    padding: 8px 0; border-bottom: 1px dashed rgba(232, 214, 187, 0.25);
    font-size: 0.95rem;
}
.hours-list li:last-child { border-bottom: 0; }

/* ---- Page hero (sub pages) ---- */
.page-hero {
    background: var(--brown-900); color: var(--beige-100);
    padding: 72px 0 56px; text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: var(--beige-300); max-width: 640px; margin: 0 auto; }
.page-hero .eyebrow { color: var(--beige-300); }

/* ---- Menu page ---- */
.menu-nav {
    display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
    margin-bottom: 56px;
}
.menu-nav a {
    border: 1.5px solid var(--brown-900); color: var(--brown-900);
    padding: 8px 18px; border-radius: 999px; font-size: 0.9rem;
}
.menu-nav a:hover { background: var(--brown-900); color: var(--beige-100); }

.menu-category { margin-bottom: 64px; }
.menu-category h2 {
    border-bottom: 1px solid var(--beige-300); padding-bottom: 12px; margin-bottom: 28px;
    display: flex; align-items: baseline; gap: 14px;
}
.menu-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px 48px;
}
.menu-item p { color: #574234; margin: 4px 0 8px; }
.menu-item-head { display: flex; align-items: baseline; gap: 8px; }
.menu-item-head h3 { margin: 0; flex-shrink: 0; }
.dots { flex: 1; border-bottom: 1px dotted var(--brown-500); transform: translateY(-4px); }
.menu-item .price { flex-shrink: 0; }

/* ---- Value grid (about) ---- */
.value-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px; margin-top: 48px;
}
.value {
    background: var(--white); border: 1px solid var(--beige-200);
    border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}

/* ---- Map ---- */
.map-embed {
    margin-top: 24px; border-radius: 10px; overflow: hidden;
    aspect-ratio: 4/3; background: var(--brown-700);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---- Footer ---- */
.site-footer {
    background: var(--brown-900); color: var(--beige-200);
    padding: 72px 0 24px; margin-top: 80px;
}
.site-footer h4 {
    color: var(--white); font-family: 'Inter', sans-serif;
    text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.78rem; font-weight: 600;
    margin-bottom: 14px;
}
.site-footer a { color: var(--beige-300); }
.site-footer a:hover { color: var(--white); }
.site-footer .brand-name { color: var(--white); }
.site-footer .brand-tag { color: var(--beige-400); }
.site-footer .muted { color: var(--beige-400); }
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(232, 214, 187, 0.15);
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-col:first-child { grid-column: 1 / -1; } }
.footer-col p { font-size: 0.92rem; line-height: 1.6; }
.copy { padding-top: 24px; text-align: center; color: var(--beige-400); }

/* ---- Hero stats ---- */
.hero-stats {
    display: flex; gap: 36px; margin-top: 36px; flex-wrap: wrap;
}
.hero-stats div { display: flex; flex-direction: column; line-height: 1.2; }
.hero-stats strong { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--brown-900); font-weight: 700; }
.hero-stats span { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brown-500); }
@media (max-width: 820px) { .hero-stats { justify-content: center; gap: 24px; } }

/* ---- Categories preview ---- */
.cat-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
}
.cat-card {
    background: var(--white); border: 1px solid var(--beige-200);
    border-radius: var(--radius); padding: 28px 24px;
    color: var(--ink); display: flex; flex-direction: column; align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    text-decoration: none;
}
.cat-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow);
    border-color: var(--brown-700); color: var(--ink);
}
.cat-card h3 { margin-top: 18px; }
.cat-card p { color: #574234; flex: 1; font-size: 0.95rem; }
.cat-arrow { color: var(--brown-700); font-weight: 500; font-size: 0.9rem; margin-top: 10px; }
.cat-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--beige-200); position: relative;
}
.cat-icon::before {
    content: ""; position: absolute; inset: 14px;
    background: var(--brown-700); -webkit-mask-size: contain; mask-size: contain;
    -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
    -webkit-mask-position: center; mask-position: center;
}
.cat-icon[data-icon="milktea"]::before  { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6 7h12l-1.5 13a2 2 0 01-2 1.8h-5a2 2 0 01-2-1.8z'/><rect x='5' y='5' width='14' height='3' rx='1' fill='black'/><path d='M11 1v5' stroke='black' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6 7h12l-1.5 13a2 2 0 01-2 1.8h-5a2 2 0 01-2-1.8z'/><rect x='5' y='5' width='14' height='3' rx='1' fill='black'/><path d='M11 1v5' stroke='black' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>"); }
.cat-icon[data-icon="fruit"]::before    { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='14' r='7' fill='black'/><path d='M12 7c0-2 1-4 3-4-1 2-1 4-3 4z' fill='black'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='14' r='7' fill='black'/><path d='M12 7c0-2 1-4 3-4-1 2-1 4-3 4z' fill='black'/></svg>"); }
.cat-icon[data-icon="specialty"]::before{ -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.4 6.6L21 9l-5 4.3L17.6 20 12 16.5 6.4 20 8 13.3 3 9l6.6-.4z' fill='black'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l2.4 6.6L21 9l-5 4.3L17.6 20 12 16.5 6.4 20 8 13.3 3 9l6.6-.4z' fill='black'/></svg>"); }
.cat-icon[data-icon="coffee"]::before   { -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 8h14v8a4 4 0 01-4 4H7a4 4 0 01-4-4z' fill='black'/><path d='M17 10h2a3 3 0 010 6h-2' stroke='black' stroke-width='1.5' fill='none'/></svg>"); mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M3 8h14v8a4 4 0 01-4 4H7a4 4 0 01-4-4z' fill='black'/><path d='M17 10h2a3 3 0 010 6h-2' stroke='black' stroke-width='1.5' fill='none'/></svg>"); }

/* ---- About strip values ---- */
.value-row {
    display: flex; gap: 28px; margin: 24px 0;
    flex-wrap: wrap;
}
.value-row > div { display: flex; flex-direction: column; }
.value-row strong { color: var(--brown-900); font-weight: 600; }
.value-row span { font-size: 0.85rem; color: var(--brown-500); }

/* ---- Gallery ---- */
.gallery-section { background: var(--brown-900); color: var(--beige-100); }
.gallery-section h2, .gallery-section .eyebrow { color: var(--white); }
.gallery-section .eyebrow { color: var(--beige-300); }
.gallery-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
.gallery-tile {
    aspect-ratio: 1; border-radius: 12px; overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3); position: relative;
    transition: transform 0.3s;
}
.gallery-tile:hover { transform: scale(1.04); }
.gallery-tile::after {
    content: ""; position: absolute; inset: 0;
    background-image: url("../images/cup.svg");
    background-repeat: no-repeat; background-position: center;
    background-size: 50%; opacity: 0.18;
}
.tile-1 { background: linear-gradient(135deg, #5a3924, #8c6e54); grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.tile-2 { background: linear-gradient(135deg, #d8c19d, #caa57a); }
.tile-3 { background: linear-gradient(135deg, #efe5d4, #d8c19d); }
.tile-4 { background: linear-gradient(135deg, #3a261a, #5a3924); }
.tile-5 { background: linear-gradient(135deg, #caa57a, #8c6e54); }
.tile-6 { background: linear-gradient(135deg, #5a3924, #241510); grid-column: span 2; }
@media (max-width: 820px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .tile-1, .tile-6 { grid-column: span 2; }
    .tile-1 { grid-row: auto; aspect-ratio: 1.6/1; }
}

/* ---- Testimonials ---- */
.testimonials { background: var(--beige-100); }
.testimonial-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px;
}
.testimonial {
    background: var(--white); border-radius: var(--radius); padding: 28px;
    box-shadow: var(--shadow); margin: 0; position: relative;
    border: 1px solid var(--beige-200);
}
.testimonial::before {
    content: "\201C"; position: absolute; top: 0; left: 18px;
    font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--beige-300);
    line-height: 1;
}
.testimonial blockquote {
    margin: 0 0 14px; padding-top: 18px; font-size: 1.02rem; color: #4a382b;
    line-height: 1.55;
}
.testimonial figcaption strong { color: var(--brown-900); }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--white); border: 1px solid var(--beige-200);
    border-radius: 10px; padding: 16px 20px;
}
.faq-item summary {
    cursor: pointer; font-weight: 500; color: var(--brown-900); font-size: 1.02rem;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--brown-700); font-size: 1.4rem; line-height: 1; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { margin: 12px 0 0; color: #4a382b; }

/* ---- CTA strip ---- */
.cta-strip { background: var(--brown-900); color: var(--beige-100); padding: 64px 0; }
.cta-strip h2 { color: var(--white); }
.cta-strip .lead { color: var(--beige-300); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-strip .btn-primary { background: var(--beige-100); color: var(--brown-900); }
.cta-strip .btn-primary:hover { background: var(--white); }
.cta-strip .btn-ghost { color: var(--beige-100); border-color: var(--beige-100); }
.cta-strip .btn-ghost:hover { background: var(--beige-100); color: var(--brown-900); }

/* ---- About: values + timeline + team ---- */
.value { position: relative; padding-top: 28px; }
.value-num {
    position: absolute; top: -16px; left: 24px;
    background: var(--brown-900); color: var(--beige-100);
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1rem;
}

.timeline-section { background: var(--white); }
.timeline { list-style: none; padding: 0; margin: 0; max-width: 720px; margin-inline: auto; position: relative; }
.timeline::before {
    content: ""; position: absolute; left: 80px; top: 0; bottom: 0;
    width: 2px; background: var(--beige-300);
}
.timeline-item {
    display: grid; grid-template-columns: 100px 1fr; gap: 32px;
    padding: 18px 0; position: relative;
}
.timeline-year {
    font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700;
    color: var(--brown-700); text-align: right; padding-right: 8px;
    position: relative;
}
.timeline-year::after {
    content: ""; position: absolute; right: -10px; top: 8px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--brown-900); border: 3px solid var(--beige-100);
}
.timeline-body h3 { margin-top: 0; }
@media (max-width: 600px) {
    .timeline::before { left: 70px; }
    .timeline-item { grid-template-columns: 80px 1fr; gap: 20px; }
    .timeline-year { font-size: 1.1rem; }
}

.team-section { background: var(--beige-100); }
.team-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px;
}
.team-card {
    background: var(--white); border: 1px solid var(--beige-200);
    border-radius: var(--radius); padding: 28px; text-align: center;
    box-shadow: var(--shadow);
}
.team-avatar {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brown-700), var(--brown-900));
    color: var(--beige-100); display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700;
    margin: 0 auto 14px;
}
.team-role { color: var(--brown-700); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

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