/* ==========================================================================
   Vitametrics Nigeria Limited — Design System
   ========================================================================== */

:root {
  /* Palette */
  --color-forest-950: #0f2018;
  --color-forest-900: #16301f;
  --color-forest-800: #1c3a2b;
  --color-forest-700: #254a37;
  --color-forest-600: #315f47;
  --color-terracotta-700: #a8461f;
  --color-terracotta-600: #c1613a;
  --color-terracotta-500: #d17849;
  --color-gold-600: #b4913a;
  --color-gold-500: #c9a24b;
  --color-gold-300: #e3cd93;
  --color-cream-50: #fdfbf5;
  --color-cream-100: #faf6ec;
  --color-cream-200: #f3ecdb;
  --color-cream-300: #e9dfc6;
  --color-ink-900: #16201a;
  --color-ink-700: #33402f;
  --color-ink-500: #5b6a56;
  --color-white: #ffffff;

  /* Semantic */
  --bg-page: var(--color-cream-100);
  --bg-panel: var(--color-white);
  --bg-dark: var(--color-forest-900);
  --text-primary: var(--color-ink-900);
  --text-muted: var(--color-ink-500);
  --text-on-dark: var(--color-cream-100);
  --text-on-dark-muted: #b9c6b8;
  --accent: var(--color-terracotta-600);
  --accent-dark: var(--color-terracotta-700);
  --highlight: var(--color-gold-500);
  --border-soft: rgba(22, 32, 26, 0.1);
  --border-on-dark: rgba(250, 246, 236, 0.14);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Spacing / layout */
  --container-max: 1180px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(22, 32, 26, 0.06);
  --shadow-md: 0 12px 32px rgba(22, 32, 26, 0.1);
  --shadow-lg: 0 24px 60px rgba(15, 32, 24, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--color-forest-900);
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section--tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-cream-100);
}

.section--panel {
  background: var(--bg-panel);
}

.section-head {
  max-width: 720px;
  margin: 0 0 3rem;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1em;
}

.section--dark .eyebrow {
  color: var(--color-gold-300);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.3rem;
}

.lede {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 62ch;
}

.section--dark .lede {
  color: var(--text-on-dark-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95em 1.9em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: var(--color-cream-50);
  box-shadow: 0 10px 24px rgba(168, 70, 31, 0.28);
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 14px 30px rgba(168, 70, 31, 0.36);
}

.btn-secondary {
  background: transparent;
  color: var(--color-forest-900);
  border-color: var(--color-forest-900);
}

.btn-secondary:hover {
  background: var(--color-forest-900);
  color: var(--color-cream-50);
}

.section--dark .btn-secondary {
  color: var(--color-cream-100);
  border-color: var(--border-on-dark);
}

.section--dark .btn-secondary:hover {
  background: var(--color-cream-100);
  color: var(--color-forest-900);
}

.btn-ghost-light {
  background: rgba(250, 246, 236, 0.08);
  color: var(--color-cream-100);
  border-color: rgba(250, 246, 236, 0.35);
}

.btn-ghost-light:hover {
  background: rgba(250, 246, 236, 0.16);
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Blur lives on a pseudo-element (not the header itself) so the header never
   becomes a fixed-positioning containing block, which would trap the
   fixed-position mobile nav panel and stop it from covering the viewport. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(253, 251, 245, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-color: var(--border-soft);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.05rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-forest-900);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 5px;
  border-radius: 14px;
  background: linear-gradient(155deg, rgba(37, 74, 55, 0.09), rgba(37, 74, 55, 0.02));
  border: 1px solid rgba(37, 74, 55, 0.14);
  box-shadow: 0 1px 3px rgba(22, 48, 31, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  letter-spacing: 0.01em;
}

.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

.brand-tagline {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.01em;
  color: var(--color-gold-600);
  margin-top: 0.3rem;
  padding-top: 0.3rem;
  border-top: 1px solid rgba(37, 74, 55, 0.14);
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  transition: right 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--accent-dark);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  right: 0;
}

.nav-links a[aria-current="page"] {
  color: var(--accent-dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: transparent;
  border: 1.5px solid var(--border-soft);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-forest-900);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-forest-900);
  color: var(--text-on-dark);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(201, 162, 75, 0.25), transparent),
    linear-gradient(180deg, rgba(15, 32, 24, 0.55) 0%, rgba(15, 32, 24, 0.92) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(4.5rem, 11vw, 8rem) 0 clamp(3.5rem, 8vw, 6rem);
  max-width: 760px;
}

.hero h1,
.page-hero h1 {
  color: var(--color-cream-100);
}

.hero .lede,
.page-hero .lede {
  color: var(--text-on-dark-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  margin-top: 3.5rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--border-on-dark);
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--color-gold-300);
  display: block;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
}

/* Sub-page hero (smaller) */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-forest-900);
  color: var(--text-on-dark);
  padding: clamp(3.5rem, 9vw, 5.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 80% at 90% 0%, rgba(201, 162, 75, 0.22), transparent),
    radial-gradient(60% 60% at 0% 100%, rgba(193, 97, 58, 0.18), transparent);
}

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

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 1.2rem;
}

.breadcrumb a {
  color: var(--color-gold-300);
}

.page-hero .lede {
  max-width: 640px;
}

/* ---------- Organic art / placeholders ---------- */
.art-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(155deg, var(--color-forest-700), var(--color-forest-950));
  isolation: isolate;
}

.art-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201, 162, 75, 0.35), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(193, 97, 58, 0.4), transparent 50%);
  mix-blend-mode: screen;
}

.art-frame img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.art-frame .art-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
}

.art-frame[data-tone="cream"] {
  background: linear-gradient(155deg, var(--color-cream-200), var(--color-cream-300));
}

.art-frame[data-tone="cream"]::before {
  background-image:
    radial-gradient(circle at 15% 25%, rgba(168, 70, 31, 0.16), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(28, 58, 43, 0.18), transparent 50%);
  mix-blend-mode: multiply;
}

.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.ratio-1-1 {
  aspect-ratio: 1 / 1;
}

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

/* ---------- Product media carousel ---------- */
.media-carousel-track {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.media-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease);
}

.media-carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.media-carousel-slide img,
.media-carousel-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(22, 48, 31, 0.55);
  color: var(--color-cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.media-carousel-btn:hover {
  background: rgba(22, 48, 31, 0.85);
  transform: translateY(-50%) scale(1.06);
}

.media-carousel-btn svg {
  width: 20px;
  height: 20px;
}

.media-carousel-prev {
  left: 0.85rem;
}

.media-carousel-next {
  right: 0.85rem;
}

.media-carousel-dots {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.4rem;
}

.media-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(250, 246, 236, 0.55);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.media-carousel-dot.is-active {
  background: var(--color-cream-100);
  transform: scale(1.25);
}

/* ---------- Grids & Cards ---------- */
.grid {
  display: grid;
  gap: 1.75rem;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 2.1rem 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(193, 97, 58, 0.25);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--color-forest-700), var(--color-forest-900));
  color: var(--color-gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  flex-shrink: 0;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card p:last-child {
  margin-bottom: 0;
}

.card--on-dark {
  background: rgba(250, 246, 236, 0.05);
  border-color: var(--border-on-dark);
}

.card--on-dark .card-icon {
  background: rgba(201, 162, 75, 0.16);
  color: var(--color-gold-300);
}

/* Product card */
.product-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card .art-frame {
  border-radius: 0;
}

.product-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3,
.card:not(.card--on-dark) h3,
.card:not(.card--on-dark) h4 {
  color: var(--color-forest-900);
}

.product-card-body .tag {
  margin-bottom: 0.9rem;
}

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

.product-card-body .btn,
.product-card-body a.link-arrow {
  margin-top: auto;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(193, 97, 58, 0.1);
  padding: 0.3em 0.8em;
  border-radius: 999px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 700;
  color: var(--color-forest-900);
  font-size: 0.92rem;
}

.link-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

/* ---------- Numbered process steps ---------- */
.steps {
  display: grid;
  gap: 1.75rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.75rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--color-gold-600);
  background: var(--color-forest-900);
  color: var(--color-gold-300);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Spec tables ---------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.95rem;
}

.spec-table tr {
  border-bottom: 1px solid var(--border-soft);
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  vertical-align: top;
}

.spec-table th {
  width: 42%;
  font-weight: 700;
  color: var(--color-forest-900);
}

.spec-table td {
  color: var(--text-muted);
}

.spec-table tr:nth-child(odd) {
  background: rgba(233, 223, 198, 0.35);
}

.section--dark .spec-table th,
.section--dark .spec-table td {
  color: #ffffff !important;
}

.section--dark .spec-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.section--dark .spec-table tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.06);
}

.moq-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-weight: 700;
  color: var(--color-forest-900);
  background: var(--color-gold-300);
  padding: 0.6em 1.1em;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

/* ---------- Grade pills (cashew kernels) ---------- */
.grade-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.25rem 0 1.75rem;
}

.grade-pill {
  background: var(--color-forest-900);
  color: var(--color-cream-100);
  padding: 0.7em 1.3em;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.grade-pill b {
  color: var(--color-gold-300);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-right: 0.5em;
}

/* ---------- Badges (certifications) ---------- */
.badge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.badge-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.badge-mark {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-forest-900);
}

.badge-card h4 {
  font-size: 0.98rem;
  margin-bottom: 0.3em;
}

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

/* ---------- Blockquote / callouts ---------- */
.callout {
  background: var(--color-cream-200);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1.75rem 2rem;
}

.callout h3 {
  margin-bottom: 0.4em;
}

.callout p:last-child {
  margin-bottom: 0;
}

/* ---------- FAQ Accordion ---------- */
.faq-list {
  border-top: 1px solid var(--border-soft);
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  padding: 1.4rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-forest-900);
}

.faq-question .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--color-forest-900);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s var(--ease), background 0.3s ease;
}

.faq-question .icon::before,
.faq-question .icon::after {
  content: "";
  position: absolute;
  background: var(--color-forest-900);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-question .icon::before {
  width: 10px;
  height: 1.5px;
}

.faq-question .icon::after {
  width: 1.5px;
  height: 10px;
}

.faq-item.is-open .faq-question .icon {
  background: var(--accent);
  border-color: var(--accent);
}

.faq-item.is-open .faq-question .icon::before,
.faq-item.is-open .faq-question .icon::after {
  background: var(--color-cream-50);
}

.faq-item.is-open .faq-question .icon::after {
  transform: scaleY(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer p {
  padding-bottom: 1.4rem;
  color: var(--text-muted);
  max-width: 68ch;
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-forest-900);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 0.85em 1em;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-soft);
  background: var(--color-cream-50);
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(193, 97, 58, 0.15);
}

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

.field .hint {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.form-status {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(37, 74, 55, 0.1);
  color: var(--color-forest-800);
}

.form-status.is-error {
  background: rgba(168, 70, 31, 0.1);
  color: var(--accent-dark);
}

/* ---------- Contact info list ---------- */
.info-list {
  display: grid;
  gap: 1.5rem;
}

.info-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.1rem;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 162, 75, 0.16);
  color: var(--color-gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 0.98rem;
  margin-bottom: 0.25em;
}

.info-item p,
.info-item a {
  color: var(--text-muted);
  font-size: 0.95rem;
  overflow-wrap: break-word;
}

.info-item a:hover {
  color: var(--accent-dark);
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    linear-gradient(120deg, rgba(22, 48, 31, 0.92), rgba(37, 74, 55, 0.8)),
    url("../images/vm3.jpeg") center/cover no-repeat;
  background-blend-mode: multiply;
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: var(--color-cream-100);
  margin-bottom: 0.4em;
}

.cta-band p {
  color: var(--text-on-dark-muted);
  margin: 0;
  max-width: 46ch;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-forest-950);
  color: var(--text-on-dark-muted);
  padding: clamp(3rem, 7vw, 4.5rem) 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid var(--border-on-dark);
}

.footer-brand .brand {
  color: var(--color-cream-100);
  margin-bottom: 1rem;
}

.footer-brand .brand-mark {
  background: linear-gradient(155deg, rgba(250, 246, 236, 0.1), rgba(250, 246, 236, 0.02));
  border-color: var(--border-on-dark);
  box-shadow: none;
}

.footer-brand .brand-name span {
  color: var(--text-on-dark-muted);
}

.footer-brand .brand-tagline {
  color: var(--color-gold-300);
  border-top-color: var(--border-on-dark);
}

.footer-brand p {
  font-size: 0.92rem;
  max-width: 32ch;
}

.footer-col h4 {
  color: var(--color-cream-100);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: grid;
  gap: 0.7rem;
}

.footer-col a {
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--color-gold-300);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  font-size: 0.82rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Legal pages ---------- */
.legal-content {
  max-width: 74ch;
}

.legal-content h2 {
  margin-top: 2rem;
}

.legal-content p {
  color: var(--text-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .badge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .nav-links,
  .nav-cta .btn-secondary {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  body.nav-open .nav-links {
    display: flex;
    position: fixed;
    inset: var(--header-h, 92px) 0 0 0;
    background: var(--color-cream-50);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem var(--container-pad);
    gap: 1.75rem;
    z-index: 90;
    overflow-y: auto;
  }

  body.nav-open .nav-links a {
    font-size: 1.2rem;
  }

  .grid--3,
  .grid--4,
  .grid--2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .badge-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .step {
    grid-template-columns: auto 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
