@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;500;600;700&family=Shadows+Into+Light&display=swap');

:root {
  --bg-primary: #fefcf8;
  --bg-secondary: #f7f3ec;
  --bg-card: #ffffff;
  --bg-card-hover: #f0ebe0;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #8a8a8a;
  --green-primary: #2d5a27;
  --green-light: #4a8c3f;
  --green-dark: #1e3d1a;
  --green-glow: rgba(45, 90, 39, 0.15);
  --brown-accent: #6b3d2e;
  --brown-light: #9c6147;
  --border-subtle: rgba(45, 90, 39, 0.12);
  --border-green: rgba(45, 90, 39, 0.35);
  --shadow-soft: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-green: 0 0 30px rgba(45, 90, 39, 0.1);

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Lato', sans-serif;
  --font-script: 'Shadows Into Light', cursive;

  --transition-smooth: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--text-primary);
}

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

.container {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  transition: opacity 0.8s ease;
}

#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-ring {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-ring::before,
.preloader-ring::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}

.preloader-ring::before {
  width: 80px;
  height: 80px;
  border-top-color: var(--green-primary);
  border-right-color: var(--green-primary);
  animation: spin 1.2s linear infinite;
}

.preloader-ring::after {
  width: 60px;
  height: 60px;
  border-bottom-color: var(--green-light);
  border-left-color: var(--green-light);
  animation: spin 0.8s linear infinite reverse;
}

.preloader-cello {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  border-radius: 50% 50% 55% 55% / 40% 40% 60% 60%;
  box-shadow: 0 0 20px var(--green-glow);
  position: relative;
}

.preloader-cello::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 16px;
  background: var(--green-primary);
  border-radius: 3px;
}

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

.preloader-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  color: var(--green-primary);
  text-transform: uppercase;
  animation: pulseText 1.5s ease-in-out infinite;
}

@keyframes pulseText {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ===== AFFILIATE BANNER ===== */
.affiliate-banner {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, var(--green-dark), var(--green-primary), var(--green-dark));
  background-size: 200% 100%;
  animation: shimmerBanner 4s ease infinite;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 9999;
}

@keyframes shimmerBanner {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===== HEADER ===== */
header {
  position: absolute;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-fast);
  padding: 0 4%;
}

header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(254, 252, 248, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.brand-logo {
  font-family: var(--font-script);
  font-size: 2.6rem;
  color: var(--green-primary);
  letter-spacing: 0.02em;
  text-shadow: 0 0 30px var(--green-glow);
  transition: all var(--transition-fast);
  line-height: 1;
}

.brand-logo:hover {
  text-shadow: 0 0 50px var(--green-glow), 0 0 80px rgba(45, 90, 39, 0.2);
}

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

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green-primary);
  transition: width var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 2000;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--green-primary);
  transition: all var(--transition-fast);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0; left: -100%;
  width: 100%; height: 100vh;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: left var(--transition-smooth);
}

.mobile-nav.open { left: 0; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav li { margin: 1.8rem 0; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}
.mobile-nav a:hover { color: var(--green-primary); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  border: 2px solid var(--green-primary);
  background: transparent;
  color: var(--green-primary);
  transition: all var(--transition-fast);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(45, 90, 39, 0.12), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before { left: 100%; }

.btn:hover {
  background: var(--green-primary);
  color: #fff;
  box-shadow: 0 0 30px var(--green-glow);
}

.btn-solid {
  background: linear-gradient(135deg, var(--green-dark), var(--green-primary), var(--green-light));
  background-size: 200% 100%;
  color: #fff;
  border: none;
  font-weight: 700;
  border-radius: 2px;
}

.btn-solid:hover {
  background-position: 100% 0;
  box-shadow: 0 0 50px var(--green-glow);
  color: #fff;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--bg-primary);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 70% 50%, rgba(45, 90, 39, 0.05) 0%, transparent 60%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45, 90, 39, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--green-primary);
  margin-bottom: 1rem;
  display: block;
}

.hero-text .hero-title {
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.hero-text .hero-title span {
  color: var(--green-primary);
  font-style: italic;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.9;
}

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

.hero-img-wrapper {
  position: relative;
}

.hero-img-wrapper::before {
  content: '';
  position: absolute;
  top: -15px; left: -15px; right: 15px; bottom: 15px;
  border: 2px solid var(--border-green);
  opacity: 0.4;
  z-index: -1;
  transition: all var(--transition-smooth);
  border-radius: 4px;
}

.hero-img-wrapper::after {
  content: '';
  position: absolute;
  top: 15px; left: 15px; right: -15px; bottom: -15px;
  border: 1px solid var(--border-subtle);
  opacity: 0.3;
  z-index: -1;
  transition: all var(--transition-smooth);
  border-radius: 4px;
}

.hero-img-wrapper:hover::before {
  top: -25px; left: -25px; right: 25px; bottom: 25px;
}

.hero-img-wrapper img {
  width: 100%;
  display: block;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-smooth);
  border-radius: 4px;
}

.hero-img-wrapper:hover img {
  box-shadow: var(--shadow-soft), 0 0 60px rgba(45, 90, 39, 0.1);
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-text p { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
}

.features-header {
  text-align: center;
  margin-bottom: 5rem;
}

.features-header .section-subtitle {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--green-primary);
  display: block;
  margin-bottom: 1rem;
}

.features-header h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

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

.feature-card {
  background: var(--bg-card);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  border-color: var(--border-green);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 0 40px rgba(45, 90, 39, 0.05);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 70px; height: 70px;
  margin: 0 auto 1.8rem;
  border: 2px solid var(--border-green);
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--green-primary);
  font-style: italic;
  transition: all var(--transition-fast);
  background: rgba(45, 90, 39, 0.04);
}

.feature-card:hover .feature-icon {
  background: rgba(45, 90, 39, 0.1);
  box-shadow: 0 0 30px rgba(45, 90, 39, 0.15);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ===== SPLIT SECTION ===== */
.split-section {
  padding: 120px 0;
  background: var(--bg-primary);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.split-img-wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.split-img-wrapper img {
  width: 100%;
  display: block;
  transition: transform var(--transition-smooth);
}

.split-img-wrapper:hover img {
  transform: scale(1.05);
}

.split-content .section-subtitle {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--green-primary);
  display: block;
  margin-bottom: 1rem;
}

.split-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 2rem;
}

.split-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.testimonial-section::before {
  content: '"';
  font-family: var(--font-serif);
  font-size: 15rem;
  color: var(--green-primary);
  opacity: 0.07;
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.testimonial-author {
  color: var(--green-primary);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 120px 0;
  background: var(--bg-primary);
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header .section-subtitle {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--green-primary);
  display: block;
  margin-bottom: 1rem;
}

.faq-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 40px 22px 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  transition: color var(--transition-fast);
  position: relative;
}

.faq-question::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  width: 0;
  height: 100%;
  background: var(--green-primary);
  opacity: 0.08;
  transition: width var(--transition-fast);
}

.faq-question:hover::before,
.faq-question.active::before {
  width: calc(100% + 2.5rem + 40px);
}

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

.faq-icon {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--green-primary);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer p {
  padding: 0 0 22px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.85;
  position: relative;
  z-index: 1;
}

/* ===== PRODUCT GRID ===== */
.product-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 120px;
}

.product-image-main {
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.product-image-main img {
  width: 100%;
  display: block;
  transition: transform var(--transition-smooth);
}

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

.product-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.product-thumbs img {
  width: 90px; height: 90px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  opacity: 0.5;
  transition: all var(--transition-fast);
  background: var(--bg-card);
  border-radius: 2px;
}

.product-thumbs img:hover,
.product-thumbs img.active {
  opacity: 1;
  border-color: var(--green-primary);
  box-shadow: 0 0 15px rgba(45, 90, 39, 0.2);
}

.product-info .section-subtitle {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--green-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.product-info h1 {
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.product-price {
  font-size: 2.8rem;
  color: var(--green-primary);
  font-weight: 600;
  margin-bottom: 2rem;
  text-shadow: 0 0 30px rgba(45, 90, 39, 0.2);
  font-family: var(--font-serif);
}

.product-description {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.9;
}

.product-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.product-cta .btn {
  flex: 1;
  min-width: 200px;
}

.product-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

.product-specs {
  list-style: none;
  margin: 3rem 0;
  border-top: 1px solid var(--border-subtle);
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-specs span:first-child {
  color: var(--text-secondary);
  font-weight: 500;
}

.product-specs span:last-child {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; gap: 3rem; }
  .product-gallery { position: static; }
}

/* ===== COMPARISON TABLE ===== */
.comparison-wrapper {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid var(--border-subtle);
}

.comparison-wrapper h3 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.8rem;
}

.comparison-wrapper .section-subtitle {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--green-primary);
  display: block;
  text-align: center;
  margin-bottom: 2.5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--green-primary);
  background: rgba(45, 90, 39, 0.04);
  border-bottom: 1px solid var(--border-green);
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 500;
  min-width: 160px;
}

.highlight-col {
  background: rgba(45, 90, 39, 0.03);
  position: relative;
}

.highlight-col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 2px; height: 100%;
  background: var(--green-primary);
}

/* ===== EDITORIAL / REVIEW PAGE ===== */
.internal-page {
  padding: 180px 0 100px;
}

.editorial-article {
  max-width: 800px;
  margin: 0 auto;
}

.editorial-article img {
  width: 100%;
  border: 1px solid var(--border-subtle);
  margin-bottom: 3rem;
  display: block;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

.editorial-article h3 {
  font-size: 1.8rem;
  margin: 3.5rem 0 1.2rem;
  color: var(--green-primary);
}

.editorial-article p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.pull-quote {
  border-left: 3px solid var(--green-primary);
  padding: 1rem 0 1rem 2.5rem;
  margin: 3.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--text-primary);
}

/* ===== CONTACT / LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 3rem;
  text-align: center;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin: 3rem 0 1.2rem;
  color: var(--green-primary);
}

.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--green-primary);
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 0.4rem;
  color: var(--text-secondary);
}

.contact-info strong {
  color: var(--text-primary);
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 14px 0;
  margin-bottom: 2rem;
  border: none;
  border-bottom: 2px solid var(--border-subtle);
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus {
  border-bottom-color: var(--green-primary);
}

.form-input::placeholder {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--green-dark);
  padding: 100px 5% 40px;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 1.5rem;
  display: block;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.footer-col p,
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
  display: block;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: #fff;
}

.footer-col h4 {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
}

.footer-bottom {
  max-width: 1200px;
  margin: 80px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: -400px;
  left: 0; width: 100%;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
  border-top: 2px solid var(--green-primary);
  padding: 25px 5%;
  z-index: 9998;
  transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.12);
}

.cookie-banner.active {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.cookie-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.cookie-content a {
  color: var(--green-primary);
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.cookie-content a:hover {
  color: var(--green-light);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-buttons .btn {
  padding: 12px 28px;
  font-size: 0.72rem;
}

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

.btn-outline:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: transparent;
}

@media (max-width: 768px) {
  .cookie-content { flex-direction: column; text-align: center; gap: 1.5rem; }
  .cookie-buttons { flex-direction: column; width: 100%; max-width: 300px; }
  .cookie-buttons .btn { width: 100%; text-align: center; }
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(45, 90, 39, 0.06) 0%, transparent 70%);
}

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

.cta-content .section-subtitle {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--green-primary);
  display: block;
  margin-bottom: 1rem;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===== AUDIENCE SECTION ===== */
.audience-section {
  padding: 100px 0;
  background: var(--bg-primary);
}
.audience-header {
  text-align: center;
  margin-bottom: 4rem;
}
.audience-header .section-eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--green-primary);
  display: block;
  margin-bottom: 1rem;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.audience-card {
  background: var(--bg-card);
  padding: 3rem 2rem;
  border-top: 4px solid var(--green-primary);
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all var(--transition-fast);
  border-radius: 4px;
}
.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(45, 90, 39, 0.08);
}
.audience-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(45, 90, 39, 0.1);
  font-weight: 700;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}
.audience-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--green-dark);
  position: relative;
  z-index: 1;
}
.audience-card p {
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

/* ===== CARE SECTION ===== */
.care-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}
.care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.care-content .section-eyebrow {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--green-primary);
  display: block;
  margin-bottom: 1rem;
}
.care-content h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
}
.care-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.care-list {
  list-style: none;
}
.care-list li {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
}
.care-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--green-primary);
  font-weight: bold;
  font-size: 1.2rem;
}
.care-list li strong {
  display: block;
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.care-list li span {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.care-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 900px) {
  .audience-grid { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; gap: 3rem; }
}
