@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&display=swap');

:root {
  /* ===== NEW THEME: MINIMALIST MONOCHROME ===== */
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAFAFA;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F5F5F5;
  --text-dark: #111111;
  --text-body: #333333;
  --text-light: #666666;
  --accent: #000000;
  --accent-dark: #222222;
  --accent-light: #444444;
  --accent-glow: rgba(0, 0, 0, 0.03);
  --accent-soft: #F0F0F0;
  --border: #EAEAEA;
  --border-accent: #CCCCCC;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);


  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, sans-serif;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.site-html { scroll-behavior: smooth; }

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

.base-heading {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 500;
}

.base-link { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
.base-link:hover { color: var(--accent); }

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

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: #0d1f12;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(196, 151, 58, 0.6);
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}
.preloader-spinner {
  width: 44px;
  height: 44px;
  border: 2px solid rgba(196, 151, 58, 0.15);
  border-top-color: var(--accent-light);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.preloader-text {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 300;
  font-style: italic;
  color: #c4973a;
  animation: pulse 1.5s ease infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

/* ===== AFFILIATE BANNER ===== */
.affiliate-banner {
  background: var(--text-dark);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 2001;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(245, 241, 236, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all var(--transition-fast);
}
.site-header.scrolled {
  background: rgba(245, 241, 236, 0.97);
  box-shadow: 0 2px 20px rgba(13, 31, 18, 0.05);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 0;
}
.brand-logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.brand-logo span { color: var(--accent-light); }

.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-body);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-light);
  border-radius: 1.5px;
  transition: width var(--transition-fast);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--text-dark); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(245, 241, 236, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.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: 2rem;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 34px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  transition: all var(--transition-fast);
  text-align: center;
  border-radius: var(--radius-full);
}
.btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 61, 26, 0.2);
}
.btn-solid {
  background: var(--accent);
  color: #fff;
}
.btn-solid:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO SPLIT ===== */
.hero-split {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--bg-primary);
}
.hero-split-text {
  flex: 1;
  padding: 4rem 8%;
  max-width: 800px;
}
.hero-split-img {
  flex: 1;
  height: calc(100vh - 80px);
}
.hero-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-split-text .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.hero-split-text h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}
.hero-split-text h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-light);
}
.hero-split-text p {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 500px;
}
.hero-split-text .hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 2.5rem;
}
.hero-split-text .hero-price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
}
.hero-split-text .hero-price-note {
  font-size: 0.85rem;
  color: var(--text-light);
}
.hero-split-text .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-split {
    flex-direction: column;
  }
  .hero-split-img {
    width: 100%;
    height: 50vh;
    order: -1;
  }
  .hero-split-text {
    padding: 3rem 5%;
  }
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  width: 48px;
  height: 2px;
  background: var(--accent-light);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

/* ===== FEATURES ===== */
.features-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}
.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-light);
  margin-bottom: 1rem;
}
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
  align-items: start;
}
.feature-card {
  background: transparent;
  padding: 0;
  border: none;
  transition: all var(--transition-fast);
  position: relative;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-4px);
}
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  stroke-width: 1.5;
  fill: none;
}
.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  font-family: var(--font-serif);
  font-weight: 500;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

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

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase {
  padding: 100px 0;
  position: relative;
}
.product-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: 90px;
}
.product-main-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.product-main-image img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.product-main-image:hover img { transform: scale(1.03); }

.product-thumbs {
  display: flex;
  gap: 10px;
}
.product-thumbs img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: all var(--transition-fast);
}
.product-thumbs img:hover,
.product-thumbs img.active {
  opacity: 1;
  border-color: var(--accent-light);
}

.product-info h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 0.6rem;
  line-height: 1.15;
}
.product-subtitle {
  font-size: 0.8rem;
  color: var(--accent-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.4rem;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.product-tax {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.product-desc {
  font-size: 0.97rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.85;
  font-weight: 300;
}
.product-highlights {
  list-style: none;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.product-highlights li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.product-highlights li:last-child { border-bottom: none; }
.product-highlights span:first-child {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-highlights span:last-child { color: var(--text-body); }

.btn-buy {
  width: 100%;
  max-width: 400px;
  padding: 18px;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0.8rem;
}
.btn-buy svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.buy-note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
}

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

/* ===== PHILOSOPHY ===== */
.philosophy-section {
  padding: 100px 0;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.philosophy-img {
  width: 100%;
  min-width: 0;
}
.philosophy-img img {
  width: 100%;
  height: auto;
  display: block;
}
.philosophy-text {
  width: 100%;
  max-width: 540px;
  min-width: 0;
}
.philosophy-text .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.philosophy-text h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}
.philosophy-text h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-light);
}
.philosophy-text p {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

/* ===== TESTIMONIAL ===== */
.testimonial-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: all var(--transition-fast);
}
.testimonial-card:hover {
  border-color: rgba(196, 151, 58, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: var(--accent-light);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  letter-spacing: 3px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}
.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 0;
}
.faq-container {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item:has(.faq-question.active) {
  border-color: rgba(196, 151, 58, 0.3);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.4rem 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  transition: color var(--transition-fast);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-light);
  transition: transform var(--transition-fast);
  line-height: 1;
}
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.faq-answer p {
  padding: 0 1.8rem 1.4rem;
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.85;
  font-weight: 300;
}

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 61, 26, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1.2rem;
}
.cta-section p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== INTERNAL PAGES ===== */
.internal-page {
  padding: 130px 0 80px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
.contact-info {
  background: var(--bg-card);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-family: var(--font-serif);
}
.contact-info p {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.contact-info strong {
  color: var(--text-dark);
  display: block;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-info a { color: var(--accent); }
.contact-info a:hover { color: var(--accent-dark); }

.form-card {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.form-input {
  width: 100%;
  padding: 14px 0;
  margin-bottom: 1.8rem;
  border: none;
  border-bottom: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}
.form-input::placeholder { color: var(--text-light); }
.form-input:focus { border-bottom-color: var(--accent-light); }
.form-textarea { resize: none; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ===== LEGAL ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h1 {
  margin-bottom: 3rem;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
}
.legal-content h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 1rem;
  color: var(--text-dark);
  font-family: var(--font-serif);
  font-weight: 500;
}
.legal-content p {
  color: var(--text-body);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.85;
  font-weight: 300;
}
.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.legal-content li {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0d1f12;
  padding: 70px 5% 40px;
  color: rgba(255,255,255,0.5);
}
.site-footer .base-heading,
.site-footer .base-link { color: inherit; }
.site-footer .base-link:hover { color: var(--accent-light); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.2rem;
  display: block;
  letter-spacing: -0.01em;
}
.footer-logo span { color: var(--accent-light); }
.footer-col p,
.footer-col a {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
  display: block;
  transition: color var(--transition-fast);
  font-weight: 300;
}
.footer-col a:hover { color: var(--accent-light); }
.footer-col p { line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.8rem;
}
.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: -300px;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  border-top: 1px solid rgba(196, 151, 58, 0.3);
  padding: 28px 5%;
  z-index: 9999;
  transition: bottom var(--transition-slow);
  box-shadow: 0 -8px 40px rgba(13, 31, 18, 0.08);
}
#cookie-banner.active { bottom: 0; }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.cookie-text {
  flex: 1;
}
.cookie-text h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--text-dark);
}
.cookie-text p {
  font-size: 0.87rem;
  color: var(--text-body);
  font-weight: 300;
}
.cookie-text a { color: var(--accent); text-decoration: underline; font-size: 0.87rem; }
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 0.74rem;
}
@media (max-width: 700px) {
  .cookie-inner { flex-direction: column; text-align: center; gap: 1.4rem; }
}

/* ===== EDITORIAL / REVIEW ===== */
.editorial-article { max-width: 780px; margin: 0 auto; }
.editorial-article img {
  width: 75%;
  max-width: 600px;
  display: block;
  margin: 0 auto 3rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.editorial-article h3 {
  font-size: 1.8rem;
  margin: 3rem 0 1.2rem;
  font-family: var(--font-serif);
}
.editorial-article p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-weight: 300;
}
.pull-quote {
  border-left: 3px solid var(--accent-light);
  padding-left: 1.8rem;
  margin: 3rem 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--text-dark);
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-family: var(--font-sans);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.comparison-table th,
.comparison-table td {
  padding: 1.4rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
}
.comparison-table th {
  background: var(--bg-secondary);
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1.05rem;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr { transition: background var(--transition-fast); }
.comparison-table tbody tr:hover { background: var(--bg-card-hover); }
.comparison-table .highlight-col {
  background: rgba(196, 151, 58, 0.05);
  color: var(--text-dark);
  font-weight: 500;
}
.comparison-table th.highlight-col {
  color: var(--accent);
  background: rgba(26, 61, 26, 0.06);
}

@media (max-width: 768px) {
  .comparison-table th, .comparison-table td { padding: 1rem; font-size: 0.9rem; }
}
