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

/* Catharsis Bar & Grill — colors & type aligned with catharsisbarandgrill.com */
:root {
  --navy: #1a2332;
  --navy-deep: #121a26;
  --bg: #ffffff;
  --bg-2: #f4f6fa;
  --bg-3: #eef2f7;
  --surface: #ffffff;
  --text: #1a2332;
  --text-muted: #5c6678;
  --accent: #1a2332;
  --accent-hover: #2a3a52;
  --accent-soft: rgba(26, 35, 50, 0.09);
  --link: #2a4a73;
  --link-hover: #1f3a5f;
  --line: rgba(26, 35, 50, 0.12);
  --line-strong: rgba(26, 35, 50, 0.18);
  --highlight: #3d5a8c;
  --star: #c9a14a;
  --shadow: 0 18px 52px rgba(26, 35, 50, 0.08);
  --shadow-sm: 0 10px 28px rgba(26, 35, 50, 0.05);
  --radius: 18px;
  --radius-sm: 12px;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-sans: "Geist", system-ui, -apple-system, sans-serif;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 82px;
}

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

html {
  scroll-behavior: smooth;
}

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

  .reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.25s var(--ease-out), opacity 0.25s var(--ease-out);
}

a:hover {
  color: var(--link-hover);
}

.shell {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* No backdrop-filter here: it creates a containing block and breaks position:fixed on the mobile drawer. */
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out);
}

#site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
}

.brand:hover {
  color: inherit;
  opacity: 0.9;
}

.brand__logo {
  height: 46px;
  width: auto;
  max-width: min(210px, 42vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .brand__logo {
    height: 40px;
    max-width: min(190px, 55vw);
  }
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.25rem 1.1rem;
}

.site-nav__toolbar {
  display: none;
}

.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.1rem;
  align-items: center;
}

.site-nav__link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.25rem 0;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--navy);
  text-decoration: none;
}

@media (min-width: 1041px) {
  .site-nav__links {
    flex-wrap: nowrap;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 0.5rem;
}

.header-actions .button {
  min-height: 42px;
  text-wrap: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  margin-left: 1rem;
  flex-shrink: 0;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}

body.nav-open .nav-toggle .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Full-screen dim behind the drawer (below #site-header z-index:100 so the drawer stays visible) */
.site-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(18, 26, 38, 0.52);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

body.nav-open .site-nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(420px, 88vw);
    max-width: 100%;
    height: 100%;
    min-height: 100dvh;
    margin: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: var(--navy-deep);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    /* Shadow only when open — when closed (off-screen), a left-cast shadow bleeds into the viewport */
    box-shadow: none;
    transform: translateX(100%);
    pointer-events: none;
    transition: transform 0.42s var(--ease-out), box-shadow 0.35s var(--ease-out);
    z-index: 1;
    overflow: auto;
    overscroll-behavior: contain;
  }

  .site-nav.is-open {
    transform: translateX(0);
    pointer-events: auto;
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.35);
  }

  .site-nav__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: max(0.75rem, env(safe-area-inset-top)) 1rem 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
  }

  .site-nav__toolbar-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.2;
  }

  .site-nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.25s;
  }

  .site-nav__close:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .site-nav__close-icon {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
  }

  .site-nav__close-icon::before,
  .site-nav__close-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
  }

  .site-nav__close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-nav__close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-nav__links {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.15rem;
    padding: 1rem 1.25rem 2rem;
  }

  .site-nav__link {
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    padding: 0.65rem 0;
    color: rgba(255, 255, 255, 0.88);
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
  }

  .site-nav__link:hover,
  .site-nav__link.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 1040px) and (prefers-reduced-motion: reduce) {
  .site-nav {
    transition: none;
  }

  .site-nav-backdrop {
    transition: none;
  }
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 0.72rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    background 0.25s, color 0.25s;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: none;
}

.button--primary:hover {
  color: #fff;
  background: var(--accent-hover);
  box-shadow: none;
}

.button--secondary {
  background: var(--surface);
  color: var(--navy);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button--ghost {
  background: transparent;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid transparent;
}

.button--ghost:hover {
  color: var(--navy);
  border-color: var(--line);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: flex-end;
  padding: 3rem 0 5rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(18, 26, 38, 0.72) 0%,
      rgba(18, 26, 38, 0.34) 38%,
      rgba(18, 26, 38, 0.18) 62%,
      rgba(18, 26, 38, 0.28) 100%);
  z-index: 1;
}

.hero__grain {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
  color: #fff;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.35);
}

.hero__kicker {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fade-up 0.9s var(--ease-out) 0.1s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  max-width: 14ch;
  margin: 0 0 1rem;
  opacity: 0;
  animation: fade-up 0.95s var(--ease-out) 0.22s forwards;
}

.hero__lead {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 0.34s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 0.46s forwards;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section--tight {
  padding: 3rem 0;
}

.section--surface {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-header--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--highlight);
  margin: 0 0 0.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 0 0 0.75rem;
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Feature grid (home) */
.featured-tacos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .featured-tacos {
    grid-template-columns: repeat(2, 1fr);
  }
}

.featured-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.featured-card img {
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.featured-card:hover img {
  transform: scale(1.06);
}

.featured-card__label {
  font-family: var(--font-sans);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(transparent, rgba(26, 35, 50, 0.78));
}

/* Split layouts */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.split__visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-2);
}

.split__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1s var(--ease-out);
}

.split__visual:hover img {
  transform: scale(1.03);
}

.split__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  margin: 0 0 1rem;
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
}

.split__body p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

/* Mosaic gallery */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 0.75rem;
}

@media (max-width: 760px) {
  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }
}

.mosaic__cell {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: default;
}

.mosaic__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.mosaic__cell:hover img {
  transform: scale(1.05);
}

.mosaic__cell--lg {
  grid-column: span 2;
  grid-row: span 2;
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .reviews {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-card__stars {
  color: var(--star);
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.review-card__text {
  font-style: italic;
  color: var(--text);
  margin: 0 0 1.25rem;
  font-size: 1rem;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-soft);
}

.review-card__author span {
  font-weight: 700;
  font-size: 0.9rem;
}

/* Pills / features row */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.pill {
  font-family: var(--font-sans);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* FAQ */
.faq {
  max-width: 720px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-sans);
  font-weight: 700;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--highlight);
  transition: transform 0.35s var(--ease-out);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__body {
  padding: 0 0 1.25rem;
  color: var(--text-muted);
}

.faq-item__body a {
  text-decoration: none;
  font-weight: 600;
}

.faq-item__body a:hover {
  text-decoration: underline;
}

/* Hours & location */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.hours-table th,
.hours-table td {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.hours-table th {
  width: 38%;
  color: var(--text-muted);
  font-weight: 600;
}

.section-header--tight {
  margin-bottom: 1.15rem;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 0;
  border: 1px solid color-mix(in srgb, var(--navy) 8%, white);
  border-radius: 24px;
  overflow: hidden;
  background: #f3f3f4;
}

.location-card__map {
  min-height: 100%;
}

.location-card__map a {
  display: block;
  height: 100%;
}

.location-card__map img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.location-card__panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.location-card__body {
  padding: 1.2rem 1.35rem 1rem;
}

.location-view {
  min-height: 180px;
}

.location-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.location-card__eyebrow {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.location-card__top h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.7rem;
  line-height: 1.05;
  color: var(--navy);
}

.button--location {
  min-height: 44px;
  padding-inline: 1rem;
  white-space: nowrap;
}

.location-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  margin-top: 1.3rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
}

.location-label {
  margin: 0 0 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.location-copy {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.location-copy a {
  color: inherit;
  text-decoration: none;
}

.location-copy a:hover {
  color: var(--link-hover);
}

.hours-switch {
  display: inline-flex;
  gap: 1.15rem;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.hours-switch__tab {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
}

.hours-switch__tab.is-active {
  color: var(--navy);
  font-weight: 700;
}

.hours-switch__tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.72rem;
  height: 1px;
  background: var(--navy);
}

.hours-table--location {
  font-size: 0.9rem;
}

.hours-table--location th,
.hours-table--location td {
  padding: 0.32rem 0;
  border-bottom: 0;
}

.hours-table--location th {
  width: 34%;
  color: var(--text);
  font-weight: 600;
}

.location-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.35rem 1.2rem;
  border-top: 1px solid var(--line);
}

.location-status {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.location-card__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.location-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
}

.location-toggle:hover {
  color: var(--navy);
}

@media (max-width: 900px) {
  .location-card {
    grid-template-columns: 1fr;
  }

  .location-card__map img {
    min-height: 240px;
  }

  .location-card__top,
  .location-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .location-card__actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .location-card {
    border-radius: 18px;
  }

  .location-card__body,
  .location-card__footer {
    padding-inline: 1rem;
  }

  .location-info-grid {
    grid-template-columns: 1fr;
  }

  .hours-switch {
    gap: 0.9rem;
    flex-wrap: wrap;
  }

  .location-card__actions {
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
  }
}

/* Menu page */
.menu-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin: 1rem 0 0.25rem;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.menu-intro {
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 2rem;
}

.menu-block {
  margin-bottom: 2.75rem;
}

.menu-block h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 0.35rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-soft);
  font-weight: 600;
  text-transform: uppercase;
}

.menu-block__note {
  font-size: 0.85rem;
  color: var(--highlight);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
}

.menu-grid {
  display: grid;
  gap: 1rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  align-items: start;
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s;
}

.menu-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.menu-item__img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-2);
  min-height: 96px;
}

.menu-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item__body h3 {
  margin: 0;
  font-size: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: baseline;
}

.menu-item__body h3 .price {
  font-weight: 800;
  color: var(--navy);
  font-size: 0.95rem;
}

.menu-item__body p {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

@media (max-width: 560px) {
  .menu-item {
    grid-template-columns: 1fr;
  }

  .menu-item__img {
    max-height: 200px;
  }
}

/* Forms (careers / contact) */
.form-card {
  max-width: 560px;
  margin-inline: auto;
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* Footer */
#site-footer {
  margin-top: 3rem;
  background: var(--bg-2);
  color: var(--text);
  border-top: 1px solid var(--line);
  padding: 0;
}

#site-footer a {
  color: var(--text);
  text-decoration: none;
}

#site-footer a:hover {
  color: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 2.4rem 0 1.5rem;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
}

.footer-brand-logo {
  height: 42px;
  width: auto;
  max-width: min(210px, 55vw);
  object-fit: contain;
}

.footer-tagline {
  margin: 0 0 0.9rem;
  max-width: 32ch;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.footer-address,
.footer-contact {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin: 0 0 0.9rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.55rem;
}

.footer-list a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.footer-social a {
  min-width: 44px;
  height: 34px;
  padding: 0 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom {
  margin-top: 0;
  padding: 1rem 0 1.35rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  align-items: center;
}

.footer-legal {
  margin: 0;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-legal-links a {
  color: var(--text-muted);
}

.footer-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer-app-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0 1.25rem;
  }

  .footer-bottom,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger>*:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal-stagger>*:nth-child(2) {
  transition-delay: 0.12s;
}

.reveal-stagger>*:nth-child(3) {
  transition-delay: 0.19s;
}

.reveal-stagger>*:nth-child(4) {
  transition-delay: 0.26s;
}

.reveal-stagger>*:nth-child(5) {
  transition-delay: 0.33s;
}

.page-hero {
  padding: 3rem 0 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: 0 0 0.5rem;
  font-weight: 600;
  line-height: 1.06;
  text-transform: uppercase;
}

.page-hero p {
  margin: 0 auto;
  max-width: 46ch;
  color: var(--text-muted);
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.gift-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.gift-showcase img {
  height: 72px;
  width: auto;
}

/* Legal / terms */
.legal-page-wrapper {
  background: var(--bg);
}

.legal-page {
  max-width: 860px;
  margin-inline: auto;
  padding-bottom: 4rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 2.25rem 0 1rem;
  color: var(--navy);
  text-transform: uppercase;
}

.legal-page h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 1.5rem 0 0.65rem;
  color: var(--navy);
  text-transform: uppercase;
}

.legal-page h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 1.25rem 0 0.5rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-page a {
  font-weight: 600;
}

.table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  -webkit-overflow-scrolling: touch;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  border: 1px solid var(--line);
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  vertical-align: top;
  text-align: left;
}

.legal-table th {
  background: var(--bg-2);
  color: var(--navy);
  font-weight: 700;
}

.access-page .access-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.access-page ul {
  padding-left: 1.25rem;
}

.places-grid,
.tags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.places-grid a,
.tags-grid a {
  display: block;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  color: var(--navy);
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.places-grid a:hover,
.tags-grid a:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  color: var(--link);
}