@charset "UTF-8";
.sr-only, #hours caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --bg: #ffffff;
  --text: #3b2f2f;
  --muted: #7a5c42;
  --accent: #c89d68;
  --maxw: 1100px;
  --gap: 1.25rem;
  --radius: 14px;
  --header-h: 80px;
  --subnav-h: 60px;
  --logo-height: 120px;
  --mobile-header-offset: calc(-1 * (var(--logo-height) + 0.8rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 1.25rem clamp(0.5rem, 3vw, 1.5rem);
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  -webkit-backdrop-filter: saturate(1.1) blur(6px);
          backdrop-filter: saturate(1.1) blur(6px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid #eee;
}
header .topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 0.5rem 1.5rem;
}
header .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}
header .brand img {
  height: var(--logo-height);
  width: auto;
  margin: 0;
}
@media (max-width: 767px) {
  header {
    top: var(--mobile-header-offset);
  }
  header .topbar {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }
  header nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  header nav ul {
    justify-content: center;
  }
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}
nav a {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
}
nav a:hover, nav a:focus-visible {
  border-color: #ddd;
  outline: none;
}

.cta-phone {
  white-space: nowrap;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #ddd;
}
@media (max-width: 500px) {
  .cta-phone {
    display: none;
  }
}

.hero {
  text-align: center;
}
.hero-logo {
  width: clamp(120px, 20vw, 200px);
  height: auto;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.12;
  margin: 0.25rem 0;
}
.hero p.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  margin: 0.25rem 0 0;
}

.badge {
  display: inline-block;
  margin-top: 0.75rem;
  background: var(--accent);
  color: #1b130d;
  font-weight: 800;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.2px;
}

section {
  scroll-margin-top: var(--header-h);
  padding: clamp(1.25rem, 5vw, 2.5rem) 0;
}
section h2 {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  line-height: 1.2;
  margin: 0 0 0.5rem;
}

#menu section[id] {
  scroll-margin-top: calc(var(--header-h) + var(--subnav-h));
}

.subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0.5rem;
  background: var(--bg);
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}
.subnav a {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 2px solid var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  transition: all 0.2s ease;
}
.subnav a:hover {
  border-color: var(--accent);
}
@media (hover: hover) and (pointer: fine) {
  .subnav a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-color: #b38356;
  }
}
.subnav a.active {
  background: var(--accent);
  color: #fff;
  border-color: #b38356;
  box-shadow: 0 2px 8px rgba(200, 157, 104, 0.3);
}
@media (max-width: 767px) {
  .subnav {
    top: calc(var(--header-h) + var(--mobile-header-offset));
  }
}

@media (max-width: 767px) {
  section {
    scroll-margin-top: calc(var(--header-h) + var(--mobile-header-offset));
  }
  #menu section[id] {
    scroll-margin-top: calc(var(--header-h) + var(--mobile-header-offset) + var(--subnav-h));
  }
}
.card {
  border: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1rem;
  background: #fff;
}
.card h4 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem 0;
  color: var(--text);
  font-weight: 600;
}
.card h4:first-of-type {
  margin-top: 1rem;
}
.card h4 + .muted {
  margin-top: -0.75rem;
}

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

.menu-item {
  margin-bottom: 0.5rem;
  width: 100%;
}
.menu-item.has-desc {
  display: block;
  padding-bottom: 0.35rem;
}
.menu-item.has-desc .item-desc {
  margin-top: 0.25rem;
  line-height: 1.35;
  font-size: 14px;
  color: var(--muted);
}
.menu-item .item-row {
  display: flex;
  align-items: baseline;
  position: relative;
  flex-wrap: wrap;
  gap: 0rem;
}
.menu-item .item-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.25em;
  height: 1px;
  background-image: radial-gradient(circle, var(--muted) 1px, transparent 1px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  z-index: 0;
}
@media (max-width: 350px) {
  .menu-item .item-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .menu-item .item-row::after {
    display: none;
  }
  .menu-item .item-row .item-name {
    padding-right: 0;
  }
  .menu-item .item-row .item-price {
    padding-left: 0;
    margin-left: 0;
    font-size: 1.1rem;
  }
}
.menu-item .item-name,
.menu-item .item-price {
  position: relative;
  z-index: 1;
  background: #fff;
  font-size: 16px;
}
.menu-item .item-name {
  padding-right: 0.5rem;
  flex-shrink: 1;
  min-width: 0;
}
.menu-item .item-price {
  padding-left: 0.2rem;
  font-weight: 600;
  color: var(--text);
  margin-left: auto;
  flex-shrink: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "tnum" 1;
  letter-spacing: 0.02em;
}
.menu-item strong {
  font-weight: 600;
}
@media (max-width: 350px) {
  .menu-item {
    margin-bottom: 1rem;
  }
}

.menu-columns {
  display: grid;
  margin-top: 1rem;
}
.menu-columns > * {
  min-width: 0;
}
@media (min-width: 768px) {
  .menu-columns {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 2rem;
  }
}

.spreads-column .spreads-grid {
  margin: 0.75rem 0 0.75rem 0;
}

.spreads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0.75rem 0;
}
@media (max-width: 640px) {
  .spreads-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.spread-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spread-list li {
  padding: 0.25rem 0;
  color: var(--muted);
}

.menu-section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.1em;
  margin: 0 0 1.5rem 0;
  color: var(--text);
  text-transform: uppercase;
}
.menu-section-title + .muted {
  text-align: center;
  margin-top: -30px;
}

.grid {
  display: grid;
  gap: var(--gap);
}
@media (min-width: 720px) {
  .grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 720px) {
  .grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

address {
  font-style: normal;
}

footer {
  border-top: 1px solid #eee;
  padding: 1.25rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.muted {
  color: var(--muted);
}

.spacer-xs {
  height: 0.5rem;
}

.spacer-sm {
  height: 1rem;
}

.spacer-md {
  height: 1.5rem;
}

/* Hours table */
#hours table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

#hours th,
#hours td {
  padding: 0.4rem 0.6rem;
  vertical-align: top;
}

#hours th {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap; /* keep Mon–Fri together */
}

#hours td {
  text-align: right;
  color: var(--muted);
  white-space: nowrap; /* prevent breaking time ranges */
}

/* Responsive tweaks: stack times under days on small screens */
@media (max-width: 480px) {
  #hours table,
  #hours tbody,
  #hours tr,
  #hours th,
  #hours td {
    display: block;
    width: 100%;
    text-align: left;
  }
  #hours th {
    margin-top: 0.75rem;
  }
  #hours td {
    margin-left: 1rem;
    text-align: left;
  }
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
}
.contact-link:hover, .contact-link:focus {
  text-decoration: underline;
}
.contact-link .label {
  line-height: 1.4;
}
.contact-link .icon-img {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.responsive-text .full-text {
  display: inline;
}
.responsive-text .short-text {
  display: none;
}

@media (max-width: 420px) {
  .responsive-text .full-text {
    display: none;
  }
  .responsive-text .short-text {
    display: inline;
  }
}/*# sourceMappingURL=styles.css.map */