/* ============================================
   SIGMA GLOBAL LLP — MASTER STYLESHEET
   ============================================ */

:root {
  /* Brand palette - earthy premium */
  --olive-900: #1A2010;
  --olive-800: #232B16;
  --olive-700: #2D3719;
  --olive-600: #3D4A23;
  --olive-500: #4F5E2E;
  --gold-600: #B8904A;
  --gold-500: #C9A057;
  --gold-400: #D4B270;
  --gold-300: #E0C58A;
  --cream-100: #F5F1E8;
  --cream-50: #FAF7EE;
  --white: #FFFFFF;
  --text-on-dark: #F5F1E8;
  --text-on-dark-muted: #B8B09A;
  --text-on-light: #2D3719;
  --text-on-light-muted: #6B6855;
  --border-subtle: rgba(201, 160, 87, 0.18);
  --border-strong: rgba(201, 160, 87, 0.45);
  --shadow-warm: 0 20px 60px -20px rgba(26, 32, 16, 0.5);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width: 1280px;
  --content-pad: clamp(1.25rem, 5vw, 4rem);
  --section-pad: clamp(4rem, 9vw, 7rem);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-on-dark);
  background: var(--olive-800);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: var(--cream-100);
}
h1 { font-size: clamp(2.5rem, 6.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 0.85rem; }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 600; letter-spacing: -0.005em; }
p { color: var(--text-on-dark-muted); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.6; }

/* Utility */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--content-pad); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.25rem;
  display: inline-block;
}
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold-500);
  margin: 1.5rem 0;
  display: inline-block;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement {
  background: var(--gold-500);
  color: var(--olive-900);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.announcement strong { font-weight: 700; }
.announcement .sep { margin: 0 0.75rem; opacity: 0.5; }

/* ============================================
   NAVIGATION
   ============================================ */
nav.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 32, 16, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.15rem var(--content-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream-100);
  line-height: 1.05;
}
.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--gold-500);
  margin-top: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-on-dark);
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-500); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold-500);
}
.nav-cta {
  background: var(--gold-500);
  color: var(--olive-900) !important;
  padding: 0.7rem 1.4rem;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.78rem !important;
  text-transform: uppercase;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--gold-400); transform: translateY(-1px); }
.mobile-toggle {
  display: none;
  width: 28px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream-100);
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--olive-900);
    flex-direction: column;
    gap: 1.5rem;
    padding: 5rem 2rem 2rem;
    transition: right 0.35s ease;
    border-left: 1px solid var(--border-subtle);
  }
  .nav-links.open { right: 0; }
  .mobile-toggle { display: flex; z-index: 200; }
  .mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-toggle.open span:nth-child(2) { opacity: 0; }
  .mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--gold-500);
  color: var(--olive-900);
  border-color: var(--gold-500);
}
.btn-primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(201, 160, 87, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--cream-100);
  border-color: var(--gold-500);
}
.btn-outline:hover {
  background: var(--gold-500);
  color: var(--olive-900);
}
.btn-arrow::after {
  content: '→';
  font-size: 1.1em;
  transition: transform 0.25s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: var(--section-pad) 0;
  overflow: hidden;
  background: var(--olive-800);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}
/* Show desktop video on wider screens, mobile video on narrow screens */
.hero-video-mobile { display: none; }
@media (max-width: 768px) {
  .hero-video-desktop { display: none; }
  .hero-video-mobile { display: block; }
}
/* Hide the static seed image when a video is present */
.hero:has(.hero-video)::before {
  display: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-psyllium-seeds.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 32, 16, 0.85) 0%, rgba(26, 32, 16, 0.55) 50%, rgba(45, 55, 25, 0.75) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero h1 {
  margin-bottom: 1.75rem;
  animation: fadeUp 0.9s ease both;
}
.hero h1 .accent {
  color: var(--gold-500);
  font-style: italic;
  font-weight: 400;
}
.hero .lead {
  max-width: 620px;
  margin-bottom: 2.5rem;
  color: var(--cream-100);
  opacity: 0.85;
  animation: fadeUp 0.9s 0.15s ease both;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-eyebrow { animation: fadeUp 0.9s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   TRUST STATS BAR
   ============================================ */
.trust-bar {
  background: var(--olive-900);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2.5rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-item .num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--gold-500);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.trust-item .label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  font-weight: 500;
}
@media (max-width: 700px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: var(--section-pad) 0; position: relative; }
.section-light {
  background: var(--cream-100);
  color: var(--text-on-light);
}
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: var(--olive-800); }
.section-light p { color: var(--text-on-light-muted); }
.section-light .eyebrow { color: var(--gold-600); }
.section-darker { background: var(--olive-900); }

.section-header {
  max-width: 720px;
  margin-bottom: 4rem;
}
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header p { font-size: 1.05rem; line-height: 1.65; }

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.product-card {
  background: var(--olive-800);
  border: 1px solid var(--border-subtle);
  padding: 2.25rem;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.section-light .product-card {
  background: var(--white);
  border-color: rgba(45, 55, 25, 0.1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-warm);
}
.product-card:hover::before { transform: scaleX(1); }
.product-card .num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-500);
  font-style: italic;
}
.product-card h3 {
  margin: 0.75rem 0 1rem;
  font-size: 1.5rem;
}
.product-card p {
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.product-card .specs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.product-card .spec-tag {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--border-subtle);
  color: var(--text-on-dark-muted);
  font-weight: 500;
}
.section-light .product-card .spec-tag {
  border-color: rgba(45, 55, 25, 0.15);
  color: var(--text-on-light-muted);
}
.product-card .learn-more {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.product-card .learn-more::after {
  content: '→';
  transition: transform 0.25s;
}
.product-card:hover .learn-more::after { transform: translateX(4px); }

/* ============================================
   FEATURES (WHY US)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem 2rem;
}
.feature {
  position: relative;
  padding-top: 1rem;
}
.feature .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-500);
  color: var(--gold-500);
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}
.feature h4 { margin-bottom: 0.6rem; color: var(--cream-100); }
.section-light .feature h4 { color: var(--olive-800); }
.feature p { font-size: 0.92rem; line-height: 1.65; }

/* ============================================
   TWO-COLUMN
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 850px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
}
.two-col .img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.two-col .img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,32,16,0.4) 100%);
  z-index: 1;
}
.two-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   TABLES
   ============================================ */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 2rem 0;
}
.spec-table th, .spec-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}
.spec-table th {
  font-weight: 600;
  color: var(--gold-500);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  background: var(--olive-900);
}
.spec-table td { color: var(--text-on-dark-muted); }
.spec-table tr:hover td { background: rgba(201, 160, 87, 0.04); }
.section-light .spec-table th { background: var(--olive-800); color: var(--gold-300); }
.section-light .spec-table td { color: var(--text-on-light); }
.section-light .spec-table th, .section-light .spec-table td {
  border-bottom-color: rgba(45, 55, 25, 0.1);
}
@media (max-width: 700px) {
  .spec-table { font-size: 0.82rem; }
  .spec-table th, .spec-table td { padding: 0.75rem 0.6rem; }
}

/* ============================================
   CERTIFICATIONS STRIP
   ============================================ */
.certs-strip {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}
.cert-badge {
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
  background: var(--olive-900);
  min-width: 130px;
  text-align: center;
}
.cert-badge.in-progress { opacity: 0.55; font-style: italic; }
.section-light .cert-badge {
  background: var(--white);
  border-color: rgba(45, 55, 25, 0.15);
  color: var(--gold-600);
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--olive-800);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.section-light .blog-card { background: var(--white); border-color: rgba(45, 55, 25, 0.1); }
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-warm);
}
.blog-card .img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--olive-900);
}
.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover img { transform: scale(1.05); }
.blog-card .content {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card .meta {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
}
.blog-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.blog-card p { font-size: 0.9rem; flex: 1; margin-bottom: 1.25rem; }
.blog-card .read-more {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
  background: var(--olive-900);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 160, 87, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p { margin-bottom: 2.5rem; max-width: 420px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail .label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.contact-detail .value {
  color: var(--cream-100);
  font-size: 0.98rem;
}
.contact-detail .value a:hover { color: var(--gold-500); }

.form-card {
  background: var(--cream-100);
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--border-strong);
}
.form-card h3 {
  color: var(--olive-800);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.form-card .form-sub {
  color: var(--text-on-light-muted);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--olive-700);
  margin-bottom: 0.45rem;
}
.form-group label .req { color: var(--gold-600); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid rgba(45, 55, 25, 0.2);
  color: var(--olive-800);
  font-size: 0.95rem;
  transition: all 0.2s;
  border-radius: 2px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 160, 87, 0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D3719' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.form-card .btn { width: 100%; margin-top: 1rem; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  display: none;
  border-left: 3px solid;
}
.form-status.success { display: block; background: rgba(76, 142, 51, 0.12); border-color: #4C8E33; color: #2D5A1F; }
.form-status.error { display: block; background: rgba(180, 60, 50, 0.12); border-color: #B43C32; color: #8B2F26; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--olive-900);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 850px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand p {
  font-size: 0.9rem;
  margin: 1.25rem 0;
  max-width: 320px;
  line-height: 1.65;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
}
.footer-col ul li a:hover { color: var(--gold-500); }
.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.footer-col p a:hover { color: var(--gold-500); }
.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
}
.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark-muted);
  transition: all 0.2s;
}
.social-links a:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
  background: rgba(201, 160, 87, 0.05);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s;
  animation: pulse-whatsapp 2.4s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }
@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4), 0 6px 24px rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 6px 24px rgba(37, 211, 102, 0.4); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 6px 24px rgba(37, 211, 102, 0.4); }
}
@media (max-width: 600px) {
  .whatsapp-float { bottom: 1rem; right: 1rem; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  background: var(--olive-900);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 160, 87, 0.06) 0%, transparent 60%);
}
.page-header-inner { position: relative; z-index: 2; max-width: 800px; }
.page-header h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.1rem;
  color: var(--cream-100);
  opacity: 0.8;
  max-width: 620px;
}
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold-500); }
.breadcrumb .sep { margin: 0 0.5rem; }

/* ============================================
   ARTICLE / BLOG POST
   ============================================ */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}
.article-body h2 {
  font-size: 1.85rem;
  margin: 3rem 0 1rem;
}
.article-body h3 {
  font-size: 1.4rem;
  margin: 2rem 0 0.75rem;
}
.article-body p {
  color: var(--text-on-dark);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}
.article-body ul, .article-body ol {
  margin: 1.5rem 0 1.5rem 1.5rem;
}
.article-body li {
  list-style: disc;
  color: var(--text-on-dark);
  opacity: 0.9;
  margin-bottom: 0.75rem;
}
.article-body strong { color: var(--cream-100); font-weight: 600; }
.article-body blockquote {
  border-left: 3px solid var(--gold-500);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--cream-100);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.5;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 0;
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream-100);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.section-light .faq-item summary { color: var(--olive-800); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold-500);
  font-size: 1.6rem;
  font-family: var(--font-body);
  font-weight: 300;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 1rem;
  line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--gold-500);
  color: var(--olive-900);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.cta-banner h2 { color: var(--olive-900); margin-bottom: 1rem; }
.cta-banner p { color: var(--olive-800); opacity: 0.85; max-width: 580px; margin: 0 auto 2rem; font-size: 1.05rem; }
.cta-banner .btn-primary {
  background: var(--olive-900);
  color: var(--gold-500);
  border-color: var(--olive-900);
}
.cta-banner .btn-primary:hover {
  background: var(--olive-800);
  border-color: var(--olive-800);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--olive-900);
  border-top: 2px solid var(--gold-500);
  padding: 1.25rem;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: 0.85rem; flex: 1; min-width: 280px; margin: 0; }
.cookie-banner .btn { padding: 0.65rem 1.25rem; font-size: 0.75rem; }

/* ============================================
   PRINT
   ============================================ */
@media print {
  nav, footer, .whatsapp-float, .cookie-banner, .announcement { display: none !important; }
  body { background: white; color: black; }
  * { color: black !important; }
}
