/* ===== NATURCH.COM ===== */

:root {
  --forest: #2d4a2e;
  --forest-deep: #1a2e1b;
  --sage: #7a9a6d;
  --moss: #4a6741;
  --earth: #8b7355;
  --sand: #e8dcc8;
  --cream: #f5f1eb;
  --sky: #b8d4e3;
  --sunrise: #e8a849;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-light: #5a5a5a;
  --radius: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}

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

a {
  color: var(--forest);
  text-decoration: none;
}

/* ===== HEADER / NAV ===== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-logo img {
  height: 45px;
  transition: opacity 0.3s;
}

.nav-logo .logo-light {
  display: inline;
}

.nav-logo .logo-dark {
  display: none;
}

.nav.scrolled .logo-light {
  display: none;
}

.nav.scrolled .logo-dark {
  display: inline;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

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

.nav.scrolled .nav-links a {
  color: var(--forest-deep);
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-cta {
  background: var(--sunrise) !important;
  color: var(--forest-deep) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 168, 73, 0.4);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

.nav.scrolled .mobile-toggle span {
  background: var(--forest-deep);
}

/* ===== HERO ===== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  background-image: url('assets/header-hero.jpg');
  background-size: cover;
  background-position: center;
  z-index: -2;
  animation: heroKenBurns 20s cubic-bezier(0.25, 0.8, 0.5, 1) infinite alternate;
  will-change: transform;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  30% {
    transform: scale(1.05) translate(-1.2%, -0.9%);
  }
  100% {
    transform: scale(1.08) translate(-2%, -1.5%);
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 46, 27, 0.4) 0%,
    rgba(26, 46, 27, 0.2) 50%,
    rgba(26, 46, 27, 0.6) 100%
  );
  z-index: -1;
}

.hero-content {
  color: var(--white);
  max-width: 800px;
  padding: 2rem;
}

.hero-icon {
  width: 80px;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-block;
  background: var(--sunrise);
  color: var(--forest-deep);
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 168, 73, 0.4);
  color: var(--forest-deep);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  opacity: 0.6;
  animation: bounce 2s infinite;
}

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

/* ===== SECTIONS ===== */

section {
  padding: 6rem 2rem;
}

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

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--forest-deep);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ===== PILLARS (Meditation, Hiking, View Points) ===== */

.pillars {
  background: var(--cream);
}

.pillars .section-title {
  margin-bottom: 2.5rem;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
}

.pillar-card::before {
  content: '';
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s ease;
}

.pillar-card:nth-child(1)::before {
  animation: kenBurnsDriftRight 20s ease-in-out infinite alternate;
}

.pillar-card:nth-child(2)::before {
  animation: kenBurnsZoomSlow 22s ease-in-out infinite alternate;
}

.pillar-card:nth-child(3)::before {
  animation: kenBurnsDriftLeft 24s ease-in-out infinite alternate;
}

.pillar-card:hover::before {
  transform: scale(1.12);
}

@keyframes kenBurnsDriftRight {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(3%, -1%);
  }
}

@keyframes kenBurnsZoomSlow {
  0% {
    transform: scale(1.05) translate(-1%, 1%);
  }
  100% {
    transform: scale(1) translate(1%, -1%);
  }
}

@keyframes kenBurnsDriftLeft {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-3%, 1.5%);
  }
}

.pillar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: background 0.4s;
  z-index: 1;
}

.pillar-card:hover .pillar-overlay {
  background: rgba(26, 46, 27, 0.55);
  z-index: 1;
}

.pillar-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  color: var(--white);
  z-index: 2;
}

.pillar-card h3 {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pillar-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
}

.pillar-btn {
  display: inline-block;
  margin-top: 1rem;
  background: var(--sunrise);
  color: var(--forest-deep);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}

.pillar-card:hover .pillar-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CONNECTION ===== */

.connection {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--forest-dark, #1a2e1b), var(--forest-deep, #0f1f10));
  color: var(--white, #fff);
  text-align: center;
}

.connection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.connection-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.connection-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}

.connection-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.connection-card h3 {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.connection-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

.connection-cta {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  max-width: 600px;
  margin: 2rem auto 0;
}

@media (max-width: 768px) {
  .connection-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===== PLANET EARTH ===== */

.planet {
  background: var(--forest-deep);
  color: var(--white);
  text-align: center;
}

.planet .section-label {
  color: var(--sage);
}

.planet .section-title {
  color: var(--white);
}

.planet .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  margin-left: auto;
  margin-right: auto;
}

.planet-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

a.planet-feature {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  transition: background 0.2s, transform 0.2s;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

a.planet-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.planet-feature-img {
  width: 100%;
  height: 140px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

a.planet-feature:hover .planet-feature-img {
  transform: scale(1.05);
}

.planet-feature {
  padding: 1.5rem;
}

.planet-feature h4 {
  color: var(--sunrise);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.planet-feature p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ===== MERCH ===== */

.merch {
  text-align: center;
  background: var(--cream);
}

.merch-badge {
  display: inline-block;
  background: var(--moss);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.merch-link {
  display: inline-block;
  background: var(--forest);
  color: var(--white);
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  margin-top: 1.5rem;
}

.merch-link:hover {
  background: var(--forest-deep);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== SIGNUP ===== */

.signup {
  background: var(--forest);
  color: var(--white);
  text-align: center;
}

.signup .section-title {
  color: var(--white);
}

.signup .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin-left: auto;
  margin-right: auto;
}

.signup-form {
  display: flex;
  gap: 0.75rem;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.signup-form input[type="text"],
.signup-form input[type="email"] {
  flex: 1;
  min-width: 180px;
  padding: 0.85rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.signup-form input[type="text"]::placeholder,
.signup-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.signup-form input[type="text"]:focus,
.signup-form input[type="email"]:focus {
  border-color: var(--sunrise);
}

.signup-form button {
  background: var(--sunrise);
  color: var(--forest-deep);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.signup-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 168, 73, 0.4);
}

.signup-privacy {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.signup-privacy a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}

/* ===== FOOTER ===== */

.footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  height: 35px;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  list-style: none;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ===== EXPLORE PAGE ===== */

.explore-page {
  overflow: hidden;
}

.explore-wrapper {
  display: flex;
  height: 100vh;
  padding-top: 65px;
}

.explore-sidebar {
  width: 380px;
  min-width: 380px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.explore-search {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.explore-search input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.explore-search input:focus {
  border-color: var(--sage);
}

#locate-btn {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

#locate-btn:hover {
  background: var(--cream);
  border-color: var(--sage);
}

.explore-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cat-tab {
  padding: 0.4rem 0.8rem;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 50px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
}

.cat-tab:hover {
  border-color: var(--sage);
  color: var(--forest);
}

.cat-tab.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.explore-results {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem;
}

.explore-hint {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  transition: background 0.15s;
}

.result-item:hover {
  background: var(--cream);
}

.result-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.result-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
}

.result-type {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: capitalize;
  margin-top: 0.15rem;
}

#map {
  width: 100%;
  height: 100%;
}

/* Center crosshair pin */
.map-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 1000;
  pointer-events: none;
  font-size: 2rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: transform 0.15s ease;
}

.map-crosshair.bounce {
  transform: translate(-50%, -110%);
}

/* Search this area button */
.search-area-btn {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 0.5rem 1.2rem;
  background: var(--white);
  border: 2px solid var(--forest);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: all 0.2s;
  display: none;
}

.search-area-btn:hover {
  background: var(--forest);
  color: var(--white);
}

.search-area-btn.visible {
  display: block;
}

/* Loading spinner */
.explore-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  gap: 1rem;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--forest);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.explore-loading span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Noise badges */
.noise-badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  margin-top: 0.25rem;
  font-weight: 500;
}

.noise-quiet {
  background: #e8f5e9;
  color: #2e7d32;
}

.noise-moderate {
  background: #fff3e0;
  color: #e65100;
}

.noise-loud {
  background: #fce4ec;
  color: #c62828;
}

/* Message box */
.message-box {
  background: var(--cream);
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.message-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--forest-deep);
}

.message-box p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.message-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.message-form input,
.message-form textarea {
  padding: 0.7rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
}

.message-form input:focus,
.message-form textarea:focus {
  border-color: var(--sage);
}

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

.message-form button {
  padding: 0.7rem 2rem;
  background: var(--forest);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  align-self: center;
}

.message-form button:hover {
  background: var(--forest-deep);
}

.message-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.message-sent {
  color: var(--sage);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Floating message button (explore page) */
.msg-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: background 0.2s, transform 0.2s;
}

.msg-fab:hover {
  background: var(--forest-deep);
  transform: scale(1.05);
}

.msg-modal {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 2000;
  width: 320px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  display: none;
  overflow: hidden;
}

.msg-modal.open {
  display: block;
}

.msg-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.msg-modal-header button {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
}

.msg-modal .message-form {
  padding: 1rem;
}

/* ===== REDUCED MOTION ===== */

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .pillar-card::before {
    animation: none !important;
  }
}

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: var(--forest-deep) !important;
    font-size: 1rem;
  }

  .mobile-toggle {
    display: block;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .pillar-card {
    aspect-ratio: 16 / 9;
  }

  .pillar-content {
    padding: 1.25rem;
  }

  .pillar-card h3 {
    font-size: 1.4rem;
  }

  .pillar-btn {
    opacity: 1;
    transform: translateY(0);
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
  }

  .signup-form {
    flex-direction: column;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .planet-features {
    grid-template-columns: 1fr;
  }

  /* Explore page mobile */
  .explore-wrapper {
    flex-direction: column;
  }

  .explore-sidebar {
    width: 100%;
    min-width: 0;
    max-height: 45vh;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  #map, .explore-wrapper > div:last-child {
    min-height: 55vh;
  }
}

/* Share button in nav */
.nav-share {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-share span {
  font-size: 14px;
}

/* Floating share button */
.share-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--forest, #2d4a2e);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.2s, background 0.2s;
  z-index: 1000;
}
.share-fab:hover {
  transform: scale(1.1);
  background: var(--forest-deep, #1a2e1b);
}

/* Share toast notification */
.share-toast {
  position: fixed;
  bottom: 90px;
  left: 24px;
  background: var(--forest, #2d4a2e);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  z-index: 1001;
}
.share-toast.show {
  opacity: 1;
  transform: translateY(0);
}
