@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Pacifico&display=swap");

:root {
  --espresso: #1b120c;
  --espresso-2: #2a1a12;
  --espresso-3: #3a2114;
  --cream: #fff8ec;
  --foam: #f4ead9;
  --latte: #c88343;
  --latte-dark: #91562d;
  --gold: #e2b76f;
  --sage: #98aa83;
  --rose: #d8a28b;
  --white: #ffffff;
  --muted: rgba(255, 248, 236, 0.72);
  --muted-dark: #695b4c;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(27, 18, 12, 0.12);
  --shadow: 0 24px 70px rgba(14, 8, 4, 0.28);
  --shadow-soft: 0 18px 44px rgba(30, 18, 10, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1140px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

code {
  font-size: 0.9em;
  background: rgba(27, 18, 12, 0.08);
  border: 1px solid rgba(27, 18, 12, 0.1);
  padding: 0.12rem 0.35rem;
  border-radius: 7px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--cream);
  color: var(--espresso);
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(27, 18, 12, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  padding: 10px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(226, 183, 111, 0.18), rgba(255, 255, 255, 0.08));
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  display: block;
  font-family: "Pacifico", cursive;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  display: block;
  color: rgba(255, 248, 236, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 248, 236, 0.88);
  font-size: 0.92rem;
}

.nav-menu a:not(.button) {
  position: relative;
}

.nav-menu a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--latte));
  color: #1d120b;
  font-weight: 850;
  letter-spacing: -0.01em;
  box-shadow: 0 16px 36px rgba(200, 131, 67, 0.26);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(200, 131, 67, 0.34);
  filter: saturate(1.08);
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.9rem;
}

.button-ghost {
  background: rgba(255, 248, 236, 0.08);
  color: var(--cream);
  border: 1px solid rgba(255, 248, 236, 0.22);
  box-shadow: none;
}

.button-ghost-light {
  background: rgba(255, 248, 236, 0.12);
  color: var(--cream);
  border: 1px solid rgba(255, 248, 236, 0.25);
  box-shadow: none;
}

.button-dark {
  background: var(--espresso);
  color: var(--cream);
  box-shadow: 0 16px 36px rgba(27, 18, 12, 0.18);
}

.text-link {
  display: inline-flex;
  color: var(--latte-dark);
  font-weight: 850;
  border-bottom: 2px solid rgba(200, 131, 67, 0.35);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 136px 0 90px;
  color: var(--cream);
  background: radial-gradient(circle at 20% 18%, rgba(226, 183, 111, 0.18), transparent 28%), linear-gradient(135deg, #160c08, #2a1a12 58%, #3a2114);
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 30%, black, transparent 80%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
}

.hero::before {
  width: 500px;
  height: 500px;
  right: -220px;
  top: 120px;
  background: rgba(226, 183, 111, 0.18);
}

.hero::after {
  width: 360px;
  height: 360px;
  left: -180px;
  bottom: 40px;
  background: rgba(152, 170, 131, 0.16);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  color: var(--latte-dark);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.hero .eyebrow,
.footer-grid .eyebrow,
.order-panel .eyebrow {
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 6.7rem);
  line-height: 0.91;
  letter-spacing: -0.085em;
  max-width: 850px;
}

.hero-text {
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  color: rgba(255, 248, 236, 0.78);
  margin: 28px 0 0;
  max-width: 680px;
}

.hero-actions,
.section-actions,
.card-actions,
.order-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.proof-strip span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 248, 236, 0.16);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.07);
  color: rgba(255, 248, 236, 0.78);
  font-size: 0.86rem;
}

.hero-card {
  position: relative;
  min-height: 540px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255, 248, 236, 0.08);
  isolation: isolate;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(19, 10, 5, 0.72), transparent 55%);
}

.floating-order-card {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 248, 236, 0.13);
  backdrop-filter: blur(18px);
}

.floating-order-card strong {
  display: block;
  font-size: 1.05rem;
}

.floating-order-card p {
  margin: 2px 0 0;
  color: rgba(255, 248, 236, 0.74);
  font-size: 0.92rem;
}

.floating-order-card a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--cream);
  color: var(--espresso);
  font-size: 1.3rem;
  font-weight: 900;
}

.status-dot {
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: var(--sage);
  box-shadow: 0 0 0 8px rgba(152, 170, 131, 0.2);
}

.section {
  padding: 100px 0;
}

.two-column,
.catering-layout,
.events-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow),
.section-copy p:not(.eyebrow),
.story-panel p,
.community-card p,
.catering-layout p,
.visit-card p,
.order-panel p {
  color: var(--muted-dark);
  font-size: 1.05rem;
}

.story-section {
  background: linear-gradient(180deg, var(--cream), #f5e6d1);
}

.story-panel,
.form-panel,
.visit-card,
.order-panel,
.community-card {
  border: 1px solid rgba(27, 18, 12, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
}

.story-panel {
  padding: clamp(28px, 4vw, 46px);
}

.story-panel p {
  font-size: 1.14rem;
  margin: 0;
}

.story-panel p + p {
  margin-top: 18px;
}

.featured-section {
  background: #f7ecd8;
}

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

.featured-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  border-radius: var(--radius);
  background: var(--espresso);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}

.featured-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 420ms ease;
}

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

.featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(27, 18, 12, 0.9), rgba(27, 18, 12, 0.1) 72%);
}

.featured-content {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  padding: 24px;
}

.featured-content span,
.event-card span,
.catering-cards span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(226, 183, 111, 0.16);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.featured-content h3 {
  color: var(--cream);
}

.featured-content p {
  margin: 10px 0 0;
  color: rgba(255, 248, 236, 0.78);
}

.featured-content small {
  display: block;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 850;
}

.skeleton-card {
  min-height: 330px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  background: rgba(255, 255, 255, 0.45);
}

.skeleton-card::after {
  display: none;
}

.skeleton-image,
.skeleton-line {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(27, 18, 12, 0.06), rgba(27, 18, 12, 0.12), rgba(27, 18, 12, 0.06));
  background-size: 220% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-image {
  position: absolute;
  inset: 0;
  border-radius: 0;
}

.skeleton-line {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 14px;
}

.skeleton-line.short {
  width: 46%;
}

@keyframes shimmer {
  to {
    background-position: -220% 0;
  }
}

.menu-section {
  background: var(--cream);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.tab {
  border: 1px solid rgba(27, 18, 12, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--espresso);
  padding: 12px 16px;
  font-weight: 850;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, color 180ms ease;
}

.tab:hover,
.tab:focus-visible {
  transform: translateY(-1px);
}

.tab.active {
  background: var(--espresso);
  color: var(--cream);
}

.menu-showcase {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
  align-items: stretch;
}

.menu-image-card,
.menu-card {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.menu-image-card {
  min-height: 440px;
  background: #dbc5ab;
}

.menu-image-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-image-card img.is-changing {
  opacity: 0.35;
  transform: scale(1.015);
}

.menu-card {
  padding: clamp(28px, 5vw, 52px);
  background: var(--espresso);
  color: var(--cream);
}

.menu-kicker {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
}

.menu-card h3 {
  margin-top: 14px;
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.menu-card p,
.menu-card li {
  color: rgba(255, 248, 236, 0.75);
}

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

.menu-card li {
  position: relative;
  padding-left: 28px;
}

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

.events-section {
  background: linear-gradient(180deg, #f7ecd8, #f1dcc1);
}

.calendar-card {
  border-radius: var(--radius);
  background: var(--espresso);
  color: var(--cream);
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.calendar-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.calendar-top span {
  display: block;
  color: rgba(255, 248, 236, 0.6);
  font-size: 0.86rem;
}

.calendar-top strong {
  display: block;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.calendar-top a {
  color: var(--gold);
  font-weight: 850;
  border-bottom: 1px solid rgba(226, 183, 111, 0.42);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-grid span {
  text-align: center;
  color: rgba(255, 248, 236, 0.54);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-grid button {
  min-height: 48px;
  border: 1px solid rgba(255, 248, 236, 0.11);
  border-radius: 13px;
  background: rgba(255, 248, 236, 0.06);
  color: rgba(255, 248, 236, 0.9);
}

.calendar-grid button.has-event {
  background: linear-gradient(135deg, rgba(226, 183, 111, 0.95), rgba(200, 131, 67, 0.95));
  color: var(--espresso);
  font-weight: 900;
}

.calendar-grid button.muted-day {
  opacity: 0.36;
}

.calendar-note {
  color: rgba(255, 248, 236, 0.64);
  margin: 18px 0 0;
  font-size: 0.9rem;
}

.upcoming-wrap {
  margin-top: 32px;
}

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

.event-card {
  border-radius: var(--radius-sm);
  padding: 24px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(27, 18, 12, 0.08);
  box-shadow: var(--shadow-soft);
}

.event-card h3 {
  font-size: 1.45rem;
}

.event-card p {
  color: var(--muted-dark);
}

.event-meta {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  color: var(--latte-dark);
  font-weight: 850;
  font-size: 0.92rem;
}

.community-section {
  background: var(--espresso);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.community-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  right: -220px;
  top: -120px;
  background: rgba(226, 183, 111, 0.13);
}

.community-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  background: rgba(255, 248, 236, 0.07);
  border-color: rgba(255, 248, 236, 0.14);
  box-shadow: none;
}

.community-card h2,
.community-card h3 {
  color: var(--cream);
}

.community-card p {
  color: rgba(255, 248, 236, 0.72);
}

.community-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.community-pill-grid span {
  padding: 12px 15px;
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid rgba(255, 248, 236, 0.14);
  font-weight: 850;
}

.catering-section {
  background: #f8efe0;
}

.catering-cards {
  display: grid;
  gap: 16px;
}

.catering-cards article {
  padding: 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(27, 18, 12, 0.08);
  box-shadow: var(--shadow-soft);
}

.catering-cards p {
  margin-bottom: 0;
}

.form-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: start;
  margin-top: 42px;
  padding: clamp(24px, 4vw, 44px);
}

.form-panel p {
  color: var(--muted-dark);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--espresso);
  font-weight: 850;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(27, 18, 12, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--espresso);
  padding: 13px 14px;
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(200, 131, 67, 0.7);
  box-shadow: 0 0 0 4px rgba(200, 131, 67, 0.12);
  background: #fff;
}

.gallery-section {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 20px;
  align-items: stretch;
}

.feature-card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  min-height: 430px;
}

.feature-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.feature-card > div {
  padding: 26px;
}

.feature-card p:not(.eyebrow) {
  color: var(--muted-dark);
}

.feature-card.large {
  background: radial-gradient(circle at 80% 20%, rgba(226, 183, 111, 0.22), transparent 28%), var(--espresso);
  color: var(--cream);
  align-content: end;
}

.feature-card.large p:not(.eyebrow) {
  color: rgba(255, 248, 236, 0.74);
}


.photo-mosaic-section {
  padding-top: 0;
  background: linear-gradient(180deg, rgba(248, 239, 224, 0.8), var(--cream));
}

.mosaic-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.mosaic-item {
  position: relative;
  margin: 0;
  min-height: 260px;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.mosaic-item.wide {
  grid-column: span 2;
}

.mosaic-item.tall {
  grid-row: span 2;
  min-height: 538px;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, transparent, rgba(18, 10, 6, 0.78));
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 700;
}

.locations-section {
  background: linear-gradient(180deg, #f8efe0, var(--cream));
}

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

.location-card {
  padding: clamp(26px, 4vw, 42px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(27, 18, 12, 0.08);
  box-shadow: var(--shadow-soft);
}

.location-card.highlight {
  background: var(--espresso);
  color: var(--cream);
}

.location-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.location-topline span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(200, 131, 67, 0.12);
}

.location-card.highlight .location-topline span {
  background: rgba(255, 248, 236, 0.1);
}

.location-topline p {
  margin: 0;
  color: var(--latte-dark);
  font-weight: 900;
}

.location-card.highlight .location-topline p,
.location-card.highlight .text-link {
  color: var(--gold);
}

.location-card h3 {
  margin-bottom: 14px;
}

.location-card address {
  font-style: normal;
  color: var(--muted-dark);
}

.location-card.highlight address,
.location-card.highlight .location-note,
.location-card.highlight .hours-box p {
  color: rgba(255, 248, 236, 0.72);
}

.location-note,
.phone {
  font-weight: 850;
}

.hours-box {
  margin: 22px 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(27, 18, 12, 0.05);
  border: 1px solid rgba(27, 18, 12, 0.08);
}

.location-card.highlight .hours-box {
  background: rgba(255, 248, 236, 0.08);
  border-color: rgba(255, 248, 236, 0.12);
}

.hours-box p {
  margin: 4px 0 0;
  color: var(--muted-dark);
}

.order-section {
  background: var(--espresso);
  color: var(--cream);
}

.order-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  background: radial-gradient(circle at 85% 18%, rgba(226, 183, 111, 0.16), transparent 30%), rgba(255, 248, 236, 0.07);
  border-color: rgba(255, 248, 236, 0.12);
  box-shadow: none;
}

.order-panel h2 {
  color: var(--cream);
}

.order-panel p {
  color: rgba(255, 248, 236, 0.72);
}

.visit-section {
  background: #f4ead9;
}

.visit-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
}

.site-footer {
  padding: 70px 0 26px;
  background: #120a06;
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) 0.8fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-grid p,
.footer-bottom p {
  color: rgba(255, 248, 236, 0.66);
}

.footer-grid h3 {
  margin: 0 0 16px;
  color: var(--cream);
}

.footer-grid a:not(.brand) {
  display: table;
  color: rgba(255, 248, 236, 0.72);
  margin: 8px 0;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 248, 236, 0.12);
  margin-top: 48px;
  padding-top: 22px;
  font-size: 0.92rem;
}

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

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

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 180ms;
}

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

  .nav-menu {
    position: fixed;
    inset: 78px 20px auto 20px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(27, 18, 12, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 10px;
  }

  .hero-grid,
  .two-column,
  .catering-layout,
  .events-layout,
  .community-card,
  .form-panel,
  .visit-card,
  .order-panel {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-card img {
    min-height: 430px;
  }

  .featured-grid,
  .upcoming-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-showcase,
  .locations-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .order-panel {
    text-align: left;
  }
}

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

  .mosaic-item.wide,
  .mosaic-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .photo-mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic-item,
  .mosaic-item.tall,
  .mosaic-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1140px);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.1rem);
  }

  .hero-actions,
  .section-actions,
  .card-actions,
  .order-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .section-actions .button,
  .card-actions .button,
  .order-actions .button {
    width: 100%;
  }

  .proof-strip span {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    gap: 5px;
  }

  .calendar-grid button {
    min-height: 40px;
    border-radius: 10px;
    font-size: 0.84rem;
  }

  .floating-order-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Phase 2.5 additions */
.announcement-strip {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  background: linear-gradient(90deg, var(--latte-dark), var(--latte), var(--gold));
  color: var(--espresso);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.announcement-strip[hidden] {
  display: none;
}

.announcement-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 0.92rem;
  text-align: center;
}

.announcement-inner span {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(27, 18, 12, 0.15);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement-inner p {
  margin: 0;
  font-weight: 850;
}

.announcement-inner a {
  font-weight: 950;
  border-bottom: 2px solid rgba(27, 18, 12, 0.5);
}

body.has-announcement .site-header {
  inset: 42px 0 auto 0;
}

body.has-announcement .hero {
  padding-top: 180px;
}

.live-menu-panel {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius);
  background: radial-gradient(circle at 90% 10%, rgba(226, 183, 111, 0.18), transparent 32%), #fff;
  border: 1px solid rgba(27, 18, 12, 0.08);
  box-shadow: var(--shadow-soft);
}

.live-menu-panel h3 {
  margin-bottom: 8px;
}

.live-menu-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--muted-dark);
}

.live-menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.calendar-card-pro {
  display: grid;
  gap: 18px;
}

.google-calendar-shell {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid rgba(255, 248, 236, 0.12);
  min-height: 300px;
}

.google-calendar-shell iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
  background: var(--cream);
}

.calendar-placeholder {
  min-height: 300px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
}

.calendar-placeholder strong {
  display: block;
  font-size: 1.45rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.calendar-placeholder p {
  max-width: 42ch;
  margin: 0 auto;
  color: rgba(255, 248, 236, 0.72);
}

.calendar-placeholder code {
  color: var(--cream);
  background: rgba(255, 248, 236, 0.12);
  border-color: rgba(255, 248, 236, 0.16);
}

.calendar-admin-note {
  padding: 16px;
  border-radius: 18px;
  background: rgba(226, 183, 111, 0.12);
  border: 1px solid rgba(226, 183, 111, 0.18);
}

.calendar-admin-note span {
  display: block;
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  margin-bottom: 5px;
}

.calendar-admin-note p {
  margin: 0;
  color: rgba(255, 248, 236, 0.74);
  font-size: 0.92rem;
}

.update-system-section {
  background: linear-gradient(180deg, #f1dcc1, #f8efe0);
}

.update-system-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 34px;
  align-items: center;
}

.update-steps {
  display: grid;
  gap: 16px;
}

.update-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(27, 18, 12, 0.08);
  box-shadow: var(--shadow-soft);
}

.update-steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(200, 131, 67, 0.14);
  color: var(--latte-dark);
  font-weight: 950;
}

.update-steps strong {
  font-size: 1.15rem;
}

.update-steps p {
  grid-column: 2;
  margin: 0;
  color: var(--muted-dark);
}

.map-location {
  display: grid;
}

.map-frame {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(27, 18, 12, 0.1);
  margin: 18px 0 4px;
  background: rgba(27, 18, 12, 0.08);
  min-height: 260px;
}

.location-card.highlight .map-frame {
  border-color: rgba(255, 248, 236, 0.14);
  background: rgba(255, 248, 236, 0.08);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.social-section {
  background: linear-gradient(180deg, var(--espresso), #2a1a12);
  color: var(--cream);
}

.social-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius);
  background: rgba(255, 248, 236, 0.07);
  border: 1px solid rgba(255, 248, 236, 0.12);
}

.social-card h2 {
  color: var(--cream);
}

.social-card p:not(.eyebrow) {
  color: rgba(255, 248, 236, 0.72);
}

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

.social-button {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid rgba(255, 248, 236, 0.13);
  transition: transform 180ms ease, background 180ms ease, border 180ms ease;
}

.social-button:hover,
.social-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 248, 236, 0.12);
  border-color: rgba(226, 183, 111, 0.44);
}

.social-button span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--espresso);
  background: var(--gold);
  font-weight: 950;
}

.social-button strong {
  color: var(--cream);
  line-height: 1.2;
}

.social-button small {
  color: rgba(255, 248, 236, 0.62);
}

@media (max-width: 980px) {
  .live-menu-panel,
  .update-system-grid,
  .social-card {
    grid-template-columns: 1fr;
  }

  .live-menu-actions {
    justify-content: flex-start;
  }

  .social-buttons {
    grid-template-columns: 1fr;
  }
}

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

  .mosaic-item.wide,
  .mosaic-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .photo-mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic-item,
  .mosaic-item.tall,
  .mosaic-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .announcement-inner {
    min-height: 54px;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    padding: 8px 0;
    font-size: 0.82rem;
  }

  body.has-announcement .site-header {
    inset: 54px 0 auto 0;
  }

  body.has-announcement .hero {
    padding-top: 190px;
  }

  .live-menu-actions .button {
    width: 100%;
  }

  .google-calendar-shell iframe {
    height: 340px;
  }

  .update-steps article {
    grid-template-columns: 1fr;
  }

  .update-steps p {
    grid-column: auto;
  }
}

/* Owner-provided brand assets added after Phase 2.5 */
.brand-mark-photo {
  overflow: hidden;
  background: #fff;
  padding: 3px;
}

.brand-mark-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.brand-art-callout {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(27, 18, 12, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
}

.brand-art-callout img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(27, 18, 12, 0.1);
}

.brand-art-callout span {
  color: var(--muted-dark);
  font-weight: 800;
}

.brand-pattern-card {
  position: relative;
  grid-template-rows: 1fr auto;
  background: var(--espresso);
}

.brand-pattern-card > img {
  height: 300px;
  opacity: 0.88;
  object-fit: cover;
}

.brand-pattern-card > div {
  position: relative;
  z-index: 1;
}

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

  .mosaic-item.wide,
  .mosaic-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .photo-mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic-item,
  .mosaic-item.tall,
  .mosaic-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .brand-art-callout {
    grid-template-columns: 1fr;
  }

  .brand-art-callout img {
    width: 100%;
    height: auto;
    max-height: 220px;
  }
}


.thank-you-page {
  min-height: 100vh;
  background: radial-gradient(circle at 20% 10%, rgba(226, 183, 111, 0.26), transparent 34%), var(--espresso);
  color: var(--cream);
}

.thank-you-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.thank-you-card {
  width: min(680px, 100%);
  background: rgba(255, 248, 236, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  padding: clamp(32px, 6vw, 64px);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 22px;
  border-radius: 24px;
  background: var(--cream);
}

.thank-you-card h1 {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  line-height: 0.95;
}

.thank-you-card p {
  color: rgba(255, 248, 236, 0.78);
}

