:root {
    --coffee: #4a2c20; --coffee-2: #6b4232; --sage: #7c8b6f; --cream: #f7ede1;
    --ink: #34241c; --muted: #7c6c5e; --radius: 10px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, "Segoe UI", Roboto, Arial, sans-serif; color: var(--ink); line-height: 1.7; background: var(--cream); }
h1, h2, h3, .logo { font-family: 'Bricolage Grotesque', 'Inter', sans-serif; font-weight: 700; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; } img { display: block; max-width: 100%; }

.header { position: sticky; top: 0; z-index: 50; background: rgba(247,237,225,.95); backdrop-filter: blur(8px); border-bottom: 1px solid #e8dac6; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo { display: flex; align-items: center; gap: 9px; font-size: 21px; color: var(--coffee); text-decoration: none; }
.logo i { color: var(--sage); font-size: 19px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--coffee-2); }
.nav-toggle { display: none; background: none; border: none; color: var(--coffee); font-size: 20px; cursor: pointer; }

.btn { display: inline-flex; align-items: center; gap: 9px; padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: 14px; text-decoration: none; cursor: pointer; border: 1.5px solid transparent; transition: transform .18s ease, box-shadow .18s ease; }
.btn-small { padding: 9px 20px; font-size: 13px; }
.btn-coffee { background: var(--coffee); color: #fff; box-shadow: 0 10px 22px -8px rgba(74,44,32,.5); }
.btn-coffee:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(74,44,32,.65); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.15); }

/* Static hero */
.hero-cafe { position: relative; height: 82vh; min-height: 500px; background-size: cover; background-position: center; color: #fff; }
.hero-cafe::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(52,36,28,.35) 0%, rgba(52,36,28,.6) 60%, rgba(52,36,28,.94) 100%); }
.hero-cafe-inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 24px; }
.hero-script { font-family: 'Caveat', cursive; font-size: 30px; color: var(--sage); margin-bottom: 4px; }
.hero-cafe h1 { font-size: 48px; line-height: 1.2; max-width: 640px; margin-bottom: 22px; }
.hero-cafe p { max-width: 460px; color: #e8ddd0; font-size: 16px; margin-bottom: 32px; font-family: 'Inter'; font-weight: 400; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.section { padding: 96px 0; }
.eyebrow { display: block; color: var(--coffee-2); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; font-family: 'Inter'; }
.section-head { text-align: center; max-width: 600px; margin: 0 auto 50px; }
.section h2 { font-size: 34px; margin-bottom: 14px; }
.section-lead { color: var(--muted); font-size: 15.5px; font-family: 'Inter'; font-weight: 400; }

/* Chalkboard menu */
.chalkboard { background: #2b241f; border: 10px solid #6b4232; border-radius: 6px; padding: 40px; max-width: 620px; margin: 0 auto; box-shadow: 0 24px 50px -20px rgba(0,0,0,.4); }
.chalk-line { display: flex; align-items: baseline; gap: 10px; padding: 12px 0; color: #f2e9dc; font-family: 'Caveat', cursive; font-size: 22px; border-bottom: 1px dashed rgba(242,233,220,.25); }
.chalk-line:last-child { border-bottom: none; }
.chalk-dots { flex: 1; border-bottom: 2px dotted rgba(242,233,220,.3); transform: translateY(-5px); }
.chalk-price { font-family: 'Inter'; font-size: 14px; color: var(--sage); }

/* Organic latte gallery */
.latte-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.latte-grid img { width: 100%; height: 280px; object-fit: cover; border-radius: 50% 50% 8% 8% / 60% 60% 8% 8%; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media { border-radius: var(--radius); overflow: hidden; }
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; filter: sepia(.1); }
.about-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; font-family: 'Inter'; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; font-weight: 500; }
.about-list i { color: var(--sage); margin-top: 3px; }

.contact-card { background: var(--coffee); color: #fff; border-radius: var(--radius); padding: 42px; text-align: center; max-width: 600px; margin: 0 auto; }
.contact-card h3 { font-size: 28px; margin-bottom: 14px; }
.contact-card p { margin-bottom: 22px; color: #ddcfc0; font-family: 'Inter'; font-weight: 400; }

.footer { background: #241a14; color: #a08e7c; padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer .logo { font-size: 18px; color: #fff; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; }
.footer-social a:hover { background: var(--sage); }
.footer p { width: 100%; text-align: center; font-size: 12px; margin-top: 6px; font-family: 'Inter'; }

@media (max-width: 960px) {
    .hero-cafe h1 { font-size: 36px; }
    .latte-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .chalkboard { padding: 28px; }
}
@media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .hero-cafe h1 { font-size: 27px; }
    .section { padding: 64px 0; }
    .section h2 { font-size: 25px; }
    .latte-grid { grid-template-columns: 1fr; }
}
