/* ═══════════════════════════════════════════
   Humidity Cigars & Tobacco — Shared Styles
   ═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --green-deep: #0b1a0e;
  --green-dark: #0f2114;
  --green-mid: #1a3322;
  --green-accent: #243d2b;
  --gold: #b8943e;
  --gold-light: #d4b261;
  --gold-pale: #e8d5a0;
  --gold-dim: #8a7030;
  --cream: #f0e8d4;
  --white: #faf8f2;
  --red-subtle: #a44a3f;

  --ff-display: 'Cinzel', serif;
  --ff-body: 'Cormorant Garamond', Georgia, serif;

  --nav-height: 3.8rem;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 20px; }

body {
  font-family: var(--ff-body);
  background: var(--green-deep);
  color: var(--cream);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(0,0,0,0.6);
}

main { flex: 1; }

img { max-width: 100%; display: block; }
a { color: var(--gold-light); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-pale); }

/* Noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' seed='2'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── NAVIGATION ── */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: var(--nav-height);
  background: linear-gradient(180deg, var(--green-deep) 70%, transparent);
  transition: background 0.4s;
}
nav.site-nav.scrolled {
  background: rgba(11, 26, 14, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: none;
}
.nav-brand {
  font-family: var(--ff-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo {
  height: 52px;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.4s ease, transform 0.4s ease, max-width 0.4s ease;
  pointer-events: none;
}
nav.site-nav.scrolled .nav-logo {
  max-width: 80px;
  opacity: 1;
  transform: translateY(0);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── SHARED SECTION STYLES ── */
section {
  padding: 7rem 2rem;
  position: relative;
}
section + section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(320px, 60vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,148,62,0.45), transparent);
}
section[id] { scroll-margin-top: var(--nav-height); }

.section-inner {
  max-width: 640px;
  margin: 0 auto;
}
.section-narrow {
  max-width: 500px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.section-rule {
  width: 80px;
  height: 1px;
  background: var(--gold-dim);
  margin: 0 auto 3.5rem;
}

/* Ornamental divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}
.ornament::before,
.ornament::after {
  content: '';
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.ornament span { color: var(--gold-dim); font-size: 1.1rem; }

/* Backgrounds */
.bg-deep { background: var(--green-deep); }
.bg-dark { background: var(--green-dark); }
.bg-grad-1 { background: linear-gradient(180deg, var(--green-dark) 0%, var(--green-deep) 100%); }
.bg-grad-2 { background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-dark) 100%); }
.bg-accent { background: var(--green-mid); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.88rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  text-decoration: none;
}
.btn:hover {
  background: var(--gold-dim);
  color: var(--green-deep);
  border-color: var(--gold-dim);
}
.btn-filled {
  background: var(--gold-dim);
  color: var(--green-deep);
}
.btn-filled:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
}

/* ── FORMS ── */
.form-group {
  margin-bottom: 1.4rem;
}
.form-group label {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--ff-body);
  font-size: 1rem;
  background: rgba(184,148,62,0.05);
  border: 1px solid rgba(184,148,62,0.2);
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(184,148,62,0.35);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ── FOOTER ── */
footer.site-footer {
  padding: 4.2rem 2rem 2.5rem;
  text-align: center;
  background: var(--green-deep);
  border-top: 1px solid rgba(184,148,62,0.08);
}
.footer-brand {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--gold-dim);
  margin-bottom: 0.4rem;
}
.footer-address {
  font-size: 1rem;
  color: rgba(240,232,212,0.45);
  margin-bottom: 0.3rem;
}
.footer-phone {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.footer-phone a { color: var(--gold-dim); }
.footer-phone a:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold-light); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-links a {
  font-size: 0.95rem;
  color: rgba(240,232,212,0.35);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-dim); }

.footer-legal {
  font-size: 0.9rem;
  color: rgba(240,232,212,0.2);
  margin-bottom: 0.3rem;
}
.footer-age {
  font-size: 0.82rem;
  color: rgba(240,232,212,0.2);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav.site-nav { padding: 0 1.5rem; }

  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 80vw);
    height: 100vh;
    flex-direction: column;
    background: var(--green-deep);
    border-left: 1px solid rgba(184,148,62,0.1);
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 0.95rem; }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 98;
  }
  .nav-overlay.open { display: block; }

  section { padding: 4.2rem 1.5rem; }

  .footer-social { gap: 1.2rem; }
}

/* ══════���════════════════════════════════════
   HOME (index.html)
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4.2rem 2rem 2.8rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 38%, rgba(184,148,62,0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--green-deep) 0%, var(--green-dark) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 3rem; bottom: 3rem; left: 3rem; right: 3rem;
  border: 1px solid rgba(184,148,62,0.12);
  pointer-events: none;
}
.hero-logo {
  width: min(440px, 80vw);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  line-height: 1.15;
  margin-bottom: 0.4rem;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.15s forwards;
}
.hero h1 .sub {
  display: block;
  font-size: 0.52em;
  font-weight: 400;
  letter-spacing: 0.22em;
}
.hero-location {
  font-family: var(--ff-display);
  font-size: clamp(0.88rem, 1.8vw, 1.1rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.3s forwards;
}
.hero-tagline {
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  font-style: italic;
  color: var(--gold-pale);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.4s forwards;
}
.opening-banner {
  width: fit-content;
  margin: 2.5rem auto 0;
  padding: 1.2rem 2.5rem;
  border: 1px solid var(--gold-dim);
  background: rgba(184,148,62,0.05);
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.55s forwards;
}
.opening-banner .label {
  font-family: var(--ff-display);
  font-size: 0.88rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.25rem;
}
.opening-banner .date {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.1em;
}

#about p {
  font-size: 1.4rem;
  line-height: 2.0;
  text-align: center;
  margin: 0 auto 2rem;
}

.carousel-wrap { max-width: 880px; margin: 0 auto; }
.offerings-carousel {
  display: flex;
  gap: 3px;
  height: 460px;
  overflow: hidden;
  border: 1px solid rgba(184,148,62,0.15);
  margin-bottom: 2.2rem;
}
.carousel-slide {
  flex: 0.55;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide.active { flex: 3; }
.carousel-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s ease, filter 0.6s ease;
  filter: brightness(0.45) saturate(0.7);
}
.carousel-slide.active img { transform: scale(1.04); filter: brightness(0.72) saturate(1); }
.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,26,14,0.92) 0%, rgba(11,26,14,0.3) 45%, transparent 70%);
  pointer-events: none;
}
.carousel-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s ease;
  z-index: 3;
}
.carousel-slide.active::before { transform: scaleY(1); }
.carousel-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.8rem 1.8rem;
  z-index: 2;
}
.carousel-caption h3 {
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s 0.2s ease, transform 0.5s 0.2s ease;
}
.carousel-caption p {
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s 0.32s ease, transform 0.5s 0.32s ease;
}
.carousel-slide.active .carousel-caption h3,
.carousel-slide.active .carousel-caption p { opacity: 1; transform: translateY(0); }
.carousel-cta { text-align: center; }

#visit .section-inner { max-width: 900px; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.visit-info h3 {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.visit-info address { font-style: normal; font-size: 1.05rem; line-height: 1.8; margin-bottom: 2rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.4rem 0; font-size: 1rem; border-bottom: 1px solid rgba(184,148,62,0.06); }
.hours-table td:first-child {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  width: 50%;
}
.hours-table td:last-child { text-align: right; color: var(--gold-pale); }
.map-container { border: 1px solid rgba(184,148,62,0.12); overflow: hidden; aspect-ratio: 1 / 1; }
.map-container iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.25) contrast(1.05); }

.instagram-section { text-align: center; }
.instagram-section p { font-size: 1.05rem; color: var(--gold-pale); margin-bottom: 2rem; }
.instagram-feed { display: flex; justify-content: center; }
.instagram-feed > * { max-width: 100%; }

.social-cta { text-align: center; }
.social-cta p { font-size: 1.1rem; color: var(--gold-pale); max-width: 500px; margin: 0 auto 2rem; }
.social-buttons { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-display);
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border: 1px solid rgba(184,148,62,0.25);
  color: var(--gold);
  transition: background 0.3s, border-color 0.3s;
}
.social-btn:hover { background: rgba(184,148,62,0.08); border-color: var(--gold); color: var(--gold-light); }
.social-btn svg { width: 16px; height: 16px; fill: currentColor; }

.signup-section { text-align: center; }
.signup-section > .section-inner > p { font-size: 1.05rem; color: var(--gold-pale); max-width: 520px; margin: 0 auto 2rem; }
.signup-form { display: flex; gap: 0; max-width: 460px; margin: 0 auto; }
.signup-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.2rem;
  font-family: var(--ff-body);
  font-size: 1rem;
  background: rgba(184,148,62,0.05);
  border: 1px solid rgba(184,148,62,0.2);
  border-right: none;
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s;
}
.signup-form input[type="email"]::placeholder { color: rgba(184,148,62,0.35); }
.signup-form input[type="email"]:focus { border-color: var(--gold); }
.signup-form button {
  padding: 0.85rem 1.8rem;
  font-family: var(--ff-display);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold-dim);
  color: var(--green-deep);
  border: 1px solid var(--gold-dim);
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}
.signup-form button:hover { background: var(--gold); border-color: var(--gold); }
.signup-privacy {
  font-size: 0.9rem;
  color: rgba(240,232,212,0.35);
  margin-top: 1rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.signup-success { color: var(--gold-light); font-size: 1.1rem; padding: 0.8rem 0; }
.signup-error { color: var(--red-subtle); font-size: 1rem; margin-top: 0.7rem; }

/* ═══════════════════════════════════════════
   INNER PAGES (contact, gallery, products)
   ═══════════════════════════════════════════ */

.page-header {
  padding: 5.6rem 2rem 2.5rem;
  text-align: center;
  background: var(--green-deep);
}
.page-header h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.page-header p { font-size: 1.1rem; font-style: italic; color: var(--gold-pale); }
.page-header--gradient {
  background:
    radial-gradient(ellipse 50% 40% at 50% 60%, rgba(184,148,62,0.05) 0%, transparent 70%),
    var(--green-deep);
  padding-bottom: 2.8rem;
}
.page-header--gradient p { max-width: 520px; margin: 0 auto; }

/* ── CONTACT ── */
.contact-section { padding: 7rem 2rem; background: var(--green-dark); }
.contact-grid { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h3 {
  font-family: var(--ff-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  margin-top: 2rem;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info address { font-style: normal; font-size: 1.05rem; line-height: 1.8; }
.contact-info .hours-mini td { padding: 0.3rem 0; font-size: 0.95rem; border-bottom: 1px solid rgba(184,148,62,0.06); }
.contact-info .hours-mini td:first-child { font-family: var(--ff-display); font-size: 0.9rem; letter-spacing: 0.06em; color: var(--gold); width: 55%; }
.contact-info .hours-mini td:last-child { text-align: right; color: var(--gold-pale); }
.contact-form-wrap h2 { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 600; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-submit { margin-top: 0.5rem; }
.form-status { margin-top: 1rem; font-size: 0.95rem; }
.form-status.success { color: var(--gold-light); }
.form-status.error { color: var(--red-subtle); }
.contact-map { max-width: 760px; margin: 4rem auto 0; height: 300px; border: 1px solid rgba(184,148,62,0.1); overflow: hidden; }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.25) contrast(1.05); }

/* ── GALLERY ── */
.gallery-section { padding: 7rem 2rem; background: var(--green-dark); }
.gallery-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184,148,62,0.08);
  cursor: pointer;
  transition: border-color 0.4s;
}
.gallery-item--feature { grid-column: span 2; grid-row: span 2; }
.gallery-item--tall    { grid-row: span 2; }
.gallery-item:hover { border-color: rgba(184,148,62,0.25); }
.gallery-item img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 0.8rem;
  background: linear-gradient(transparent, rgba(11,26,14,0.85));
  font-family: var(--ff-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-pale);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}
.gallery-item:hover .caption { opacity: 1; transform: translateY(0); }
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gold-dim);
  font-style: italic;
  padding: 4rem 0;
}
.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2.5rem auto 0;
}
.gallery-page-btn {
  font-family: var(--ff-display);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  background: none;
  border: 1px solid rgba(184,148,62,0.25);
  padding: 0.6rem 1.6rem;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.gallery-page-btn:hover:not(:disabled) { color: var(--gold); border-color: var(--gold); }
.gallery-page-btn:disabled { opacity: 0.3; pointer-events: none; }
.gallery-page-indicator {
  font-family: var(--ff-display);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  min-width: 7rem;
  text-align: center;
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11,26,14,0.97);
  backdrop-filter: blur(16px);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(184,148,62,0.12);
  cursor: default;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--gold-dim);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 1;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(184,148,62,0.25);
  color: var(--gold-dim);
  font-size: 1.4rem;
  line-height: 1;
  padding: 1rem 1.3rem;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  z-index: 1;
}
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); border-color: var(--gold); }
.lightbox-prev:disabled, .lightbox-next:disabled { opacity: 0.2; pointer-events: none; }
.gallery-cta { max-width: 500px; margin: 3rem auto 0; text-align: center; color: var(--gold-pale); font-size: 1rem; }
.gallery-cta a { color: var(--gold-light); }

/* ── PRODUCTS ── */
.product-category { padding: 7rem 2rem; }
.product-category:nth-child(even) { background: var(--green-dark); }
.product-category:nth-child(odd) { background: var(--green-deep); }
.category-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.category-inner.reverse { direction: rtl; }
.category-inner.reverse > * { direction: ltr; }
.category-text h2 { font-family: var(--ff-display); font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 600; color: var(--gold); letter-spacing: 0.08em; margin-bottom: 0.8rem; }
.category-text p { font-size: 1.05rem; line-height: 1.8; color: var(--cream); margin-bottom: 1rem; }
.category-text .note { font-size: 0.95rem; font-style: italic; color: var(--gold-dim); }
.category-image {
  aspect-ratio: 4/3;
  background: rgba(184,148,62,0.04);
  border: 1px solid rgba(184,148,62,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.category-image img { width: 100%; height: 100%; object-fit: cover; }
.category-image .placeholder { color: var(--gold-dim); font-size: 0.92rem; font-style: italic; text-align: center; padding: 1rem; }
.products-cta { text-align: center; padding: 7rem 2rem; background: var(--green-deep); }
.products-cta p { font-size: 1.1rem; color: var(--gold-pale); max-width: 480px; margin: 0 auto 1.5rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.form-temp-notice { font-family: var(--ff-body); font-size: 1.05rem; color: var(--cream); opacity: 0.8; line-height: 1.7; margin-bottom: 1.5rem; }
.form-temp-cta { display: inline-block; margin-top: 0; }

/* ── PAGE-SPECIFIC RESPONSIVE ── */
@media (max-width: 768px) {
  .hero::before { top: 1.5rem; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; }
  .offerings-carousel { flex-direction: column; height: auto; }
  .carousel-slide { flex: none; height: 240px; }
  .carousel-slide.active { flex: none; height: 340px; }
  .visit-grid { grid-template-columns: 1fr; gap: 2rem; }
  .map-container { min-height: 250px; }
  .signup-form { flex-direction: column; }
  .signup-form input[type="email"] { border-right: 1px solid rgba(184,148,62,0.2); border-bottom: none; }
}
@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item--feature, .gallery-item--tall { grid-column: unset; grid-row: unset; }
  .category-inner,
  .category-inner.reverse { grid-template-columns: 1fr; direction: ltr; gap: 1.5rem; }
  .category-image { order: -1; }
}
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-prev, .lightbox-next { padding: 0.75rem 0.9rem; }
}

/* ═══════════════════════════════════════════
   Subscribe Modal
   ═══════════════════════════════════════════ */

#subscribe-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 6, 0.88);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  animation: modal-backdrop-in 0.45s ease forwards;
}
#subscribe-backdrop[hidden] { display: none; }
#subscribe-backdrop.is-closing { animation: modal-backdrop-out 0.28s ease forwards; }
#subscribe-backdrop.is-closing #subscribe-modal { animation: modal-out 0.28s ease forwards; }

@keyframes modal-backdrop-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modal-backdrop-out {
  to { opacity: 0; }
}

#subscribe-modal {
  position: relative;
  background: var(--green-deep);
  border: 1px solid var(--gold);
  max-width: 460px;
  width: 100%;
  padding: 3rem 2.75rem 2.5rem;
  text-align: center;
  box-shadow:
    0 0 0 5px rgba(184, 148, 62, 0.07),
    0 40px 90px rgba(0, 0, 0, 0.65),
    inset 0 0 70px rgba(0, 0, 0, 0.25);
  animation: modal-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Inner decorative frame */
#subscribe-modal::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(184, 148, 62, 0.16);
  pointer-events: none;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(-22px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)     scale(1);    }
}
@keyframes modal-out {
  to { opacity: 0; transform: translateY(12px) scale(0.97); }
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--gold-dim);
  font-size: 2.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  font-family: var(--ff-body);
  transition: color 0.2s;
}
.modal-close:hover,
.modal-close:focus-visible { color: var(--gold-light); outline: none; }

.modal-eyebrow {
  font-family: var(--ff-display);
  font-size: 1.04rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.modal-headline {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}
.modal-brand { color: var(--gold-light); font-style: normal; }
.modal-rule {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.modal-rule-gem { color: var(--gold-dim); font-size: 1.2rem; }
.modal-body-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gold-pale);
  margin-bottom: 1.8rem;
}
#modal-form {
  margin-bottom: 1.5rem;
}
#modal-email {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  background: rgba(184, 148, 62, 0.06);
  border: 1px solid rgba(184, 148, 62, 0.25);
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s;
  margin-bottom: 0.6rem;
}
#modal-email::placeholder { color: rgba(184, 148, 62, 0.3); }
#modal-email:focus { border-color: var(--gold); }
.modal-field-error {
  color: var(--red-subtle);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}
#modal-submit {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold-dim);
  color: var(--green-deep);
  border: 1px solid var(--gold-dim);
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
#modal-submit:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.modal-success {
  text-align: center;
}
.modal-success-headline {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.modal-success-sub {
  font-size: 0.9rem;
  color: var(--gold-pale);
}
