:root {
  --brand: #b80000;
  --brand-light: #fff1f1;
  --brand-dark: #8f1d21;
  --text: #333333;
  --text-light: #666666;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --card-bg: #ffffff;
  --footer-bg: #1a1a1a;
  --nav-bg: #2b1b16;
  --border: #e9e1dc;
  --focus-ring: #1f1a17;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.14);
  --radius: 12px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

main:focus {
  outline: none;
}

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

a {
  color: var(--brand);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  text-decoration: underline;
}

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 1500;
  transform: translateY(-200%);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--focus-ring);
  box-shadow: var(--shadow);
}

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

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

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
  color: #1f1a17;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

.section {
  padding: 90px 0;
}

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

.section-header {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

/* ========== HEADER SCROLL RESIZE ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(43, 27, 22, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 25px rgba(0, 0, 0, 0.18);
  transition: min-height 0.3s ease;
  min-height: 78px;
}

.navbar.scrolled {
  min-height: 60px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  padding: 0.75rem 0;
  transition: padding 0.3s ease;
}

.navbar.scrolled .nav-inner {
  padding: 0.5rem 0;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  color: #fff;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.brand img {
  max-height: 78px;
  width: auto;
  height: auto;
  transition: max-height 0.3s ease;
}

.navbar.scrolled .brand img {
  max-height: 62px;
}

.nav-split {
  display: none;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-left: 3rem;
  margin-right: 3rem;
}

.nav-split.left,
.nav-split.right {
  flex-direction: row;
}

.nav-split a {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1.65rem 0 0.9rem;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.nav-split a:hover,
.nav-split a.active {
  border-bottom-color: var(--brand);
  text-decoration: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-toggle:active {
  transform: translateY(-50%) scale(0.98);
}

.nav-parent {
  background: none;
  border: 0;
  font: inherit;
  text-align: left;
  width: 100%;
}

.skip-link:focus-visible,
.nav-toggle:focus-visible,
.nav-links a:focus-visible,
.nav-split a:focus-visible,
.nav-parent:focus-visible,
.btn:focus-visible,
.social-link:focus-visible,
.carousel-nav-btn:focus-visible,
.carousel-dot:focus-visible,
.carousel-toggle-btn:focus-visible,
.footer a:focus-visible,
.post-modal-cta:focus-visible,
.post-modal-close:focus-visible,
.menu-entry:focus-visible,
.card.card-clickable:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.92);
}

.nav-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #221511;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav-menu[hidden] {
  display: none;
}

.nav-menu.open {
  max-height: 420px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.nav-links a,
.nav-parent {
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 0.2rem;
  display: block;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active,
.nav-parent:hover {
  border-bottom-color: var(--brand);
  text-decoration: none;
}

.has-dropdown > .nav-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.dropdown {
  list-style: none;
  margin: 0;
  padding: 0 0 0.5rem 1rem;
  display: none;
}

.has-dropdown.open .dropdown {
  display: block;
}

.dropdown a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 500;
  padding: 0.55rem 0;
}

/* ========== HERO CAROUSEL ========== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-carousel-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.64));
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 6rem 0 5rem;
}

.hero-kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.carousel-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.carousel-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.carousel-nav-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.08);
}

.carousel-nav-btn:active {
  transform: scale(0.98);
}

.carousel-dots {
  display: flex;
  gap: 0.6rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}

.carousel-toggle-btn {
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  font-weight: 700;
}

.carousel-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

.carousel-toggle-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

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

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

/* ========== CARDS & CONTENT ========== */
.about-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.about-grid {
  align-items: center;
}

.contact-grid {
  align-items: stretch;
}

.about-card-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.about-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.about-card-image:hover img {
  transform: scale(1.08);
}

.highlight-box {
  background: var(--brand-light);
  border-left: 4px solid var(--brand);
  padding: 1rem 1.2rem;
  border-radius: 10px;
  color: #522;
  margin-top: 1.2rem;
}

.services-grid,
.menu-grid,
.gallery-grid,
.articles-grid,
.reviews-grid {
  display: grid;
  gap: 1.5rem;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card.card-clickable {
  cursor: pointer;
}

.card.card-clickable:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.service-image,
.gallery-item,
.article-image {
  overflow: hidden;
}

.service-image img,
.gallery-item img,
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.card:hover .service-image img,
.gallery-item:hover img,
.card:hover .article-image img {
  transform: scale(1.08);
}

.service-image {
  aspect-ratio: 16 / 10;
  background: #eee;
}

.service-content,
.article-content {
  padding: 1.25rem;
}

.service-content p,
.article-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

.feature-band {
  background: #2f231f;
  color: #f5ede7;
}

.feature-band h2,
.feature-band h3 {
  color: #fff;
}

.feature-band .section-header p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.4rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.feature-item strong {
  display: block;
  color: #fff;
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.gallery-item {
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  background: #eee;
}

.menu-entry {
  appearance: none;
  border: 1px solid rgba(47, 35, 31, 0.14);
  border-radius: 18px;
  min-height: 220px;
  padding: 1.75rem;
  text-align: left;
  background: linear-gradient(180deg, #fffdfa 0%, #f5ede7 100%);
  box-shadow: 0 12px 30px rgba(24, 16, 13, 0.08);
  color: #1f1a17;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: grid;
  align-items: end;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.menu-entry:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.menu-entry:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.menu-entry-evening {
  background: linear-gradient(180deg, #2a1f1b 0%, #17110f 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fffaf7;
}

.menu-entry h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: inherit;
}

.article-image {
  aspect-ratio: 16 / 9;
  background: #eee;
}

.tag {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand-dark);
  border: 1px solid rgba(255, 0, 0, 0.12);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.article-meta {
  color: #888;
  font-size: 0.9rem;
  margin-top: 0.85rem;
}

/* ========== REVIEWS SECTION ========== */
.reviews-section {
  padding: 90px 0;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-intro {
  color: var(--text-light);
  margin-bottom: 0;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.rating-stars {
  display: flex;
  gap: 0.2rem;
}

.star {
  color: var(--brand);
  font-size: 1.4rem;
}

.rating-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.review-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.review-source {
  width: 100%;
  margin: 0;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 1rem;
}

.review-source-head {
  margin-bottom: 1rem;
}

.review-source-head h3 {
  margin-bottom: 0.4rem;
}

.review-source-head p {
  margin-bottom: 0;
  color: var(--text-light);
}

.review-source > .TA_selfserveprop,
.review-source > .gpr-minimal-light-style {
  width: 100%;
  margin: 0;
}

.review-source.review-source-google .gpr-minimal-light-style {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .review-container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.75rem;
  }
}

.review-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

.review-author {
  display: flex;
  flex-direction: column;
}

.review-author strong {
  color: var(--text);
  margin-bottom: 0.2rem;
}

.review-date {
  color: var(--text-light);
  font-size: 0.85rem;
}

.review-stars {
  display: flex;
  gap: 0.15rem;
}

.review-stars .star {
  font-size: 1rem;
}

.review-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== CONTACT & FOOTER ========== */
.contact-wrap {
  background: linear-gradient(180deg, #fff 0%, #fff8f7 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

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

.contact-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 10px;
  background: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.15rem;
  color: #1f1a17;
}

.map-card {
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: #f3f3f3;
}

.map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-overlay {
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.3rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.02));
  color: #fff;
  pointer-events: none;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--brand);
  border: 1px solid rgba(255, 0, 0, 0.14);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-link:hover {
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  transform: translateY(-4px);
}

.social-link:active {
  transform: scale(0.96);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.76);
  padding: 2.5rem 0 1.5rem;
}

.footer a {
  color: #fff7f5;
}

.footer a:hover {
  color: #ffd9d2;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

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

.footer-brand img {
  max-height: 46px;
  width: auto;
  height: auto;
}

.footer h3 {
  color: #fff;
  margin-bottom: 0.25rem;
}

.footer .social-link {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.footer .social-link:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
}

/* ========== POST MODAL ========== */
body.no-scroll {
  overflow: hidden;
}

.post-modal,
.menu-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.post-modal[hidden],
.menu-modal[hidden] {
  display: none;
}

.post-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.post-modal-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(88vh, 900px);
  background: var(--card-bg);
  border-radius: 18px;
  overflow: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(47, 35, 31, 0.08);
}

.menu-modal-dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(90vh, 980px);
  background: var(--card-bg);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(47, 35, 31, 0.08);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.post-modal-dialog[data-post-kind="service"] {
  border-top: 5px solid #7d4a33;
}

.post-modal-dialog[data-post-kind="recipe"] {
  border-top: 5px solid var(--brand);
}

.post-modal-dialog[data-post-kind="event"] {
  border-top: 5px solid #be7a27;
}

.post-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 1;
}

.post-modal-image {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
}

.post-modal-content {
  padding: 1.4rem 1.5rem 1.75rem;
  display: grid;
  gap: 1rem;
}

.post-modal-eyebrow {
  margin-bottom: -0.3rem;
}

.post-modal-meta-list,
.post-modal-highlights,
.post-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.post-modal-chip,
.post-modal-highlight {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
}

.post-modal-chip {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: var(--brand-light);
  border: 1px solid rgba(255, 0, 0, 0.12);
}

.post-modal-highlight {
  font-size: 0.92rem;
  color: #4c3b33;
  background: rgba(47, 35, 31, 0.06);
  border: 1px solid rgba(47, 35, 31, 0.08);
}

.post-modal-content h2 {
  margin-bottom: 0;
}

.post-modal-lead {
  margin-bottom: 0;
  font-size: 1.05rem;
  color: #4d3c34;
}

.post-modal-dialog[data-post-kind="recipe"] .post-modal-lead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.25;
  color: #41231b;
}

.post-modal-dialog[data-post-kind="event"] .post-modal-actions {
  padding: 1rem;
  border-radius: 14px;
  background: #fbf6ef;
  border: 1px solid rgba(190, 122, 39, 0.15);
}

.post-modal-body {
  display: grid;
  gap: 0.95rem;
}

.post-modal-body p {
  color: var(--text-light);
  margin-bottom: 0;
}

.post-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(184, 0, 0, 0.18);
}

.post-modal-cta:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.post-modal-cta-secondary {
  background: transparent;
  color: #342722;
  box-shadow: none;
  border: 1px solid rgba(52, 39, 34, 0.14);
}

.menu-modal-header {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem 1.5rem 1.25rem;
  padding-right: 4.5rem;
  border-bottom: 1px solid rgba(47, 35, 31, 0.08);
}

.menu-modal-header h2 {
  margin: 0;
}

.menu-modal-frame-wrap {
  min-height: 65vh;
  background: #f8f3ef;
}

.menu-modal-frame {
  display: block;
  width: 100%;
  height: min(68vh, 780px);
  border: 0;
  background: #fff;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 640px) {
  .services-grid,
  .menu-grid,
  .gallery-grid,
  .articles-grid,
  .feature-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr;
  }
}

@media (max-width: 639px) {
  .menu-modal {
    padding: 0.75rem;
  }

  .menu-modal-header {
    padding-right: 4rem;
  }

  .menu-modal-frame {
    height: 72vh;
  }
}

@media (min-width: 1024px) {
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 96px;
    padding: 0;
    position: relative;
  }

  .navbar.scrolled .nav-inner {
    min-height: 78px;
    padding: 0;
  }

  .brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 2;
  }

  .nav-toggle {
    display: none;
  }

  .nav-split {
    display: flex !important;
    width: 100%;
    margin: 0;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    flex: 1 1 0;
    min-width: 0;
  }

  .nav-split.left {
    justify-content: flex-end;
    padding-right: 12.5rem;
  }

  .nav-split.right {
    justify-content: flex-start;
    padding-left: 12.5rem;
  }

  .nav-menu {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-split a,
  .nav-parent {
    width: auto;
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0;
    line-height: 1;
  }

  .has-dropdown {
    position: relative;
  }

  .dropdown {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #241713;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
  }

  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown a {
    padding: 0.5rem 0;
    border-bottom: 0;
  }

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .card,
  .feature-item,
  .menu-entry {
    animation: none;
    opacity: 1;
  }
}

.legal-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #fcf5f2 0%, #ffffff 100%);
}

.legal-page main {
  padding: 3rem 0 4rem;
}

.legal-topbar {
  padding: 1rem 0;
  background: rgba(43, 27, 22, 0.96);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.legal-topbar .brand {
  position: static;
  transform: none;
  display: inline-flex;
}

.legal-topbar .brand img {
  max-height: 64px;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.legal-eyebrow {
  margin-bottom: 0.5rem;
}

.legal-note {
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--brand);
  border-radius: 12px;
  background: var(--brand-light);
  color: #4c3b33;
}

.legal-meta {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.legal-card h2 {
  margin-top: 2rem;
}

.legal-list {
  padding-left: 1.25rem;
  color: var(--text-light);
}

.legal-footer {
  margin-top: 2rem;
  color: var(--text-light);
  font-size: 0.95rem;
}
