/*
Theme Name: Supernova Farms
Description: Child theme for SupernovaFarms.com - Complete WordPress implementation of index4.html design
Version: 1.0
Author: Supernova Farms Inc.
Template: twentytwentyfive
*/

/* ═══════════════════════════════════════════════════════════
   GOOGLE FONTS
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════════════════════════
   GLOBAL RESET & BASE STYLES
   ═══════════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
}

body {
  background: #0D0D0D;
  color: #F8F7F4;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

:root {
  --gold: #C8A951;
  --black: #0D0D0D;
  --dark-grey: #2E2E2E;
  --white: #F8F7F4;
  --grey: #A8A8A8;
  --violet: #6B3FA0;
  --teal: #1B8A7A;
}

::selection {
  background: rgba(200,169,81,0.3);
}

button {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

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

input, textarea, select {
  color-scheme: dark;
  -webkit-appearance: none;
  font-family: 'Inter', sans-serif;
}

input::placeholder, textarea::placeholder {
  color: rgba(168,168,168,0.4);
}

input:focus, textarea:focus, select:focus {
  border-color: rgba(200,169,81,0.5) !important;
  outline: none;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #0D0D0D;
}

::-webkit-scrollbar-thumb {
  background: rgba(200,169,81,0.3);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════
   WORDPRESS THEME OVERRIDES
   ═══════════════════════════════════════════════════════════ */

.wp-site-blocks {
  padding: 0 !important;
}

body.page,
body.single-strain,
body.post-type-archive-strain {
  padding: 0;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */

.snf-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.97);
  border-bottom: 1px solid rgba(200,169,81,0.15);
  transition: background 0.3s, border-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 60px;
}

.snf-nav.transparent {
  background: transparent;
  border-bottom: none;
}

/* WordPress admin bar offset — shift fixed nav down when admin bar present */
body.admin-bar .snf-nav {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .snf-nav {
    top: 46px;
  }
}

.snf-logo {
  position: absolute;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.snf-logo-top {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1;
}

.snf-logo-btm {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.1em;
  line-height: 1;
}

.snf-nav-links {
  display: none;
  gap: 32px;
}

.snf-nav-link {
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.snf-nav-link:hover,
.snf-nav-link.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Hamburger menu */
.snf-hamburger {
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.snf-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}

.snf-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.snf-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.snf-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu overlay */
.snf-mobile-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(13,13,13,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.snf-mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.snf-mobile-menu .snf-nav-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border: none;
}

.snf-mobile-menu-social {
  margin-top: 20px;
  display: flex;
  gap: 16px;
}

.snf-mobile-menu-social a {
  color: var(--grey);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.snf-mobile-menu-social a:hover {
  color: var(--white);
}

@media (min-width: 768px) {
  .snf-nav-links {
    display: flex;
  }
  .snf-hamburger,
  .snf-mobile-menu {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */

.snf-footer {
  background: var(--dark-grey);
  border-top: 1px solid rgba(200,169,81,0.15);
  padding: 48px 24px 32px;
}

.snf-footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.snf-footer-logo {
  margin-bottom: 32px;
}

.snf-footer-logo-top {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1;
}

.snf-footer-logo-btm {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: -4px;
  line-height: 1;
}

.snf-footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--grey);
  margin-top: 12px;
  line-height: 1.6;
  white-space: nowrap;
}

.snf-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.snf-footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.snf-footer-link {
  display: block;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--grey);
  padding: 4px 0;
  text-align: left;
  transition: color 0.2s;
  cursor: pointer;
}

.snf-footer-link:hover {
  color: var(--white);
}

.snf-footer-brand {
  border-top: 1px solid rgba(200,169,81,0.12);
  padding-top: 24px;
  margin-bottom: 24px;
}

.snf-footer-quote {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(248,247,244,0.55);
  line-height: 1.85;
  font-style: italic;
  border-left: 2px solid rgba(200,169,81,0.35);
  padding-left: 16px;
}

.snf-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.snf-footer-copyright,
.snf-footer-legal {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(168,168,168,0.5);
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — HERO SECTION
   ═══════════════════════════════════════════════════════════ */

.home-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: #0D0D0D;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero-galaxy-bg {
  position: absolute;
  inset: 0;
  background-image: url('uploads/hero-galaxy.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: brightness(0.55) saturate(1.2);
}

.hero-galaxy-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 60% 40%, rgba(107,63,160,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 60%, rgba(200,169,81,0.08) 0%, transparent 50%);
  mix-blend-mode: screen;
}

.hero-galaxy-bg::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(13,13,13,1) 0%, rgba(13,13,13,0.75) 35%, rgba(13,13,13,0.2) 70%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-location {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-wordmark-top,
.hero-wordmark-btm {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 20vw, 120px);
  letter-spacing: 0.06em;
  line-height: 0.9;
}

.hero-wordmark-top {
  color: var(--white);
}

.hero-wordmark-btm {
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  margin: 0 auto 40px;
  white-space: nowrap;
  max-width: none;
}

@media (max-width: 520px) {
  .hero-tagline {
    white-space: normal;
    max-width: 300px;
  }
}

.hero-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.hero-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-features-row {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-features-row span {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200,169,81,0.75);
  padding: 6px 10px;
  white-space: nowrap;
}

.hero-features-row-secondary span {
  color: rgba(168,168,168,0.5);
}

.hero-features-sep {
  color: rgba(200,169,81,0.2) !important;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(168,168,168,0.4);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — BELIEVE SECTION
   ═══════════════════════════════════════════════════════════ */

.believe-section {
  background: var(--black);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.believe-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,169,81,0.04) 0%, transparent 65%);
}

.believe-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
  justify-content: center;
}

.believe-image {
  flex: 1 1 280px;
  max-width: 360px;
  aspect-ratio: 4/5;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(200,169,81,0.18);
}

.believe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.believe-text {
  flex: 1 1 280px;
  max-width: 420px;
}

.believe-overline {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.believe-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 9vw, 50px);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.believe-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 20px;
}

.believe-body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 32px;
}

.believe-cta {
  display: inline-block;
  background: none;
  border: 1px solid rgba(200,169,81,0.45);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}

.believe-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — STRAIN CAROUSEL SECTIONS
   ═══════════════════════════════════════════════════════════ */

.strain-section {
  position: relative;
  margin-top: var(--strain-section-gap-above, 0px);
  margin-bottom: var(--strain-section-gap-below, 0px);
  min-height: calc(560px + var(--strain-section-extra-height, 0px));
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--strain-section-padding-top, 0px) 24px var(--strain-section-padding-bottom, 0px);
  text-decoration: none;
  color: inherit;
}

.strain-section-image {
  position: relative;
  width: var(--strain-image-size-home, 280px);
  height: var(--strain-image-size-home, 280px);
  object-fit: contain;
  margin-bottom: var(--strain-section-image-gap, 24px);
  z-index: 1;
  opacity: 0.95;
}

.strain-section-number {
  position: absolute;
  top: 72px;
  right: 24px;
  z-index: 2;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(200,169,81,0.4);
}

.strain-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to bottom, rgba(13,13,13,0.7) 0%, transparent 100%);
  pointer-events: none;
}

.strain-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(13,13,13,0.97) 0%, rgba(13,13,13,0.5) 60%, transparent 100%);
  pointer-events: none;
}

.strain-section-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.strain-section-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 14vw, 88px);
  color: var(--white);
  letter-spacing: 0.05em;
  margin: 8px 0 4px;
  line-height: 0.95;
}

.strain-section-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--grey);
  font-style: italic;
  margin-bottom: 20px;
  max-width: 280px;
  text-align: center;
}

.strain-section-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.strain-section-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.strain-section-thc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(168,168,168,0.5);
}

.strain-section-side-label {
  position: absolute;
  right: 16px;
  bottom: 40%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200,169,81,0.3);
}

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE — ABOUT SECTION
   ═══════════════════════════════════════════════════════════ */

.about-section {
  background: var(--dark-grey);
  border-top: 1px solid rgba(200,169,81,0.1);
  border-bottom: 1px solid rgba(200,169,81,0.1);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
  justify-content: center;
}

.about-text {
  flex: 1 1 280px;
  max-width: 420px;
}

.about-overline {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 10vw, 56px);
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 20px;
}

.about-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 20px;
}

.about-body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 28px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.about-feature-badge {
  padding: 5px 12px;
  border: 1px solid rgba(200,169,81,0.25);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--white);
  letter-spacing: 0.04em;
}

.about-cta {
  display: inline-block;
  background: var(--gold);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--black);
  padding: 13px 28px;
  border-radius: 2px;
  transition: opacity 0.2s;
}

.about-cta:hover {
  opacity: 0.85;
}

.about-image {
  flex: 1 1 280px;
  max-width: 360px;
  aspect-ratio: 4/5;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(200,169,81,0.15);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   TYPE BADGES
   ═══════════════════════════════════════════════════════════ */

.badge {
  display: inline-block;
  padding: 4px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  color: var(--white);
}

.badge-indica {
  background: var(--violet);
}

.badge-sativa {
  background: var(--teal);
}

.badge-hybrid {
  background: var(--gold);
  color: var(--black);
}

/* Small variant */
.badge-small {
  padding: 3px 10px;
  font-size: 10px;
}

/* ═══════════════════════════════════════════════════════════
   GENETICS ARCHIVE PAGE
   ═══════════════════════════════════════════════════════════ */

.genetics-archive {
  background: var(--black);
  min-height: 100vh;
  padding-top: 120px;
}

.genetics-inner {
  padding: 0 24px 80px;
  max-width: 640px;
  margin: 0 auto;
}

.genetics-overline {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.genetics-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 72px);
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 16px;
}

.genetics-intro {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 40px;
}

.genetics-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.genetics-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.2s;
}

.genetics-item:hover {
  padding-left: 8px;
}

.genetics-item-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.genetics-item-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: rgba(200,169,81,0.4);
  font-weight: 700;
  min-width: 24px;
}

.genetics-item-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.06em;
}

.genetics-item-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.genetics-item-thc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--grey);
}

.genetics-item-arrow {
  color: var(--gold);
  font-size: 16px;
}

/* ═══════════════════════════════════════════════════════════
   STRAIN DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */

.strain-hero {
  position: relative;
  margin-top: var(--strain-hero-gap-above, 0px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: var(--strain-hero-padding-top, 0px) 24px var(--strain-hero-padding-bottom, 32px);
}

.strain-hero-image {
  position: relative;
  width: var(--strain-image-size-strain, 280px);
  height: var(--strain-image-size-strain, 280px);
  object-fit: contain;
  margin-bottom: var(--strain-hero-image-gap, 24px);
  z-index: 1;
}
.strain-hero-overlay {
  display: none;
}

.strain-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.strain-hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 12vw, 80px);
  color: var(--white);
  letter-spacing: 0.06em;
  margin: 8px 0 4px;
  line-height: 1;
}

.strain-hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--grey);
  font-style: italic;
}

.strain-body {
  background: var(--black);
  padding: var(--strain-hero-gap-below, 0px) 24px 40px;
}

.strain-body-inner {
  max-width: 600px;
  margin: 0 auto;
}

.strain-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,169,81,0.12);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 36px;
  border: 1px solid rgba(200,169,81,0.15);
}

.strain-stat {
  background: var(--dark-grey);
  padding: 20px 12px;
  text-align: center;
}

.strain-stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.strain-stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--white);
  letter-spacing: 0.05em;
}

.strain-description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 36px;
}

.strain-meta {
  margin-bottom: 28px;
}

.strain-section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.strain-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.strain-badge {
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--grey);
  letter-spacing: 0.06em;
}

.strain-badge-secondary {
  background: transparent;
  border: 1px solid rgba(200,169,81,0.3);
  color: var(--white);
}

.strain-cta {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  border-radius: 2px;
  margin-bottom: 40px;
  transition: opacity 0.2s;
  cursor: pointer;
}

.strain-cta:hover {
  opacity: 0.85;
}

.strain-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.strain-nav-item {
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.strain-nav-prev {
  text-align: left;
}

.strain-nav-next {
  text-align: right;
}

.strain-nav-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.strain-nav-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   HOW WE GROW PAGE
   ═══════════════════════════════════════════════════════════ */

.hwg-hero {
  background: radial-gradient(ellipse at 50% 0%, rgba(200,169,81,0.07) 0%, transparent 55%);
  padding: 140px 24px 60px;
}

.hwg-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.hwg-overline {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.hwg-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 14vw, 80px);
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 16px;
}

.hwg-intro {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 48px;
  max-width: 500px;
}

.hwg-canopy {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.hwg-canopy img {
  width: 100%;
  display: block;
  border-radius: 4px;
  border: 1px solid rgba(200,169,81,0.15);
  max-height: 480px;
  object-fit: cover;
  object-position: center 40%;
}

.hwg-canopy-caption {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(168,168,168,0.5);
  margin-top: 12px;
  text-align: center;
}

.hwg-principles {
  background: var(--dark-grey);
  border-top: 1px solid rgba(200,169,81,0.1);
  border-bottom: 1px solid rgba(200,169,81,0.1);
  padding: 72px 24px;
}

.hwg-principles-inner {
  max-width: 940px;
  margin: 0 auto;
}

.hwg-section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 9vw, 52px);
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  line-height: 1;
}

.hwg-principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.hwg-principle {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,169,81,0.12);
  border-radius: 3px;
  padding: 28px 24px;
}

.hwg-principle-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,81,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 16px;
}

.hwg-principle-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  line-height: 1.35;
}

.hwg-principle-body {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--grey);
  line-height: 1.75;
}

.hwg-process {
  padding: 80px 24px 100px;
}

.hwg-process-inner {
  max-width: 940px;
  margin: 0 auto;
}

.hwg-process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 36px;
}

.hwg-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hwg-step-image {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(200,169,81,0.15);
}

.hwg-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hwg-step-content {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.hwg-step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: rgba(200,169,81,0.45);
  letter-spacing: 0.15em;
  flex-shrink: 0;
}

.hwg-step-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.hwg-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--grey);
  line-height: 1.75;
  border-left: 2px solid rgba(200,169,81,0.2);
  padding-left: 14px;
}

.hwg-statement {
  background: var(--dark-grey);
  border-top: 1px solid rgba(200,169,81,0.1);
  padding: 64px 24px;
  text-align: center;
}

.hwg-statement-inner {
  max-width: 560px;
  margin: 0 auto;
}

.hwg-statement-quote {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: italic;
  color: rgba(248,247,244,0.6);
  line-height: 1.9;
}

.hwg-statement-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 28px auto 0;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */

.contact-page {
  background: var(--black);
  min-height: 100vh;
  padding-top: 120px;
}

.contact-inner {
  padding: 0 24px 80px;
  max-width: 640px;
  margin: 0 auto;
}

.contact-overline {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 72px);
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 16px;
}

.contact-intro {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-location {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(168,168,168,0.5);
  margin-bottom: 40px;
}

.contact-form {
  /* Contact Form 7 will be rendered here via shortcode */
}

/* Contact Form 7 Styling */
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wpcf7-form p {
  margin: 0;
}

.wpcf7-form label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  display: block;
  margin-bottom: 6px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  background: var(--dark-grey);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  box-sizing: border-box;
}

.wpcf7-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8A8A8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  padding-right: 40px;
}

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

.wpcf7-form input[type="submit"] {
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 2px;
  margin-top: 4px;
  transition: opacity 0.2s;
}

.wpcf7-form input[type="submit"]:hover {
  opacity: 0.85;
}

.wpcf7-response-output {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 2px;
  margin-top: 16px;
}

.wpcf7-mail-sent-ok {
  background: rgba(27,138,122,0.15);
  border: 1px solid rgba(27,138,122,0.3);
  color: #1B8A7A;
}

.wpcf7-validation-errors {
  background: rgba(200,80,80,0.15);
  border: 1px solid rgba(200,80,80,0.3);
  color: #C85050;
}

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES (Privacy Policy, Terms & Conditions)
   ═══════════════════════════════════════════════════════════ */

.legal-page {
  background: var(--black);
  min-height: 100vh;
  padding-top: 100px;
}

.legal-inner {
  padding: 40px 24px 80px;
  max-width: 640px;
  margin: 0 auto;
}

.legal-overline {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.legal-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 10vw, 60px);
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 8px;
}

.legal-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 28px;
}

.legal-body p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-body h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 36px;
  margin-bottom: 10px;
}

.legal-body ul {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.85;
  padding-left: 20px;
  margin-top: 8px;
  margin-bottom: 16px;
}

.legal-body li {
  margin-bottom: 8px;
}

.legal-body strong {
  color: var(--white);
  font-weight: 600;
}

.legal-body a {
  color: var(--gold);
  text-decoration: none;
}

.legal-body a:hover {
  text-decoration: underline;
}

.legal-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.legal-footer p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(168,168,168,0.35);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   SAMPLE FEEDBACK PAGE
   ═══════════════════════════════════════════════════════════ */

.sample-feedback-page {
  min-height: 100vh;
  padding: 120px 24px 80px;
  background: var(--black);
}

.sample-feedback-inner {
  max-width: 640px;
  margin: 0 auto;
}

.sample-feedback-overline {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.sample-feedback-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 72px);
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1;
}

.sample-feedback-intro-static {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(248,247,244,0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}

.sample-feedback-intro {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 48px;
}

.sample-feedback-form {
  margin-top: 48px;
}

/* Feedback form sections */
.feedback-form-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(200,169,81,0.12);
}

.feedback-form-section:last-of-type {
  border-bottom: none;
}

.feedback-form-section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

/* Form inputs - match contact form styling */
.sample-feedback-form input[type="text"],
.sample-feedback-form input[type="email"],
.sample-feedback-form input[type="tel"],
.sample-feedback-form input[type="number"],
.sample-feedback-form input[type="date"],
.sample-feedback-form select,
.sample-feedback-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(46,46,46,0.5);
  border: 1px solid rgba(200,169,81,0.2);
  border-radius: 2px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
}

.sample-feedback-form input:focus,
.sample-feedback-form select:focus,
.sample-feedback-form textarea:focus {
  outline: none;
  border-color: rgba(200,169,81,0.5);
}

/* Checkboxes and radios */
.sample-feedback-form .wpcf7-list-item {
  display: block;
  margin: 8px 0;
}

.sample-feedback-form .wpcf7-list-item label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sample-feedback-form input[type="checkbox"],
.sample-feedback-form input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}

/* Number input for 1-10 scale */
.sample-feedback-form input[type="number"] {
  max-width: 120px;
}

/* Conditional "Other" text inputs */
.sample-feedback-form .conditional-other {
  margin-top: 12px;
  margin-left: 28px;
}

.sample-feedback-form .conditional-other input {
  font-size: 13px;
  padding: 10px 14px;
}

/* Submit button */
.sample-feedback-form input[type="submit"] {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 14px 48px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.2s;
}

.sample-feedback-form input[type="submit"]:hover {
  opacity: 0.85;
}

/* Labels */
.sample-feedback-form label {
  display: block;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(248,247,244,0.85);
  line-height: 1.6;
}

/* CHECKBOX VISIBILITY FIX — make unchecked state visible on dark bg */
.sample-feedback-form input[type="checkbox"],
.sample-feedback-form input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  background: rgba(46,46,46,0.8);
  border: 1px solid rgba(200,169,81,0.5);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.sample-feedback-form input[type="radio"] {
  border-radius: 50%;
}

.sample-feedback-form input[type="checkbox"]:checked,
.sample-feedback-form input[type="radio"]:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.sample-feedback-form input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.sample-feedback-form input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--black);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.sample-feedback-form input[type="checkbox"]:focus,
.sample-feedback-form input[type="radio"]:focus {
  outline: 2px solid rgba(200,169,81,0.3);
  outline-offset: 2px;
}

/* CONDITIONAL-OTHER SPACING FIX — tighten gap after checkbox groups */
.sample-feedback-form label.conditional-other {
  margin-top: -8px;
  margin-bottom: 24px;
}

/* Ensure the wpcf7 checkbox/radio group container doesn't add extra space */
.sample-feedback-form .wpcf7-checkbox,
.sample-feedback-form .wpcf7-radio {
  display: block;
  margin-top: 4px;
}

/* ───────────────────────────────────────────────────────
   PATCH 2: spacing + indent fixes (May 2026)
   ─────────────────────────────────────────────────────── */

/* Remove default <p> margins inside the feedback form so spacing is
   controlled by the form's own label margins, not WordPress wpautop */
.sample-feedback-form > div.feedback-form-section p {
  margin: 0 0 24px 0;
  padding: 0;
}

.sample-feedback-form > div.feedback-form-section p:last-child {
  margin-bottom: 0;
}

/* Make the conditional-other label sit immediately below its
   associated checkbox group <p> with a tight gap */
.sample-feedback-form label.conditional-other {
  display: block;
  margin-top: 4px !important;
  margin-bottom: 0 !important;
  margin-left: 0;
  padding-top: 0;
}

/* The conditional-other label is inside the same <p> as the
   checkbox <label>, separated by a <br>. The <br> adds a small
   gap. Pull the conditional-other up to remove ALL extra space. */
.sample-feedback-form p label + br + label.conditional-other {
  margin-top: -8px !important;
}

/* Reset all list items (checkbox/radio options) to consistent
   block layout with zero left margin — fix the "Fresh" indent */
.sample-feedback-form .wpcf7-list-item {
  display: block !important;
  margin: 8px 0 8px 0 !important;
  padding: 0 !important;
}

.sample-feedback-form .wpcf7-list-item.first {
  margin-top: 0 !important;
}

.sample-feedback-form .wpcf7-list-item.last {
  margin-bottom: 0 !important;
}

/* Ensure the inner label inside each list item has zero offset */
.sample-feedback-form .wpcf7-list-item label {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
}

/* The list-item-label span sits inside the inner label after the
   checkbox input — explicitly set no offset */
.sample-feedback-form .wpcf7-list-item-label {
  margin-left: 0;
  padding-left: 0;
}

/* Manual spacer for breathing room between checkbox/radio groups
   after conditional-other text inputs. Used as
   <div class="feedback-form-spacer"></div> directly in CF7 form
   source. */
.feedback-form-spacer {
  padding-bottom: 20px;
}

/* CF7 validation and response messages */
.sample-feedback-form .wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 6px;
}

.sample-feedback-form .wpcf7-response-output {
  margin: 24px 0;
  padding: 14px 18px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

.sample-feedback-form .wpcf7-mail-sent-ok {
  background: rgba(27,138,122,0.15);
  border: 1px solid rgba(27,138,122,0.4);
  color: #5DFFC9;
}

.sample-feedback-form .wpcf7-validation-errors {
  background: rgba(255,107,107,0.1);
  border: 1px solid rgba(255,107,107,0.3);
  color: #ff9999;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .contact-page,
  .sample-feedback-page,
  .genetics-archive {
    padding-top: 100px;
  }

  .contact-inner,
  .sample-feedback-page,
  .genetics-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sample-feedback-page {
    padding: 100px 20px 60px;
  }
}

/* ═══════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════ */

.page-padding {
  padding-top: 80px;
}

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

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

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
  .snf-nav-links {
    display: flex !important;
  }
  .snf-hamburger,
  .snf-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .genetics-item-name {
    font-size: 22px;
  }
  
  .strain-section-name {
    font-size: clamp(42px, 14vw, 88px);
  }
}

/* ═══════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════ */

@media print {
  .snf-nav,
  .snf-footer,
  .hero-scroll-indicator,
  .strain-section-side-label,
  button {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* ═══════════════════════════════════════════════════════════
   GENERIC PAGE TEMPLATE — fallback for pages without custom templates
   (Privacy Policy, Terms & Conditions)
   ═══════════════════════════════════════════════════════════ */

.generic-page {
  background: #0D0D0D;
  padding: 120px 24px 80px;
  min-height: calc(100vh - 60px);
}

.generic-page-inner {
  max-width: 640px;
  margin: 0 auto;
}

.generic-page-overline {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8A951;
  margin-bottom: 16px;
}

.generic-page-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 72px);
  color: #F8F7F4;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 32px;
}

.generic-page-content {
  font-family: 'Inter', sans-serif;
  color: #A8A8A8;
  line-height: 1.8;
  font-size: 15px;
}

.generic-page-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  color: #C8A951;
  letter-spacing: 0.05em;
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.generic-page-content h2:first-child {
  margin-top: 0;
}

.generic-page-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F8F7F4;
  margin-top: 36px;
  margin-bottom: 12px;
}

.generic-page-content p {
  margin-bottom: 20px;
}

.generic-page-content p:last-child {
  margin-bottom: 0;
}

.generic-page-content strong {
  color: #F8F7F4;
  font-weight: 600;
}

.generic-page-content ul,
.generic-page-content ol {
  margin: 20px 0;
  padding-left: 24px;
}

.generic-page-content li {
  margin-bottom: 10px;
}

.generic-page-content a {
  color: #C8A951;
  text-decoration: underline;
  text-decoration-color: rgba(200,169,81,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.generic-page-content a:hover {
  text-decoration-color: rgba(200,169,81,1);
}

@media (min-width: 768px) {
  .generic-page {
    padding: 160px 40px 120px;
  }
}
