:root {
  --ink: #24231f;
  --muted: #665f55;
  --paper: #f7f3ea;
  --cream: #efe4d1;
  --white: #fffdf8;
  --gold: #c6a14a;
  --leaf: #4d5f43;
  --brick: #8a3f30;
  --charcoal: #171715;
  --line: #d8cbb8;
  --shadow: 0 18px 44px rgba(36, 35, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.58;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 20px;
  min-height: 68px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 3px solid var(--brick);
  box-shadow: 0 8px 22px rgba(36, 35, 31, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(154px, 36vw);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav,
.social-links,
.footer-social,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav {
  justify-content: center;
}

.site-nav a,
.header-email,
.header-phone {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px 7px;
  line-height: 1;
}

.header-phone {
  position: relative;
  margin: 0;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  border: 1px solid rgba(138, 63, 48, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
  color: var(--charcoal);
  box-shadow: 0 8px 22px rgba(36, 35, 31, 0.07);
  white-space: nowrap;
  text-decoration: none;
}

.header-email {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(138, 63, 48, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.68);
  color: var(--charcoal);
  box-shadow: 0 8px 22px rgba(36, 35, 31, 0.07);
  text-decoration: none;
}

.header-email svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.header-phone::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(198, 161, 74, 0.18);
}

.header-phone.is-open::before {
  background: #3f8f58;
  box-shadow: 0 0 0 4px rgba(63, 143, 88, 0.18);
}

.header-phone svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-links a,
.footer-social a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
}

.social-links svg,
.footer-social svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.header-email:hover,
.social-links a:hover,
.footer-social a:hover {
  background: var(--charcoal);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 15, 13, 0.76), rgba(15, 15, 13, 0.28) 52%, rgba(15, 15, 13, 0.04));
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 0 clamp(44px, 9vw, 92px) clamp(20px, 7vw, 92px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #f4d68c;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.8rem, 9vw, 7.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.hero-copy p:not(.eyebrow) {
  max-width: 580px;
  margin: 18px 0 28px;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 900;
  text-decoration: none;
}

.button:hover {
  background: #d7b65f;
}

.button-secondary {
  background: rgba(255, 253, 248, 0.14);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 248, 0.42);
}

.button-secondary:hover {
  background: rgba(255, 253, 248, 0.24);
}

.baristas,
.cafe-moments,
.community-page,
.menu-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.baristas {
  padding: clamp(48px, 7vw, 92px) 0 clamp(60px, 8vw, 108px);
}

.community-page,
.menu-page {
  padding: clamp(48px, 8vw, 96px) 0;
}

.thrift-feature,
.art-feature {
  display: grid;
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

.thrift-feature {
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1.25fr);
  background: var(--cream);
}

.art-feature {
  grid-template-columns: minmax(320px, 1.2fr) minmax(280px, 0.8fr);
  background: var(--charcoal);
  color: var(--white);
}

.art-feature .eyebrow {
  color: #f4d68c;
}

.thrift-copy p:not(.eyebrow),
.art-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 20px 0 28px;
  font-size: 1.08rem;
}

.thrift-copy p:not(.eyebrow) {
  color: var(--muted);
}

.art-copy p:not(.eyebrow) {
  color: #efe8db;
}

.thrift-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.85fr);
  gap: 16px;
  align-items: stretch;
}

.thrift-gallery img,
.art-feature img,
.menu-feature img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thrift-gallery img {
  height: 100%;
  min-height: 360px;
}

.art-feature img {
  aspect-ratio: 16 / 11;
}

.cafe-moments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(34px, 6vw, 68px) 0 0;
}

.cafe-moments article {
  display: grid;
  gap: 14px;
}

.cafe-moments img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(36, 35, 31, 0.08);
}

.cafe-moments article:nth-child(3) img {
  object-position: 50% 18%;
}

.cafe-moments h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.section-heading {
  max-width: 680px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.profile {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  margin-top: clamp(32px, 5vw, 64px);
}

.profile:first-of-type {
  margin-top: 0;
}

.profile-reverse {
  grid-template-columns: minmax(280px, 1.1fr) minmax(280px, 0.9fr);
}

.profile-reverse img {
  order: 2;
}

.profile-photo,
.profile > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile .profile-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

.profile-photo-featured img {
  transform: scale(1.08);
}

.profile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.profile-copy {
  padding: clamp(8px, 3vw, 28px) 0;
}

.profile-copy h3 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.profile-copy p:last-child,
.menu-hero p:last-child,
.section-note {
  color: var(--muted);
}

.profile-copy p:last-child {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.location {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(300px, 1.32fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 8vw, 88px) clamp(20px, 5vw, 72px);
  background: var(--leaf);
  color: var(--white);
}

.location .eyebrow {
  color: #f4d68c;
}

.location p {
  max-width: 420px;
  margin: 18px 0 0;
  color: #efe8db;
}

.map {
  width: 100%;
  min-height: 360px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: var(--charcoal);
  color: var(--white);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-icon {
  width: 34px;
  height: 34px;
  padding: 2px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  object-fit: contain;
}

address {
  display: grid;
  gap: 2px;
  font-style: normal;
  font-size: 0.9rem;
  text-align: right;
}

.site-footer a {
  color: #f4d68c;
  text-decoration: none;
}

.footer-privacy {
  font-size: 0.84rem;
  font-weight: 800;
}

.privacy-page {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(36px, 7vw, 80px) clamp(20px, 6vw, 88px);
}

.privacy-hero {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 48px);
}

.privacy-hero h1 {
  color: var(--leaf);
  font-size: clamp(3.1rem, 7vw, 5.8rem);
}

.privacy-hero p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.privacy-content {
  max-width: 860px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(36, 35, 31, 0.06);
}

.privacy-content h2 {
  margin: 28px 0 10px;
  color: var(--leaf);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  margin: 0;
  color: var(--muted);
}

.privacy-content p + p {
  margin-top: 12px;
}

.privacy-content a {
  color: var(--brick);
  font-weight: 850;
}

.menu-hero {
  max-width: 720px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.menu-feature {
  display: grid;
  grid-template-columns: minmax(300px, 1.12fr) minmax(260px, 0.88fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
  margin-bottom: clamp(32px, 5vw, 56px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(36, 35, 31, 0.06);
}

.menu-feature img {
  aspect-ratio: 16 / 10;
}

.menu-feature h2 {
  color: var(--leaf);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.menu-feature p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
}

.community-hero {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 0.82fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.community-copy {
  padding: clamp(10px, 3vw, 28px) 0;
}

.community-copy h1 {
  max-width: 760px;
  color: var(--leaf);
  font-size: clamp(3.1rem, 7vw, 5.8rem);
}

.community-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.community-hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.email-button {
  gap: 10px;
}

.email-button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: currentColor;
}

.community-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.community-options article,
.community-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(36, 35, 31, 0.06);
}

.community-options article {
  padding: clamp(22px, 4vw, 32px);
}

.community-options h2,
.community-note h2 {
  color: var(--leaf);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.community-options p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
}

.community-note {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1.15fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
  padding: clamp(22px, 4vw, 34px);
  border-left: 5px solid var(--gold);
}

.community-note ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.community-note li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 800;
}

.community-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
}

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

.menu-section {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(36, 35, 31, 0.06);
}

.menu-extra {
  grid-column: 1 / -1;
  padding: clamp(18px, 3vw, 26px);
  border-color: rgba(198, 161, 74, 0.42);
  border-left: 5px solid var(--gold);
  background: #fbf2df;
}

.menu-section h2 {
  margin-bottom: 18px;
  color: var(--leaf);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.menu-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.menu-section-header h2 {
  margin-bottom: 0;
}

.section-note {
  margin: -8px 0 18px;
  font-weight: 800;
}

.menu-legend {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: 5px;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.legend-item,
.option-dots,
.diet-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.legend-item {
  min-height: 24px;
  padding: 3px 6px;
  border: 1px solid rgba(216, 203, 184, 0.78);
  border-radius: 999px;
  background: rgba(239, 228, 209, 0.45);
  color: var(--charcoal);
  line-height: 1;
  white-space: nowrap;
}

.legend-dot,
.option-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(255, 253, 248, 0.72);
  font-size: 0;
  line-height: 0;
}

.option-dots {
  margin-left: 6px;
  vertical-align: middle;
}

.option-dot {
  vertical-align: 0.05em;
}

.legend-vegan {
  background: #3f8f58;
}

.legend-vegetarian {
  background: #7aa33f;
}

.legend-gluten-free {
  background: #b55f2a;
}

.legend-sugar-free {
  background: #2f64b3;
}

.legend-addon {
  background: #c6a14a;
}

.legend-flavors {
  background: #7b5db7;
}

.sugar-free-key {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  margin-left: 0;
  color: #2f64b3;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.sugar-free-key::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #2f64b3;
}

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

.menu-list > li {
  position: relative;
}

.menu-list > li:not(.menu-list-detail) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px 4.25ch;
  align-items: center;
  gap: 12px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(216, 203, 184, 0.78);
}

.menu-list > li:not(.menu-list-detail)::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 22px;
}

.menu-list > li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.menu-list-detail {
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(216, 203, 184, 0.78);
}

.menu-list span,
.menu-detail summary span {
  color: var(--muted);
  font-weight: 800;
}

.menu-list-tight {
  white-space: nowrap;
}

.menu-list strong,
.menu-detail summary strong {
  color: var(--charcoal);
  font-variant-numeric: tabular-nums;
  grid-column: 3;
  justify-self: end;
  text-align: right;
  white-space: nowrap;
}

.menu-detail {
  position: relative;
}

.menu-detail summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px 4.25ch;
  align-items: center;
  gap: 12px;
  min-height: 28px;
  cursor: pointer;
  list-style: none;
}

.menu-detail summary::marker {
  content: "";
  font-size: 0;
}

.menu-detail summary::-webkit-details-marker {
  display: none;
}

.menu-detail summary span {
  min-width: 0;
  overflow-wrap: normal;
}

.menu-detail summary strong {
  justify-self: end;
  text-align: right;
}

.menu-detail summary::after {
  content: "+";
  grid-column: 2;
  grid-row: 1;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  border: 1px solid rgba(138, 63, 48, 0.28);
  border-radius: 999px;
  color: var(--brick);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
}

.menu-detail[open] summary::after {
  content: "-";
}

.menu-detail summary:focus-visible {
  outline: 3px solid rgba(198, 161, 74, 0.42);
  outline-offset: 4px;
  border-radius: 6px;
}

.ingredient-panel {
  display: none;
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  z-index: 5;
  width: min(430px, calc(100vw - 64px));
  padding: 14px 16px;
  border: 1px solid rgba(138, 63, 48, 0.22);
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow);
}

.ingredient-panel::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  border-right: 1px solid rgba(138, 63, 48, 0.22);
  border-bottom: 1px solid rgba(138, 63, 48, 0.22);
  background: var(--charcoal);
}

.menu-detail:hover .ingredient-panel,
.menu-detail:focus-within .ingredient-panel,
.menu-detail[open] .ingredient-panel {
  display: block;
}

.ingredient-panel p {
  margin: 0;
  color: #f0e4cf;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}

.ingredient-panel p + p {
  margin-top: 8px;
}

.ingredient-panel .detail-list {
  display: grid;
  gap: 7px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.ingredient-panel .detail-list li {
  display: block;
  position: relative;
  padding-left: 14px;
  color: #f0e4cf;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.4;
}

.ingredient-panel .detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #f4d68c;
}

.detail-options {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 6px;
  white-space: nowrap;
}

.ingredient-panel b {
  color: #f4d68c;
}

.ingredient-panel .diet-note {
  color: #bde3c7;
  font-weight: 850;
}

.ingredient-panel .option-dot {
  box-shadow: 0 0 0 2px rgba(23, 23, 21, 0.72);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 0.92rem;
  font-weight: 800;
}

.tag-list li.sugar-free::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #2f64b3;
}

.menu-extra h2 {
  color: var(--brick);
}

.addon-groups {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: start;
  gap: 16px 20px;
}

.addon-group {
  max-width: 520px;
}

.addon-group h3 {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.menu-extra .tag-list li {
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(216, 203, 184, 0.75);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .brand {
    width: 150px;
  }

  .site-nav,
  .social-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-email {
    display: none;
  }

  .addon-groups,
  .location,
  .thrift-feature,
  .art-feature,
  .menu-feature,
  .menu-grid,
  .community-hero,
  .community-options,
  .community-note,
  .cafe-moments,
  .profile {
    grid-template-columns: 1fr;
  }

  .thrift-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .profile-reverse img {
    order: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  address {
    text-align: left;
  }
}

@media (pointer: coarse) and (max-width: 1100px) {
  .site-header {
    grid-template-columns: minmax(112px, auto) 1fr auto auto;
    justify-items: stretch;
    gap: 8px;
    padding: 9px 14px;
  }

  .brand {
    width: 112px;
  }

  .site-nav {
    justify-content: center;
    gap: 3px;
  }

  .site-nav a {
    min-height: 36px;
    padding: 7px 8px 5px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .header-email {
    display: none;
  }

  .header-phone {
    justify-self: end;
    min-height: 36px;
    padding: 6px 10px;
  }

  .social-links {
    justify-content: flex-end;
    gap: 2px;
  }

  .social-links a {
    width: 36px;
    height: 36px;
  }

  .social-links svg {
    width: 22px;
    height: 22px;
  }

  .menu-page {
    width: min(720px, calc(100% - 28px));
    padding: 34px 0;
  }

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

  .addon-groups {
    grid-template-columns: 1fr;
  }

  .menu-list-tight {
    white-space: normal;
  }

  .ingredient-panel {
    position: static;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 8px 24px rgba(36, 35, 31, 0.08);
  }

  .ingredient-panel::after {
    display: none;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px 18px;
    padding: 18px 24px calc(22px + env(safe-area-inset-bottom));
  }

  .footer-brand {
    grid-column: 1;
  }

  .site-footer address {
    grid-column: 1;
    text-align: left;
  }

  .footer-social {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    flex-direction: column;
    gap: 4px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
  }

  .footer-social svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 640px) {
  .site-header {
    grid-template-columns: 90px minmax(0, 1fr) 34px auto;
    column-gap: 6px;
    row-gap: 4px;
    align-items: center;
    min-height: 0;
    padding: 7px 10px;
  }

  .brand {
    width: 90px;
  }

  .site-nav {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    min-width: 0;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 2px;
  }

  .site-nav a {
    min-height: 36px;
    flex: 0 1 auto;
    min-width: 0;
    padding: 6px 6px 4px;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .header-phone {
    grid-column: auto;
    justify-self: end;
    width: 34px;
    min-height: 34px;
    height: 34px;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
  }

  .header-phone::before {
    position: absolute;
    width: 6px;
    height: 6px;
    transform: translate(11px, -11px);
    box-shadow: 0 0 0 3px rgba(198, 161, 74, 0.18);
  }

  .header-phone.is-open::before {
    box-shadow: 0 0 0 3px rgba(63, 143, 88, 0.18);
  }

  .header-phone svg {
    width: 18px;
    height: 18px;
  }

  .phone-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .social-links {
    grid-column: auto;
    justify-content: flex-end;
    gap: 2px;
  }

  .community-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .community-hero img {
    aspect-ratio: 4 / 3;
  }

  .email-button {
    width: 100%;
  }

  .social-links a {
    width: 34px;
    height: 34px;
  }

  .social-links svg {
    width: 21px;
    height: 21px;
  }

  .hero {
    min-height: 680px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(15, 15, 13, 0.86), rgba(15, 15, 13, 0.28));
  }

  .hero-copy {
    margin: 0 20px 42px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .thrift-gallery {
    grid-template-columns: 1fr;
  }

  .thrift-gallery img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .thrift-gallery .thrift-jackets-image {
    object-position: center 18%;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5.1rem);
  }

  .map {
    min-height: 300px;
  }

  .privacy-page {
    width: auto;
    padding: 28px 18px 36px;
  }

  .privacy-content {
    padding: 20px 18px;
  }

  .menu-list-tight {
    white-space: normal;
  }

  .ingredient-panel {
    position: static;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 8px 24px rgba(36, 35, 31, 0.08);
  }

  .ingredient-panel::after {
    display: none;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px 18px;
    padding: 18px 24px calc(22px + env(safe-area-inset-bottom));
  }

  .footer-brand {
    grid-column: 1;
    gap: 8px;
  }

  .footer-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
  }

  .site-footer p {
    font-size: 0.86rem;
    line-height: 1.25;
  }

  .site-footer address {
    grid-column: 1;
    gap: 3px;
    color: #efe8db;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .footer-social {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    flex-direction: column;
    gap: 4px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
  }

  .footer-social svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 374px) {
  .site-header {
    column-gap: 4px;
    padding: 7px 8px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-nav a {
    min-height: 34px;
    padding: 6px 4px 4px;
    font-size: 0.72rem;
  }
}
