:root {
  --bg: #f6efe6;
  --bg-soft: #fffaf4;
  --ink: #1f1a17;
  --muted: #6e625b;
  --accent: #b8704b;
  --accent-dark: #9f5f42;
  --border: #e8d9ca;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(49, 33, 21, 0.08);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent);
}

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.8rem;
  line-height: 1.25;
  color: var(--ink);
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
}

.narrow-container {
  width: min(100% - 2.5rem, 840px);
  margin: 0 auto;
}

.site-main {
  min-height: 55vh;
}

.section {
  padding: 84px 0;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
}

.section-header {
  max-width: 720px;
  margin-bottom: 2rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.72rem 1.2rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent-dark);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--accent);
  color: #fff;
}

.text-link {
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(159, 95, 66, 0.18);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
  min-height: 84px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
}

.site-branding-text {
  display: flex;
  flex-direction: column;
}

.site-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.site-description {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  color: var(--ink);
}

.menu-toggle-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.menu-toggle-bars {
  width: 16px;
  height: 12px;
  position: relative;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after,
.menu-toggle-bars {
  border-top: 2px solid var(--ink);
  border-radius: 1px;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
  content: "";
  position: absolute;
  width: 16px;
  left: 0;
}

.menu-toggle-bars::before {
  top: 4px;
}

.menu-toggle-bars::after {
  top: 8px;
}

.primary-nav {
  justify-self: center;
}

.primary-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.primary-menu a {
  color: var(--ink);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-phone {
  font-weight: 600;
  color: var(--muted);
}

.hero-section {
  min-height: 76vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding-top: 3rem;
  padding-bottom: 3rem;
  max-width: 680px;
}

.hero-kicker {
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #f3e8dc;
}

.hero-section h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

.hero-subtitle {
  margin-top: 1rem;
  font-size: 1.08rem;
  color: #f2ede8;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-about {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.55), rgba(255, 250, 244, 0));
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}

.section-image-wrap img {
  width: 100%;
  border-radius: var(--radius);
  min-height: 320px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.category-pills {
  margin: 0 0 1.6rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-pills li {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  background: #fff;
  font-size: 0.86rem;
  color: var(--muted);
}

.menu-grid,
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.menu-card,
.special-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.menu-card-top {
  display: flex;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: baseline;
}

.menu-card h3,
.special-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.menu-price {
  color: var(--accent-dark);
  font-weight: 700;
  white-space: nowrap;
}

.menu-price-large {
  margin-top: 0.4rem;
  color: var(--accent-dark);
  font-size: 1.15rem;
  font-weight: 700;
}

.menu-category-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-footer {
  margin-top: 1.5rem;
}

.section-specials {
  background: linear-gradient(180deg, rgba(184, 112, 75, 0.06), rgba(184, 112, 75, 0.01));
}

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

.gallery-item {
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.location-split,
.contact-split {
  align-items: start;
}

.location-meta strong {
  color: var(--ink);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 350px;
}

.map-embed iframe {
  width: 100%;
  min-height: 350px;
  border: 0;
}

.map-placeholder {
  min-height: 180px;
  display: flex;
  align-items: center;
}

.contact-card {
  padding: 1.25rem;
}

.contact-details {
  margin-top: 1rem;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 0.72rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 0.72rem 0.85rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(184, 112, 75, 0.3);
  border-color: var(--accent);
}

.contact-message {
  margin-bottom: 1rem;
  border-radius: 10px;
  padding: 0.72rem 0.85rem;
  font-size: 0.92rem;
}

.contact-message.success {
  background: #e8f8ed;
  border: 1px solid #a9d8b5;
  color: #1e6332;
}

.contact-message.error {
  background: #fff0ee;
  border: 1px solid #efc3ba;
  color: #7f2f21;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) minmax(260px, 1fr);
  gap: 1.2rem;
  padding: 72px 0;
}

.content-grid.no-sidebar {
  grid-template-columns: 1fr;
}

.post-list {
  display: grid;
  gap: 1rem;
}

.post-card h2,
.post-card h3,
.page-card h1,
.single-card h1 {
  margin-top: 0;
}

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

.archive-header {
  margin-bottom: 1.25rem;
}

.widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 1rem;
  margin-bottom: 1rem;
}

.widget-title {
  margin-top: 0;
  font-size: 1rem;
}

.simple-state {
  padding: 96px 0;
  text-align: center;
}

.section-menu-archive {
  padding-top: 72px;
}

.menu-category-block + .menu-category-block {
  margin-top: 2rem;
}

.menu-item-single-card {
  padding: 1.7rem;
}

.menu-item-header {
  margin-bottom: 1rem;
}

.menu-item-image img {
  width: 100%;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.pill-featured {
  display: inline-block;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  background: rgba(184, 112, 75, 0.15);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.menu-item-actions {
  margin-top: 1.2rem;
}

.wp-block-image,
.alignwide,
.alignfull {
  border-radius: 12px;
  overflow: hidden;
}

.site-footer {
  background: #2c211c;
  color: #f2e8de;
  padding: 3.2rem 0 1.1rem;
}

.site-footer a {
  color: #ffd5bd;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #fff;
}

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

.footer-title {
  font-weight: 700;
  font-size: 1.15rem;
}

.footer-col h2 {
  color: #fff;
  font-size: 1.03rem;
  margin-bottom: 0.7rem;
}

.social-links,
.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.25rem;
}

.footer-bottom {
  margin-top: 1.6rem;
  border-top: 1px solid rgba(255, 213, 189, 0.18);
  padding-top: 1rem;
  font-size: 0.87rem;
}

.search-form {
  display: flex;
  gap: 0.5rem;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.62rem 0.85rem;
}

.search-submit {
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  padding: 0.62rem 1rem;
  font-weight: 600;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.screen-reader-text:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  width: auto;
  position: fixed;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 1000;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 0.45rem 0.8rem;
  color: var(--ink);
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    top: calc(100% + 0.65rem);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 0.8rem;
    display: none;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-menu {
    flex-direction: column;
    gap: 0.65rem;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .header-phone {
    display: none;
  }

  .split-section,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 700px) {
  .container,
  .narrow-container {
    width: min(100% - 1.4rem, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .hero-section {
    min-height: 68vh;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
  }

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

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