:root {
  --ink: #211714;
  --muted: #6c5f58;
  --paper: #fff9f1;
  --cream: #f4eadb;
  --coffee: #5a3425;
  --coffee-dark: #2a140d;
  --rose: #b4544c;
  --sage: #66765f;
  --gold: #d2a45f;
  --line: rgba(33, 23, 20, 0.14);
  --shadow: 0 18px 50px rgba(45, 23, 16, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffaf2 0%, var(--paper) 42%, #f7efe4 100%);
}

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

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

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

.site-header,
.menu-header {
  align-items: center;
  background: rgba(255, 249, 241, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0;
  min-width: 0;
}

.brand span:last-child {
  font-size: clamp(0.82rem, 2vw, 1rem);
  line-height: 1.15;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--coffee-dark), var(--coffee));
  border: 1px solid rgba(255, 248, 236, 0.28);
  border-radius: 50%;
  color: #fff8ec;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 0.95rem;
  font-weight: 800;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
}

.site-nav a:hover {
  border-color: var(--rose);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 8px;
  width: 42px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 6px 0;
  width: 24px;
}

.hero {
  min-height: 88vh;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(33, 23, 20, 0.9), rgba(33, 23, 20, 0.46) 52%, rgba(33, 23, 20, 0.08)),
    url("https://images.unsplash.com/photo-1445116572660-236099ec97a0?auto=format&fit=crop&w=1800&q=82") center / cover;
  inset: 0;
  position: absolute;
  transform: scale(1.02);
}

.hero-content {
  color: #fff8ec;
  max-width: 760px;
  padding: clamp(120px, 18vh, 180px) clamp(20px, 6vw, 80px) 120px;
  position: relative;
}

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

.hero .eyebrow {
  color: #f5c9aa;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

h1 {
  font-size: clamp(4rem, 13vw, 9.5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4.4rem);
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy {
  color: rgba(255, 248, 236, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 620px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-notes span {
  border: 1px solid rgba(255, 248, 236, 0.34);
  border-radius: 999px;
  color: rgba(255, 248, 236, 0.9);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 9px 13px;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  box-shadow: 0 12px 26px rgba(45, 23, 16, 0.18);
  transform: translateY(-1px);
}

.button.primary {
  background: #fff8ec;
  color: var(--coffee-dark);
}

.button.secondary {
  background: var(--coffee-dark);
  color: #fff8ec;
}

.section {
  padding: clamp(64px, 10vw, 118px) clamp(20px, 5vw, 72px);
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.intro-band {
  background:
    linear-gradient(135deg, var(--coffee-dark), #3a1e14);
}

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

.feature-grid article {
  border-left: 1px solid rgba(255, 248, 236, 0.24);
  padding: 10px clamp(14px, 1.4vw, 24px);
}

.feature-grid h2 {
  color: #fff8ec;
  font-size: clamp(1.2rem, 1.55vw, 1.6rem);
  line-height: 1.2;
}

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

.feature-icon {
  color: var(--gold);
  display: block;
  font-weight: 900;
  margin-bottom: 22px;
}

.split,
.about-layout,
.contact-layout {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 80px);
  grid-template-columns: 0.9fr 1.1fr;
}

.text-link {
  border-bottom: 2px solid var(--rose);
  color: var(--coffee-dark);
  display: inline-flex;
  font-weight: 900;
  margin-top: 8px;
  padding-bottom: 5px;
}

.menu-cta-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.qr-mini {
  align-items: center;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(45, 23, 16, 0.1);
  display: inline-flex;
  gap: 12px;
  padding: 10px 14px 10px 10px;
}

.qr-mini img {
  aspect-ratio: 1;
  border-radius: 6px;
  height: 58px;
  object-fit: cover;
  width: 58px;
}

.qr-mini span {
  color: var(--coffee-dark);
  font-weight: 900;
}

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

.showcase-grid img,
.about-layout img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.showcase-grid img:first-child {
  grid-row: span 2;
  min-height: 420px;
}

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

.about-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.about-layout img {
  min-height: 520px;
}

.contact-section {
  background: var(--sage);
  color: #fff8ec;
}

.contact-section p,
.contact-section .eyebrow {
  color: rgba(255, 248, 236, 0.82);
}

.contact-layout {
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
}

.contact-copy {
  align-self: center;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-list a {
  border-bottom: 1px solid rgba(255, 248, 236, 0.22);
  color: #fff8ec;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.45;
  padding: 14px 0;
}

.map-card {
  background: rgba(255, 248, 236, 0.12);
  border: 1px solid rgba(255, 248, 236, 0.22);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(33, 23, 20, 0.18);
  justify-self: stretch;
  overflow: hidden;
  width: 100%;
}

.map-card iframe {
  border: 0;
  display: block;
  height: clamp(340px, 28vw, 440px);
  width: 100%;
}

.site-footer {
  align-items: center;
  background: var(--coffee-dark);
  color: #fff8ec;
  display: flex;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
}

@media (max-width: 1080px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.menu-page {
  background: #f7efe4;
}

.menu-page .menu-header {
  padding: 10px clamp(16px, 3vw, 36px);
  position: relative;
}

.menu-shell {
  margin: 0 auto;
  max-width: 1040px;
  padding: 12px 18px 72px;
}

.menu-hero {
  align-items: center;
  background: var(--coffee-dark);
  border-radius: 8px;
  color: #fff8ec;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) 190px;
  margin-bottom: 14px;
  padding: clamp(22px, 4vw, 42px);
}

.menu-hero h1 {
  font-size: clamp(3rem, 10vw, 7rem);
}

.menu-hero p {
  color: rgba(255, 248, 236, 0.78);
  max-width: 620px;
}

.menu-qr-image {
  aspect-ratio: 1;
  background: #fff;
  border: 10px solid #fff;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  object-fit: cover;
  width: 190px;
}

.menu-tools {
  background:
    linear-gradient(90deg, rgba(255, 249, 241, 0), rgba(255, 249, 241, 0.94) 92%) right / 44px 100% no-repeat,
    rgba(255, 249, 241, 0.84);
  border: 1px solid rgba(33, 23, 20, 0.1);
  border-radius: 8px;
  margin-bottom: 14px;
  padding: 8px;
  position: sticky;
  top: 0;
  z-index: 18;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(45, 23, 16, 0.08);
}

.search-box {
  display: grid;
  gap: 8px;
}

.search-box span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

input,
textarea,
select {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

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

.category-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 2px 32px 2px 2px;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tabs button {
  align-items: center;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--coffee-dark);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 9px;
  font-size: 0.92rem;
  font-weight: 800;
  min-height: 38px;
  padding: 0 12px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.category-tabs button:hover {
  border-color: rgba(90, 52, 37, 0.28);
  transform: translateY(-1px);
}

.category-tabs button.active {
  background: var(--coffee-dark);
  border-color: var(--coffee-dark);
  box-shadow: 0 8px 18px rgba(42, 20, 13, 0.18);
  color: #fff8ec;
}

.category-tabs small {
  align-items: center;
  background: rgba(42, 20, 13, 0.08);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  height: 22px;
  justify-content: center;
  min-width: 24px;
  padding: 0 7px;
}

.category-tabs button.active small {
  background: rgba(255, 248, 236, 0.18);
  color: #fff8ec;
}

.menu-list {
  display: grid;
  gap: 14px;
}

.menu-subcategory {
  display: grid;
  gap: 12px;
}

.subcategory-heading {
  align-items: center;
  background: rgba(90, 52, 37, 0.12);
  border: 1px solid rgba(33, 23, 20, 0.12);
  border-radius: 8px;
  color: var(--coffee-dark);
  cursor: pointer;
  display: flex;
  font-size: clamp(1.05rem, 3.4vw, 1.35rem);
  font-weight: 900;
  justify-content: space-between;
  min-height: 64px;
  padding: 14px 18px;
  text-align: left;
  width: 100%;
}

.subcategory-heading::after {
  align-items: center;
  border: 2px solid rgba(42, 20, 13, 0.42);
  border-radius: 50%;
  content: "+";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.45rem;
  height: 40px;
  justify-content: center;
  line-height: 1;
  width: 40px;
}

.subcategory-heading[aria-expanded="true"]::after {
  content: "-";
}

.subcategory-heading small {
  background: rgba(42, 20, 13, 0.1);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  margin-left: auto;
  margin-right: 12px;
  min-width: 26px;
  padding: 5px 8px;
  text-align: center;
}

.subcategory-products {
  display: grid;
  gap: 12px;
}

.menu-item {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: 132px 1fr auto;
  padding: 12px;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.menu-item:hover {
  border-color: rgba(180, 84, 76, 0.34);
  box-shadow: 0 14px 34px rgba(45, 23, 16, 0.1);
  transform: translateY(-2px);
}

.menu-item img {
  aspect-ratio: 1;
  border-radius: 8px;
  height: 132px;
  object-fit: cover;
  width: 132px;
}

.menu-item h2 {
  font-size: 1.18rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.menu-item p {
  margin: 0;
}

.price {
  align-self: center;
  color: var(--rose);
  font-size: 1.15rem;
  font-weight: 900;
  white-space: nowrap;
}

.price-options {
  align-self: center;
  display: grid;
  gap: 8px;
  min-width: 180px;
}

.price-option {
  align-items: center;
  background: rgba(90, 52, 37, 0.08);
  border: 1px solid rgba(33, 23, 20, 0.1);
  border-radius: 8px;
  color: var(--coffee-dark);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  min-height: 42px;
  padding: 9px 12px;
}

.price-option span,
.price-option strong {
  font-weight: 900;
  white-space: nowrap;
}

.price-option strong {
  color: var(--rose);
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  padding: 28px;
  text-align: center;
}

.hidden {
  display: none !important;
}

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

  .site-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 18px;
    position: absolute;
    right: 0;
    top: 75px;
  }

  .site-nav.open {
    display: flex;
  }

  .feature-grid,
  .split,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    border-left: 0;
    border-top: 1px solid rgba(255, 248, 236, 0.24);
    padding: 24px 0 0;
  }

  .showcase-grid img:first-child,
  .about-layout img {
    min-height: 300px;
  }

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

  .menu-qr-image {
    justify-self: start;
    width: 150px;
  }

  .menu-item {
    grid-template-columns: 92px 1fr;
  }

  .menu-item img {
    height: 92px;
    width: 92px;
  }

  .price {
    grid-column: 2;
  }

  .price-options {
    grid-column: 2;
    min-width: 0;
  }

}

@media (max-width: 520px) {
  .site-header,
  .menu-header {
    padding: 14px 16px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(33, 23, 20, 0.85), rgba(33, 23, 20, 0.38)),
      url("https://images.unsplash.com/photo-1445116572660-236099ec97a0?auto=format&fit=crop&w=1100&q=82") center / cover;
  }

  .hero-content {
    padding: 120px 20px 84px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

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

  .menu-item img {
    height: auto;
    width: 100%;
  }

  .price {
    grid-column: auto;
  }

  .price-options {
    grid-column: auto;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .menu-qr-image {
    display: none;
  }
}
