/* ============================================
   Bottom View Farms — Custom Styles
   Modern-rustic · Forest · Terracotta · Gold
   ============================================ */

html {
  scroll-behavior: smooth;
  --marquee-h: 2.5rem;
  --header-h: 4rem;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ----- Top scrolling Fall Festival marquee ----- */
.festival-marquee {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--marquee-h);
  overflow: hidden;
  background: linear-gradient(90deg, #062820 0%, #0a3d33 40%, #8b3a1f 100%);
  border-bottom: 2px solid #d4a017;
  color: #f5f0e8;
  display: flex;
  align-items: center;
}

.festival-marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 42s linear infinite;
  will-change: transform;
}

.festival-marquee__track:hover {
  animation-play-state: paused;
}

.festival-marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0;
  padding-right: 0;
  white-space: nowrap;
  font-size: clamp(0.7rem, 1.8vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.festival-marquee__item {
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem;
}

.festival-marquee__item--tagline {
  color: #e8b84a;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
}

.festival-marquee__sep {
  color: #f5f0e8;
  opacity: 0.95;
  padding: 0 0.15rem;
  user-select: none;
  font-weight: 700;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .festival-marquee__track {
    animation: none;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }

  .festival-marquee__group:last-child {
    display: none;
  }
}

/* Header ALWAYS below fixed marquee — never under it; beats any Tailwind top-* */
#site-header {
  position: fixed !important;
  top: var(--marquee-h) !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 50;
  width: 100%;
}

.page-hero,
.hero-section {
  scroll-margin-top: calc(var(--marquee-h) + var(--header-h));
}

/* ----- Fall announcement ribbon (below hero on home) ----- */
.announcement-ribbon {
  position: relative;
  z-index: 20;
  width: 100%;
  background: linear-gradient(90deg, #8b3a1f 0%, #c26d4f 35%, #d4a017 70%, #c26d4f 100%);
  color: #f5f0e8;
  text-align: center;
  padding: 0.65rem 1rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.announcement-ribbon--below-hero {
  padding: 1.1rem 1.25rem 1.2rem;
  border-top: 2px solid rgba(212, 160, 23, 0.55);
  border-bottom: 2px solid rgba(10, 61, 51, 0.25);
  box-shadow:
    0 8px 28px rgba(139, 58, 31, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.announcement-ribbon--below-hero .announcement-ribbon__title {
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  letter-spacing: 0.14em;
}

.announcement-ribbon--below-hero .announcement-ribbon__sub {
  margin-top: 0.4rem;
  font-size: clamp(0.75rem, 1.8vw, 0.95rem);
}

.announcement-ribbon__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(0.85rem, 2.2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
}

.announcement-ribbon__sub {
  margin-top: 0.2rem;
  font-size: clamp(0.65rem, 1.6vw, 0.8rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(245, 240, 232, 0.95);
  line-height: 1.45;
}

.announcement-ribbon__link {
  display: inline-block;
  margin-left: 0.35rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #0a3d33;
  background: rgba(245, 240, 232, 0.95);
  padding: 0.15rem 0.55rem;
  border-radius: 9999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.announcement-ribbon__link:hover {
  background: #0a3d33;
  color: #f5f0e8;
  text-decoration: none;
}

/* ----- Sticky header ----- */
#site-header {
  background: transparent;
}

#site-header.is-solid,
#site-header.scrolled {
  background: rgba(6, 40, 32, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

#menu-toggle {
  min-width: 44px;
  min-height: 44px;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.85);
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
  color: #d4a017;
}

.nav-link--cta {
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(212, 160, 23, 0.5);
  border-radius: 9999px;
  color: #d4a017;
}

.nav-link--cta:hover {
  background: rgba(212, 160, 23, 0.12);
  color: #e8b84a;
  border-color: #d4a017;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.85rem 0.25rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.9);
  transition: color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: #d4a017;
}

/* ----- Hero ----- */
.hero-section {
  /* Room for fixed marquee + nav so logo is not clipped at top */
  padding-top: calc(var(--marquee-h) + 5.5rem);
  padding-bottom: 2.5rem;
  box-sizing: border-box;
}

.hero-content {
  /* Sit slightly lower and fully clear the sticky nav */
  margin-top: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: calc(var(--marquee-h) + 6rem);
  }

  .hero-content {
    margin-top: 2.25rem;
  }
}

.hero-overlay {
  background:
    linear-gradient(
      to bottom,
      rgba(6, 40, 32, 0.62) 0%,
      rgba(10, 61, 51, 0.5) 38%,
      rgba(6, 40, 32, 0.82) 100%
    );
}

.hero-content > p,
.hero-content > h1 {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.hero-content .btn-primary,
.hero-content .btn-secondary {
  position: relative;
  z-index: 2;
  min-height: 44px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.hero-content .btn-secondary--light {
  background: rgba(6, 40, 32, 0.55);
  border-color: rgba(245, 240, 232, 0.85);
  color: #f5f0e8;
  backdrop-filter: blur(4px);
}

/* Perfect circular logo — phone / tablet / desktop */
.hero-logo-wrap {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  border-radius: 50% !important;
  overflow: hidden !important;
  background: transparent;
  /* Triple-lock circle: radius + overflow + clip-path (beats cream JPEG corners) */
  clip-path: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
  -webkit-mask-image: radial-gradient(circle closest-side, #000 99.5%, transparent 100%);
  mask-image: radial-gradient(circle closest-side, #000 99.5%, transparent 100%);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 0 3px rgba(212, 160, 23, 0.55);
}

@media (min-width: 768px) {
  .hero-logo-wrap {
    width: 11.5rem;
    height: 11.5rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1280px) {
  .hero-logo-wrap {
    width: 14rem;
    height: 14rem;
  }
}

.hero-logo-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  box-shadow:
    inset 0 0 0 2px rgba(232, 184, 74, 0.55),
    0 0 22px rgba(212, 160, 23, 0.45);
  animation: glowPulse 2.8s ease 1 both;
  background: none;
  filter: none;
}

.hero-logo-glow::after {
  display: none;
}

.hero-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
  object-fit: cover;
  object-position: center;
  animation: logoSpinOnce 2.6s cubic-bezier(0.22, 0.61, 0.36, 1) 1 both;
}

@keyframes logoSpinOnce {
  0% {
    opacity: 0;
    transform: scale(0.85) rotate(-360deg);
  }
  55% {
    opacity: 1;
    transform: scale(1.04) rotate(-20deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes glowOrbit {
  0% {
    opacity: 0;
    transform: rotate(0deg) scale(0.9);
  }
  15% {
    opacity: 1;
  }
  100% {
    opacity: 0.85;
    transform: rotate(360deg) scale(1);
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* ----- Buttons ----- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0a3d33;
  background: #d4a017;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(212, 160, 23, 0.25);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background: #e8b84a;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 160, 23, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a3d33;
  border: 1.5px solid #0a3d33;
  border-radius: 9999px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
  background: #0a3d33;
  color: #f5f0e8;
  transform: translateY(-2px);
}

.btn-secondary--light {
  color: #f5f0e8;
  border-color: rgba(245, 240, 232, 0.55);
}

.btn-secondary--light:hover {
  background: #f5f0e8;
  color: #0a3d33;
}

/* ----- Section chrome ----- */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c26d4f;
}

.section-eyebrow--light {
  color: #d4a017;
}

.section-title {
  margin-top: 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: #0a3d33;
}

.section-title--light {
  color: #f5f0e8;
}

.gold-rule {
  width: 3.5rem;
  height: 2px;
  margin-top: 1.25rem;
  background: linear-gradient(90deg, #d4a017, #c26d4f);
}

/* ----- Page hero (inner pages) ----- */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--marquee-h) + 6.5rem) 1.25rem 4rem;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 40, 32, 0.65) 0%,
    rgba(10, 61, 51, 0.55) 50%,
    rgba(6, 40, 32, 0.8) 100%
  );
}

/* ----- Gallery filters ----- */
.filter-btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  background: transparent;
  border: 1px solid rgba(245, 240, 232, 0.2);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  color: #f5f0e8;
  border-color: rgba(212, 160, 23, 0.5);
}

.filter-btn.active {
  color: #0a3d33;
  background: #d4a017;
  border-color: #d4a017;
}

/* ----- Masonry gallery ----- */
.gallery-masonry {
  column-count: 1;
  column-gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-masonry {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .gallery-masonry {
    column-count: 3;
    column-gap: 1.25rem;
  }
}

.gallery-card {
  position: relative;
  display: block;
  margin-bottom: 1rem;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 2px;
  background: #062820;
}

@media (min-width: 1024px) {
  .gallery-card {
    margin-bottom: 1.25rem;
  }
}

.gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 40, 32, 0.65) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-card__label {
  position: absolute;
  left: 1rem;
  bottom: 0.85rem;
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5f0e8;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.gallery-card:hover .gallery-card__label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card.is-hidden {
  display: none;
}

/* ----- Highlight / venue cards ----- */
.highlight-card,
.venue-card {
  padding: 1.75rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(92, 64, 51, 0.08);
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(61, 43, 34, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.highlight-card:hover,
.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(61, 43, 34, 0.1);
  border-color: rgba(194, 109, 79, 0.25);
}

.highlight-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  color: #c26d4f;
  background: rgba(194, 109, 79, 0.1);
  border-radius: 9999px;
}

.venue-card {
  padding: 0;
  overflow: hidden;
}

.venue-card__img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  display: block;
}

.venue-card__body {
  padding: 1.5rem 1.35rem 1.75rem;
}

/* ----- Maps ----- */
.map-frame {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(61, 43, 34, 0.12);
}

/* ----- Cider festival festive ----- */
.cider-hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0a3d33;
  background: #d4a017;
  border-radius: 9999px;
}

.cider-feature {
  background: linear-gradient(145deg, #fff 0%, #f5f0e8 100%);
  border: 1px solid rgba(194, 109, 79, 0.15);
  border-radius: 2px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cider-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(61, 43, 34, 0.08);
}

.cider-feature__emoji {
  font-size: 1.75rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.vendors-wanted {
  background:
    linear-gradient(135deg, rgba(10, 61, 51, 0.95), rgba(139, 58, 31, 0.9)),
    #0a3d33;
  border: 2px solid rgba(212, 160, 23, 0.45);
  border-radius: 4px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

/* ----- Footer credit / Facebook ----- */
.footer-facebook-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: rgba(245, 240, 232, 0.08);
  color: #f5f0e8;
  transition: background 0.25s ease, color 0.25s ease;
}

.footer-facebook:hover .footer-facebook-icon {
  background: #d4a017;
  color: #0a3d33;
}

.footer-credit:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ----- SimpleLightbox tweaks ----- */
.sl-overlay {
  background: #062820 !important;
  opacity: 0.92 !important;
}

.sl-wrapper .sl-close,
.sl-wrapper .sl-navigation button {
  color: #f5f0e8 !important;
}

.sl-wrapper .sl-counter {
  color: rgba(245, 240, 232, 0.7) !important;
}

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

  .hero-logo,
  .hero-logo-glow,
  .hero-logo-glow::after,
  .gallery-card img,
  .highlight-card,
  .venue-card,
  .btn-primary,
  .btn-secondary {
    animation: none !important;
    transition: none !important;
  }

  .hero-logo {
    opacity: 1;
    transform: none;
  }
}

/* ----- Social proof bar ----- */
.social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  padding: 1rem 1.25rem;
  background: #0a3d33;
  color: #f5f0e8;
  text-align: center;
  font-size: 0.85rem;
}

.social-proof__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245, 240, 232, 0.9);
}

.social-proof__item strong {
  color: #e8b84a;
  font-weight: 600;
}

.social-proof a {
  color: #e8b84a;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.social-proof a:hover {
  color: #f5f0e8;
}

/* ----- Social icon row ----- */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: 9999px;
  border: 1px solid rgba(245, 240, 232, 0.2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #f5f0e8;
  background: rgba(10, 61, 51, 0.35);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-btn:hover {
  background: rgba(212, 160, 23, 0.18);
  border-color: rgba(212, 160, 23, 0.55);
  color: #e8b84a;
}

.social-btn svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.social-btn--ig svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}

/* ----- Event timeline / cards ----- */
.event-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(92, 64, 51, 0.1);
  border-radius: 0.25rem;
  box-shadow: 0 10px 30px rgba(61, 43, 34, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(61, 43, 34, 0.1);
}

.event-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.event-card:hover .event-card__media img {
  transform: scale(1.05);
}

.event-card__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  background: rgba(10, 61, 51, 0.9);
  color: #e8b84a;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card__badge--upcoming {
  background: rgba(194, 109, 79, 0.95);
  color: #f5f0e8;
}

.event-card__body {
  padding: 1.35rem 1.4rem 1.5rem;
}

.event-card__date {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c26d4f;
}

.event-card__title {
  margin-top: 0.45rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  color: #0a3d33;
  line-height: 1.25;
}

.event-card__text {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #7a5c4a;
}

.event-card__meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.event-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 9999px;
  background: rgba(10, 61, 51, 0.07);
  color: #0a3d33;
  font-size: 0.72rem;
  font-weight: 600;
}

/* Featured event band */
.event-featured {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 0.25rem;
  background: #062820;
  color: #f5f0e8;
}

@media (min-width: 900px) {
  .event-featured {
    grid-template-columns: 1.1fr 1fr;
  }
}

.event-featured__media {
  min-height: 16rem;
  position: relative;
}

.event-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.event-featured__body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .event-featured__body {
    padding: 2.5rem;
  }
}

/* Photo story strip */
.photo-story {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

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

@media (min-width: 1024px) {
  .photo-story {
    grid-template-columns: repeat(4, 1fr);
  }
}

.photo-story a {
  display: block;
  overflow: hidden;
  border-radius: 0.2rem;
  aspect-ratio: 1;
}

.photo-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-story a:hover img {
  transform: scale(1.06);
}

/* Facebook follow CTA panel */
.fb-follow-panel {
  border: 1px solid rgba(212, 160, 23, 0.25);
  background: linear-gradient(135deg, rgba(10, 61, 51, 0.95), rgba(6, 40, 32, 0.98));
  border-radius: 0.25rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .fb-follow-panel {
    padding: 2.25rem 2.5rem;
  }
}

.fb-follow-panel h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: #f5f0e8;
}

.fb-follow-panel p {
  margin-top: 0.75rem;
  color: rgba(245, 240, 232, 0.78);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Trust stats */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .trust-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-stat {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border: 1px solid rgba(10, 61, 51, 0.1);
  background: #fff;
  border-radius: 0.2rem;
}

.trust-stat__num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  color: #0a3d33;
  line-height: 1.1;
}

.trust-stat__label {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a5c4a;
  font-weight: 600;
}

/* ----- Capacity / venue size cards ----- */
.capacity-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem 1.85rem;
  border-radius: 0.25rem;
  background: #fff;
  border: 1px solid rgba(92, 64, 51, 0.12);
  box-shadow: 0 10px 28px rgba(61, 43, 34, 0.06);
  text-align: center;
}

.capacity-card--featured {
  border-color: rgba(212, 160, 23, 0.45);
  box-shadow: 0 14px 36px rgba(212, 160, 23, 0.12);
  background: linear-gradient(180deg, #fff 0%, #fdf8ef 100%);
}

.capacity-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c26d4f;
}

.capacity-card__num {
  margin-top: 0.35rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: #0a3d33;
  font-weight: 500;
}

.capacity-card__unit {
  margin-top: 0.15rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a5c4a;
}

.capacity-card__text {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #7a5c4a;
  flex: 1;
}

.capacity-card__list {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 61, 51, 0.1);
  text-align: left;
  font-size: 0.82rem;
  color: #5c4033;
  line-height: 1.55;
}

.capacity-card__list li {
  padding: 0.2rem 0 0.2rem 1rem;
  position: relative;
}

.capacity-card__list li::before {
  content: "·";
  position: absolute;
  left: 0.15rem;
  color: #c26d4f;
  font-weight: 700;
}

/* Nav brand lockup with circular farm seal */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-lockup__mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  background: transparent;
  overflow: hidden;
  box-shadow: 0 0 0 2px rgba(212, 160, 23, 0.45);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .brand-lockup__mark {
    width: 2.75rem;
    height: 2.75rem;
  }
}

/* ===== Viewport polish: phone / tablet / laptop / desktop ===== */
@media (max-width: 767px) {
  .hero-section {
    min-height: 100svh;
    padding-top: calc(var(--marquee-h) + 4.25rem);
    padding-bottom: 2rem;
  }

  .hero-content h1 {
    font-size: 2.15rem;
    line-height: 1.15;
    padding: 0 0.25rem;
  }

  .brand-lockup {
    max-width: calc(100vw - 5.5rem);
  }

  .brand-lockup__mark {
    width: 2.1rem;
    height: 2.1rem;
  }

  .btn-primary,
  .btn-secondary {
    min-height: 44px;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .venue-card__img,
  .event-card__media img {
    max-height: 14rem;
  }
}

/* iPad / bubble / small laptop */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-content {
    max-width: 40rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .gallery-masonry {
    column-count: 2;
  }

  .section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  }
}

/* Laptop */
@media (min-width: 1024px) and (max-width: 1279px) {
  .hero-logo-wrap {
    width: 12.5rem;
    height: 12.5rem;
  }
}

@media (min-width: 1024px) {
  #site-header nav {
    min-height: 4.25rem;
  }

  .hero-section {
    padding-top: calc(var(--marquee-h) + 6.5rem);
  }

  .hero-content {
    margin-top: 1rem;
  }
}

@media (min-width: 1440px) {
  .hero-logo-wrap {
    width: 15rem;
    height: 15rem;
  }

  .nav-link {
    font-size: 0.78rem;
  }

  .hero-content {
    max-width: 56rem;
  }
}

@media (min-width: 1920px) {
  .hero-logo-wrap {
    width: 15rem;
    height: 15rem;
  }
}

/* Lock: never allow Tailwind top-0 to cover marquee */
#site-header.top-0 {
  top: var(--marquee-h) !important;
}
