/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #f7f5f0;
  --white: #ffffff;
  --black: #1a1a1a;
  --dark: #2d2a26;
  --text: #4a4640;
  --muted: #8a8580;
  --border: #e5e0d8;
  --green: #3d6b4f;
  --green-light: #4a7d5e;
  --green-bg: #eef3ed;
  --warm: #c9a96e;
  --warm-light: #f5efe3;
  --top-bar-height: 36px;
  --nav-height: 64px;
  --header-height: calc(var(--top-bar-height) + var(--nav-height));
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }


/* ===== AGE GATE POPUP ===== */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.4s ease;
}

.age-gate-hide {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.age-gate-box {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  animation: ageGateIn 0.5s ease;
}

@keyframes ageGateIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.age-gate-logo {
  height: 90px;
  width: auto;
  margin: 0 auto 24px;
}

.age-gate-box h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.age-gate-box p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.age-gate-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.age-gate-yes {
  padding: 12px 32px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-gate-yes:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(61, 107, 79, 0.3);
}

.age-gate-no {
  padding: 12px 32px;
  background: transparent;
  color: var(--muted);
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.age-gate-no:hover {
  border-color: var(--muted);
  color: var(--dark);
}


.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}


/* ===== TOP BAR ===== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  background: var(--green);
  color: rgba(255,255,255,0.85);
  height: var(--top-bar-height);
  font-size: 0.75rem;
}

.top-bar-inner {
  max-width: 100%;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.top-bar-item svg {
  opacity: 0.7;
  flex-shrink: 0;
}

.top-bar-item a {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
}

.top-bar-item a:hover {
  color: white;
}


/* ===== NAV ===== */
.nav {
  position: fixed;
  top: var(--top-bar-height);
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 40px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Scrolled state - adds shadow */
.nav.scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.nav-inner {
  max-width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.nav-cta {
  padding: 8px 22px !important;
  background: var(--green) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--green-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(61, 107, 79, 0.3);
}

/* Hours inside hamburger menu - hidden on desktop */
.nav-hours {
  display: none;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  position: absolute;
  left: 5px;
  transition: all 0.3s;
}

.hamburger span:nth-child(1) { top: 9px; }
.hamburger span:nth-child(2) { top: 15px; }
.hamburger span:nth-child(3) { top: 21px; }

.hamburger.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }


/* ===== HERO ===== */
.hero {
  position: relative;
  height: 65vh;
  margin-top: var(--header-height);
  min-height: 400px;
  max-height: 650px;
  overflow: hidden;
  max-width: calc(100% - 60px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  margin-top: calc(var(--header-height) + 20px);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 40px;
}

.hero-content-inner {
  max-width: 700px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.25);
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: white;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.25rem;
  color: white;
  font-weight: 500;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-white {
  background: white;
  color: var(--dark);
}

.btn-white:hover {
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: white;
}

.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 107, 79, 0.3);
}


/* ===== INTRO STRIP ===== */
.intro-strip {
  background: var(--green);
  max-width: calc(100% - 60px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  margin-top: 16px;
}

.intro-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.intro-item {
  padding: 52px 36px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background 0.3s ease;
}

.intro-item:last-child {
  border-right: none;
}

.intro-item:hover {
  background: rgba(255,255,255,0.08);
}

.intro-item h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.intro-item:hover h3 {
  color: var(--warm);
}

.intro-item p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}


/* ===== ABOUT SECTION (HOME) ===== */
.about-home {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.about-img:hover img {
  transform: scale(1.05);
}

.about-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green);
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.about-home h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-home p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.7;
}

.about-home .btn {
  margin-top: 12px;
}


/* ===== GALLERY ===== */
.gallery {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.gallery-page {
  border-top: none;
  padding-top: 60px;
}

.gallery-header {
  margin-bottom: 40px;
}

.gallery-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

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

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}

.gallery-item-wide {
  grid-column: span 2;
}

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

/* Logo watermark on gallery photos */
.gallery-item::before {
  content: '';
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 70px;
  height: 52px;
  background: url('../images/logo-new.png') no-repeat center / contain;
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
  opacity: 0.7;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s ease;
}

.gallery-item:hover::after {
  background: rgba(0,0,0,0.15);
}

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

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  cursor: default;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close::before,
.lightbox-close::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

.lightbox-close::before { transform: rotate(45deg); }
.lightbox-close::after { transform: rotate(-45deg); }

.lightbox-close:hover::before,
.lightbox-close:hover::after {
  background: rgba(255,255,255,0.7);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-nav::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-prev::after {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-next::after {
  transform: rotate(45deg);
  margin-right: 3px;
}


/* ===== PHOTO BREAK (PARALLAX) ===== */
.photo-break {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.photo-break img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}

.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,107,79,0.75), rgba(0,0,0,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.photo-break-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  color: white;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.photo-break-text p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto;
}


/* ===== DONATE SECTION ===== */
.donate-section {
  padding: 60px 0;
  background: var(--white);
  text-align: center;
}

.donate-inner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.donate-inner p {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 28px;
}

.donate-buttons-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.donate-section .donate-buttons-stack {
  align-items: center;
}


.donate-big-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 11px 36px;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 240px;
}

.donate-big-btn:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 107, 79, 0.3);
}

.donate-paypal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffc439;
  color: #253B80;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 30px;
  border-radius: 50px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  width: 240px;
}

.donate-paypal-btn:hover {
  background: #f0b630;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 196, 57, 0.4);
}

/* Donate Modal */
.donate-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

.donate-modal.active {
  display: flex;
}

.donate-modal-content {
  position: relative;
  width: 90%;
  max-width: 500px;
  height: 80vh;
  max-height: 700px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.donate-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.donate-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s ease;
}

.donate-modal-close:hover {
  background: rgba(0,0,0,0.8);
}

.donate-modal-close::before,
.donate-modal-close::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

.donate-modal-close::before { transform: rotate(45deg); }
.donate-modal-close::after { transform: rotate(-45deg); }

.donate-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}


/* ===== CTA SECTION ===== */
.cta {
  padding: 32px 0;
  background: var(--warm-light);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  color: var(--dark);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cta p {
  color: var(--text);
  margin-top: 4px;
  font-size: 0.85rem;
  max-width: 480px;
  line-height: 1.5;
}

.cta .btn-green {
  background: var(--green);
  color: white;
}

.cta .btn-green:hover {
  background: var(--green-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}


/* ===== PAGE HERO (ABOUT/CONTACT) ===== */
.page-hero {
  padding: 60px 40px;
  margin-top: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.page-hero .about-label {
  margin-bottom: 8px;
}

.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}


/* ===== ABOUT PAGE STORY ===== */
.story {
  padding: 80px 0;
}

.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.story-block:last-child {
  margin-bottom: 0;
}

.story-block.flip > *:first-child {
  order: 2;
}

.story-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.story-img:hover img {
  transform: scale(1.05);
}

.story-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.story-text p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}


/* ===== VALUES (ABOUT) ===== */
.values {
  padding: 40px 0;
  background: transparent;
  border: none;
}

.values-header {
  margin-bottom: 0;
}

.values-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--green);
  border: none;
  border-radius: 12px;
  overflow: hidden;
  max-width: calc(100% - 60px);
  margin: 0 auto;
}

.value-item {
  background: transparent;
  padding: 52px 36px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background 0.3s ease;
}

.value-item:last-child {
  border-right: none;
}

.value-item:hover {
  background: rgba(255,255,255,0.08);
}

.value-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.value-item:hover .value-num {
  color: var(--warm);
}

.value-item h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.value-item:hover h3 {
  color: var(--warm);
}

.value-item p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}


/* ===== MISSION ===== */
.mission {
  padding: 80px 0;
  text-align: center;
}

.mission h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.mission p {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}


/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.contact-info > p {
  color: var(--muted);
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.contact-item {
  margin-bottom: 28px;
}

.contact-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: var(--dark);
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--green);
}

.hours-list {
  margin-top: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  max-width: 260px;
  padding: 6px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 500;
  color: var(--dark);
}

.hours-row .time {
  color: var(--muted);
}

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}

.contact-form:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-form h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #d0cbc3;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--dark);
  background: #faf9f7;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0aaa2;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(61, 107, 79, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  padding: 12px;
  margin-top: 4px;
}


/* ===== MAP ===== */
.map-section {
  line-height: 0;
  max-width: 850px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 350px;
  border-radius: 12px;
}


/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}

.footer > .container {
  max-width: 100%;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
}

.footer-col {}

.footer-brand {
  margin-bottom: 16px;
}

.footer-brand img {
  height: 60px;
  width: auto;
  border-radius: 8px;
  background: white;
  padding: 6px 10px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-desc a {
  transition: color 0.3s ease;
}

.footer-desc a:hover {
  color: white;
}

.footer h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  padding: 5px 0;
  font-size: 0.9rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  margin-top: 10px;
  line-height: 1.4;
}

.footer-address svg {
  opacity: 0.5;
  flex-shrink: 0;
}

.footer-address a {
  transition: color 0.3s ease;
}

.footer-address a:hover {
  color: white;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 48px 0 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-powered {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mindops-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-weight: 600;
  white-space: nowrap;
  font-size: 0;
  vertical-align: middle;
}

.mindops-link span {
  font-size: 0.78rem;
  line-height: 1;
}

.mindops-link svg {
  flex-shrink: 0;
}

.mindops-link:hover {
  opacity: 0.8;
}

.mindops-icon {
  vertical-align: middle;
}


/* ===== FOOTER MAP ===== */
#footer-map {
  height: 150px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: #e8e0d8;
  margin-bottom: 6px;
  z-index: 0;
  filter: contrast(1.15) saturate(1.3);
}

.pin-marker {
  background: none !important;
  border: none !important;
}

.pin-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.pin-dot {
  width: 12px;
  height: 12px;
  background: #e74c3c;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.pin-link:hover .pin-dot {
  transform: scale(1.3);
}

.pin-label {
  margin-top: 4px;
  background: white;
  color: #333;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.pin-link:hover .pin-label {
  background: #e74c3c;
  color: white;
}


/* ===== PRODUCTS PAGE ===== */
.products-section {
  padding: 80px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.product-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

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

.product-card-body {
  padding: 24px;
}

.product-card-tag {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-card-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card-body .btn {
  padding: 8px 20px;
  font-size: 0.82rem;
}

.products-banner {
  margin-top: 60px;
  background: var(--green);
  border-radius: 10px;
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.products-banner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.products-banner p {
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
  font-size: 0.95rem;
}

.products-banner .btn-white:hover {
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}


/* ===== STORE LOCATOR PAGE ===== */
.locator-section {
  padding: 80px 0;
}

#store-map {
  height: 450px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 48px;
  z-index: 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.location-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.location-card:hover,
.location-card.active {
  border-color: var(--green);
  box-shadow: 0 8px 24px rgba(61, 107, 79, 0.12);
  transform: translateY(-2px);
}

.location-card-type {
  display: inline-block;
  background: var(--warm-light);
  color: var(--warm);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.location-card-type.farm {
  background: var(--green-bg);
  color: var(--green);
}

.location-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.location-card-address {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.location-card-address svg {
  vertical-align: -2px;
  margin-right: 4px;
  opacity: 0.5;
}

.location-card-detail {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.location-card-detail strong {
  color: var(--text);
}

.location-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  transition: gap 0.3s ease;
}

.location-card-link:hover {
  gap: 8px;
}


/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for items in a group */
.stagger-1 { transition-delay: 0s; }
.stagger-2 { transition-delay: 0.15s; }
.stagger-3 { transition-delay: 0.3s; }


/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid,
  .story-block,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-info .hours-row {
    margin: 0 auto;
  }

  .contact-info .donate-buttons-stack {
    align-items: center !important;
  }

  .page-hero {
    text-align: center;
  }

  .page-hero .about-label {
    margin-left: auto;
    margin-right: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-home .about-label {
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-header {
    text-align: center;
  }

  .gallery-header .about-label {
    margin-left: auto;
    margin-right: auto;
  }

  .story-block.flip > *:first-child {
    order: unset;
  }

  .intro-strip-inner {
    grid-template-columns: 1fr;
  }

  .intro-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding: 32px 24px;
  }

  .intro-item:last-child {
    border-bottom: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-banner {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* Top bar on mobile - compact, hide hours */
  .top-bar { font-size: 0.65rem; }
  .top-bar-inner { padding: 0 16px; gap: 12px; }
  .top-bar-hours { display: none; }

  /* Show hours in hamburger menu */
  .nav-links .nav-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    margin-top: 4px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--muted);
  }
  .nav-links .nav-hours svg {
    opacity: 0.5;
    flex-shrink: 0;
  }
  .hero { margin-top: calc(var(--header-height) + 12px); height: 65vh; max-width: calc(100% - 24px); margin-left: auto; margin-right: auto; }
  .intro-strip { max-width: calc(100% - 24px); }
  .page-hero { margin-top: var(--header-height); }

  .nav { padding: 0 20px; }
  .hero-content { padding: 0 20px; }
  .page-hero { padding: 48px 20px; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(247, 245, 240, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 16px 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }

  .nav-inner {
    position: relative;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .hamburger {
    margin-left: auto;
  }

  .nav-links.open { display: flex; }
  .hamburger { display: block; }

  .hero h1 { font-size: 2.4rem; }
  .page-hero h1 { font-size: 2rem; }

  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: fit-content; }

  .form-row { grid-template-columns: 1fr; }

  .photo-break { height: 280px; }
  .photo-break-text h2 { font-size: 1.4rem; }

  /* Disable parallax on mobile for performance */
  .photo-break img {
    height: 100%;
    position: static;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  #store-map {
    height: 300px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .lightbox-nav { display: none; }
  .lightbox { padding: 20px; }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  #footer-map {
    max-width: 100%;
  }
}
