:root {
  --color-terracotta: #C45A3B;
  --color-deep-red: #8C1F1F;
  --color-golden: #F2A51A;
  --color-rich-green: #2E7D32;
  --color-cream: #FFF7E9;
  --color-warm-brown: #6B4226;
  --color-accent-orange: #FF6B1A;
  --color-accent-lime: #3BB273;
  --color-text: #2B2B2B;
  --color-muted: #6B6B6B;
  --color-bg: #F7F3ED;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --maxw: 1100px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }

.skip-link {
  position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus { left: 16px; top: 16px; width: auto; height: auto; background: #fff; padding: 8px 12px; border-radius: 6px; box-shadow: var(--shadow-sm); }

/* Brand & Nav */
.brand { text-decoration: none; color: inherit; display: inline-flex; flex-direction: column; }
.brand__title { font-family: 'Alfa Slab One', serif; font-size: 24px; letter-spacing: 0.5px; color: var(--color-deep-red); }
.brand__subtitle { font-size: 12px; color: var(--color-muted); text-transform: uppercase; letter-spacing: 1px; }

.nav { background: #fff; position: sticky; top: 0; z-index: 10; box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.nav__toggle { display: none; background: transparent; border: 1px solid rgba(0,0,0,0.12); padding: 8px 12px; border-radius: 8px; }
.nav__menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 16px; align-items: center; }
.nav__menu a { text-decoration: none; color: var(--color-text); font-weight: 600; }

/* Buttons */
.btn { display: inline-block; padding: 12px 16px; border-radius: 999px; text-decoration: none; font-weight: 700; transition: transform .05s ease, background .2s ease, color .2s ease; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--color-terracotta); color: #fff; }
.btn--primary:hover { background: #b44f33; }
.btn--secondary { background: var(--color-rich-green); color: #fff; }
.btn--secondary:hover { background: #256c2a; }
.btn--accent { background: var(--color-accent-orange); color: #222; }
.btn--accent:hover { background: #ff7d39; }
.btn--sm { padding: 8px 12px; font-weight: 600; }

/* Hero */
.hero { position: relative; height: 96vh; overflow: hidden; }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(1.05) contrast(1.05); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.25), rgba(0,0,0,0.1)); }
.hero__content { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; gap: 16px; padding: 0 16px; }
.hero__claim { color: #ffd700; font-family: 'Satisfy', cursive; font-size: clamp(24px, 4vw, 36px); text-shadow: 0 4px 16px rgba(0,0,0,0.5); margin-bottom: -4px; }
.hero__title { color: #fff; font-family: 'Alfa Slab One', serif; font-size: clamp(28px, 5vw, 48px); text-shadow: 0 6px 24px rgba(0,0,0,0.35); }
.hero__subtitle { color: #f8f5f1; font-size: 16px; margin-top: -8px; }
.hero__ctas { display: flex; gap: 12px; margin-top: 8px; justify-content: center; flex-wrap: wrap; }

/* Sections */
.section { padding: 56px 0; }
.section--light { background: var(--color-cream); }
.section--accent { background: #fff; border-top: 4px solid var(--color-golden); border-bottom: 4px solid var(--color-golden); }
.section__title { font-family: 'Alfa Slab One', serif; margin: 0 0 16px; color: var(--color-warm-brown); font-size: clamp(22px, 3.5vw, 32px); }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: 1fr; }

@media (min-width: 800px) { .grid--2 { grid-template-columns: 1fr 1fr; } }

.list { padding-left: 18px; }
.list--check { list-style: none; padding: 0; }
.list--check li { padding-left: 28px; position: relative; margin: 8px 0; }
.list--check li::before { content: "✓"; position: absolute; left: 0; color: var(--color-rich-green); font-weight: 700; }

/* Feature card */
.feature-card { background: #fff; border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.06); }
.feature-card__title { margin: 0 0 8px; font-family: 'Alfa Slab One', serif; color: var(--color-deep-red); }
.feature-list { margin: 0; padding-left: 18px; }

/* Cards */
.cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; border: 1px solid rgba(0,0,0,0.06); }
.card__img { width: 100%; height: 220px; object-fit: cover; }
.card__body { padding: 12px 14px; }
.card__title { margin: 0 0 6px; font-weight: 700; color: var(--color-deep-red); }

@media (min-width: 720px) { .cards { grid-template-columns: repeat(3, 1fr); } }

/* Slideshow - Carousel */
.slideshow { position: relative; width: 100%; margin: 0 auto; overflow: hidden; }
.slideshow__container { position: relative; width: 100%; overflow: visible; padding: 0 60px; }
.slideshow__track { display: flex; transition: transform 0.5s ease; }
.slideshow__slide { flex: 0 0 33.33%; min-width: 33.33%; text-align: center; transform: scale(0.85); opacity: 0.4; transition: transform 0.5s ease, opacity 0.5s ease; padding: 0 10px; }
.slideshow__slide.active { transform: scale(1); opacity: 1; }
.slideshow__img { width: 100%; height: auto; max-height: 500px; object-fit: contain; }
.slideshow__nav { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }
.slideshow__btn { background: var(--color-terracotta); color: #fff; border: none; border-radius: 999px; width: 36px; height: 36px; font-size: 18px; cursor: pointer; transition: background .2s ease; position: absolute; top: 50%; transform: translateY(-50%); }
.slideshow__btn:hover { background: #b44f33; }
.slideshow__btn--prev { left: 12px; }
.slideshow__btn--next { right: 12px; }
.slideshow__dots { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }
.slideshow__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.2); cursor: pointer; transition: background .2s ease; }
.slideshow__dot.active { background: var(--color-terracotta); }

.menu__notes { margin-top: 8px; color: var(--color-muted); font-size: 14px; }

/* Events */
.rounded { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hours & map */
.address { font-style: normal; margin-bottom: 12px; }
.hours__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.hours__list li { display: flex; justify-content: space-between; padding: 8px 12px; background: #fff; border-radius: var(--radius-sm); border: 1px solid rgba(0,0,0,0.06); }
.hours__note { color: var(--color-muted); font-size: 14px; margin-top: 8px; }
.map { aspect-ratio: 16/10; background: #e9e4dc; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map iframe { width: 100%; height: 100%; border: 0; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.gallery img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(5, 1fr); } .gallery img { height: 160px; } }

/* Footer */
.footer { background: var(--color-warm-brown); color: #fff; padding: 24px 0; }
.footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; }
.footer__brand { display: flex; flex-direction: column; align-items: center; }
.footer__title { font-family: 'Alfa Slab One', serif; font-size: 20px; color: #fff; }
.footer__subtitle { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.7); }
.footer__info { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.85); }
.footer__info a { color: #fff; text-decoration: none; }
.footer__info a:hover { text-decoration: underline; }
.footer__divider { color: rgba(255,255,255,0.4); }
.footer__copyright { font-size: 12px; color: rgba(255,255,255,0.5); margin: 0; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 100; justify-content: center; align-items: center; padding: 20px; }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox__close { position: absolute; top: 16px; right: 16px; background: transparent; border: none; color: #fff; font-size: 36px; cursor: pointer; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; transition: opacity 0.2s; }
.lightbox__close:hover { opacity: 0.7; }
.slideshow__img { cursor: pointer; }

/* Mobile nav */
@media (max-width: 860px) {
  .nav__toggle { display: inline-block; }
  .nav__menu { position: absolute; left: 0; right: 0; top: 60px; background: #fff; padding: 12px 16px; display: none; flex-direction: column; gap: 8px; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav__menu.is-open { display: flex; }
}
