:root {
  --bg: #fbf3e4;
  --bg-soft: #fffaf1;
  --surface: #fffdf7;
  --surface-strong: #f6ebd3;
  --text: #4a2a16;
  --text-soft: #71513b;
  --primary: #a75a21;
  --primary-dark: #7e3f18;
  --accent: #d5a52a;
  --accent-soft: #f0d890;
  --border: rgba(125, 81, 44, 0.16);
  --shadow: 0 16px 34px rgba(104, 56, 24, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100% - 2rem));
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--strip-height, 0px) + var(--header-height) + 10px);
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(213, 165, 42, 0.12), transparent 28%),
    linear-gradient(180deg, #fff7e8 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: 5.5rem 0;
  scroll-margin-top: calc(var(--strip-height, 0px) + var(--header-height) + 10px);
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading.aligned-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2,
.hero-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.15rem);
  max-width: 8.2ch;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.eyebrow {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 248, 235, 0.92);
  border-bottom: 1px solid rgba(125, 81, 44, 0.08);
  transition: top 0.3s ease;
}

body.has-status-strip .site-header {
  top: var(--strip-height, 0);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 98px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-logo {
  width: 90px;
  height: 90px;
  flex: 0 0 90px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 1.28rem;
  font-family: Georgia, "Times New Roman", serif;
}

.brand-copy small {
  color: var(--text-soft);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  position: relative;
  font-weight: 600;
  color: var(--text-soft);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

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

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 2.4rem 0 3rem;
  min-height: calc(100svh - var(--strip-height, 0px) - var(--header-height));
  display: flex;
  align-items: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero::before {
  top: 1.5rem;
  right: -4rem;
  width: 14rem;
  height: 14rem;
  background:
    radial-gradient(circle, rgba(213, 165, 42, 0.3) 0%, rgba(213, 165, 42, 0) 65%);
}

.hero::after {
  left: -2rem;
  bottom: 4rem;
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  border: 18px solid rgba(167, 90, 33, 0.08);
}

.hero-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.4rem;
  align-items: center;
}

.hero-copy,
.about-copy,
.contact-copy {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 48ch;
  font-size: 1rem;
  color: var(--text-soft);
}

.hero-text-mobile {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.95rem 0 1rem;
}

.hero-featured-image {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 24px rgba(126, 63, 24, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(126, 63, 24, 0.18);
  color: var(--primary-dark);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-points li {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.9rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

.hero-collage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.hero-card,
.about-media img,
.feature-card,
.special-card,
.gallery-item,
.testimonial-card,
.why-card,
.map-card,
.contact-form {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-card.large {
  grid-row: span 2;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

@media (max-width: 1366px) {
  .hero {
    padding: 1.5rem 0 2.1rem;
  }

  .hero-grid {
    gap: 1.35rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 4.3vw, 3.5rem);
    max-width: 8.5ch;
  }

  .hero-text {
    max-width: 44ch;
    font-size: 0.98rem;
  }

  .hero-collage {
    gap: 0.85rem;
  }

  .hero-card img {
    min-height: 140px;
    max-height: 220px;
  }

}

.about {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.18)),
    var(--bg-soft);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.feature-grid,
.service-grid,
.specials-grid,
.testimonial-grid,
.why-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.testimonial-card,
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.35rem;
}

.specials {
  background-color: var(--bg);
}

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

.special-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.special-card:hover,
.special-card:focus-within {
  transform: translateY(-6px);
}

.special-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.special-card-copy {
  padding: 1.2rem;
}

.special-card h3,
.testimonial-card h3,
.why-card h3,
.map-card h3,
.footer-grid h3,
.contact-list h3,
.feature-card h3 {
  margin: 0 0 0.55rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.gallery-toggle[hidden] {
  display: none;
}

.is-hidden-mobile {
  display: none !important;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  width: 100%;
  padding: 0;
  border: 0;
  text-align: left;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.gallery-item::after {
  content: "View";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(74, 42, 22, 0.8);
  color: #fff;
  font-size: 0.85rem;
}


.why-us {
  background:
    linear-gradient(180deg, rgba(213, 165, 42, 0.1), transparent 35%),
    var(--bg-soft);
}

.why-us-wrap {
  padding: 2rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(125, 81, 44, 0.08);
}

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

.why-card span {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--primary-dark);
  font-weight: 700;
}

.testimonial-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-card p {
  margin-top: 0;
  color: var(--text-soft);
}

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

.map-card {
  background: linear-gradient(135deg, rgba(213, 165, 42, 0.18), rgba(255, 255, 255, 0.95));
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.contact-map-wrap {
  width: 100%;
  height: 100%;
  min-height: 450px;
}



.site-footer {
  padding-top: 3rem;
  background: #4d2816;
  color: #f9efdd;
}

.footer-grid {
  grid-template-columns: 1.25fr repeat(3, 1fr);
  align-items: start;
}

.footer-brand img {
  width: 82px;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
  color: rgba(249, 239, 221, 0.82);
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(249, 239, 221, 0.14);
  text-align: center;
  padding: 1.2rem 1rem 1.6rem;
  color: rgba(249, 239, 221, 0.7);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(34, 17, 9, 0.84);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 40;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(94vw, 1080px);
  max-height: 84vh;
  border-radius: 22px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.32);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 1.5rem, 1120px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.4rem);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: rgba(255, 249, 239, 0.98);
    border: 1px solid rgba(125, 81, 44, 0.1);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero-points,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 0.9rem 0 1.45rem;
    min-height: calc(100svh - var(--strip-height, 0px) - var(--header-height));
    align-items: start;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 7vw, 3.9rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .about-media img {
    min-height: 320px;
  }

  .contact-map-wrap,
  .contact-map-wrap iframe {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.15rem 0;
  }

  .container {
    width: min(100% - 2rem, 1120px);
  }

  .navbar {
    min-height: 88px;
    padding-inline: 0.1rem;
  }

  :root {
    --header-height: 88px;
  }

  .brand {
    gap: 0.55rem;
    flex: 1 1 auto;
  }

  .brand-copy small {
    display: none;
  }

  .brand-logo {
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
    line-height: 1.1;
  }

  .nav-links {
    gap: 0.85rem;
    padding: 0.95rem 1rem;
  }

  .nav-toggle {
    padding: 0.1rem;
  }

  .nav-toggle span {
    width: 24px;
    height: 2.5px;
    margin: 4px 0;
  }

  .site-header {
    box-shadow: 0 8px 22px rgba(74, 42, 22, 0.08);
  }

  .hero {
    padding: 2.35rem 0 2.35rem;
    min-height: auto;
  }

  body.has-status-strip .hero {
    padding-top: 3.1rem;
  }

  .hero::before {
    top: 0.75rem;
    right: -5.5rem;
    width: 9rem;
    height: 9rem;
    opacity: 0.55;
  }

  .hero::after {
    left: -3.75rem;
    bottom: 2rem;
    width: 6.5rem;
    height: 6.5rem;
    border-width: 10px;
    opacity: 0.45;
  }

  .hero-grid {
    gap: 1.4rem;
    align-content: start;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-inline: 0.15rem 0.35rem;
    max-width: 22.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 7vw, 4rem);
    line-height: 1;
    font-weight: 700;
    max-width: 11.5ch;
    margin-bottom: 0.85rem;
    text-align: center;
    align-self: center;
  }

  .eyebrow {
    margin-bottom: 0.45rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }

  .hero-actions {
    width: 100%;
    margin: 1.2rem 0 1rem;
    gap: 0.65rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .button {
    width: 100%;
    min-height: 42px;
    padding: 0.72rem 1rem;
    border-radius: 16px;
    font-size: 0.95rem;
  }

  .hero-points {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 0.4rem;
  }

  .hero-points li {
    min-height: 72px;
    padding: 0.72rem 0.75rem;
    border-radius: 12px;
    font-size: 0.82rem;
    line-height: 1.35;
    box-shadow: 0 8px 18px rgba(104, 56, 24, 0.07);
  }

  #hero-rating {
    width: 100%;
    margin-top: 1rem !important;
    display: grid;
    gap: 0.7rem;
  }

  #hero-rating br {
    display: none;
  }

  .hero-collage,
  .specials-grid,
  .testimonial-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .floating-order {
    bottom: 1.25rem;
    right: 1.25rem;
  }

  .hero-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 0.85rem;
  }

  .hero-featured-image {
    display: block;
    margin: 0.8rem 0 1rem;
  }

  .hero-featured-image .hero-card img {
    min-height: 0;
    max-height: none;
    aspect-ratio: 1.25 / 1;
  }

  .hero-card img {
    min-height: 0;
    height: 100%;
    max-height: none;
    aspect-ratio: 1 / 1;
  }

  .hero-collage .hero-card img {
    aspect-ratio: 1 / 1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .gallery-item::after {
    right: 0.75rem;
    bottom: 0.75rem;
    font-size: 0.78rem;
  }

  .specials-grid,
  .testimonial-grid,
  .why-grid,
  .footer-grid,
  .feature-grid {
    gap: 1rem;
  }

  .contact-map-wrap,
  .contact-map-wrap iframe {
    min-height: 280px;
  }

  .why-us-wrap {
    padding: 1.35rem;
  }

  .about {
    position: relative;
    margin-top: 1.4rem;
    padding-top: 5rem;
  }

  .about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2rem;
    background: #f6eee0;
    border-top: 1px solid rgba(125, 81, 44, 0.08);
    border-bottom: 1px solid rgba(125, 81, 44, 0.04);
  }

  .about-grid {
    gap: 1.5rem;
  }

  .about-media {
    display: none;
  }

  .about-copy,
  .about-media {
    padding-inline: 0.15rem;
  }

  .about-copy .eyebrow {
    margin-bottom: 0.75rem;
  }
}


/* ============================================
   Floating Order Now Button
   ============================================ */
.floating-order {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  padding: 0.85rem;
  box-shadow: 0 8px 28px rgba(126, 63, 24, 0.38), 0 2px 8px rgba(0,0,0,0.12);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  overflow: hidden;
  transition: padding 0.3s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}

.floating-order-label {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.35s ease, opacity 0.3s ease, margin-left 0.3s ease;
  margin-left: 0;
}

.floating-order:hover,
.floating-order:focus-visible {
  background: var(--primary-dark);
  padding: 0.85rem 1.35rem;
  box-shadow: 0 12px 36px rgba(126, 63, 24, 0.45);
  transform: translateY(-2px);
}

.floating-order:hover .floating-order-label,
.floating-order:focus-visible .floating-order-label {
  max-width: 120px;
  opacity: 1;
  margin-left: 0.6rem;
}

/* ============================================
   Special Card — API-rendered menu items
   ============================================ */
.special-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.special-card-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.special-card:hover .special-card-img-wrap img {
  transform: scale(1.05);
}

.special-card-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(213,165,42,0.12), rgba(167,90,33,0.06));
  color: var(--primary);
}

.special-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
}

.special-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.special-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.special-order-btn {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.88rem;
  min-height: 40px;
  border-radius: 999px;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
