:root {
  --paper: #eee6da;
  --paper-deep: #ded2c1;
  --ink: #141412;
  --muted: #5d564e;
  --rule: #1d1b18;
  --accent: #8f4a2f;
  --cream: #f7f1e6;
  --shadow: 0 22px 70px rgba(20, 18, 14, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 20%, rgba(255,255,255,0.65), transparent 24rem),
    linear-gradient(135deg, rgba(20,18,14,0.035) 0 1px, transparent 1px 11px),
    var(--paper);
  font-family: "Mulish", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.19;
  background-image:
    radial-gradient(#302b25 0.7px, transparent 0.9px),
    radial-gradient(#ffffff 0.7px, transparent 0.9px);
  background-position: 0 0, 8px 10px;
  background-size: 18px 18px, 22px 22px;
  mix-blend-mode: multiply;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(150px, 15vw, 205px) 14px clamp(16px, 4vw, 54px);
  background: rgba(238, 230, 218, 0.9);
  border-bottom: 2px solid var(--rule);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: auto;
  object-fit: contain;
}

.brand strong,
h1,
h2,
h3,
h4 {
  font-family: "Alice", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.5vw, 24px);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

.language-toggle {
  position: absolute;
  top: 12px;
  right: clamp(16px, 4vw, 54px);
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(29, 27, 24, 0.38);
  background: rgba(247, 241, 230, 0.72);
  box-shadow: 0 6px 18px rgba(20, 18, 14, 0.08);
}

.language-toggle button {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  opacity: 0.58;
  transition: opacity 160ms ease, background 160ms ease;
}

.language-toggle button + button {
  border-left: 1px solid rgba(29, 27, 24, 0.28);
}

.language-toggle button[aria-pressed="true"] {
  background: rgba(20, 20, 18, 0.08);
  opacity: 1;
}

.language-toggle button:hover {
  opacity: 1;
}

.flag {
  font-size: 0.86rem;
  line-height: 1;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: clamp(42px, 7vw, 90px) clamp(18px, 5vw, 72px);
  border-bottom: 2px solid var(--rule);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4.2rem, 18vw, 11rem);
  line-height: 0.82;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(1.35rem, 4.5vw, 2.4rem);
  line-height: 1.06;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid var(--rule);
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 var(--rule);
}

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

.button.ghost {
  background: rgba(247, 241, 230, 0.4);
}

.daily-note {
  position: absolute;
  right: clamp(-18px, -1.5vw, -8px);
  bottom: clamp(22px, 4vw, 48px);
  width: min(330px, 78%);
  padding: 18px;
  border: 2px solid var(--rule);
  background: rgba(247, 241, 230, 0.94);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.daily-note span,
.daily-note strong {
  display: block;
}

.daily-note span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.daily-note strong {
  margin-top: 4px;
  font-family: "Alice", Georgia, serif;
  font-size: 2rem;
  line-height: 0.98;
}

.daily-note p {
  margin: 12px 0 0;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  width: min(100%, 470px);
  justify-self: end;
  padding: 0 22px 62px 0;
}

.hero-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--rule);
  background: var(--paper-deep);
  box-shadow: 16px 16px 0 rgba(20, 20, 18, 0.12);
  transform: rotate(-1.2deg);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: clamp(470px, 64svh, 680px);
  object-fit: cover;
  object-position: 50% 48%;
}

.coffee-origin {
  position: relative;
  display: grid;
  gap: clamp(42px, 7vw, 88px);
  padding: clamp(58px, 10vw, 124px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  border-bottom: 2px solid var(--rule);
  color: var(--cream);
  background:
    radial-gradient(circle at 5% 18%, rgba(203, 139, 82, 0.22), transparent 25rem),
    linear-gradient(115deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px),
    #24352b;
}

.coffee-origin::after {
  content: "";
  position: absolute;
  right: -9rem;
  bottom: -12rem;
  width: 30rem;
  aspect-ratio: 1;
  border: 1px solid rgba(247, 241, 230, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 3rem rgba(247, 241, 230, 0.025),
    0 0 0 6rem rgba(247, 241, 230, 0.025);
  pointer-events: none;
}

.coffee-origin-mark {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(18rem, 76vw);
  aspect-ratio: 1;
  align-self: start;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid rgba(247, 241, 230, 0.72);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-4deg);
}

.coffee-origin-mark::before,
.coffee-origin-mark::after {
  content: "\2022";
  position: absolute;
  top: 50%;
  font-size: 1.25rem;
  transform: translateY(-50%);
}

.coffee-origin-mark::before {
  left: 1rem;
}

.coffee-origin-mark::after {
  right: 1rem;
}

.coffee-origin-mark span,
.coffee-origin-mark small {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.coffee-origin-mark strong {
  margin: 0.12em 0 0.3em;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(2.3rem, 11vw, 4rem);
  font-weight: 400;
  line-height: 0.86;
}

.coffee-origin-mark sup {
  font-family: "Mulish", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.24em;
  vertical-align: top;
}

.coffee-origin-mark small {
  max-width: 14rem;
  line-height: 1.5;
  opacity: 0.7;
}

.coffee-origin-story {
  position: relative;
  z-index: 1;
}

.coffee-origin-heading {
  max-width: 900px;
  margin-bottom: clamp(30px, 6vw, 64px);
}

.coffee-origin-heading h2 {
  color: #e7b47d;
}

.coffee-origin-copy {
  display: grid;
  gap: 20px;
  max-width: 940px;
}

.coffee-origin-copy p {
  margin: 0;
  color: rgba(247, 241, 230, 0.8);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.72;
}

.coffee-origin-copy em {
  color: var(--cream);
  font-family: "Alice", Georgia, serif;
  font-size: 1.08em;
}

.coffee-origin-copy .coffee-origin-welcome {
  max-width: 28ch;
  margin-top: 8px;
  color: #e7b47d;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.2;
}

.coffee-origin-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: clamp(42px, 7vw, 76px) 0 0;
  border-top: 1px solid rgba(247, 241, 230, 0.35);
  border-left: 1px solid rgba(247, 241, 230, 0.35);
}

.coffee-origin-facts div {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid rgba(247, 241, 230, 0.35);
  border-bottom: 1px solid rgba(247, 241, 230, 0.35);
}

.coffee-origin-facts dt {
  margin-bottom: 7px;
  color: rgba(247, 241, 230, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coffee-origin-facts dd {
  margin: 0;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1;
}

.coffee-origin-facts dd span {
  margin-left: 0.18em;
  font-family: "Mulish", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.42em;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coffee-origin-facts dd b {
  color: #e7b47d;
  font-weight: 400;
}

.photo-story {
  display: grid;
  gap: clamp(36px, 6vw, 86px);
  padding: clamp(58px, 9vw, 110px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  border-bottom: 2px solid var(--rule);
  color: var(--cream);
  background: var(--accent);
}

.photo-story-heading {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.photo-story-heading h2 {
  color: var(--cream);
}

.photo-story-heading > p:last-child {
  max-width: 28ch;
  margin: 24px 0 0;
  color: rgba(247, 241, 230, 0.78);
  font-family: "Alice", Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.15;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(12, minmax(30px, 5vw));
  gap: 12px;
}

.photo-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 241, 230, 0.68);
  background: #392b22;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
  transition: filter 300ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

.photo-card:hover img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.025);
}

.photo-card-table {
  grid-column: 1;
  grid-row: 1 / span 7;
}

.photo-card-table img {
  object-position: 50% 55%;
}

.photo-card-bakery {
  grid-column: 2;
  grid-row: 1 / span 5;
}

.photo-card-pastry {
  grid-column: 2;
  grid-row: 6 / span 7;
}

.photo-card-cookie {
  grid-column: 1;
  grid-row: 8 / span 5;
}

.menu-band,
.drinks-band,
.orders,
.visit {
  padding: clamp(42px, 8vw, 92px) clamp(18px, 5vw, 72px);
  border-bottom: 2px solid var(--rule);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 5.8rem);
  line-height: 0.9;
}

.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.menu-section {
  padding: 18px 0 4px;
  border-top: 3px solid var(--rule);
}

.menu-section.featured,
.menu-section.store {
  border-top-width: 6px;
}

h3 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 7vw, 3.1rem);
  line-height: 0.95;
}

h4 {
  margin: 24px 0 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(20, 20, 18, 0.45);
  font-size: 1.5rem;
}

h4 small {
  color: var(--muted);
  font-family: "Mulish", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
}

.size-label,
.note {
  margin: -5px 0 12px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.note {
  max-width: 25rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.menu-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 14px;
  min-height: 45px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(20, 20, 18, 0.38);
  font-family: "Alice", Georgia, serif;
  font-size: clamp(1.45rem, 5.4vw, 2.1rem);
  line-height: 1.02;
}

.menu-list.compact li {
  min-height: 38px;
  font-size: clamp(1.22rem, 4.7vw, 1.65rem);
}

.menu-list b {
  font: inherit;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.menu-list em {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: "Mulish", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
}

.orders {
  display: grid;
  gap: 22px;
  background: var(--ink);
  color: var(--cream);
}

.orders ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Alice", Georgia, serif;
  font-size: clamp(1.9rem, 8vw, 4rem);
  line-height: 0.95;
}

.orders li::before {
  content: "";
  display: inline-block;
  width: 0.58em;
  height: 2px;
  margin-right: 0.28em;
  vertical-align: middle;
  background: var(--cream);
}

.orders p:last-child {
  max-width: 420px;
  margin: 0;
  color: rgba(247, 241, 230, 0.78);
}

.visit {
  display: grid;
  gap: 22px;
}

.visit p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 560px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 104px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.72rem;
  }

  .language-toggle {
    top: 13px;
    right: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  .hero-visual {
    width: 100%;
    padding-right: 10px;
  }

  .hero-photo img {
    height: min(120vw, 610px);
  }

  .daily-note {
    right: 0;
    bottom: 18px;
  }

  h1 {
    font-size: clamp(4.2rem, 21vw, 7rem);
  }

  .photo-grid {
    grid-template-rows: repeat(12, minmax(22px, 8vw));
    gap: 8px;
  }

}

@media (min-width: 760px) {
  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(5rem, 10vw, 9rem);
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }

  .coffee-origin {
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    align-items: start;
  }

  .coffee-origin-mark {
    position: sticky;
    top: 130px;
  }

  .coffee-origin-copy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(24px, 4vw, 52px);
  }

  .coffee-origin-copy .coffee-origin-welcome {
    align-self: end;
  }

  .coffee-origin-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .photo-story {
    grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
    align-items: start;
  }

  .photo-story-heading {
    position: sticky;
    top: 130px;
  }

  .photo-grid {
    grid-template-rows: repeat(12, minmax(32px, 4vw));
  }

  .menu-grid.small {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .orders,
  .visit {
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
    align-items: center;
  }

  .visit-actions {
    justify-content: end;
  }
}

@media (min-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.72fr);
  }

  .coffee-origin {
    grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  }

  .photo-story {
    grid-template-columns: minmax(270px, 0.34fr) minmax(0, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-grid.small {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .photo-card img {
    transition: none;
  }
}
