:root {
  --soil-dark: #2c1b0d;
  --soil-medium: #4e3a2f;
  --mushroom-red: #a0523d;
  --mushroom-beige: #f2e8d5;
  --moss-green: #3b5d3b;
  --moss-light: #4a7a4a;
  --bioluminescent: #c1ffd7;
  --bio-glow: rgba(193, 255, 215, 0.15);
  --bio-glow-strong: rgba(193, 255, 215, 0.3);
  --text-light: #f2e8d5;
  --text-dark: #2c1b0d;
  --text-muted: #a89880;
  --glass-bg: rgba(78, 58, 47, 0.45);
  --glass-border: rgba(193, 255, 215, 0.2);
  --glass-bg-light: rgba(242, 232, 213, 0.08);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 30px rgba(193, 255, 215, 0.1);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --max-width: 1320px;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --spacing-section: 120px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--soil-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(59, 93, 59, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(193, 255, 215, 0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(160, 82, 61, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

a {
  color: var(--bioluminescent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: #e0fff0;
}

a:focus-visible {
  outline: 2px solid var(--bioluminescent);
  outline-offset: 4px;
  border-radius: 4px;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--mushroom-beige);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 3.2rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.1rem; }

p {
  color: var(--text-light);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  position: relative;
  z-index: 1;
}

section {
  padding: var(--spacing-section) 0;
  position: relative;
}

/* ===== TEXTURE OVERLAYS ===== */
.texture-soil {
  background-image:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234e3a2f' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.texture-gill {
  background-image:
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233b5d3b' fill-opacity='0.05'%3E%3Cpath d='M0 20L20 0l20 20-20 20z'/%3E%3C/g%3E%3C/svg%3E");
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition-medium), box-shadow var(--transition-medium);
  background: rgba(44, 27, 13, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(193, 255, 215, 0.08);
}

.site-header.scrolled {
  background: rgba(44, 27, 13, 0.92);
  box-shadow: var(--shadow-medium);
  border-bottom-color: rgba(193, 255, 215, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--mushroom-beige);
  font-weight: 700;
  z-index: 1001;
}

.logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 36px;
  height: 36px;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-main a {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--bioluminescent);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-main a:hover::after,
.nav-main a.active::after {
  width: 60%;
}

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

.nav-main a.active {
  color: var(--bioluminescent);
}

.header-cta .btn {
  font-size: 0.9rem;
  padding: 10px 24px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--mushroom-beige);
  margin: 6px 0;
  transition: all var(--transition-fast);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(44, 27, 13, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  transition: right var(--transition-medium);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--mushroom-beige);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--bioluminescent);
  transform: translateX(8px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 2px solid var(--bioluminescent);
  outline-offset: 4px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--moss-green), var(--moss-light));
  color: #fff;
  box-shadow: 0 4px 16px rgba(59, 93, 59, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(59, 93, 59, 0.4), var(--shadow-glow);
  color: #fff;
  filter: brightness(1.1);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--mushroom-beige);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(78, 58, 47, 0.65);
  box-shadow: var(--shadow-soft);
  color: var(--bioluminescent);
}

.btn-outline {
  background: transparent;
  color: var(--bioluminescent);
  border: 2px solid var(--bioluminescent);
}

.btn-outline:hover {
  background: rgba(193, 255, 215, 0.1);
  transform: translateY(-2px);
  color: var(--bioluminescent);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 255, 215, 0.2), transparent);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium), var(--shadow-glow);
  border-color: rgba(193, 255, 215, 0.3);
}

/* ===== HERO ===== */
.hero {
  padding-top: 140px;
  padding-bottom: var(--spacing-section);
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(59, 93, 59, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(193, 255, 215, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--bioluminescent);
  margin-bottom: var(--spacing-md);
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--bioluminescent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 3.6rem;
  line-height: 1.15;
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--bioluminescent);
  position: relative;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-xl);
  max-width: 520px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

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

.hero-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-medium), var(--shadow-glow);
  aspect-ratio: 4/3;
}

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

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(44, 27, 13, 0.6) 100%);
  pointer-events: none;
}

.hero-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(193, 255, 215, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-stats {
  display: flex;
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(193, 255, 215, 0.1);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--bioluminescent);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--spacing-2xl);
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bioluminescent);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.section-header h2 {
  margin-bottom: var(--spacing-sm);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.feature-card {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-lg);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 93, 59, 0.3), rgba(193, 255, 215, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  font-size: 2rem;
}

.feature-card h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.3rem;
}

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

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(193, 255, 215, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.about-text h2 {
  margin-bottom: var(--spacing-md);
}

.about-text .section-tag {
  text-align: left;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: var(--spacing-md);
}

.about-list {
  margin: var(--spacing-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.about-list li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.95rem;
  color: var(--text-light);
}

.about-list li .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(59, 93, 59, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bioluminescent);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ===== TOURS PREVIEW ===== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.tour-card {
  overflow: hidden;
  padding: 0;
}

.tour-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.tour-badge {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  background: rgba(44, 27, 13, 0.8);
  backdrop-filter: blur(10px);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--bioluminescent);
  font-weight: 600;
}

.tour-card-content {
  padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
}

.tour-meta {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.tour-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tour-card-content h3 {
  margin-bottom: var(--spacing-xs);
  font-size: 1.3rem;
}

.tour-card-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-md);
}

.tour-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tour-price .price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--bioluminescent);
}

.tour-price .price small {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}

.product-card {
  padding: 0;
  overflow: hidden;
}

.product-image {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: rgba(78, 58, 47, 0.3);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.product-tag {
  position: absolute;
  top: var(--spacing-xs);
  left: var(--spacing-xs);
  background: var(--mushroom-red);
  color: #fff;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-info {
  padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
}

.product-info h4 {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.product-info .product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-sm);
}

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

.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--bioluminescent);
}

/* ===== TESTIMONIALS ===== */
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-medium);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 var(--spacing-lg);
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-xl);
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--mushroom-beige);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--bioluminescent);
  display: block;
  margin-bottom: var(--spacing-sm);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  text-align: left;
}

.testimonial-name strong {
  display: block;
  color: var(--mushroom-beige);
  font-size: 1rem;
}

.testimonial-name span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-lg);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(193, 255, 215, 0.2);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.testimonial-dot.active {
  background: var(--bioluminescent);
  width: 30px;
  border-radius: 10px;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  position: relative;
}

.newsletter-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-2xl);
  background: linear-gradient(135deg, rgba(59, 93, 59, 0.2), var(--glass-bg));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.newsletter-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(193, 255, 215, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-card h2 {
  margin-bottom: var(--spacing-sm);
}

.newsletter-card p {
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-sm);
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: rgba(44, 27, 13, 0.6);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--bioluminescent);
}

/* ===== BLOG PREVIEW ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.blog-card {
  overflow: hidden;
  padding: 0;
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

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

.blog-card-content {
  padding: var(--spacing-md) var(--spacing-lg) var(--spacing-lg);
}

.blog-date {
  font-size: 0.8rem;
  color: var(--bioluminescent);
  margin-bottom: var(--spacing-xs);
}

.blog-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
}

.blog-card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-sm);
}

.blog-read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bioluminescent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition-fast);
}

.blog-read-more:hover {
  gap: 8px;
}

/* ===== MAP SECTION ===== */
.map-section .map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 400px;
  background: var(--glass-bg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== CALENDAR ===== */
.calendar-wrapper {
  overflow-x: auto;
}

.calendar-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px;
  min-width: 600px;
}

.calendar-table th {
  padding: var(--spacing-sm);
  color: var(--bioluminescent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.calendar-table td {
  padding: var(--spacing-sm);
  text-align: center;
  border-radius: var(--radius-sm);
  background: rgba(78, 58, 47, 0.2);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  cursor: default;
}

.calendar-table td.available {
  background: rgba(59, 93, 59, 0.2);
  color: var(--bioluminescent);
  cursor: pointer;
}

.calendar-table td.available:hover {
  background: rgba(59, 93, 59, 0.4);
}

.calendar-table td.booked {
  background: rgba(160, 82, 61, 0.2);
  color: var(--mushroom-red);
  cursor: not-allowed;
}

.calendar-table td.today {
  border: 2px solid var(--bioluminescent);
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-info-card {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
  padding: var(--spacing-md);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(59, 93, 59, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bioluminescent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--mushroom-beige);
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: rgba(44, 27, 13, 0.6);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--bioluminescent);
}

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

.form-group select option {
  background: var(--soil-dark);
  color: var(--text-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

/* ===== FOOTER ===== */
.site-footer {
  background: rgba(44, 27, 13, 0.95);
  border-top: 1px solid rgba(193, 255, 215, 0.08);
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: var(--spacing-sm);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(78, 58, 47, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: rgba(59, 93, 59, 0.4);
  color: var(--bioluminescent);
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  color: var(--mushroom-beige);
}

.footer-col ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--bioluminescent);
}

.footer-bottom {
  border-top: 1px solid rgba(193, 255, 215, 0.06);
  padding-top: var(--spacing-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: var(--spacing-md);
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

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

/* ===== PAGE HERO (INNER PAGES) ===== */
.page-hero {
  padding-top: 140px;
  padding-bottom: var(--spacing-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(59, 93, 59, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .section-tag {
  margin-bottom: var(--spacing-sm);
}

.page-hero h1 {
  margin-bottom: var(--spacing-sm);
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--bioluminescent);
}

.breadcrumb .separator {
  color: rgba(193, 255, 215, 0.3);
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
}

.content-section h3 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.content-section p {
  margin-bottom: var(--spacing-md);
  color: var(--text-muted);
  line-height: 1.8;
}

.content-section ul, .content-section ol {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}

.content-section ul {
  list-style: disc;
}

.content-section ol {
  list-style: decimal;
}

.content-section li {
  color: var(--text-muted);
  margin-bottom: var(--spacing-xs);
  line-height: 1.7;
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  padding-left: var(--spacing-xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--bioluminescent), var(--glass-border));
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-xl);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--spacing-xl) + 6px);
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bioluminescent);
  border: 3px solid var(--soil-dark);
}

.timeline-item h3 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-xs);
}

.timeline-item .year {
  font-size: 0.85rem;
  color: var(--bioluminescent);
  font-weight: 600;
  margin-bottom: 4px;
}

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

/* ===== PRICING TABLE ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.pricing-card {
  text-align: center;
  padding: var(--spacing-xl);
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(193, 255, 215, 0.4);
  background: linear-gradient(135deg, rgba(59, 93, 59, 0.15), var(--glass-bg));
}

.pricing-card.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--moss-green), var(--moss-light));
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card h3 {
  margin-bottom: var(--spacing-sm);
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--bioluminescent);
  margin-bottom: var(--spacing-sm);
}

.pricing-amount small {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.pricing-features {
  text-align: left;
  margin: var(--spacing-lg) 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.pricing-features li .check {
  color: var(--bioluminescent);
  font-weight: 700;
}

/* ===== TEAM SECTION ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.team-card {
  text-align: center;
  padding: var(--spacing-lg);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--spacing-md);
  border: 2px solid var(--glass-border);
  background: rgba(78, 58, 47, 0.3);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.team-card .role {
  font-size: 0.85rem;
  color: var(--bioluminescent);
  margin-bottom: var(--spacing-sm);
}

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

/* ===== SHOP FILTERS ===== */
.shop-filters {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 100px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(59, 93, 59, 0.3);
  color: var(--bioluminescent);
  border-color: rgba(193, 255, 215, 0.3);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(193, 255, 215, 0.08);
  margin-bottom: var(--spacing-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--spacing-md) 0;
  background: none;
  border: none;
  color: var(--mushroom-beige);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--bioluminescent);
}

.faq-icon {
  transition: transform var(--transition-fast);
  color: var(--bioluminescent);
  font-size: 1.2rem;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: var(--spacing-md);
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== SPORE PARTICLES ===== */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.spore {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--bioluminescent);
  border-radius: 50%;
  opacity: 0;
  animation: floatSpore linear infinite;
}

/* ===== SEPARATOR ===== */
.section-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(193, 255, 215, 0.15), transparent);
  margin: 0;
  border: none;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--bioluminescent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 99;
  font-size: 1.2rem;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--moss-green);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top var(--transition-fast);
  font-weight: 600;
}

.skip-link:focus {
  top: 10px;
  color: #fff;
}

/* ===== IMAGES PLACEHOLDER ===== */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, rgba(59, 93, 59, 0.15), rgba(78, 58, 47, 0.3));
  color: rgba(193, 255, 215, 0.3);
}

/* ===== VALUES GRID ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
}

.value-card {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
  padding: var(--spacing-lg);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(59, 93, 59, 0.3), rgba(193, 255, 215, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-content h4 {
  margin-bottom: var(--spacing-xs);
}

.value-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(59, 93, 59, 0.2), rgba(160, 82, 61, 0.1));
  border-radius: var(--radius-xl);
  padding: var(--spacing-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(193, 255, 215, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: var(--spacing-sm);
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

/* ===== PROCESS STEPS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--glass-border), var(--bioluminescent), var(--glass-border));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--moss-green), var(--moss-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto var(--spacing-md);
}

.process-step h4 {
  margin-bottom: var(--spacing-xs);
}

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

/* ===== SHOP DETAIL LAYOUT ===== */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: start;
}

.product-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  aspect-ratio: 1;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info h2 {
  margin-bottom: var(--spacing-sm);
}

.product-detail-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--bioluminescent);
  margin-bottom: var(--spacing-md);
}

.product-detail-desc {
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.qty-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.qty-btn:hover {
  border-color: var(--bioluminescent);
}

.qty-display {
  font-size: 1.1rem;
  min-width: 40px;
  text-align: center;
  font-weight: 600;
}

/* ===== SUBSCRIPTION CARDS ===== */
.subscription-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
}

.sub-card {
  padding: var(--spacing-xl);
  text-align: center;
}

.sub-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.sub-card h3 {
  margin-bottom: var(--spacing-xs);
}

.sub-card .sub-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--bioluminescent);
  margin-bottom: var(--spacing-sm);
}

.sub-card .sub-price small {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.sub-features {
  text-align: left;
  margin: var(--spacing-md) 0;
}

.sub-features li {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-xs);
  padding-left: var(--spacing-md);
  position: relative;
}

.sub-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--bioluminescent);
  font-weight: 700;
}