:root {
  --ink: #141719;
  --charcoal: #252b2e;
  --graphite: #485155;
  --steel: #737d80;
  --concrete: #cfd1ca;
  --concrete-deep: #b7bbb4;
  --concrete-light: #dedfd8;
  --paper: #f6f2ea;
  --white: #fbf8f1;
  --blue: #185f86;
  --blue-dark: #103d5a;
  --brown: #8a5634;
  --brown-dark: #5f3825;
  --green: #536a57;
  --line: rgba(20, 23, 25, 0.24);
  --line-strong: rgba(20, 23, 25, 0.72);
  --shadow-hard: 8px 8px 0 rgba(20, 23, 25, 0.92);
  --shadow-blue: 8px 8px 0 rgba(24, 95, 134, 0.95);
  --font-heading: "Barlow Condensed", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --container: 1180px;
  --gutter: 24px;
  --demo-banner-height: 40px;
  --header-height: 74px;
  --section: 84px;
  --section-mobile: 56px;
  --radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(20, 23, 25, 0.08) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(0deg, rgba(20, 23, 25, 0.06) 1px, transparent 1px) 0 0 / 44px 44px,
    radial-gradient(circle at 18% 12%, rgba(24, 95, 134, 0.12), transparent 26%),
    radial-gradient(circle at 90% 38%, rgba(138, 86, 52, 0.12), transparent 28%),
    var(--concrete);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
}

address {
  font-style: normal;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

::selection {
  color: var(--white);
  background: var(--blue-dark);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  position: relative;
  padding: var(--section) 0;
  border-top: 2px solid var(--line-strong);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 12px;
  background: var(--blue);
  opacity: 0.75;
  pointer-events: none;
}

.coffee-section::before,
.food-section::before {
  background:
    linear-gradient(var(--blue), var(--blue)) 0 0 / 100% 70% no-repeat,
    linear-gradient(var(--brown), var(--brown)) 0 70% / 100% 18% no-repeat,
    transparent;
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-label::before,
.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  font-size: 4rem;
  font-weight: 900;
}

h2 {
  font-size: 3rem;
  font-weight: 900;
}

h3 {
  font-size: 1.55rem;
  font-weight: 800;
}

p {
  color: rgba(20, 23, 25, 0.74);
}

.section-copy {
  position: relative;
  max-width: 690px;
}

.section-copy > p:last-child,
.section-header > p:last-child {
  margin-top: 20px;
  font-size: 1.02rem;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(240px, 0.9fr);
  gap: 28px;
  align-items: end;
  max-width: none;
  margin: 0 0 36px;
  padding-bottom: 18px;
  text-align: left;
  border-bottom: 2px solid var(--line-strong);
}

.section-header .section-label {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.section-header p:last-child {
  margin: 0;
  max-width: 560px;
}

.section-header.align-left {
  display: block;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 2px solid var(--ink);
  border-radius: 0;
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.btn::after {
  content: "";
  width: 16px;
  height: 2px;
  margin-left: 10px;
  background: currentColor;
}

.btn:hover,
.btn:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.btn:focus-visible,
.nav-link:focus-visible,
.mobile-nav-link:focus-visible,
.header-instagram:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.btn-primary {
  color: var(--white);
  background: var(--blue);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-dark);
}

.btn-secondary {
  color: var(--blue-dark);
  background: var(--paper);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.btn-ghost,
.btn-call,
.btn-social {
  color: var(--ink);
  background: var(--concrete-light);
}

.btn-ghost:hover,
.btn-ghost:focus-visible,
.btn-call:hover,
.btn-call:focus-visible,
.btn-social:hover,
.btn-social:focus-visible {
  color: var(--white);
  background: var(--brown);
}

.btn-social {
  gap: 9px;
}

.btn-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.btn-social::after {
  margin-left: 2px;
}

.btn-large {
  min-height: 56px;
  padding: 17px 24px;
}

.demo-banner {
  position: sticky;
  top: 0;
  z-index: 70;
  display: grid;
  min-height: var(--demo-banner-height);
  place-items: center;
  padding: 8px var(--gutter);
  border-bottom: 2px solid var(--ink);
  color: var(--white);
  background: var(--blue-dark);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.demo-banner a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: var(--demo-banner-height);
  z-index: 50;
  border-bottom: 2px solid var(--ink);
  background: rgba(222, 223, 216, 0.96);
  backdrop-filter: blur(10px);
  transition: background 160ms ease, box-shadow 160ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(246, 242, 234, 0.98);
  box-shadow: 0 8px 0 rgba(20, 23, 25, 0.12);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: stretch;
  min-width: 0;
  border-left: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
  background: var(--white);
}

.header-brand {
  align-self: stretch;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.brand-logo {
  display: grid;
  width: 132px;
  height: 54px;
  place-items: center;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translateY(-4px);
  filter: contrast(1.08) saturate(0.95);
}

.brand-mark {
  display: grid;
  width: 48px;
  min-height: 100%;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--blue-dark);
  border-right: 2px solid var(--ink);
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.brand-text {
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 0 14px;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand-text small {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--blue-dark);
  font-weight: 700;
}

.desktop-nav {
  display: none;
  align-items: stretch;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-left: 1px solid var(--line);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 18px;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  transition: transform 160ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: none;
  align-self: center;
  align-items: center;
  gap: 10px;
}

.header-cta {
  min-height: 42px;
  padding: 12px 16px;
  box-shadow: 4px 4px 0 var(--ink);
}

.header-instagram {
  display: grid;
  width: 44px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.header-instagram svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.header-instagram:hover,
.header-instagram:focus-visible {
  color: var(--white);
  background: var(--brown);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.menu-toggle {
  display: inline-grid;
  width: 52px;
  min-height: var(--header-height);
  place-items: center;
  border-left: 2px solid var(--ink);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  background: var(--ink);
  transition: transform 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: calc(var(--demo-banner-height) + var(--header-height)) 0 auto 0;
  z-index: 49;
  display: none;
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}

.mobile-menu.open {
  display: block;
}

.mobile-nav {
  display: grid;
  padding: 0 var(--gutter) 24px;
}

.mobile-nav-link {
  padding: 18px 0;
  border-bottom: 2px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 980px) {
  .desktop-nav,
  .header-actions {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - var(--demo-banner-height));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--concrete);
  border-bottom: 2px solid var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(20, 23, 25, 0.1) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(0deg, rgba(20, 23, 25, 0.08) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(135deg, rgba(24, 95, 134, 0.18), rgba(138, 86, 52, 0.12)),
    var(--concrete-deep);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
  opacity: 0.42;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: grayscale(0.28) contrast(1.1) brightness(0.78) saturate(0.88);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 23, 25, 0.86), rgba(20, 23, 25, 0.54) 44%, rgba(20, 23, 25, 0.16) 78%),
    linear-gradient(180deg, rgba(20, 23, 25, 0.18), rgba(20, 23, 25, 0.66));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, 1180px);
  padding-top: 128px;
  padding-bottom: 76px;
}

.hero-content::before {
  content: "";
  display: block;
  width: 140px;
  height: 12px;
  margin-bottom: 22px;
  background: var(--blue);
}

.hero h1 {
  text-wrap: balance;
}

.hero .eyebrow {
  color: var(--white);
}

.hero-meta {
  display: flex;
  max-width: 840px;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  list-style: none;
}

.hero-meta li {
  padding: 8px 10px;
  border: 2px solid rgba(246, 242, 234, 0.72);
  color: var(--white);
  background: rgba(16, 61, 90, 0.72);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 680px;
  margin-top: 24px;
  padding-left: 18px;
  border-left: 4px solid var(--blue);
  color: rgba(246, 242, 234, 0.86);
  font-size: 1.18rem;
  font-weight: 500;
}

.hero-actions,
.section-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-line {
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 10px;
  border: 2px solid var(--ink);
  color: var(--white);
  background: rgba(20, 23, 25, 0.72);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.intro-layout {
  display: grid;
  gap: 28px;
}

@media (min-width: 940px) {
  h1 {
    font-size: 8.4rem;
  }

  h2 {
    font-size: 5.2rem;
  }

  .intro-layout {
    grid-template-columns: 0.78fr 1.22fr;
    align-items: start;
  }

  .intro-layout .feature-grid {
    grid-column: 1 / -1;
  }
}

.intro-shopfront {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow-blue);
  aspect-ratio: 16 / 9;
}

.intro-shopfront::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 2;
  height: 12px;
  background: var(--blue);
}

.intro-shopfront::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(20, 23, 25, 0.06), rgba(20, 23, 25, 0.24)),
    repeating-linear-gradient(45deg, rgba(246, 242, 234, 0.07) 0 1px, transparent 1px 14px);
}

.intro-shopfront img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.08) saturate(0.9);
}

.intro-shopfront figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 7px 9px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  gap: 16px;
  counter-reset: feature;
}

.feature-card,
.food-card,
.story-poster,
.rating-card,
.review-grid blockquote,
.visit-info {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(246, 242, 234, 0.76);
  box-shadow: var(--shadow-hard);
}

.feature-card {
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
}

.feature-card::before,
.food-card::before,
.review-grid blockquote::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 10px;
  background: var(--blue);
}

.food-card:nth-child(even)::before {
  background: var(--brown);
}

.feature-card::after,
.food-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 44px;
  height: 2px;
  background: var(--line-strong);
  transform: none;
  transition: width 160ms ease;
}

.feature-card:hover::after,
.food-card:hover::after {
  width: 88px;
}

.feature-number {
  display: block;
  margin: 8px 0 28px;
  color: var(--blue-dark);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 700;
}

.feature-card p,
.food-card p {
  margin-top: 12px;
}

.coffee-section,
.reviews,
.team-section {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(20, 23, 25, 0.07) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(0deg, rgba(20, 23, 25, 0.055) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--concrete-light);
}

.coffee-section p,
.reviews p,
.team-section p {
  color: rgba(20, 23, 25, 0.74);
}

.coffee-section h2,
.coffee-section h3,
.reviews h2,
.team-section h2 {
  color: var(--ink);
}

.coffee-grid,
.story-grid,
.team-grid,
.visit-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

@media (min-width: 960px) {
  .coffee-grid,
  .story-grid,
  .team-grid,
  .visit-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .team-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  }
}

.image-stack {
  position: relative;
  min-height: 540px;
}

.photo-frame {
  position: absolute;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  box-shadow: var(--shadow-blue);
}

.photo-frame::before {
  content: "";
  position: absolute;
  inset: -12px auto auto -12px;
  width: 58px;
  height: 58px;
  border-top: 6px solid var(--brown);
  border-left: 6px solid var(--brown);
  z-index: 2;
}

.photo-frame-large {
  inset: 0 16% 10% 0;
}

.photo-frame-small {
  right: 0;
  bottom: 0;
  width: 44%;
  min-width: 210px;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-hard);
}

.photo-placeholder {
  position: relative;
  display: grid;
  min-height: 100%;
  padding: 22px;
  place-items: end start;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(20, 23, 25, 0.1) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(0deg, rgba(20, 23, 25, 0.08) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(135deg, rgba(24, 95, 134, 0.15), rgba(138, 86, 52, 0.2)),
    var(--steel);
}

.photo-placeholder.has-image {
  background: var(--ink);
}

.photo-placeholder.has-image img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.28) contrast(1.1) saturate(0.88);
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

.photo-placeholder.has-image::before {
  z-index: 1;
  opacity: 1;
  background:
    linear-gradient(135deg, rgba(20, 23, 25, 0.08), rgba(20, 23, 25, 0.36)),
    repeating-linear-gradient(45deg, rgba(246, 242, 234, 0.08) 0 1px, transparent 1px 14px);
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 2;
  height: 12px;
  background: var(--blue);
}

.photo-placeholder.warm::after,
.food-shot::after,
.food-shot.coffee::after {
  background: linear-gradient(90deg, var(--blue) 0 60%, var(--brown) 60% 100%);
}

.photo-placeholder span,
.photo-placeholder small {
  position: relative;
  z-index: 3;
  display: block;
}

.photo-placeholder span {
  padding: 7px 9px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.photo-placeholder small {
  margin-top: 8px;
  padding: 6px 8px;
  color: var(--ink);
  background: rgba(246, 242, 234, 0.82);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.photo-placeholder.dark,
.food-shot.dark {
  background:
    linear-gradient(90deg, rgba(246, 242, 234, 0.09) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(135deg, rgba(24, 95, 134, 0.24), rgba(20, 23, 25, 0.5)),
    var(--graphite);
}

.photo-placeholder.warm,
.food-shot.warm,
.food-shot.coffee {
  background:
    linear-gradient(90deg, rgba(246, 242, 234, 0.1) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(135deg, rgba(95, 56, 37, 0.2), rgba(138, 86, 52, 0.68)),
    var(--brown);
}

.check-list {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 2px solid var(--line);
  color: rgba(20, 23, 25, 0.82);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  flex: 0 0 auto;
  background: var(--blue);
}

.food-section,
.visit {
  background:
    linear-gradient(90deg, rgba(20, 23, 25, 0.055) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--paper);
}

.food-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 760px) {
  .food-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .food-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.food-card {
  overflow: hidden;
  background: var(--paper);
}

.food-card > div:last-child {
  padding: 22px;
  border-top: 2px solid var(--ink);
}

.food-shot {
  min-height: 260px;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(246, 242, 234, 0.09) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(135deg, rgba(24, 95, 134, 0.2), rgba(138, 86, 52, 0.35)),
    var(--steel);
}

.food-shot.charcoal {
  background:
    linear-gradient(90deg, rgba(246, 242, 234, 0.09) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(135deg, rgba(24, 95, 134, 0.22), rgba(20, 23, 25, 0.52)),
    var(--charcoal);
}

.food-shot.steel {
  background:
    linear-gradient(90deg, rgba(246, 242, 234, 0.09) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(135deg, rgba(24, 95, 134, 0.22), rgba(115, 125, 128, 0.58)),
    var(--steel);
}

.reviews-top {
  display: grid;
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--ink);
}

@media (min-width: 760px) {
  .reviews-top {
    grid-template-columns: 1fr auto;
  }
}

.rating-card {
  min-width: 220px;
  padding: 20px;
  background: var(--paper);
}

.rating-card strong {
  display: block;
  color: var(--blue-dark);
  font-family: var(--font-heading);
  font-size: 4.6rem;
  font-weight: 900;
  line-height: 0.82;
}

.rating-card span,
.rating-card small {
  display: block;
  color: rgba(20, 23, 25, 0.72);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.review-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 760px) {
  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.review-grid blockquote {
  min-height: 160px;
  padding: 28px 22px 22px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.story {
  background:
    linear-gradient(90deg, rgba(20, 23, 25, 0.055) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--concrete-light);
}

.story-poster {
  position: relative;
  overflow: hidden;
  width: min(100%, 520px);
  margin: 0 auto;
  background: var(--white);
  aspect-ratio: 4 / 5;
}

.story-poster::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 2;
  height: 12px;
  background: var(--blue);
}

.story-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.story-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: contrast(1.08) saturate(0.92);
}

.story-poster figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 7px 9px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.team-photo {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-blue);
  background:
    linear-gradient(90deg, rgba(246, 242, 234, 0.09) 1px, transparent 1px) 0 0 / 26px 26px,
    linear-gradient(135deg, rgba(24, 95, 134, 0.24), rgba(20, 23, 25, 0.42)),
    var(--steel);
}

.team-photo.has-image img {
  object-fit: contain;
  filter: grayscale(0.08) contrast(1.04) saturate(0.96);
}

.visit-grid {
  align-items: stretch;
}

.visit-info {
  padding: 34px;
  background: var(--white);
}

.visit-info address {
  margin-top: 24px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 9px 12px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status-dot {
  display: block;
  width: 10px;
  height: 10px;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  background: var(--steel);
}

.status-badge.open .status-dot {
  background: var(--green);
}

.status-badge.closed .status-dot {
  background: var(--brown);
}

.hours-list {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 2px solid var(--ink);
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 2px solid var(--line);
}

.hours-list span {
  color: rgba(20, 23, 25, 0.66);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hours-list strong {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  line-height: 1;
  text-transform: uppercase;
}

.map-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--concrete-light);
  box-shadow: var(--shadow-hard);
}

.map-panel::before {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 9px;
  border: 2px solid var(--ink);
  color: var(--white);
  background: var(--blue-dark);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.map-panel iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: none;
}

.merch-section {
  background:
    linear-gradient(90deg, rgba(20, 23, 25, 0.07) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(0deg, rgba(20, 23, 25, 0.055) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--concrete-light);
}

.merch-header {
  align-items: center;
}

.merch-intro {
  display: grid;
  gap: 18px;
  align-items: start;
}

.merch-intro p {
  max-width: 560px;
  color: rgba(20, 23, 25, 0.74);
}

.merch-intro .btn {
  width: fit-content;
}

.merch-gallery {
  display: grid;
  gap: 18px;
}

.merch-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  box-shadow: var(--shadow-hard);
  aspect-ratio: 4 / 5;
}

.merch-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 2;
  height: 12px;
  background: var(--blue);
}

.merch-card:nth-child(2)::before,
.merch-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--blue) 0 72%, var(--brown) 72% 100%);
}

.merch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(0.98);
  transition: transform 220ms ease, filter 220ms ease;
}

.merch-card:hover img {
  transform: scale(1.025);
  filter: contrast(1.06) saturate(1.04);
}

.merch-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  display: grid;
  gap: 6px;
}

.merch-card figcaption span,
.merch-card figcaption small {
  width: fit-content;
  max-width: min(330px, calc(100vw - 72px));
  padding: 7px 9px;
  font-family: var(--font-mono);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.merch-card figcaption span {
  color: var(--white);
  background: var(--ink);
  font-size: 0.78rem;
}

.merch-card figcaption small {
  color: var(--ink);
  background: rgba(246, 242, 234, 0.86);
  font-size: 0.72rem;
}

@media (min-width: 820px) {
  .merch-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .merch-card-large {
    aspect-ratio: 4 / 5;
  }
}

.footer {
  padding: 0;
  border-top: 2px solid var(--ink);
  background: var(--paper);
}

.footer-inner {
  display: grid;
  gap: 0;
  align-items: stretch;
  color: rgba(20, 23, 25, 0.68);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-brand {
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
}

.footer-logo {
  display: grid;
  width: 116px;
  height: 44px;
  place-items: center;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.08) saturate(0.95);
}

.footer-note,
.footer-links {
  display: flex;
  align-items: center;
  padding: 18px 0;
}

.footer-note {
  gap: 6px;
}

.footer-links {
  flex-wrap: wrap;
  gap: 16px;
}

.footer-note a,
.footer-links a {
  color: var(--ink);
  font-weight: 700;
}

.footer-note a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

@media (min-width: 840px) {
  .footer-inner {
    grid-template-columns: auto 1fr auto;
  }

  .footer-note {
    justify-content: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1180px) {
  .section-header h2 {
    max-width: 680px;
  }
}

@media (max-width: 979px) {
  .header-inner {
    align-items: stretch;
  }

  .brand {
    border-left: 0;
  }

  .brand-logo {
    width: 118px;
    height: 48px;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 18px;
  }

  .section {
    padding: var(--section-mobile) 0;
  }

  .section::before {
    width: 7px;
  }

  h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 3.25rem;
  }

  h3 {
    font-size: 1.38rem;
  }

  .section-header {
    display: block;
    margin-bottom: 32px;
  }

  .section-header p:last-child {
    margin-top: 18px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(20, 23, 25, 0.38), rgba(20, 23, 25, 0.82) 54%, rgba(20, 23, 25, 0.9));
  }

  .hero-content {
    padding-top: 118px;
    padding-bottom: 54px;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-actions,
  .section-actions,
  .visit-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .brand-text {
    padding-right: 10px;
    font-size: 1.22rem;
  }

  .brand-text small {
    font-size: 0.56rem;
  }

  .brand-logo {
    width: 104px;
    height: 44px;
  }

  .image-stack {
    min-height: 470px;
  }

  .photo-frame-large {
    inset: 0 0 23% 0;
  }

  .photo-frame-small {
    width: 60%;
    min-width: 188px;
  }

  .feature-card,
  .food-card,
  .story-poster,
  .intro-shopfront,
  .rating-card,
  .review-grid blockquote,
  .merch-card,
  .visit-info,
  .photo-frame,
  .map-panel,
  .team-photo {
    box-shadow: 5px 5px 0 var(--ink);
  }

  .team-photo {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .hours-list div {
    display: grid;
    gap: 4px;
  }

  .footer-note,
  .footer-links {
    padding: 14px 0;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  .brand-mark {
    width: 42px;
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
