/* ============================================
   PotAround - Bold Cannabis Brand
   Deep greens, organic textures, real character
   ============================================ */

:root {
  --black: #0b0d0a;
  --dark: #121612;
  --dark-2: #1a1f1a;
  --dark-3: #222822;
  --green-deep: #1a3a1a;
  --green: #2d6a2d;
  --green-bright: #4CAF50;
  --green-lime: #8BC34A;
  --green-neon: #b5e853;
  --cream: #f4f0e8;
  --cream-dim: rgba(244, 240, 232, 0.7);
  --cream-faint: rgba(244, 240, 232, 0.4);
  --cream-ghost: rgba(244, 240, 232, 0.12);
  --gold: #d4a843;
  --gold-dim: rgba(212, 168, 67, 0.5);
  --border: rgba(244, 240, 232, 0.08);
  --border-hover: rgba(244, 240, 232, 0.18);

  --font-head: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-serif: 'Instrument Serif', serif;

  --wrap: 1300px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  background: var(--green);
  color: var(--cream);
}

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* === Cursor Glow === */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 106, 45, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
  display: none;
}

@media (hover: hover) {
  .cursor-glow { display: block; }
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  padding: 0.6rem 0;
  background: rgba(11, 13, 10, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-center {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--green-bright);
  transition: width 0.3s var(--ease);
}

.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.25rem; }

.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.6rem 1.5rem;
  border: 1.5px solid var(--green-bright);
  border-radius: 50px;
  color: var(--green-bright);
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  background: var(--green-bright);
  color: var(--black);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger-lines {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 26px;
}

.burger-lines span {
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.burger.active .burger-lines span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}
.burger.active .burger-lines span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--dark);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease);
  display: flex;
  align-items: center;
}

.mobile-nav.active { opacity: 1; visibility: visible; }

.mobile-nav-content {
  padding: 2rem clamp(1.25rem, 4vw, 3rem);
  width: 100%;
}

.mobile-logo img { height: 36px; margin-bottom: 3rem; }

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-links a {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--cream-faint);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s ease;
}

.mobile-links a:hover { color: var(--green-bright); }

.mobile-num {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--green-bright);
  letter-spacing: 0.05em;
}

.mobile-footer {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--cream-faint);
}

.mobile-footer a { color: var(--green-bright); }

/* === BUTTONS === */
.cta-main {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem 2.25rem;
  background: var(--green-bright);
  color: var(--black);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.cta-main:hover {
  background: var(--green-lime);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(76, 175, 80, 0.25);
}

.cta-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.cta-main:hover .cta-arrow { transform: translateX(4px); }

.cta-ghost {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 1rem 2.25rem;
  border: 1.5px solid var(--cream-ghost);
  border-radius: 50px;
  color: var(--cream);
  transition: all 0.35s var(--ease);
}

.cta-ghost:hover {
  border-color: var(--cream-faint);
  background: rgba(244, 240, 232, 0.05);
}

.cta-full { width: 100%; justify-content: center; }

/* === Labels === */
.about-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--green-bright);
  margin-bottom: 1rem;
}

.label-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--green-bright);
}

.section-h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.heading-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--green-bright);
}

.section-center { text-align: center; margin-bottom: 3.5rem; }

.section-sub {
  font-size: 1rem;
  color: var(--cream-faint);
  margin-top: 0.75rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,13,10,0.85) 0%, rgba(11,13,10,0.6) 40%, rgba(11,13,10,0.9) 100%),
    linear-gradient(90deg, rgba(11,13,10,0.9) 0%, transparent 60%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: 100vh;
  padding-top: 100px;
  gap: 3rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green-bright);
  margin-bottom: 1.5rem;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76,175,80,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(76,175,80,0); }
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.h1-line { display: block; }

.h1-line.italic {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--green-bright);
  letter-spacing: 0;
}

.hero-p {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-product-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-product-img {
  max-height: 500px;
  width: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Ticker */
.hero-ticker {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  width: max-content;
  padding: 1rem 0;
  animation: ticker 40s linear infinite;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cream-faint);
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.ticker-track > span {
  padding-right: 2rem;
  flex-shrink: 0;
}

.ticker-leaf { color: var(--green-bright); font-size: 1rem; }

@keyframes ticker {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* === ABOUT === */
.about {
  padding: 120px 0 80px;
}

.about-top { margin-bottom: 4rem; }

.about-heading {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.5;
  max-width: 800px;
  color: var(--cream-dim);
}

.about-heading .heading-em {
  color: var(--green-bright);
}

.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-img-stack {
  position: relative;
  height: 500px;
}

.stack-img {
  position: absolute;
  border-radius: 12px;
  object-fit: cover;
}

.stack-1 {
  width: 75%;
  height: 380px;
  top: 0;
  left: 0;
  z-index: 1;
}

.stack-2 {
  width: 65%;
  height: 300px;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 3px solid var(--dark);
}

.about-text-col {
  padding-top: 1rem;
}

.about-block {
  margin-bottom: 2rem;
}

.about-block h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.about-block p {
  font-size: 0.95rem;
  color: var(--cream-faint);
  line-height: 1.75;
}

.about-stats-row {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.about-stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-bright);
  line-height: 1;
}

.about-stat-plus {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-bright);
}

.about-stat-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-faint);
  margin-top: 0.35rem;
}

/* === QUALITY STRIP === */
.quality-strip {
  padding: 60px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.quality-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.quality-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.quality-item h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.quality-item p {
  font-size: 0.82rem;
  color: var(--cream-faint);
  line-height: 1.5;
}

/* === PRODUCTS === */
.products {
  padding: 100px 0;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.product-filters {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.filter {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: none;
  color: var(--cream-faint);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter:hover {
  border-color: var(--cream-faint);
  color: var(--cream);
}

.filter.active {
  background: var(--green-bright);
  border-color: var(--green-bright);
  color: var(--black);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.p-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}

.p-card.hidden { display: none; }

.p-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.p-card-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--dark-2);
  overflow: hidden;
}

.p-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

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

.p-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  z-index: 1;
}

.p-tag-med { background: rgba(76,175,80,0.2); color: var(--green-bright); border: 1px solid rgba(76,175,80,0.3); }
.p-tag-featured { background: var(--green-bright); color: var(--black); }
.p-tag-vape { background: rgba(139,92,246,0.2); color: #a78bfa; border: 1px solid rgba(139,92,246,0.3); }
.p-tag-edible { background: rgba(251,191,36,0.2); color: #fbbf24; border: 1px solid rgba(251,191,36,0.3); }
.p-tag-pet { background: rgba(251,146,60,0.2); color: #fb923c; border: 1px solid rgba(251,146,60,0.3); }

.p-card-body { padding: 1.25rem; }

.p-card-body h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.p-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-price {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-bright);
}

.p-cart {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream-faint);
  cursor: pointer;
  transition: color 0.3s ease;
}

.p-cart:hover { color: var(--green-bright); }

/* === NEURO === */
.neuro {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.neuro-bg {
  position: absolute;
  inset: 0;
}

.neuro-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.neuro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--black) 0%, rgba(11,13,10,0.85) 50%, var(--black) 100%);
}

.neuro-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.neuro-product-img {
  max-height: 500px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
}

.neuro-intro {
  font-size: 1.05rem;
  color: var(--cream-dim);
  margin: 1rem 0 2rem;
  line-height: 1.75;
}

.neuro-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.neuro-b {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(244,240,232,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.3s ease;
}

.neuro-b:hover { border-color: var(--border-hover); }

.neuro-b-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76,175,80,0.1);
  border-radius: 8px;
}

.neuro-b strong {
  font-family: var(--font-head);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.2rem;
}

.neuro-b p {
  font-size: 0.82rem;
  color: var(--cream-faint);
  line-height: 1.5;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 100px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--cream-faint);
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--green-deep);
  padding-top: 3.5rem;
}

/* === MEMBERSHIP === */
.membership {
  padding: 120px 0;
}

.membership-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.membership-images {
  position: relative;
  height: 500px;
}

.mem-img {
  position: absolute;
  border-radius: 14px;
  object-fit: cover;
}

.mem-img-1 {
  width: 70%;
  height: 400px;
  top: 0;
  left: 0;
  z-index: 1;
}

.mem-img-2 {
  width: 60%;
  height: 320px;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 4px solid var(--black);
}

.mem-desc {
  font-size: 1rem;
  color: var(--cream-faint);
  margin: 1rem 0 1.5rem;
  line-height: 1.75;
}

.mem-perks {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mem-perks li {
  font-size: 0.95rem;
  color: var(--cream-dim);
}

/* === STORE GALLERY === */
.store-gallery {
  overflow: hidden;
  padding: 2px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gallery-scroll {
  display: flex;
  gap: 4px;
  animation: galleryScroll 30s linear infinite;
  width: max-content;
}

.gallery-scroll img {
  height: 250px;
  width: auto;
  object-fit: cover;
  border-radius: 4px;
}

@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === STORES === */
.stores {
  padding: 100px 0;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.s-card {
  padding: 1.5rem;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.s-card:hover {
  border-color: var(--green-bright);
  background: var(--dark-2);
}

.s-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: 0.5rem;
}

.s-card h4 span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--cream-faint);
  margin-left: 0.5rem;
}

.s-phone {
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.s-hours {
  font-size: 0.78rem;
  color: var(--cream-faint);
}

/* === FRANCHISE === */
.franchise {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.franchise-bg {
  position: absolute;
  inset: 0;
}

.franchise-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.franchise-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,13,10,0.95) 0%, rgba(11,13,10,0.7) 100%);
}

.franchise-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.franchise-left p {
  font-size: 1rem;
  color: var(--cream-faint);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.franchise-nums {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

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

.franchise-num strong {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green-bright);
  display: block;
}

.franchise-num span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream-faint);
}

.franchise-contact {
  font-size: 0.8rem !important;
  color: var(--cream-faint) !important;
  margin-top: 0.75rem !important;
}

.franchise-offers {
  padding: 2.5rem;
  background: rgba(244,240,232,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.franchise-offers h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: 1.5rem;
}

.franchise-offers ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.franchise-offers li {
  font-size: 0.9rem;
  color: var(--cream-dim);
  padding-left: 1.5rem;
  position: relative;
}

.franchise-offers li::before {
  content: '\1F33F';
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}

/* === CONTACT === */
.contact {
  padding: 100px 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-blocks {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-block h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-bright);
  margin-bottom: 0.5rem;
}

.contact-block a,
.contact-block p {
  font-size: 0.9rem;
  color: var(--cream-faint);
  display: block;
  line-height: 1.7;
  transition: color 0.3s ease;
}

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

.hours-note {
  font-size: 0.78rem !important;
  font-style: italic;
  margin-top: 0.35rem;
}

/* Contact Form */
.contact-form {
  padding: 2.5rem;
  background: rgba(244,240,232,0.02);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.contact-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.contact-coming-soon-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-bright);
  border: 1px solid rgba(76, 175, 80, 0.35);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.4rem;
}
.contact-coming-soon-text {
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--cream);
  background: rgba(244,240,232,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--green-bright);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--cream-faint);
}

.contact-form select {
  appearance: none;
  cursor: pointer;
  color: var(--cream-faint);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.contact-form select option {
  background: var(--dark);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* === FOOTER === */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--cream-faint);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-bright);
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.82rem;
  color: var(--cream-faint);
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--green-bright); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--cream-faint);
}

.footer-links { display: flex; gap: 1.5rem; }

.footer-links a {
  font-size: 0.75rem;
  color: var(--cream-faint);
  transition: color 0.3s ease;
}

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

/* === Reveal Animation === */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-right { display: none; }
  .about-cols { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-stack { height: 350px; }
  .neuro-layout { grid-template-columns: 1fr; }
  .neuro-left { text-align: center; }
  .neuro-product-img { max-height: 350px; margin-bottom: 2rem; }
  .membership-layout { grid-template-columns: 1fr; }
  .membership-images { height: 350px; }
  .franchise-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-center { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }

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

  .steps-row { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .step { max-width: 100%; }

  .franchise-nums { flex-direction: column; gap: 1.25rem; }
  .store-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .cta-main,
  .hero-actions .cta-ghost { width: 100%; text-align: center; justify-content: center; }
  .about-img-stack { height: 280px; }
  .quality-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .about-stats-row { flex-direction: column; gap: 1.5rem; }
  .membership-images { height: 280px; }
}

/* === Admin link in footer-bottom === */
.admin-link {
  opacity: 0.45;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
}
.admin-link:hover {
  opacity: 1;
  color: var(--green-bright);
}

/* === Modal === */
body.modal-open { overflow: hidden; }

.pa-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(11, 13, 10, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: pa-modal-fade 0.18s var(--ease);
}
.pa-modal.is-open { display: flex; }

@keyframes pa-modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pa-modal-box {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--dark-2);
  border: 1px solid var(--border-hover);
  border-radius: 14px;
  padding: 2.4rem 2rem 2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  animation: pa-modal-rise 0.22s var(--ease);
}

@keyframes pa-modal-rise {
  from { transform: translateY(12px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.pa-modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--cream-dim);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.pa-modal-close:hover {
  background: var(--cream-ghost);
  color: var(--cream);
}

.pa-modal-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 0.6rem;
}

.pa-modal-box h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.pa-modal-box p {
  color: var(--cream-dim);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.4rem;
}

.pa-modal-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.pa-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  background: var(--green-bright);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s var(--ease), transform 0.15s var(--ease);
}
.pa-modal-cta:hover {
  background: var(--green-lime);
  transform: translateY(-1px);
}
.pa-modal-cta-full { width: 100%; padding: 0.85rem 1.3rem; }

.pa-modal-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  background: transparent;
  color: var(--cream-dim);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.pa-modal-ghost:hover {
  color: var(--cream);
  border-color: var(--cream-faint);
}

.pa-modal-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--dark-3);
  border: 1px solid var(--border-hover);
  border-radius: 8px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  outline: none;
  transition: border-color 0.15s var(--ease);
}
.pa-modal-input:focus { border-color: var(--green-bright); }

.pa-modal-error {
  color: #ff7a7a;
  font-size: 0.85rem;
  margin: 0 0 0.8rem !important;
}
