/* Forklore brand colours – greens with purple accents (logo: Violets on Main) */
:root {
  /* Primary greens */
  --topbar-bg: #3d7a44;
  --topbar-text: #f7fafc;
  --topbar-accent: #e7f6ea;
  --primary: #6dbd75;
  --primary-dark: #5ca564;
  --body: #2d3748;
  --muted: #718096;
  --bg: #fff;
  --bg-alt: #e7f6ea;
  --border: #e2e8f0;
  --radius: 8px;
  --font-body: "Prompt", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Brother Gothic", var(--font-body);
  /* Purple accents from logo & Violets on Main */
  --accent-purple: #703d9e;
  --accent-purple-muted: #6c5f84;
  --accent-purple-dark: #442769;
  --accent-purple-light: #a89abf;
}

@font-face {
  font-family: "Brother Gothic";
  src: url("/fonts/brother-gothic.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Prompt";
  src: url("/fonts/Prompt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Prompt";
  src: url("/fonts/Prompt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html { font-size: 100%; }
body { margin: 0; font-family: var(--font-body); font-weight: 400; font-size: 1rem; color: var(--body); line-height: 1.6; background: var(--bg); }

/* Skip to main content – visible on focus for keyboard users */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--primary);
  color: var(--topbar-text);
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius);
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* Top bar – contrasting, announcement visible, centered */
.topbar {
  background: var(--topbar-bg);
  color: var(--topbar-text);
  padding: 10px 0;
  font-size: 0.9375rem;
  text-align: center;
}
.topbar a { color: var(--topbar-accent); text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; }
.topbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 24px;
}
.topbar__announcement { margin: 0; font-weight: 500; }
/* Pill/button style so announcement stands out from the dark bar */
.topbar__announcement--btn,
a.topbar__announcement--btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--topbar-accent);
  color: var(--topbar-bg) !important;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
a.topbar__announcement--btn:hover { text-decoration: none; opacity: 0.95; }
.topbar__announcement--btn p,
.topbar__announcement--btn span { margin: 0; color: inherit; }
.topbar__right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.topbar__phone { font-weight: 600; white-space: nowrap; }
.topbar__social { display: flex; align-items: center; gap: 10px; }
/* Social links: purple outlined circles (matches footer), min 44px touch target */
.topbar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  width: 2.75rem;
  height: 2.75rem;
  border: 2px solid var(--accent-purple-light);
  border-radius: 50%;
  color: var(--accent-purple-light);
  text-decoration: none;
}
.topbar__social a:hover { background: var(--accent-purple); border-color: var(--accent-purple); color: #fff; text-decoration: none; }
.topbar__social a i { font-size: 1rem; }

/* Site header / nav — sticky */
.site-header { background: var(--bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; }
.header__inner { max-width: 1200px; margin: 0 auto; padding: 6px 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--accent-purple); font-family: var(--font-display); font-weight: 700; font-size: 2.75rem; }
.site-logo img { height: 48px; width: auto; }
.nav-main { display: flex; align-items: center; gap: 8px; list-style: none; margin: 0; padding: 0; }
.nav-main a { padding: 12px 16px; min-height: 44px; box-sizing: border-box; display: inline-flex; align-items: center; color: var(--accent-purple); text-decoration: none; border-radius: var(--radius); }
.nav-main a:hover { background: var(--bg-alt); color: var(--accent-purple-dark); }
.nav-main .active a { background: var(--primary); color: #fff; }

/* Purple accent on logo for brand link */
.site-logo:hover { color: var(--accent-purple-dark); }

/* Mobile nav */
.nav-main__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 8px; }
.nav-main__list li { margin: 0; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 10px; min-width: 44px; min-height: 44px; box-sizing: border-box; align-items: center; justify-content: center; }
.nav-topbar { display: none; }
@media (max-width: 768px) {
  .topbar--desktop { display: none !important; }
  .nav-topbar { display: block; }
  .nav-toggle { display: block; }
  .nav-main { display: none; width: 100%; flex-direction: column; align-items: stretch; }
  .nav-main.open { display: flex; }
  .nav-topbar { padding: 16px; background: var(--topbar-bg); color: var(--topbar-text); }
  .nav-topbar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }
  .nav-topbar .topbar__announcement--btn { margin: 0; }
  .nav-topbar .topbar__phone { color: var(--topbar-accent); }
  .nav-topbar .topbar__social a { border-color: var(--accent-purple-light); color: var(--accent-purple-light); }
  .nav-topbar .topbar__social a:hover { background: var(--accent-purple); border-color: var(--accent-purple); color: #fff; }
  .nav-main__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-main__list li { border-bottom: 1px solid var(--border); }
  .nav-main__list a { display: block; padding: 14px 16px; min-height: 44px; box-sizing: border-box; }
  .nav-dropdown__menu { position: static; box-shadow: none; border: none; border-radius: 0; min-width: 0; padding: 0; }
  .nav-dropdown__menu li { border-bottom: 1px solid var(--border); }
  .nav-dropdown__menu a { padding-left: 32px; font-size: 0.9375rem; }
}

/* Nav dropdowns */
.nav-dropdown { position: relative; }
.nav-dropdown__toggle { background: none; border: none; cursor: pointer; padding: 12px 16px; min-height: 44px; box-sizing: border-box; color: var(--accent-purple); font-family: inherit; font-size: inherit; font-weight: inherit; display: flex; align-items: center; gap: 4px; border-radius: var(--radius); }
.nav-dropdown__toggle:hover { background: var(--bg-alt); color: var(--accent-purple-dark); }
.nav-dropdown__arrow { font-size: 0.75em; transition: transform 0.2s; }
.nav-dropdown--open .nav-dropdown__arrow { transform: rotate(180deg); }
.nav-dropdown__menu { display: none; position: absolute; top: 100%; left: 0; min-width: 180px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(0,0,0,0.1); padding: 4px 0; z-index: 100; list-style: none; margin: 0; }
.nav-dropdown--open .nav-dropdown__menu { display: block; }
.nav-dropdown__menu li { margin: 0; }
.nav-dropdown__menu a { display: block; padding: 10px 16px; white-space: nowrap; }
.nav-dropdown__menu a:hover { background: var(--bg-alt); }

/* Main content */
.main { min-height: 60vh; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Hero */
.hero { position: relative; padding: 96px 0; min-height: 420px; text-align: center; background: var(--bg-alt); overflow: hidden; display: flex; align-items: center; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.4; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255,255,255,0.7), rgba(255,255,255,0.9)); }
.hero__content { position: relative; z-index: 1; }
.hero__title { margin: 0 0 12px; font-size: 2.25rem; font-family: var(--font-body); font-weight: 600; }
.hero__subtitle { margin: 0; font-size: 1.125rem; color: var(--muted); max-width: 600px; margin-left: auto; margin-right: auto; }

/* Photo strip – touching square images, auto-scroll, seamless loop */
.photo-strip { padding: 0; background: var(--bg); overflow: hidden; }
.photo-strip__inner { display: flex; flex-wrap: nowrap; gap: 0; animation: photo-strip-scroll 30s linear infinite; }
.photo-strip__inner:hover { animation-play-state: paused; }
.photo-strip__item { flex: 0 0 15vw; width: 15vw; aspect-ratio: 1; overflow: hidden; }
.photo-strip__item img { width: 100%; height: 100%; object-fit: cover; display: block; vertical-align: bottom; }
@keyframes photo-strip-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Instagram photo wall */
.instagram-wall { background: var(--bg-alt); }
.instagram-wall__embed { margin-top: 24px; min-height: 200px; }
.instagram-wall__embed iframe { max-width: 100%; }
.instagram-wall__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; margin-top: 24px; }
.instagram-wall__item { display: block; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); }
.instagram-wall__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.2s; }
.instagram-wall__item:hover img { transform: scale(1.05); }

/* Sections */
.section { padding: 48px 0; text-align: center; }
.section__title { margin: 0 0 8px; font-size: 1.75rem; font-weight: 700; }
.section__subtitle { margin: 0 0 24px; color: var(--muted); }
.section .container { text-align: center; }
.section .content { text-align: left; margin-left: auto; margin-right: auto; }
.section .contact-form { text-align: left; max-width: 480px; margin-left: auto; margin-right: auto; }
.section .initiative-block { text-align: center; }

/* Buttons – min 44px touch target (WCAG 2.5.5) */
.btn { display: inline-block; padding: 12px 24px; min-height: 44px; min-width: 44px; box-sizing: border-box; border-radius: var(--radius); font-weight: 600; text-decoration: none; border: none; cursor: pointer; font-size: 1rem; line-height: 1.25; }
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); color: #fff; }

/* Footer */
.site-footer { background: #2d5a34; color: #e2e8f0; padding: 48px 0 24px; }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 48px 56px; max-width: 1280px; margin: 0 auto 40px; padding: 0 32px; }
.footer__grid > div { min-width: 0; }
.footer__heading { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 12px; color: #fff; }
.footer__text { margin: 0; font-size: 0.9375rem; line-height: 1.6; max-width: 280px; }
.footer__text a { color: var(--accent-purple-light); }
.footer__text a:hover { color: var(--accent-purple); }
.footer__social { display: flex; gap: 12px; margin-top: 8px; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; width: 2.75rem; height: 2.75rem; box-sizing: border-box; border: 2px solid var(--accent-purple-light); border-radius: 50%; color: var(--accent-purple-light); text-decoration: none; }
.footer__social a:hover { background: var(--accent-purple); border-color: var(--accent-purple); color: #fff; }
.site-footer .btn { margin-top: 12px; }
.site-footer .footer-newsletter .btn,
.site-footer .newsletter-embed .btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  font-family: inherit;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
}
.site-footer .footer-newsletter .btn:hover,
.site-footer .newsletter-embed .btn:hover {
  background: var(--primary-dark);
  color: #fff;
}
.newsletter-embed { margin-top: 8px; max-width: 280px; }
.newsletter-embed input[type="email"] { font-size: 0.9375rem; }
.newsletter-form__message { margin-top: 12px; font-size: 0.9375rem; }
.newsletter-form__message--success { color: var(--topbar-accent); }
.newsletter-form__message--error { color: #fecaca; }
.footer-newsletter .form-group { margin-bottom: 8px; }
.footer__bottom { text-align: center; padding-top: 24px; border-top: 1px solid #4a5568; font-size: 0.875rem; color: #a0aec0; max-width: 1280px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; gap: 36px; padding: 0 24px; }
  .footer__text { max-width: none; }
  .newsletter-embed { max-width: none; }
}

/* Forms */
.form-alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 20px; font-weight: 500; }
.form-alert--success { background: var(--bg-alt); color: var(--primary-dark); border: 1px solid var(--primary); }
.form-alert--error { background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 4px; font-weight: 600; font-size: 0.9375rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 1rem; font-family: inherit; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-check { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.form-check input { width: auto; }
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-row--3 { grid-template-columns: 1fr 1fr 1fr; }
.form-check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px 24px; }
.form-check-other { max-width: 240px; }

/* Contact page layout */
.contact-intro-block { max-width: 65ch; margin-left: auto; margin-right: auto; text-align: left; }
.contact-intro { margin-bottom: 0; text-align: left; }
.contact-info--below { display: flex; gap: 12px; margin-top: 12px; margin-bottom: 24px; }
.contact-info--below a { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border: 2px solid var(--accent-purple); border-radius: 50%; color: var(--accent-purple); text-decoration: none; }
.contact-info--below a:hover { background: var(--accent-purple); color: #fff; }
.contact-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; margin-top: 24px; }
.contact-info { margin-top: 24px; }
.contact-info__social { display: flex; gap: 12px; margin-top: 12px; }
.contact-info__social a { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border: 2px solid var(--primary); border-radius: 50%; color: var(--primary); }
.contact-info__social a:hover { background: var(--primary); color: #fff; }
.contact-map { margin-bottom: 24px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.contact-map iframe { display: block; width: 100%; border: none; }
.contact-calendar { margin-top: 24px; }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .form-row--2, .form-row--3 { grid-template-columns: 1fr; }
}

.content { max-width: 65ch; }
.content h2 { margin-top: 1.5em; margin-bottom: 0.5em; }
.content ul, .content ol { margin: 0.5em 0; padding-left: 1.5em; }
.content a { color: var(--primary); }
.content a:hover { color: var(--accent-purple); }

/* Testimonials carousel – 3 visible, prev/next shift by one */
.testimonials-carousel { display: flex; align-items: center; gap: 16px; position: relative; }
.testimonials-carousel__btn { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--accent-purple); background: var(--bg); color: var(--accent-purple); font-size: 1.5rem; cursor: pointer; display: flex; align-items: center; justify-content: center; line-height: 1; transition: background 0.2s, color 0.2s; }
.testimonials-carousel__btn:hover { background: var(--accent-purple); color: #fff; }
.testimonials-carousel__btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.testimonials-carousel__viewport { flex: 1; overflow: hidden; }
.testimonials-carousel__track { display: flex; gap: 24px; transition: transform 0.3s ease; }
.testimonial { flex: 0 0 calc(33.333% - 16px); min-width: 0; margin: 0; padding: 24px; background: var(--bg); border-radius: var(--radius); box-sizing: border-box; }
.testimonial__stars { color: var(--accent-purple); font-size: 1rem; margin-bottom: 8px; letter-spacing: 0.1em; }
.testimonial cite { display: block; margin-top: 12px; font-size: 0.9rem; color: var(--muted); }
@media (max-width: 768px) {
  .testimonial { flex: 0 0 calc(100% - 16px); }
}

/* Events page */
/* Story split layout – image left, content right, smaller photo */
.story-split { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; margin-top: 1.5em; }
.story-split__image { position: sticky; top: 24px; }
.story-split__image img { width: 100%; height: auto; border-radius: var(--radius); display: block; }
.story-split__content { min-width: 0; }
@media (max-width: 768px) {
  .story-split { grid-template-columns: 1fr; }
  .story-split__image { position: static; max-width: 240px; margin: 0 auto; }
}

.events-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; margin-bottom: 2em; }
.events-hero__image img { width: 100%; height: auto; border-radius: var(--radius); }
@media (max-width: 768px) {
  .events-hero { grid-template-columns: 1fr; }
  .events-hero__image { order: -1; }
}
.events-calendar { margin-top: 2em; }

.calendar-responsive__large { display: block; }
.calendar-responsive__small { display: none; }
.calendar-responsive__small:only-child { display: block; }
.calendar-responsive--both .calendar-responsive__large { display: block; }
.calendar-responsive--both .calendar-responsive__small { display: none; }
@media (max-width: 768px) {
  .calendar-responsive--both .calendar-responsive__large { display: none; }
  .calendar-responsive--both .calendar-responsive__small { display: block; }
}

/* Calendars */
.calendar-wrap { margin: 24px 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.calendar-wrap iframe { display: block; width: 100%; border: none; }
.calendar--small .calendar-wrap { max-width: 360px; }
.calendar--large .calendar-wrap { min-height: 500px; }
@media (max-width: 768px) {
  .calendar--large .calendar-wrap { min-height: 400px; max-height: 500px; }
}

/* ========================================
   Menu Page
   ======================================== */
.menu-disclaimer { font-style: italic; color: var(--muted); margin-bottom: 2em; padding: 12px 16px; background: var(--bg-alt); border-radius: var(--radius); }
.menu-block { margin-bottom: 2.5em; }
.menu-block__season { font-family: var(--font-display); font-size: 1.5rem; color: var(--accent-purple); margin-bottom: 1em; }
.menu-category { margin-bottom: 1.5em; }
.menu-category__title { font-size: 1.125rem; font-weight: 600; border-bottom: 2px solid var(--primary); padding-bottom: 6px; margin-bottom: 12px; }
.menu-items { display: flex; flex-direction: column; gap: 8px; }
.menu-item { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.menu-item:last-child { border-bottom: none; }
.menu-item__name { font-weight: 600; }
.menu-item__desc { color: var(--muted); font-size: 0.9375rem; }

/* Menu preview (homepage) */
.menu-preview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 1em; }
.menu-preview-card { padding: 20px; border-radius: var(--radius); border: 1px solid var(--border); }
.menu-preview-card__title { font-size: 1.125rem; font-weight: 600; margin: 0 0 12px; color: var(--accent-purple); }
.menu-preview-card__list { list-style: none; padding: 0; margin: 0; }
.menu-preview-card__list li { padding: 4px 0; font-size: 0.9375rem; }
.menu-preview-card__list li + li { border-top: 1px solid var(--border); }

/* ========================================
   FAQ
   ======================================== */
.faq-group { margin-bottom: 2em; }
.faq-group__title { font-size: 1.25rem; color: var(--accent-purple); margin-bottom: 0.75em; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.faq-item__question { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 16px 20px; background: none; border: none; cursor: pointer; font-size: 1rem; font-weight: 600; font-family: inherit; color: var(--body); text-align: left; gap: 12px; }
.faq-item__question:hover { background: var(--bg-alt); }
.faq-item__icon { font-size: 1.25rem; font-weight: 700; color: var(--accent-purple); transition: transform 0.2s; flex-shrink: 0; }
.faq-item--open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 20px; }
.faq-item--open .faq-item__answer { max-height: 500px; padding: 0 20px 16px; }
.faq-item__answer p { margin: 0; color: var(--muted); line-height: 1.6; }

/* ========================================
   Gallery
   ======================================== */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.5em; }
.gallery-filter__btn { padding: 8px 16px; border: 1px solid var(--border); border-radius: 999px; background: var(--bg); color: var(--body); cursor: pointer; font-family: inherit; font-size: 0.875rem; transition: all 0.2s; }
.gallery-filter__btn:hover, .gallery-filter__btn.active { background: var(--accent-purple); color: #fff; border-color: var(--accent-purple); }

.gallery-grid { columns: 3; column-gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; break-inside: avoid; margin-bottom: 16px; }
.gallery-item__img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
.gallery-item:hover .gallery-item__img { transform: scale(1.05); }
.gallery-item__overlay { position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(0,0,0,0.7)); display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__title { color: #fff; font-size: 1rem; font-weight: 600; margin: 0; }
.gallery-item__date { color: rgba(255,255,255,0.7); font-size: 0.8125rem; margin: 4px 0 0; }
.gallery-item__desc { color: rgba(255,255,255,0.85); font-size: 0.875rem; margin: 4px 0 0; }

/* Gallery preview (homepage) */
.gallery-preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-top: 1em; }
.gallery-preview-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; }
.gallery-preview-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.9); align-items: center; justify-content: center; flex-direction: column; padding: 24px; }
.lightbox--open { display: flex; }
.lightbox__close { position: absolute; top: 16px; right: 24px; font-size: 2rem; color: #fff; background: none; border: none; cursor: pointer; z-index: 1; }
.lightbox__img { max-width: 90%; max-height: 80vh; border-radius: var(--radius); object-fit: contain; }
.lightbox__caption { color: #fff; margin-top: 12px; font-size: 1rem; }

/* ========================================
   Team
   ======================================== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; margin-top: 1em; }
.team-member { text-align: center; }
.team-member__photo { width: 180px; height: 180px; margin: 0 auto 16px; border-radius: 50%; overflow: hidden; border: 4px solid var(--primary); box-shadow: 0 0 0 3px var(--bg), 0 0 0 6px var(--primary); }
.team-grid .team-member:nth-child(even) .team-member__photo { border-color: var(--accent-purple); box-shadow: 0 0 0 3px var(--bg), 0 0 0 6px var(--accent-purple); }
.team-member__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-member__name { font-size: 1.25rem; font-weight: 600; margin: 0 0 4px; }
.team-member__role { color: var(--accent-purple); font-weight: 500; margin: 0 0 8px; font-size: 0.9375rem; }
.team-member__bio { color: var(--muted); font-size: 0.9375rem; margin: 0; line-height: 1.5; }
.team-member__social { margin-top: 12px; display: flex; justify-content: center; gap: 12px; }
.team-member__social a { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; border: 2px solid var(--accent-purple-light); border-radius: 50%; color: var(--accent-purple); text-decoration: none; transition: all 0.2s; }
.team-member__social a:hover { background: var(--accent-purple); color: #fff; }

/* Team alternating layout */
.team-alternating { display: flex; flex-direction: column; gap: 48px; margin-top: 1em; }
.team-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.team-row--reverse { direction: rtl; }
.team-row--reverse > * { direction: ltr; }
.team-row__photo { width: 280px; height: 280px; border-radius: 50%; overflow: hidden; border: 4px solid var(--primary); box-shadow: 0 0 0 4px var(--bg), 0 0 0 8px var(--primary); }
.team-row:nth-child(even) .team-row__photo { border-color: var(--accent-purple); box-shadow: 0 0 0 4px var(--bg), 0 0 0 8px var(--accent-purple); }
.team-row__photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.team-row__name { font-size: 1.5rem; font-family: var(--font-display); margin: 0 0 4px; }
.team-row__role { color: var(--accent-purple); font-weight: 500; margin: 0 0 12px; font-size: 1rem; }
.team-row__bio { color: var(--muted); font-size: 1rem; line-height: 1.6; margin: 0; }
@media (max-width: 768px) {
  .team-row { grid-template-columns: 1fr; text-align: center; }
  .team-row--reverse { direction: ltr; }
  .team-row__photo { margin: 0 auto; width: 220px; height: 220px; }
}

/* ========================================
   Multi-step Form
   ======================================== */
.form-steps__bar { display: flex; gap: 4px; margin-bottom: 2em; }
.form-steps__step { flex: 1; padding: 12px 8px; text-align: center; font-size: 0.875rem; font-weight: 500; color: var(--muted); background: var(--bg-alt); border-radius: var(--radius); cursor: pointer; transition: all 0.2s; border: 2px solid transparent; }
.form-steps__step--active { color: var(--accent-purple); background: #fff; border-color: var(--accent-purple); font-weight: 600; }
.form-steps__step--done { color: var(--primary-dark); background: var(--bg-alt); border-color: var(--primary); }
.form-step { display: none; }
.form-step--active { display: block; }
.form-step__heading { font-size: 1.125rem; color: var(--accent-purple); margin: 0 0 1em; }
.form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 1.5em; gap: 12px; }
.form-nav__prev { margin-right: auto; }
.form-nav__next, .form-nav__submit { margin-left: auto; }
.btn--secondary { background: var(--bg); color: var(--body); border: 2px solid var(--border); padding: 10px 24px; border-radius: var(--radius); cursor: pointer; font-family: inherit; font-size: 1rem; transition: all 0.2s; }
.btn--secondary:hover { border-color: var(--accent-purple); color: var(--accent-purple); }

/* Date availability indicator */
.form-date-availability { display: inline-block; margin-top: 6px; font-size: 0.875rem; font-weight: 500; }
.form-date-availability--checking { color: var(--muted); }
.form-date-availability--available { color: var(--primary-dark); }
.form-date-availability--busy { color: #c53030; }

@media (max-width: 768px) {
  .form-steps__bar { flex-direction: column; }
  .form-steps__step { padding: 8px 12px; text-align: left; }
  .gallery-grid { columns: 2; }
  .team-grid { grid-template-columns: 1fr; }
  .menu-preview-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
}
