/* ===========================
   Hunny Pot Farms - Styles
   Dark + Gold Premium Craft
   =========================== */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --darker: #080808;
  --gold: #c9a227;
  --gold-light: #e0c060;
  --gold-dark: #a8861f;
  --text: #f0f0f0;
  --text-muted: #a0a0a0;
  --border: rgba(201, 162, 39, 0.25);
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden {
  display: none !important;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
}

.btn-gold {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.35);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- Age Gate ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  background: var(--darker);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

.age-gate-content {
  text-align: center;
  max-width: 420px;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid var(--border);
  padding: 48px 36px;
  border-radius: 8px;
}

.age-gate-logo {
  width: 140px;
  margin: 0 auto 28px;
}

.age-gate h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

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

.age-gate-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.age-gate-buttons .btn {
  min-width: 110px;
}

.age-gate-disclaimer {
  font-size: 0.75rem !important;
  color: #666 !important;
  margin-bottom: 0 !important;
  line-height: 1.5;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--gold);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: 
    linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.85)),
    url('../images/lords-cake-2.jpg') center/cover no-repeat;
  padding-top: 72px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-logo {
  width: 180px;
  margin: 0 auto 32px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: #fff;
}

.hero-location {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 36px;
  font-weight: 500;
}

/* ---------- Sections ---------- */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  color: #fff;
}

.section-desc {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---------- About ---------- */
.about {
  background: var(--dark);
}

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

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-stats {
  display: grid;
  gap: 24px;
}

.stat {
  background: rgba(201, 162, 39, 0.06);
  border: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  border-radius: 6px;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Cultivation ---------- */
.cultivation {
  background: var(--black);
}

.cultivation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.cultivation-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 28px;
  border-radius: 6px;
  transition: border-color 0.25s;
}

.cultivation-card:hover {
  border-color: var(--border);
}

.card-icon {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0.85;
}

.cultivation-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}

.cultivation-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Video Placeholder */
.video-placeholder {
  background: var(--dark);
  border: 1px dashed rgba(201, 162, 39, 0.35);
  border-radius: 8px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder-inner {
  text-align: center;
  color: var(--text-muted);
}

.play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.video-placeholder p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 6px;
}

.video-note {
  font-size: 0.85rem;
  color: #666;
}

/* ---------- Quality / Products ---------- */
.quality {
  background: var(--dark);
}

.strain-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 48px;
}

.strain-item {
  background: var(--black);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold);
  text-align: center;
  padding: 18px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: background 0.25s, border-color 0.25s;
}

.strain-item:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold);
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--black);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s, border-color 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
}

.product-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #000;
}

.product-info {
  padding: 20px 18px 24px;
}

.product-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.product-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---------- Contact ---------- */
.contact {
  background: var(--black);
}

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

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.contact-details {
  display: grid;
  gap: 20px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.contact-item a {
  color: var(--text);
  transition: color 0.2s;
}

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

.contact-form {
  display: grid;
  gap: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

.form-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: 4px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--darker);
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  padding: 60px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.footer-logo {
  height: 56px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-instagram {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-instagram:hover {
  opacity: 0.8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-legal p {
  color: #666;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.footer-legal .license {
  color: #999;
  letter-spacing: 0.03em;
}

.footer-legal .disclaimer {
  font-size: 0.75rem;
  line-height: 1.5;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .about-grid,
  .cultivation-grid,
  .product-showcase,
  .strain-list,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    width: 140px;
  }

  .section {
    padding: 72px 0;
  }

  .age-gate-content {
    padding: 36px 24px;
  }
}

@media (max-width: 600px) {
  .age-gate-buttons {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .product-img {
    aspect-ratio: 1/1;
  }
}

/* ---------- Our Story / Timeline ---------- */
.about-intro {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.about-intro .lead {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 16px;
}

.about-intro p {
  color: var(--text-muted);
}

.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 48px 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.timeline-item.reverse {
  direction: rtl;
}

.timeline-item.reverse > * {
  direction: ltr;
}

.timeline-media img,
.timeline-media video {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 4/5;
  background: var(--dark);
  display: block;
}

.timeline-phase {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text);
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.story-video-wrap {
  margin: 56px auto 40px;
  max-width: 480px;
  text-align: center;
}

.story-video {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #000;
  aspect-ratio: 9/16;
  max-height: 640px;
  object-fit: contain;
}

.video-caption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Stats stay centered under story */
.about .about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: center;
}

/* ---------- Operations Media ---------- */
.ops-media {
  margin-top: 48px;
}

.ops-video-main {
  max-width: 480px;
  margin: 0 auto 40px;
  text-align: center;
}

.ops-video {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #000;
  aspect-ratio: 9/16;
  max-height: 640px;
  object-fit: contain;
}

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

.ops-gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--dark);
}

.ops-gallery-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.ops-gallery-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

/* Responsive adjustments for new sections */
@media (max-width: 900px) {
  .timeline-item,
  .timeline-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

  .about .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .ops-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .story-video,
  .ops-video {
    max-height: 520px;
  }
}
