@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --paper: #f7f4ee;
  --cream: #faf8f4;
  --ink: #3a3632;
  --muted: #8a7f79;
  --line: rgba(0, 0, 0, .05);
  --shadow: 0 20px 50px rgba(0, 0, 0, .04);
  --softshadow: 0 8px 24px rgba(0, 0, 0, .03);
  --radius: 26px;
  --radius2: 18px;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  font-size: 17px;
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: .75
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 238, .92);
  backdrop-filter: blur(12px) saturate(120%);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 20px;
}

.brand img {
  height: 36px;
  width: auto;
  display: block;
}

.links a {
  margin-left: 24px;
  font-weight: 500;
  color: var(--muted);
  font-size: 18px;
}

.links a:hover {
  color: var(--ink);
  opacity: 1
}

.hero {
  padding: 160px 0 100px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(to bottom, rgba(247, 244, 238, 0.80) 0%, rgba(247, 244, 238, 0.80) 50%, rgba(247, 244, 238, 0.95) 95%),
    url('images/cafe-hero.png');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  align-items: start;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

h1 {
  font-size: clamp(35px, 5vw, 60px);
  line-height: 1.05;
  margin: 16px 0 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 60ch;
  margin: 0;
  line-height: 1.7;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, .08);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.btn.primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pill {
  background: rgba(255, 255, 255, .6);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--softshadow);
  margin-bottom: 20px;
}

.card strong {
  font-weight: 600;
  color: var(--ink);
}

.list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

section {
  padding: 120px 0
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

h2 {
  font-size: 32px;
  margin: 0 0 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.sub {
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.7;
}

.menu-item {
  margin-bottom: 20px;
}

.menu-item b {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ink);
}

.menu-item small {
  color: var(--muted);
  line-height: 1.6;
}

footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  color: var(--muted);
  font-size: 15px;
}

@media (max-width:900px) {
  .wrap {
    padding: 0 24px
  }

  .hero {
    padding: 120px 0 80px
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .links a {
    margin-left: 16px;
    font-size: 15px
  }

  section {
    padding: 80px 0
  }

  .card {
    padding: 28px
  }
}