:root {
  color-scheme: light;
  --background: 48 78% 92%;
  --surface: 43 100% 97%;
  --surface-strong: 47 88% 86%;
  --foreground: 24 38% 15%;
  --muted: 25 20% 35%;
  --primary: 6 66% 54%;
  --primary-strong: 6 65% 45%;
  --primary-foreground: 45 100% 96%;
  --secondary: 95 31% 35%;
  --secondary-soft: 89 39% 76%;
  --secondary-foreground: 45 100% 96%;
  --accent: 44 100% 66%;
  --accent-soft: 45 100% 79%;
  --line: 24 34% 22%;
  --line-soft: 27 30% 25% / 0.24;
  --shadow-color: 24 38% 15%;
  --focus: 215 90% 48%;
  --display: "Bricolage Grotesque", "Arial Narrow", sans-serif;
  --body: "Manrope", system-ui, sans-serif;
  --content: 1240px;
  --page-gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(76px, 10vw, 144px);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --border: 1.5px solid hsl(var(--line));
  --tactile-shadow: 7px 7px 0 hsl(var(--shadow-color));
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --background: 25 30% 10%;
  --surface: 25 25% 14%;
  --surface-strong: 27 22% 20%;
  --foreground: 48 55% 92%;
  --muted: 40 22% 70%;
  --primary: 7 69% 60%;
  --primary-strong: 7 70% 67%;
  --primary-foreground: 24 38% 12%;
  --secondary: 88 34% 54%;
  --secondary-soft: 89 22% 29%;
  --secondary-foreground: 24 38% 12%;
  --accent: 44 87% 64%;
  --accent-soft: 43 45% 32%;
  --line: 47 48% 88%;
  --line-soft: 47 48% 88% / 0.2;
  --shadow-color: 18 35% 4%;
  --focus: 193 95% 65%;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  transition: background-color 220ms ease, color 220ms ease;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

:focus-visible {
  outline: 3px solid hsl(var(--focus));
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border: var(--border);
  border-radius: 10px;
  background: hsl(var(--surface));
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 7px var(--page-gutter);
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  font-size: 0.79rem;
  font-weight: 700;
}

.announcement p {
  margin: 0;
}

.announcement p span {
  margin-right: 7px;
  color: hsl(var(--accent));
}

.announcement a {
  text-underline-offset: 3px;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  width: min(100%, calc(var(--content) + 2 * var(--page-gutter)));
  min-height: 86px;
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  color: hsl(var(--foreground));
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  width: 37px;
  height: 37px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
}

.main-nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: hsl(var(--primary));
  content: "";
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: var(--border);
  border-radius: 50%;
  background: hsl(var(--surface));
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}

.theme-toggle:hover {
  transform: rotate(8deg);
  background: hsl(var(--accent));
}

.theme-toggle:active {
  transform: rotate(8deg) scale(0.92);
}

.theme-toggle .icon {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-moon,
:root[data-theme="dark"] .icon-sun {
  display: none;
}

:root[data-theme="dark"] .icon-moon {
  display: block;
}

.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: var(--border);
  border-radius: 999px;
  background: hsl(var(--primary));
  box-shadow: 4px 4px 0 hsl(var(--line));
  color: hsl(var(--primary-foreground));
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 hsl(var(--line));
  background: hsl(var(--primary-strong));
}

.button:active {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 hsl(var(--line));
}

.button-small {
  min-height: 42px;
  padding: 9px 18px;
  box-shadow: none;
  font-size: 0.82rem;
}

.button-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 0 hsl(var(--line));
}

.hero {
  display: grid;
  width: min(100%, calc(var(--content) + 2 * var(--page-gutter)));
  min-height: min(700px, calc(100vh - 122px));
  margin: 0 auto;
  padding: clamp(30px, 4vh, 54px) var(--page-gutter) clamp(54px, 7vh, 82px);
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 710px;
  animation: copy-in 700ms 80ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  font-size: 0.82rem;
  font-weight: 800;
}

.pulse-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: hsl(var(--secondary));
}

.pulse-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid hsl(var(--secondary));
  border-radius: 50%;
  content: "";
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--display);
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 5.2vw, 5.45rem);
  font-stretch: 92%;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.hero-intro {
  max-width: 610px;
  margin: 0;
  color: hsl(var(--muted));
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0 5px;
  border-bottom: 2px solid currentColor;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.hero-note {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin-top: clamp(34px, 5vh, 56px);
  align-items: center;
  gap: 24px;
}

.hero-note div {
  display: grid;
  gap: 2px;
}

.note-label {
  color: hsl(var(--muted));
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-note strong {
  font-size: 0.88rem;
}

.note-divider {
  width: 1px;
  height: 34px;
  background: hsl(var(--line-soft));
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 490px);
  animation: visual-in 780ms 160ms both cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-frame {
  position: relative;
  height: clamp(480px, 60vh, 620px);
  overflow: hidden;
  border: var(--border);
  border-radius: 49% 49% 30px 30px;
  box-shadow: 10px 11px 0 hsl(var(--line));
  background: hsl(var(--surface-strong));
}

.image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 66%, hsl(var(--foreground) / 0.1));
  content: "";
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roast-sticker {
  position: absolute;
  z-index: 2;
  right: -40px;
  bottom: 28px;
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border: var(--border);
  border-radius: 50%;
  background: hsl(var(--accent));
  box-shadow: 5px 5px 0 hsl(var(--line));
  color: hsl(24 38% 15%);
  transform: rotate(10deg);
}

.roast-sticker svg {
  width: 112px;
  height: 112px;
  overflow: visible;
}

.roast-sticker text {
  fill: currentColor;
  font-family: var(--body);
  font-size: 8.2px;
  font-weight: 800;
  letter-spacing: 1.1px;
}

.sticker-spark {
  fill: hsl(var(--primary));
  stroke: hsl(var(--line));
  stroke-width: 1.4;
}

.scribble {
  position: absolute;
  z-index: 3;
  top: 9%;
  left: -75px;
  width: 112px;
  transform: rotate(-12deg);
  color: hsl(var(--primary));
}

.scribble path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.ticker {
  overflow: hidden;
  border-block: var(--border);
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-height: 64px;
  align-items: center;
  gap: 28px;
  padding: 8px 0;
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 750;
}

.ticker-track i {
  color: hsl(var(--accent));
  font-style: normal;
}

.section-shell {
  width: min(100%, calc(var(--content) + 2 * var(--page-gutter)));
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

.menu-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.section-heading > div:first-child {
  max-width: 770px;
}

.section-tag {
  width: max-content;
  margin: 0 0 16px;
  padding-bottom: 4px;
  border-bottom: 3px solid hsl(var(--primary));
  font-size: 0.78rem;
  font-weight: 800;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-stretch: 80%;
  font-weight: 780;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.menu-filters {
  display: flex;
  padding: 4px;
  border: var(--border);
  border-radius: 999px;
  background: hsl(var(--surface));
}

.filter-button {
  min-width: 74px;
  padding: 9px 15px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: hsl(var(--foreground));
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
}

.menu-board {
  display: grid;
  margin-top: 56px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.menu-board.is-feature-hidden {
  grid-template-columns: 1fr;
}

.menu-board.is-feature-hidden .menu-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  border-top: 0;
}

.menu-board.is-feature-hidden .list-item {
  border-top: var(--border);
}

.featured-item {
  position: relative;
  display: grid;
  min-height: 480px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 50px);
  border: var(--border);
  border-radius: var(--radius-lg);
  background: hsl(var(--primary));
  box-shadow: var(--tactile-shadow);
  color: hsl(var(--primary-foreground));
  grid-template-rows: auto 1fr;
}

.featured-copy {
  position: relative;
  z-index: 2;
  max-width: 390px;
}

.item-note {
  margin: 0 0 18px;
  font-size: 0.75rem;
  font-weight: 800;
}

.featured-item h3 {
  max-width: 400px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  font-stretch: 82%;
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.featured-item p:not(.item-note) {
  max-width: 380px;
  margin: 0;
  font-size: 0.94rem;
}

.price {
  font-family: var(--display);
  font-weight: 800;
}

.featured-item .price {
  display: inline-grid;
  width: 62px;
  height: 62px;
  margin-top: 24px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: hsl(var(--accent));
  color: hsl(24 38% 15%);
  transform: rotate(-8deg);
}

.latte-art {
  position: absolute;
  right: -54px;
  bottom: -84px;
  width: clamp(250px, 26vw, 380px);
  height: clamp(250px, 26vw, 380px);
  transform: rotate(12deg);
}

.cup {
  position: absolute;
  z-index: 2;
  inset: 12% 12%;
  overflow: hidden;
  border: 3px solid hsl(24 38% 15%);
  border-radius: 50%;
  background: hsl(37 30% 32%);
  box-shadow: inset 0 0 0 17px hsl(var(--surface));
}

.cup::after {
  position: absolute;
  z-index: -1;
  top: 42%;
  right: -18%;
  width: 33%;
  height: 28%;
  border: 10px solid hsl(var(--surface));
  border-radius: 50%;
  content: "";
}

.saucer {
  position: absolute;
  inset: 0;
  border: 3px solid hsl(24 38% 15%);
  border-radius: 50%;
  background: hsl(var(--accent));
}

.foam {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  border: 3px solid hsl(var(--surface));
  border-radius: 54% 46% 54% 46%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.foam-one {
  width: 48%;
  height: 48%;
}

.foam-two {
  width: 33%;
  height: 33%;
}

.foam-three {
  width: 18%;
  height: 18%;
  background: hsl(var(--surface));
}

.menu-list {
  display: grid;
  border-top: var(--border);
}

.list-item {
  display: grid;
  min-height: 116px;
  padding: 24px 12px 24px 4px;
  border-bottom: var(--border);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  transition: padding 180ms ease, background-color 180ms ease;
}

.list-item:hover {
  padding-inline: 20px;
  background: hsl(var(--surface-strong));
}

.list-item h3 {
  margin-bottom: 6px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-stretch: 86%;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.list-item p {
  margin: 0;
  color: hsl(var(--muted));
  font-size: 0.88rem;
}

.list-item .price {
  font-size: 1rem;
}

.menu-footnote {
  margin: 30px 0 0;
  color: hsl(var(--muted));
  font-size: 0.8rem;
  text-align: right;
}

.about-section {
  position: relative;
  overflow: hidden;
  border-block: var(--border);
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.about-section::before {
  position: absolute;
  top: -200px;
  right: -110px;
  width: 440px;
  height: 440px;
  border: 1px solid hsl(var(--secondary-foreground) / 0.23);
  border-radius: 50%;
  box-shadow: 0 0 0 46px hsl(var(--secondary-foreground) / 0.07), 0 0 0 92px hsl(var(--secondary-foreground) / 0.04);
  content: "";
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.about-portrait {
  position: relative;
  min-height: 510px;
}

.sun-shape {
  position: absolute;
  inset: 2% 8% 12%;
  border: var(--border);
  border-radius: 50% 50% 28px 28px;
  background: hsl(var(--accent));
  box-shadow: 9px 9px 0 hsl(24 38% 15%);
}

.shop-window {
  position: absolute;
  right: 1%;
  bottom: 10%;
  left: 15%;
  overflow: hidden;
  border: 3px solid hsl(24 38% 15%);
  border-radius: 10px 10px 24px 24px;
  background: hsl(36 65% 93%);
  color: hsl(24 38% 15%);
}

.awning {
  display: grid;
  height: 76px;
  grid-template-columns: repeat(5, 1fr);
}

.awning span {
  border-right: 2px solid hsl(24 38% 15%);
  border-bottom: 3px solid hsl(24 38% 15%);
  background: hsl(var(--primary));
}

.awning span:nth-child(even) {
  background: hsl(var(--surface));
}

.awning span:last-child {
  border-right: 0;
}

.window-pane {
  position: relative;
  height: 220px;
  background: linear-gradient(145deg, hsl(193 35% 82%) 0 48%, hsl(193 35% 88%) 48% 53%, hsl(193 35% 82%) 53%);
}

.window-pane::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 49.3%, hsl(24 38% 15%) 49.3% 50.7%, transparent 50.7%);
  content: "";
}

.window-sign {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 50%;
  padding: 9px 15px;
  transform: translateX(-50%) rotate(-2deg);
  border: 2px solid hsl(24 38% 15%);
  border-radius: 8px;
  background: hsl(var(--accent));
  font-family: var(--display);
  font-weight: 800;
}

.table-line {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 45px;
  left: 0;
  height: 12px;
  border-block: 2px solid hsl(24 38% 15%);
  background: hsl(29 44% 43%);
}

.plant {
  position: absolute;
  z-index: 4;
  right: 14%;
  bottom: 55px;
  width: 74px;
  height: 90px;
}

.plant b {
  position: absolute;
  right: 13px;
  bottom: 0;
  width: 48px;
  height: 42px;
  border: 2px solid hsl(24 38% 15%);
  border-radius: 4px 4px 16px 16px;
  background: hsl(var(--primary));
}

.plant i {
  position: absolute;
  z-index: 2;
  bottom: 34px;
  left: 33px;
  width: 19px;
  height: 46px;
  border: 2px solid hsl(24 38% 15%);
  border-radius: 70% 0 70% 0;
  background: hsl(var(--secondary));
  transform-origin: bottom center;
}

.plant i:nth-child(1) {
  transform: rotate(-38deg);
}

.plant i:nth-child(2) {
  transform: translateY(-8px) rotate(2deg);
}

.plant i:nth-child(3) {
  transform: rotate(38deg) scale(0.9);
}

.portrait-caption {
  position: absolute;
  right: 4%;
  bottom: 0;
  margin: 0;
  padding: 9px 15px;
  border: 2px solid hsl(24 38% 15%);
  border-radius: 999px;
  background: hsl(var(--surface));
  color: hsl(24 38% 15%);
  font-size: 0.73rem;
  font-weight: 800;
  transform: rotate(4deg);
}

.about-copy .section-tag {
  border-color: hsl(var(--accent));
}

.about-copy h2 {
  max-width: 760px;
}

.about-columns {
  display: grid;
  margin-top: 40px;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  color: hsl(var(--secondary-foreground) / 0.84);
}

.about-columns p {
  margin: 0;
  font-size: 0.96rem;
}

.values {
  display: flex;
  margin-top: 38px;
  flex-wrap: wrap;
  gap: 10px;
}

.values span {
  padding: 8px 13px;
  border: 1px solid hsl(var(--secondary-foreground) / 0.52);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
}

.visit-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.visit-card {
  display: grid;
  overflow: hidden;
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--tactile-shadow);
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.72fr) minmax(300px, 0.85fr);
}

.visit-details,
.hours-panel {
  padding: clamp(36px, 5vw, 66px);
}

.visit-details {
  background: hsl(var(--accent));
  color: hsl(24 38% 15%);
}

.visit-details .section-tag {
  border-color: hsl(var(--primary));
}

.visit-details h2 {
  max-width: 530px;
  margin-bottom: 34px;
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
}

.visit-details address {
  margin-bottom: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.75;
}

.button-dark {
  background: hsl(24 38% 15%);
  color: hsl(45 100% 96%);
}

.button-dark:hover {
  background: hsl(24 42% 22%);
}

.transit-note {
  margin: 24px 0 0;
  font-size: 0.73rem;
  font-weight: 700;
}

.hours-panel {
  border-left: var(--border);
  background: hsl(var(--surface));
}

.hours-title {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hours-title h3 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 780;
  letter-spacing: -0.03em;
}

.hours-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: hsl(var(--secondary));
  font-size: 0.69rem;
  font-weight: 800;
}

.hours-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: flex;
  padding: 7px 0;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid hsl(var(--line-soft));
  color: hsl(var(--muted));
  font-size: 0.76rem;
}

.hours-list div:last-child {
  border-bottom: 0;
}

.hours-list .is-today {
  color: hsl(var(--foreground));
  font-weight: 800;
}

.hours-list .is-today dt::after {
  margin-left: 6px;
  color: hsl(var(--primary));
  content: "•";
}

.hours-list dd {
  margin: 0;
  white-space: nowrap;
}

.map-art {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-left: var(--border);
  background-color: hsl(var(--secondary-soft));
  background-image: linear-gradient(hsl(var(--line) / 0.1) 1px, transparent 1px), linear-gradient(90deg, hsl(var(--line) / 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
}

.map-block {
  position: absolute;
  border: 1.5px solid hsl(var(--line));
  border-radius: 8px;
  background: hsl(var(--surface) / 0.8);
}

.block-one {
  top: -12%;
  right: 46%;
  width: 47%;
  height: 39%;
  transform: rotate(-8deg);
}

.block-two {
  top: 7%;
  right: -19%;
  width: 58%;
  height: 45%;
  transform: rotate(10deg);
}

.block-three {
  bottom: -7%;
  left: -17%;
  width: 64%;
  height: 48%;
  transform: rotate(7deg);
}

.block-four {
  right: -6%;
  bottom: -13%;
  width: 48%;
  height: 51%;
  transform: rotate(-9deg);
}

.street {
  position: absolute;
  z-index: 2;
  color: hsl(var(--foreground));
  font-size: 0.66rem;
  font-weight: 800;
}

.street-one {
  top: 43%;
  left: 8%;
  transform: rotate(-3deg);
}

.street-two {
  top: 16%;
  left: 46%;
  transform: rotate(82deg);
}

.street-three {
  right: 10%;
  bottom: 33%;
  transform: rotate(-4deg);
}

.map-pin {
  position: absolute;
  z-index: 4;
  top: 48%;
  left: 53%;
  display: grid;
  justify-items: center;
  transform: translate(-50%, -50%);
}

.map-pin svg {
  width: 58px;
  overflow: visible;
  filter: drop-shadow(3px 3px 0 hsl(var(--line)));
}

.map-pin path {
  fill: hsl(var(--primary));
  stroke: hsl(var(--line));
  stroke-width: 2;
}

.map-pin circle {
  fill: hsl(var(--accent));
  stroke: hsl(var(--line));
  stroke-width: 2;
}

.map-pin span {
  margin-top: 7px;
  padding: 5px 10px;
  border: 1.5px solid hsl(var(--line));
  border-radius: 999px;
  background: hsl(var(--surface));
  color: hsl(var(--foreground));
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 800;
}

.site-footer {
  padding: 70px var(--page-gutter) 26px;
  border-top: var(--border);
  background: hsl(var(--foreground));
  color: hsl(var(--background));
}

.footer-main,
.footer-bottom {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.footer-main {
  display: grid;
  padding-bottom: 64px;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: start;
  gap: 42px;
}

.footer-brand {
  color: inherit;
}

.footer-main > p {
  max-width: 450px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-stretch: 80%;
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.footer-links {
  display: grid;
  justify-items: end;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-links a {
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  padding-top: 20px;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid hsl(var(--background) / 0.24);
  color: hsl(var(--background) / 0.67);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

@keyframes copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes visual-in {
  from {
    opacity: 0;
    transform: rotate(2deg) scale(0.94);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

@media (max-width: 1100px) {
  .hero {
    min-height: 650px;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: 54px;
  }

  h1 {
    font-size: clamp(3.25rem, 6.3vw, 4.8rem);
  }

  .image-frame {
    height: 520px;
  }

  .roast-sticker {
    right: -14px;
    width: 108px;
    height: 108px;
  }

  .roast-sticker svg {
    width: 96px;
    height: 96px;
  }

  .scribble {
    display: none;
  }

  .visit-card {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .map-art {
    min-height: 330px;
    border-top: var(--border);
    border-left: 0;
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 44px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  h1 {
    max-width: 680px;
    font-size: clamp(3.25rem, 9vw, 4.75rem);
  }

  .hero-visual {
    width: min(88%, 520px);
    margin-top: 8px;
    justify-self: center;
  }

  .image-frame {
    height: clamp(510px, 74vw, 650px);
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .menu-board {
    grid-template-columns: 1fr;
  }

  .menu-board.is-feature-hidden .menu-list {
    display: grid;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    width: min(100%, 500px);
    justify-self: center;
  }

  .about-copy {
    max-width: 760px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > p {
    order: 3;
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --page-gutter: 20px;
    --section-space: 82px;
    --tactile-shadow: 5px 5px 0 hsl(var(--shadow-color));
  }

  .announcement {
    min-height: 34px;
    justify-content: center;
    font-size: 0.7rem;
  }

  .announcement a {
    display: none;
  }

  .site-header {
    min-height: 74px;
    gap: 12px;
  }

  .brand {
    font-size: 1.45rem;
  }

  .brand-mark {
    width: 33px;
    height: 33px;
  }

  .button-small {
    display: none;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 48px;
    gap: 30px;
  }

  .hero-kicker {
    margin-bottom: 18px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(3.05rem, 13vw, 3.65rem);
    line-height: 1.02;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 26px;
    align-items: center;
    flex-direction: row;
    gap: 18px;
  }

  .hero-note {
    display: none;
  }

  .hero-visual {
    width: calc(100% - 18px);
  }

  .image-frame {
    height: 340px;
    border-radius: 48% 48% 24px 24px;
    box-shadow: 7px 8px 0 hsl(var(--line));
  }

  .roast-sticker {
    right: -11px;
    bottom: 22px;
    width: 96px;
    height: 96px;
    box-shadow: 4px 4px 0 hsl(var(--line));
  }

  .roast-sticker svg {
    width: 85px;
    height: 85px;
  }

  .ticker-track {
    min-height: 56px;
    gap: 20px;
    font-size: 1rem;
  }

  h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .menu-heading {
    gap: 26px;
  }

  .menu-filters {
    width: 100%;
  }

  .filter-button {
    flex: 1;
  }

  .menu-board {
    margin-top: 38px;
  }

  .menu-board.is-feature-hidden .menu-list {
    display: block;
  }

  .featured-item {
    min-height: 500px;
    padding: 30px 26px;
  }

  .featured-item h3 {
    font-size: 2.55rem;
  }

  .latte-art {
    right: -50px;
    bottom: -55px;
    width: 300px;
    height: 300px;
  }

  .list-item {
    min-height: 116px;
    padding: 23px 3px;
    gap: 16px;
  }

  .list-item:hover {
    padding-inline: 8px;
  }

  .menu-footnote {
    text-align: left;
  }

  .about-grid {
    gap: 68px;
  }

  .about-portrait {
    min-height: 420px;
  }

  .awning {
    height: 60px;
  }

  .window-pane {
    height: 178px;
  }

  .about-columns {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .values {
    gap: 8px;
  }

  .visit-card {
    grid-template-columns: 1fr;
  }

  .visit-details,
  .hours-panel {
    padding: 36px 28px;
  }

  .visit-details h2 {
    font-size: 3.1rem;
  }

  .hours-panel {
    border-top: var(--border);
    border-left: 0;
  }

  .map-art {
    min-height: 310px;
    grid-column: auto;
  }

  .footer-main {
    padding-bottom: 50px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-main > p {
    order: 0;
    grid-column: auto;
    font-size: 3rem;
  }

  .footer-links {
    justify-items: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
