:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #12233f;
  --muted: #435471;
  --primary: #0f2f5f;
  --primary-dark: #0a2348;
  --ring: rgba(15, 47, 95, 0.25);
  --border: #dce5f2;
  --radius: 16px;
  --shadow: 0 12px 40px rgba(17, 39, 75, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}

body {
  background-image: url("../images/beans-bg.svg");
  background-size: 420px;
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand img {
  width: 32px;
  height: 32px;
}

.nav {
  display: flex;
  gap: 22px;
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 24px;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  border: 0;
  background: transparent;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
  color: var(--muted);
}

.lang-btn.active {
  background: var(--primary);
  color: white;
}

.hero {
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 700;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.1;
  margin: 10px 0 14px;
}

h1 {
  font-size: clamp(2.1rem, 4.7vw, 3.6rem);
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
}

.lead,
.section-intro,
p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-ghost {
  border-color: var(--border);
  background: #fff;
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.stats {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 26px 0 0;
  gap: 22px;
  flex-wrap: wrap;
}

.stats strong {
  display: block;
  font-size: 1.2rem;
}

.hero-art img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: white;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border-block: 1px solid var(--border);
}

.menu-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 8px;
}

.card span {
  display: inline-block;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.split img,
.gallery-grid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quotes {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

blockquote {
  margin: 0;
  padding: 20px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-weight: 500;
}

blockquote cite {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.92rem;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.booking {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.booking h3 {
  margin-top: 0;
}

.booking label {
  display: block;
  margin-bottom: 12px;
}

.booking span {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 600;
}

input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 11px 12px;
  font: inherit;
}

input:focus {
  outline: 3px solid var(--ring);
  border-color: var(--primary);
}

.footer {
  border-top: 1px solid var(--border);
  background: #edf2fa;
}

.footer-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .split,
  .visit-grid,
  .quotes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: none;
    flex-direction: column;
    padding: 14px 4vw;
  }

  .nav.open {
    display: flex;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-latte {
    max-height: 280px;
    object-fit: contain;
  }
}
