@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;600;700;900&family=IBM+Plex+Mono:wght@400;700&display=swap');

:root {
  --green-darkest: #080f0a;
  --green-dark: #0d1f12;
  --green-mid: #1a3d22;
  --green-light: #2d6b3a;
  --green-bright: #3d8a4a;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #f0ebe0;
  --text: #ddd8cc;
  --muted: #8a9488;
  --urgent: #d4472a;
  --urgent-dark: #a33520;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--green-dark);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
}

/* NAV */
nav {
  background: rgba(8,15,10,0.97);
  border-bottom: 1px solid #1a3d22;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-row1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  border-bottom: 1px solid rgba(26,61,34,0.5);
}

.nav-row2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  gap: 0;
  flex-wrap: wrap;
}

.logo-block {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
}

.logo {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--gold);
  white-space: nowrap;
  line-height: 1;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 1px;
  font-family: "IBM Plex Mono", monospace;
  white-space: nowrap;
}

/* DROPDOWN NAV */
.nav-item {
  position: relative;
}

.nav-item > a, .nav-top-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0.8rem 1rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-item > a:hover, .nav-top-link:hover { color: var(--cream); }
.nav-item > a.active { color: var(--gold); }

.nav-item > a .arrow {
  font-size: 0.5rem;
  transition: transform 0.2s;
}

.nav-item:hover > a .arrow { transform: rotate(180deg); }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(8,15,10,0.98);
  border: 1px solid var(--green-mid);
  border-top: 2px solid var(--gold);
  min-width: 180px;
  z-index: 100;
  flex-direction: column;
}

.nav-item:hover .dropdown { display: flex; }

.dropdown a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid rgba(26,61,34,0.4);
  transition: all 0.15s;
  white-space: nowrap;
}

.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--gold); background: rgba(201,168,76,0.05); }

.nav-emergency {
  background: var(--urgent);
  color: white !important;
  padding: 0.45rem 0.9rem;
  font-size: 0.68rem !important;
  font-weight: 900 !important;
  letter-spacing: 1px !important;
  text-decoration: none;
  animation: pulse 2s infinite;
  white-space: nowrap;
  display: block;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.nav-links { display: none; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-darkest) 0%, var(--green-dark) 40%, var(--green-mid) 70%, var(--green-light) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(45,107,58,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(26,61,34,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(61,138,74,0.2) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2.5rem;
  max-width: 900px;
}

.countdown-block {
  display: inline-flex;
  flex-direction: column;
  background: rgba(212,71,42,0.15);
  border: 1px solid var(--urgent);
  padding: 1rem 1.5rem;
  margin-bottom: 2.5rem;
  gap: 0.3rem;
}

.countdown-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--urgent);
  font-weight: 900;
  font-family: 'IBM Plex Mono', monospace;
}

.countdown-timer {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--cream);
  font-weight: 700;
  letter-spacing: 2px;
}

.countdown-sub {
  font-size: 0.7rem;
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
}

.hero h1 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub-lines {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-line {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 1px;
}

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

/* BUTTONS */
.btn-urgent {
  background: var(--urgent);
  color: white;
  padding: 1.1rem 2rem;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}

.btn-urgent:hover { background: var(--urgent-dark); }
.btn-urgent.large { font-size: 1rem; padding: 1.3rem 2.5rem; }

.btn-secondary {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 1.1rem 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-secondary:hover { background: rgba(201,168,76,0.1); }

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 1rem 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
}

.btn-outline:hover { background: var(--gold); color: var(--green-darkest); }

/* TRUTH SCROLL BAR */
.truth-bar {
  background: var(--green-mid);
  border-top: 1px solid var(--green-light);
  border-bottom: 1px solid var(--green-light);
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.truth-scroll {
  display: inline-block;
  animation: scroll 30s linear infinite;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  font-family: 'IBM Plex Mono', monospace;
}

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

/* REALITY CHECK */
.reality-check {
  padding: 6rem 2.5rem;
  background: var(--green-darkest);
}

.reality-check .container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.reality-text h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.reality-text .big-p {
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.reality-text p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.reality-text .callout {
  border-left: 3px solid var(--urgent);
  padding-left: 1.2rem;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
}

.reality-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat {
  border: 1px solid var(--green-mid);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.2s;
}

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

.stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  font-family: 'IBM Plex Mono', monospace;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 1px;
  line-height: 1.4;
}

/* ACTION BANNER */
.action-banner {
  background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
  padding: 6rem 2.5rem;
  text-align: center;
  border-top: 1px solid var(--green-light);
  border-bottom: 1px solid var(--green-light);
}

.action-banner .container {
  max-width: 700px;
  margin: 0 auto;
}

.action-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.action-banner p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.action-banner .btn-urgent { margin-top: 1.5rem; }

/* PILLARS */
.pillars {
  padding: 6rem 2.5rem;
  background: var(--green-dark);
}

.pillars .container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.pillar {
  border: 1px solid var(--green-mid);
  padding: 2.5rem 2rem;
  transition: border-color 0.2s, background 0.2s;
}

.pillar:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.03);
}

.pillar-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

.pillar h3 {
  font-size: 0.75rem;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 1rem;
}

.pillar p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.pillar a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
}

/* EMAIL SIGNUP */
.email-signup {
  background: var(--green-darkest);
  padding: 6rem 2.5rem;
  border-top: 1px solid var(--green-mid);
}

.email-signup .container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.signup-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.signup-text p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.signup-text .fine-print {
  font-size: 0.8rem;
  color: var(--muted);
}

.signup-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.signup-form input {
  background: var(--green-dark);
  border: 1px solid var(--green-mid);
  color: var(--cream);
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.signup-form input:focus { border-color: var(--gold); }
.signup-form input::placeholder { color: var(--muted); }

.signup-form button {
  background: var(--gold);
  color: var(--green-darkest);
  border: none;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 2px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  transition: background 0.2s;
}

.signup-form button:hover { background: var(--gold-light); }

/* CONTACT BREEDERS */
.contact-breeders {
  background: var(--green-mid);
  padding: 5rem 2.5rem;
  text-align: center;
}

.contact-breeders .container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-breeders h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 1rem;
}

.contact-breeders p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* FOOTER */
footer {
  background: var(--green-darkest);
  border-top: 1px solid var(--green-mid);
  padding: 3rem 2.5rem 2rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--green-mid);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--gold);
  display: block;
  margin-bottom: 0.8rem;
}

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

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  font-size: 0.7rem !important;
  color: #555 !important;
}

/* CONTAINER */
.container { max-width: 1100px; margin: 0 auto; }

/* PAGE STYLES */
.page-hero {
  padding: 5rem 2.5rem 3rem;
  background: linear-gradient(160deg, var(--green-darkest) 0%, var(--green-mid) 100%);
  border-bottom: 1px solid var(--green-light);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1;
}

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

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 1rem; flex-wrap: wrap; gap: 0.5rem; }
  .nav-links { display: none; }
  .nav-emergency { font-size: 0.65rem !important; padding: 0.4rem 0.8rem; }
  .hero-content { padding: 3rem 1.5rem; }
  .reality-check .container { grid-template-columns: 1fr; gap: 3rem; }
  .reality-stats { grid-template-columns: 1fr 1fr; }
  .email-signup .container { grid-template-columns: 1fr; gap: 2rem; }
  .pillars { padding: 4rem 1.5rem; }
  .action-banner { padding: 4rem 1.5rem; }
  .page-hero { padding: 3rem 1.5rem 2rem; }
}

/* ACCESSIBILITY & READABILITY UPGRADES */
body { font-size: 19px; }

.nav-links a { font-size: 0.85rem; }

.hero .sub { font-size: 1.2rem; }
.hero-line { font-size: 1.2rem; }

/* Bigger muted text — never unreadable */
.muted, [style*="color: var(--muted)"] { color: #b0b8ae !important; }
.pillar p { color: #b0b8ae; font-size: 1rem; }
.reality-text p { font-size: 1.05rem; }
.action-banner p { font-size: 1.1rem; }

/* BIGGER PILLAR CARDS */
.pillars .container {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pillar {
  padding: 3rem 2.5rem;
}

.pillar-icon { font-size: 3rem; margin-bottom: 1.5rem; }

.pillar h3 {
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
}

.pillar p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.pillar a {
  font-size: 0.9rem;
  letter-spacing: 2px;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--gold);
  display: inline-block;
  transition: all 0.2s;
}

.pillar a:hover { background: var(--gold); color: var(--green-darkest); }

/* Truth scroll bigger */
.truth-scroll { font-size: 0.85rem; }

/* Stat numbers bigger */
.stat-num { font-size: 3rem; }
.stat-label { font-size: 0.9rem; }

/* Footer text readable */
.footer-brand p { font-size: 0.95rem; color: #b0b8ae; }
.footer-links a { font-size: 0.9rem; }
.footer-bottom p { font-size: 0.85rem; color: #b0b8ae; }

/* Signup form bigger */
.signup-form input { font-size: 1.1rem; padding: 1.1rem 1.3rem; }
.signup-form button { font-size: 0.95rem; padding: 1.1rem; }

/* Page hero bigger */
.page-hero p { font-size: 1.2rem; color: #b0b8ae; }

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8,15,10,0.98);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

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

.mobile-menu a {
  color: var(--cream);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 3px;
}

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

.mobile-menu .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
  background: none;
  border: none;
}

.mobile-cta {
  background: var(--urgent);
  color: white !important;
  padding: 1rem 2rem !important;
  font-size: 1rem !important;
}

@media (max-width: 768px) {
  nav {
    padding: 0.8rem 1.2rem;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .nav-links { display: none !important; }
  .nav-emergency { display: none !important; }
  .hamburger { display: flex; }

  /* Fix hero dead space */
  .hero {
    min-height: auto;
    padding: 2rem 1.5rem 3rem;
    padding-top: 2rem;
  }

  .hero-content { padding: 0; }

  .countdown-block { margin-bottom: 1.5rem; }
  .countdown-timer { font-size: 1.8rem; }

  .hero h1 { font-size: 3.2rem; margin-bottom: 1.2rem; }
  .hero-sub-lines { margin-bottom: 1.5rem; }
  .hero-line { font-size: 1rem; }

  .hero-cta { flex-direction: column; }
  .btn-urgent, .btn-secondary { text-align: center; }

  /* Truth bar */
  .truth-scroll { font-size: 0.75rem; }

  /* Reality check */
  .reality-check { padding: 3rem 1.5rem; }
  .reality-check .container { grid-template-columns: 1fr; gap: 2rem; }
  .reality-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat { padding: 1.2rem; }
  .stat-num { font-size: 2rem; }

  /* Pillars - stack on mobile */
  .pillars { padding: 3rem 1.5rem; }
  .pillars .container { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .pillar { padding: 2rem 1.5rem; }

  /* Action banner */
  .action-banner { padding: 3rem 1.5rem; }
  .action-banner h2 { font-size: 1.8rem; }

  /* Email signup */
  .email-signup { padding: 3rem 1.5rem; }
  .email-signup .container { grid-template-columns: 1fr; gap: 2rem; }

  /* Contact breeders */
  .contact-breeders { padding: 3rem 1.5rem; }

  /* Footer */
  footer { padding: 2rem 1.5rem; }
  .footer-content { flex-direction: column; gap: 1.5rem; }
  .footer-bottom p { font-size: 0.75rem; }

  /* Page hero */
  .page-hero { padding: 2.5rem 1.5rem; }
  .page-hero h1 { font-size: 2.5rem; }
}

/* STATE MAP SECTION */
.state-map-section {
  padding: 5rem 2.5rem;
  background: var(--green-dark);
  border-top: 1px solid var(--green-mid);
}

.state-map-section .container { max-width: 1100px; margin: 0 auto; }

.state-map-header { text-align: center; margin-bottom: 2.5rem; }
.state-map-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; color: var(--cream); margin-bottom: 0.8rem; line-height: 1.1; }
.state-map-header p { color: #b0b8ae; font-size: 1rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }

.state-legend { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: #b0b8ae; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.legend-dot.rec { background: var(--green-bright); }
.legend-dot.med { background: var(--gold); }
.legend-dot.none { background: var(--urgent); }

.state-quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.sq {
  border: 1px solid var(--green-mid);
  padding: 0.9rem 1rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: all 0.2s;
  font-size: 0.9rem;
  font-weight: 700;
}

.sq:hover { transform: translateY(-2px); }

.sq span { font-size: 0.7rem; font-family: 'IBM Plex Mono', monospace; font-weight: 400; }

.sq.rec { color: var(--green-bright); border-color: rgba(61,138,74,0.4); }
.sq.rec:hover { border-color: var(--green-bright); background: rgba(61,138,74,0.08); }
.sq.rec.best { border-color: var(--green-bright); background: rgba(61,138,74,0.08); }
.sq.rec.best span { color: var(--gold); }

.sq.med { color: var(--gold); border-color: rgba(201,168,76,0.3); }
.sq.med:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); }

@media (max-width: 768px) {
  .state-map-section { padding: 3rem 1.5rem; }
  .state-legend { gap: 1rem; }
  .state-quick-grid { grid-template-columns: repeat(2, 1fr); }
}

/* logo-block defined in NAV section above */

/* TWO ROW NAV MOBILE */
@media (max-width: 900px) {
  .nav-row2 { display: none; }
  .nav-row1 { padding: 0.8rem 1.2rem; }
  .logo { font-size: 1.3rem; }
  .hamburger { display: flex; }
}

@media (min-width: 901px) {
  .hamburger { display: none; }
}

/* SHARE BUTTON */
.share-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.share-btn-main {
  background: var(--gold);
  color: var(--green-darkest);
  border: none;
  padding: 0.8rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 2px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: background 0.2s;
}

.share-btn-main:hover { background: var(--gold-light); }

.share-options {
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-end;
}

.share-options.open { display: flex; }

.share-option {
  background: var(--green-dark);
  border: 1px solid var(--green-mid);
  color: var(--cream);
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  transition: all 0.15s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.share-option:hover { border-color: var(--gold); color: var(--gold); }
.share-option.copied { color: var(--green-bright); border-color: var(--green-bright); }

/* LOGO UNDERLINE */
.logo {
  text-decoration: underline;
  text-decoration-color: rgba(201,168,76,0.4);
  text-underline-offset: 3px;
}

.logo-block:hover .logo {
  text-decoration-color: var(--gold);
}
