@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,650;9..144,750&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --cream: #f6efe4;
  --warm-paper: #f2e6d5;
  --terracotta: #a94f32;
  --ember: #c96b43;
  --walnut: #6f4b36;
  --charcoal: #2b211b;
  --smoke: #5f544b;
  --bg: #f6efe4;
  --bg-soft: #f1e5d4;
  --panel: #fffaf2;
  --panel-soft: #f7ecdc;
  --paper: #fffaf2;
  --ink: #2f241d;
  --ink-soft: #5f4a3d;
  --ink-muted: #7e6657;
  --accent: #a94f32;
  --accent-strong: #c96b43;
  --line: #cdb7a1;
  --line-soft: #b99b82;
  --max: 1140px;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow-soft: 0 10px 22px rgba(92, 63, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 118px;
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at 90% 0%, #f0deca 0%, var(--bg) 42%);
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

a {
  color: #9d4e2c;
  text-decoration: none;
}

a:hover {
  color: #7f3f24;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 80;
  transform: translateY(-170%);
  background: #fff7ec;
  color: #17120e;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(40, 29, 21, 0.82);
  border-bottom: 1px solid rgba(240, 220, 197, 0.23);
}

.top-strip {
  border-bottom: 1px solid rgba(240, 220, 197, 0.2);
  padding: 0.38rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  color: #e9d6bf;
}

.top-strip a {
  color: #ffe9cf;
}

.top-strip a:hover {
  color: #fff8ee;
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.8rem 1rem;
  display: grid;
  gap: 0.65rem;
  align-items: center;
  grid-template-columns: minmax(260px, auto) 1fr;
}

.brand {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.brand span {
  display: grid;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #fff7ee;
}

.brand small {
  color: #e7d2ba;
  font-size: 0.79rem;
}

.mobile-toggle {
  display: none;
  border: 1px solid #73513d;
  background: rgba(66, 46, 34, 0.95);
  color: #fff4e8;
  padding: 0.45rem 0.7rem;
  min-height: 44px;
  line-height: 1.2;
  border-radius: 6px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
  justify-content: flex-end;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.15rem 0.2rem;
  font-size: 0.92rem;
  color: #f1decb;
}

.main-nav a:hover {
  color: #fffaf2;
}

.quick-actions {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.62rem;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid #845f47;
  background: rgba(74, 53, 39, 0.92);
  color: #ffe8cc;
  font-size: 0.8rem;
  line-height: 1.15;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.chip:hover {
  background: #5b3c28;
  border-color: #ba8f71;
  transform: translateY(-1px);
}

.hero {
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  display: grid;
  align-items: end;
}

.hero .hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: 2.4rem 1rem 2.8rem;
}

.hero h1 {
  margin: 0;
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 650;
  font-size: clamp(2.05rem, 5vw, 3.85rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
  color: #fff7ec;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero p {
  max-width: 58ch;
  color: #fff3e3;
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
  overflow-wrap: anywhere;
}

.btn-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.68rem 1.08rem;
  min-height: 44px;
  border: 1.5px solid #8f6147;
  background: #fff0dc;
  color: #4b3022;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
  box-shadow: 0 5px 14px rgba(75, 48, 34, 0.12);
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  border-color: #7e371f;
  color: #fffaf2;
  box-shadow: 0 8px 20px rgba(92, 44, 26, 0.26);
}

.btn.secondary {
  background: #fffaf2;
  border-color: #8f6147;
  color: #4b3022;
}

.btn:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.btn:focus-visible,
.chip:focus-visible,
.mobile-toggle:focus-visible,
.main-nav a:focus-visible,
.menu-aside a:focus-visible {
  outline: 3px solid #f4c47b;
  outline-offset: 3px;
}

.hero .btn {
  background: rgba(255, 244, 229, 0.96);
  border-color: #fff7eb;
  color: #3f281c;
  box-shadow: 0 10px 24px rgba(18, 12, 8, 0.28);
}

.hero .btn.primary {
  background: #a94f32;
  border-color: #d59a75;
  color: #fffaf2;
}

.hero .btn.secondary {
  background: rgba(255, 250, 242, 0.96);
  border-color: #fff7eb;
  color: #3f281c;
}

.hero-jump-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}

.jump-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 247, 235, 0.7);
  background: rgba(38, 25, 18, 0.58);
  color: #fff6e9;
  font-weight: 700;
  font-size: 0.84rem;
  box-shadow: 0 8px 18px rgba(18, 12, 8, 0.18);
}

.jump-chip:hover {
  background: rgba(38, 25, 18, 0.74);
  color: #fffaf2;
}

.jump-chip:focus-visible {
  outline: 3px solid #f4c47b;
  outline-offset: 3px;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.2rem 1rem 3.6rem;
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 2.7rem 0 1.15rem;
}

.section-title h2,
h3,
h4,
h5,
legend {
  font-family: "Fraunces", "Times New Roman", serif;
  letter-spacing: 0.01em;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.lead {
  color: var(--ink-soft);
  max-width: 74ch;
  font-size: 1.02rem;
}

.eyebrow {
  color: var(--ember-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body[data-page="about"] main {
  max-width: 1180px;
  padding-top: 0;
}

body[data-page="about"] .hero {
  min-height: 58vh;
  background-position: center 44%;
}

body[data-page="about"] .hero .hero-inner {
  padding-bottom: 5.2rem;
}

.about-hero-kicker {
  color: #f4c47b;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

body[data-page="about"] .hero h1 {
  letter-spacing: 0;
  max-width: 12ch;
}

body[data-page="about"] .hero p {
  max-width: 49ch;
}

.about-gather-panel h2 {
  margin: 0;
  max-width: 20ch;
  font-size: clamp(1.95rem, 4.2vw, 3rem);
  line-height: 1.04;
}

.about-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: -1.7rem 0 2.9rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.about-mission-blurb {
  margin: 1.2rem 0 2rem;
  padding: 1rem 0.2rem 0.1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-mission-blurb h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.08;
}

.about-mission-blurb p {
  margin: 0 0 0.7rem;
  max-width: 78ch;
  color: var(--ink-soft);
}

.about-method-grid article {
  background: linear-gradient(180deg, #fff8ed, #f5e7d5);
  padding: clamp(1rem, 2vw, 1.45rem);
}

.about-method-grid span {
  display: block;
  color: var(--ember-dark);
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.about-method-grid h3,
.about-method-grid p,
.about-meat-feature h3,
.about-meat-feature p,
.about-gather-panel p {
  margin-bottom: 0;
}

.about-method-grid p,
.about-meat-feature p,
.about-gather-panel p {
  color: var(--ink-soft);
}

.about-meats-title {
  border-top: 3px double var(--line);
  padding-top: 1.25rem;
}

.about-meats-title .eyebrow {
  margin: 0;
  color: var(--ember-dark);
}

.about-smoke-ledger {
  display: grid;
  gap: 1rem;
}

.about-meat-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  min-height: 280px;
  padding: clamp(0.85rem, 2vw, 1.2rem);
  background: linear-gradient(135deg, #21150f, #4a2118 58%, #7d2b21);
  color: #fff8ed;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
}

.about-meat-feature:nth-child(even) {
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  background: linear-gradient(135deg, #2a1b13, #3b2419 62%, #5c2a1f);
}

.about-meat-feature:nth-child(even) img {
  order: 2;
}

.about-meat-feature img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255, 248, 237, 0.22);
}

.about-meat-feature h3 {
  margin-top: 0.35rem;
  font-size: 2.35rem;
}

.about-meat-feature p {
  color: rgba(255, 248, 237, 0.82);
  max-width: 48ch;
}

.about-meat-feature .eyebrow {
  color: #f4c47b;
}

.about-gather-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 1.35rem 2rem;
  align-items: center;
  margin-top: 1.35rem;
  padding: 1.15rem;
  background: linear-gradient(135deg, #241711, #4b231a 64%, #7d2b21);
  border: 1px solid rgba(255, 248, 237, 0.18);
  color: #fff8ed;
  box-shadow: var(--shadow-soft);
}

.about-gather-photo {
  width: 100%;
  aspect-ratio: 16 / 11;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 248, 237, 0.22);
}

.about-gather-content {
  display: grid;
  gap: 0.9rem;
  padding: 0.4rem 0.5rem 0.4rem 0;
}

.about-gather-content .eyebrow {
  color: #f4c47b;
}

.about-gather-content p {
  max-width: 58ch;
  color: rgba(255, 248, 237, 0.82);
}

.about-gather-content .btn-row {
  margin-top: 0;
}

.cards-4 {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-3 {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-card-grid {
  align-items: stretch;
}

.why-card-grid .info-box {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 265px;
  height: 100%;
  padding: 1.35rem;
}

.why-card-grid .info-box h3 {
  margin-bottom: 0.85rem;
}

.why-card-grid .info-box p {
  margin: 0;
}

.cards-3 + .info-box,
.cards-4 + .info-box {
  margin-top: 1.2rem;
}

.cards-3 + .cards-3,
.cards-4 + .cards-4,
.cards-3 + .cards-4,
.cards-4 + .cards-3 {
  margin-top: 1.2rem;
}

.info-box + .info-box {
  margin-top: 1.2rem;
}

.cards-3 > .info-box + .info-box,
.cards-4 > .info-box + .info-box,
.contact-grid > .info-box + .info-box,
.employment-layout > .info-box + .info-box {
  margin-top: 0;
}

#event-menu > .info-box {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0.8rem 1.3rem;
  padding: 0.95rem 1.15rem;
}

#event-menu > .info-box p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  text-wrap: pretty;
}

#event-menu > .info-box p:last-child {
  text-align: right;
}

#event-menu > .event-menu-notes {
  display: block;
  padding: 1rem 1.1rem;
}

#event-menu > .event-menu-notes ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

#event-menu > .event-menu-notes li {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

#event-menu > .event-menu-notes p:last-child {
  margin-top: 0.65rem;
  text-align: left;
}

.feature-card,
.quick-card,
.package-card,
.info-box {
  background: linear-gradient(180deg, var(--panel), var(--panel-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.05rem;
  box-shadow: var(--shadow-soft);
}

.quick-card,
.package-card {
  background: linear-gradient(180deg, #fff8ed, #f7ebdb);
}

body[data-page="home"] .cards-3 .quick-card {
  display: flex;
  flex-direction: column;
}

body[data-page="home"] .cards-3 .quick-card p:last-child {
  margin-top: auto;
  margin-bottom: 0;
}

.feature-card img,
.quick-card img {
  border-radius: 9px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 0.7rem;
}

.feature-card h3,
.quick-card h3,
.package-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.2rem;
}

.feature-card p,
.quick-card p,
.package-card p,
.info-box p {
  color: var(--ink-soft);
}

.press-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.press-note {
  border-top: 2px solid var(--ember);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0.25rem 1.15rem;
}

.press-note h3 {
  margin: 0 0 0.45rem;
  font-size: 1.22rem;
}

.press-note p {
  color: var(--ink-soft);
}

.press-note .eyebrow {
  color: var(--ember-dark);
  margin-bottom: 0.45rem;
}

.fine,
.tags,
.intro-copy,
.outro {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.menu-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.15rem;
}

.menu-aside {
  position: sticky;
  top: 112px;
  align-self: start;
  background: rgba(252, 245, 235, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.5rem;
}

.menu-aside a {
  padding: 0.5rem 0.55rem;
  min-height: 44px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  color: #573828;
  border: 1px solid rgba(143, 97, 71, 0.42);
  background: #fff4e7;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

.menu-aside a:hover {
  background: #f1d9c0;
  border-color: #8f6147;
}

.menu-section {
  margin-bottom: 1.25rem;
  background: linear-gradient(180deg, #fffaf1, #f5e9d9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  box-shadow: var(--shadow-soft);
  scroll-margin-top: 126px;
}

.menu-subsection {
  border-top: 1px solid #d4c1ad;
  margin-top: 1rem;
  padding-top: 1rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px dotted #c4ae98;
  align-items: start;
}

.menu-item h4,
.menu-item h5 {
  margin: 0 0 0.25rem;
}

.menu-item p {
  margin: 0;
  overflow-wrap: anywhere;
}

.price {
  font-weight: 700;
  color: #974a2a;
  white-space: nowrap;
}

body[data-page="menu"] {
  background: radial-gradient(circle at 82% 0%, #ead9c4 0%, #f2e8d9 44%, #eee2d1 100%);
}

body[data-page="menu"] main {
  padding-top: 2.4rem;
}

.menu-intro-card {
  background: linear-gradient(145deg, #2f231c, #3f2e24 44%, #5a3e2f 100%);
  color: #f7ebda;
  border: 1px solid #896851;
  border-radius: 14px;
  padding: 1.4rem 1.25rem;
  box-shadow: 0 20px 40px rgba(38, 24, 16, 0.24);
}

.menu-kicker {
  margin: 0 0 0.48rem;
  color: #efc89b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 800;
}

.menu-intro-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: #fff8ee;
}

.menu-intro-card .lead {
  margin: 0.75rem 0 0;
  max-width: 70ch;
  color: #f1dcc5;
}

.menu-legend-bar {
  margin-top: 0.95rem;
  background: linear-gradient(180deg, #fffaf2, #f6e8d6);
  border: 1px solid #cfb298;
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.menu-legend-bar .lead {
  margin: 0;
  font-size: 0.95rem;
  color: #5f4738;
}

.menu-shell {
  margin-top: 1.15rem;
  background: linear-gradient(180deg, #f2e5d4, #ead9c5);
  border: 1px solid #c5a98f;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 252, 245, 0.7), 0 16px 28px rgba(84, 56, 38, 0.16);
}

body[data-page="menu"] .menu-layout {
  grid-template-columns: 250px 1fr;
  gap: 1rem;
}

body[data-page="menu"] .menu-aside {
  background: linear-gradient(180deg, #fff4e8, #f8e5d2);
  border: 1px solid #c69e80;
  border-radius: 12px;
  padding: 0.56rem;
}

body[data-page="menu"] .menu-aside a {
  border-radius: 8px;
  border: 1px solid #d2b59c;
  background: linear-gradient(180deg, #fffaf3, #f7e7d4);
  color: #4d3427;
  font-weight: 700;
}

body[data-page="menu"] .menu-aside a:hover {
  background: linear-gradient(180deg, #f6e4cf, #edd2b7);
  border-color: #b88d6d;
}

body[data-page="menu"] .menu-section {
  background: linear-gradient(180deg, #fffdf8, #f9eddd);
  border: 1px solid #ccb297;
  border-radius: 12px;
  padding: 1.15rem 1.05rem;
  box-shadow: 0 14px 22px rgba(95, 63, 42, 0.13);
}

body[data-page="menu"] .menu-section h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin: 0 0 0.35rem;
  color: #3f2a1f;
  font-size: 1.4rem;
}

body[data-page="menu"] .menu-subsection h4 {
  margin: 0 0 0.35rem;
  color: #4d3325;
  font-size: 1.08rem;
}

body[data-page="menu"] .menu-item {
  padding: 0.88rem 0;
  border-bottom: 1px solid #d9c2ab;
}

body[data-page="menu"] .menu-item h4,
body[data-page="menu"] .menu-item h5 {
  color: #352318;
  font-size: 1.04rem;
}

body[data-page="menu"] .menu-item p {
  color: #684f3f;
}

body[data-page="menu"] .tags {
  margin-bottom: 0.2rem;
  color: #87553b;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

body[data-page="menu"] .price {
  color: #8f3f22;
  font-size: 1rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pill-list span {
  border: 1px solid #c5ac96;
  background: #fff4e7;
  padding: 0.42rem 0.66rem;
  border-radius: 999px;
  font-size: 0.88rem;
  color: #5f4537;
}

body[data-page="bakery"] {
  background: radial-gradient(circle at 88% 0%, #f8e7d4 0%, #f9f1e5 40%, #f5ecde 100%);
}

body[data-page="bakery"] main {
  padding-top: 2.5rem;
}

body[data-page="bakery"] .hero .hero-inner {
  max-width: 760px;
}

body[data-page="bakery"] .hero p {
  max-width: 52ch;
}

.bakery-identity {
  display: grid;
  grid-template-columns: 1.3fr minmax(220px, 0.9fr);
  gap: 1rem;
  align-items: center;
  background: linear-gradient(145deg, #fff6ea, #f8e3cb);
  border-color: #cba181;
}

.bakery-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  margin: 0 0 0.42rem;
  color: #9c4d2e;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.bakery-copy {
  margin: 0;
}

.bakery-pricing-note {
  margin-top: 1rem;
  padding-top: 0.95rem;
  border-top: 1px solid #d4b497;
}

.bakery-pricing-note h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.bakery-pricing-note p {
  margin: 0 0 0.48rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.bakery-pricing-note p:last-child {
  margin-bottom: 0;
}

.bakery-identity-actions {
  background: rgba(255, 248, 238, 0.82);
  border: 1px solid #d4b497;
  border-radius: 12px;
  padding: 0.95rem;
}

.bakery-social-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 68% 48%;
  border-radius: 10px;
  border: 1px solid #cfab8d;
  margin-bottom: 0.75rem;
  box-shadow: 0 12px 22px rgba(93, 52, 31, 0.16);
}

.bakery-identity-actions p {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #6a4a39;
}

.btn.bakery-ig {
  width: 100%;
  justify-content: center;
  background: linear-gradient(180deg, #b65c39, #9c492d);
  border-color: #7e3a22;
  color: #fff9f1;
  box-shadow: 0 10px 18px rgba(135, 74, 41, 0.24);
}

.btn.bakery-ig:hover {
  filter: brightness(1.04);
}

body[data-page="bakery"] .pill-list span {
  background: #fff9f1;
  border-color: #d8b79d;
}

.bakery-gallery-intro {
  margin-top: -0.55rem;
  margin-bottom: 1.1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-grid.bakery-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
  align-items: start;
}

.gallery-card img,
.award-card img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: var(--focal, center);
  transition: transform 0.28s ease;
}

.gallery-card img:hover {
  transform: scale(1.02);
}

.gallery-card {
  overflow: hidden;
  border-radius: 10px;
  background: #f7ecdc;
}

.gallery-video-card {
  background: #20140f;
}

.gallery-video {
  aspect-ratio: 4 / 3;
  background: #120c09;
  border: 1px solid rgba(255, 248, 237, 0.18);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery-video iframe,
.gallery-video video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery-video-card figcaption {
  color: #fff8ed;
}

body[data-page="gallery"] .gallery-card {
  border: 1px solid #d1b9a3;
  border-radius: 4px;
  background: #f2ebe1;
  box-shadow: none;
}

body[data-page="gallery"] .gallery-card img {
  border-radius: 0;
  border: 1px solid #d1b9a3;
  box-shadow: none;
}

body[data-page="gallery"] .gallery-card figcaption {
  padding: 0.5rem 0.6rem 0.55rem;
  color: #2f241d;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0;
}

.bakery-item-card {
  background: linear-gradient(180deg, #fffaf2, #f6e9d8);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}

.bakery-item-card img {
  aspect-ratio: 4 / 3;
  object-position: var(--focal, center);
}

.bakery-mosaic-wide,
.bakery-mosaic-large {
  grid-column: span 2;
}

.bakery-mosaic-wide img {
  aspect-ratio: 16 / 9;
}

.bakery-mosaic-large img {
  aspect-ratio: 3 / 2;
}

.bakery-mosaic-tall img {
  aspect-ratio: 4 / 5;
}

.bakery-mosaic-portrait img {
  aspect-ratio: 2 / 3;
}

.bakery-item-card figcaption {
  padding: 0.72rem 0.8rem 0.86rem;
}

.bakery-item-card figcaption strong {
  display: block;
  margin: 0;
  font-size: 1.03rem;
  color: #4b3124;
  line-height: 1.3;
}

.bakery-item-card figcaption span {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.94rem;
  color: #725646;
  line-height: 1.5;
}

.award-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.award-card {
  background: #fff8ed;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0.85rem;
  box-shadow: var(--shadow-soft);
}

.award-card img {
  aspect-ratio: 5 / 4;
  object-fit: contain;
  background: var(--paper);
  border-color: #b89f89;
  padding: 0.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-photo-box {
  padding: 0;
  overflow: hidden;
}

.contact-photo-box img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.employment-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 1rem;
  align-items: start;
}

.employment-layout img {
  margin-top: 1rem;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.application-panel {
  scroll-margin-top: 130px;
}

form {
  display: grid;
  gap: 0.65rem;
}

form > label,
fieldset > label,
.form-grid > label {
  display: grid;
  gap: 0.32rem;
  color: #664635;
  font-weight: 600;
  font-size: 0.93rem;
}

fieldset {
  border: 1px solid #ccb39b;
  border-radius: var(--radius);
  padding: 0.9rem;
  margin: 0;
  background: #fff8ed;
}

legend {
  padding: 0 0.35rem;
  color: #a15531;
  font-weight: 650;
}

.form-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

input,
select,
textarea {
  width: 100%;
  background: #fffdf8;
  color: #392b23;
  border: 1px solid #cbb39c;
  border-radius: 8px;
  min-height: 44px;
  padding: 0.58rem 0.65rem;
  font: inherit;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #b76841 50%),
    linear-gradient(135deg, #b76841 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
  min-width: 1rem;
  margin: 0 0.45rem 0 0;
  accent-color: var(--accent-strong);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.package-card h3 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.package-card h3 span {
  color: #974a2a;
  white-space: nowrap;
  font-size: 1.04rem;
}

.package-card ul {
  margin: 0.65rem 0 0;
  padding-left: 1.1rem;
}

.package-card li + li {
  margin-top: 0.3rem;
}

.info-box form .btn {
  width: 100%;
  text-align: center;
  justify-self: stretch;
}

.checkbox-row,
.checkbox-cluster {
  display: grid;
  gap: 0.45rem;
}

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

.checkbox-row label,
.checkbox-cluster label,
.inline-fieldset label {
  display: flex;
  align-items: flex-start;
  color: #6d5142;
  font-size: 0.92rem;
  font-weight: 500;
}

.inline-fieldset {
  display: grid;
  gap: 0.45rem;
}

.compact-form {
  gap: 0.5rem;
}

.compact-form fieldset {
  padding: 0.65rem;
}

.compact-form input,
.compact-form select {
  padding: 0.48rem 0.55rem;
}

.compact-submit {
  justify-self: start;
}

.form-status {
  min-height: 1.3rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.form-status[data-tone="success"] {
  color: #27613b;
}

.form-status[data-tone="warning"] {
  color: #875016;
}

.form-status[data-tone="error"] {
  color: #9d2f24;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #f4e7d6, #ecddca);
  padding: 1.15rem 1rem 1.55rem;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1.1fr 1fr 1fr;
  align-items: start;
}

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

.footer-brand-lockup span {
  display: grid;
}

.footer-brand-lockup strong {
  color: #5d3f2f;
  font-size: 1.08rem;
}

.footer-brand-lockup small {
  color: #7c6252;
  font-size: 0.84rem;
}

.footer-grid h2 {
  margin: 0 0 0.5rem;
  font-size: 0.98rem;
  color: #5d3f2f;
}

.footer-grid p {
  margin: 0.25rem 0;
  color: #654a3a;
}

.hours-list {
  display: grid;
  gap: 0.38rem;
  margin-top: 0.35rem;
}

.hours-row {
  display: grid;
  grid-template-columns: minmax(100px, 1fr) auto;
  gap: 0.8rem;
  align-items: baseline;
  line-height: 1.35;
}

.hours-day {
  color: #6b4f3f;
  font-weight: 600;
}

.hours-time {
  color: #5a4436;
}

.hours-row.closed .hours-day,
.hours-row.closed .hours-time {
  color: #8a4a2a;
  font-weight: 700;
}

.hours-note {
  margin-top: 0.45rem;
  color: #6a4b3a;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-connect .compact-form {
  margin-top: 0.55rem;
  max-width: 360px;
}

.email-club-note {
  margin-top: 0.2rem;
  color: #6a4b3a;
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-actions {
  margin-top: 0.55rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.ig-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  margin-right: 0.4rem;
  vertical-align: -2px;
}

.footer-grid ul {
  margin: 0.35rem 0 0;
  padding-left: 1rem;
  color: #654a3a;
}

.footer-grid a {
  color: #8f4928;
}

.footer-grid a:hover {
  color: #733a20;
}

.copyright {
  max-width: var(--max);
  margin: 0.95rem auto 0;
  color: #7d6454;
  font-size: 0.86rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 8, 0.82);
  backdrop-filter: blur(3px);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(1080px, 95vw);
  max-height: 92vh;
  border-radius: 12px;
  overflow: hidden;
  background: #1e150f;
  border: 1px solid rgba(255, 248, 238, 0.22);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
}

.lightbox__image {
  display: block;
  width: 100%;
  max-height: calc(92vh - 56px);
  object-fit: contain;
  background: #120d0a;
}

.lightbox__caption {
  margin: 0;
  padding: 0.55rem 0.85rem 0.7rem;
  color: #f2ddc6;
  font-size: 0.9rem;
  line-height: 1.4;
  background: rgba(26, 18, 13, 0.95);
}

.lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  border: 1px solid rgba(255, 235, 214, 0.42);
  background: rgba(33, 22, 15, 0.86);
  color: #fff5e6;
  border-radius: 999px;
  min-height: 36px;
  padding: 0.35rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.lightbox__close:hover {
  background: rgba(48, 31, 21, 0.92);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cards-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .press-note-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .gallery-grid.bakery-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .main-nav {
    gap: 0.68rem;
  }
  .hours-row {
    grid-template-columns: minmax(90px, 1fr) auto;
  }
}

@media (max-width: 900px) {
  .nav-wrap {
    grid-template-columns: 1fr auto;
  }
  .mobile-toggle {
    display: inline-block;
  }
  .main-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    padding-bottom: 0.5rem;
  }
  .main-nav.open {
    display: flex;
  }
  .quick-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-bottom: 0.2rem;
  }
  .menu-layout {
    grid-template-columns: 1fr;
  }
  .menu-aside {
    position: static;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 0.45rem;
  }
  .menu-aside a {
    border: 1px solid var(--line);
    background: #fff8ef;
    flex: 0 0 auto;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }
  .contact-grid,
  .employment-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .bakery-identity {
    grid-template-columns: 1fr;
  }
  body[data-page="menu"] .menu-shell {
    padding: 0.8rem;
  }
  body[data-page="menu"] .menu-layout {
    grid-template-columns: 1fr;
  }
  .about-gather-panel {
    grid-template-columns: 1fr;
  }
  .about-gather-panel h2 {
    max-width: 20ch;
    font-size: clamp(1.75rem, 6vw, 2.35rem);
  }
  .about-method-grid {
    grid-template-columns: 1fr;
    margin-top: 1.1rem;
  }
  .about-meat-feature,
  .about-meat-feature:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .about-meat-feature:nth-child(even) img {
    order: 0;
  }
  .about-gather-photo {
    min-height: 220px;
  }
  .about-gather-content {
    padding: 0;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 54vh;
  }
  .hero .hero-inner {
    padding: 1.8rem 1rem 2.1rem;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .cards-4,
  .cards-3 {
    grid-template-columns: 1fr;
  }
  .about-meat-feature {
    min-height: 0;
  }
  .about-meat-feature img {
    min-height: 210px;
  }
  .about-meat-feature h3 {
    font-size: 1.9rem;
  }
  .about-meats-title {
    display: grid;
    align-items: start;
    justify-content: start;
    gap: 0.35rem;
    margin: 2rem 0 1rem;
    padding-top: 0.95rem;
    padding-bottom: 0.35rem;
    background: var(--bg);
    position: relative;
    z-index: 1;
  }
  .about-meats-title h2 {
    margin: 0;
    max-width: 12ch;
    line-height: 1.05;
    font-size: clamp(2rem, 10vw, 2.55rem);
  }
  .about-smoke-ledger {
    margin-top: 0.25rem;
  }
  .about-meat-feature {
    overflow: hidden;
  }
  .press-note-grid {
    grid-template-columns: 1fr;
  }
  #event-menu > .info-box {
    grid-template-columns: 1fr;
  }
  #event-menu > .info-box p:last-child {
    text-align: left;
  }
  .gallery-grid,
  .award-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid.bakery-gallery-grid {
    grid-template-columns: 1fr;
  }
  .bakery-mosaic-wide,
  .bakery-mosaic-large,
  .bakery-mosaic-tall,
  .bakery-mosaic-portrait {
    grid-column: span 1;
    grid-row: span 1;
  }
  .bakery-mosaic-wide img,
  .bakery-mosaic-large img {
    aspect-ratio: 4 / 3;
  }
  .menu-aside {
    gap: 0.45rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .menu-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .menu-intro-card {
    padding: 1.1rem 0.9rem;
  }
  .menu-shell {
    padding: 0.65rem;
  }
  .menu-legend-bar {
    padding: 0.72rem 0.8rem;
  }
  body[data-page="menu"] .menu-section h3 {
    font-size: 1.24rem;
  }
  .checkbox-row {
    grid-template-columns: 1fr;
  }
  .lightbox {
    padding: 0.7rem;
  }
  .lightbox__dialog {
    width: min(1080px, 98vw);
  }
  .lightbox__image {
    max-height: calc(92vh - 68px);
  }
}

@media (max-width: 480px) {
  .top-strip {
    font-size: 0.78rem;
    line-height: 1.35;
  }
  .nav-wrap {
    padding: 0.7rem 0.8rem;
  }
  .brand strong {
    font-size: 0.92rem;
  }
  .brand small {
    font-size: 0.73rem;
  }
  .main-nav a {
    font-size: 0.9rem;
  }
  .menu-aside {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .menu-aside a {
    white-space: normal;
  }
  .gallery-grid,
  .award-grid {
    grid-template-columns: 1fr;
  }
  .menu-section,
  .feature-card,
  .quick-card,
  .package-card,
  .info-box {
    padding: 0.9rem;
  }
}
