/* ═══════════════════════════════════════════════════════════════
   Chitawira Group — Corporate Design System
   Colors: Deep Green, Gold Accents, Dark backgrounds, Grain texture
   Typography: Playfair Display (headings), DM Sans (body)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --cg-green: #2a6640;
  --cg-green-light: #3c8c57;
  --cg-green-pale: #e8f4ec;
  --cg-gold: #c49a3c;
  --cg-gold-light: #e8c068;
  --cg-dark: #141a14;
  --cg-mid: #2c352c;
  --cg-text: #e8ede9;
  --cg-text-muted: #9aac9c;
  --cg-white: #f5f8f5;
  --cg-light-bg: #f7faf7;
  --cg-light-text: #0f1a12;
  --cg-light-muted: #516056;
  --cg-radius: 16px;
  --cg-radius-sm: 12px;
  --cg-radius-xs: 8px;
  --cg-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

/* ── Landing / Hero Shell ── */
.cg-landing {
  position: relative;
  overflow: hidden;
  color: var(--cg-text);
}

.cg-bg-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(42, 102, 64, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(196, 154, 60, 0.10) 0%, transparent 55%),
    var(--cg-dark);
}

.cg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: cg-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.cg-orb--1 { width: 520px; height: 520px; background: var(--cg-green); top: -120px; left: -100px; animation-duration: 22s; }
.cg-orb--2 { width: 380px; height: 380px; background: var(--cg-gold); bottom: -80px; right: -80px; animation-duration: 17s; animation-delay: -6s; }
.cg-orb--3 { width: 260px; height: 260px; background: var(--cg-green-light); top: 40%; left: 50%; animation-duration: 14s; animation-delay: -10s; }

@keyframes cg-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 30px) scale(1.08); }
}

.cg-landing .container { position: relative; z-index: 2; }

/* ── Badge ── */
.cg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(42, 102, 64, 0.18);
  border: 1px solid rgba(42, 102, 64, 0.45);
  color: #7ec896;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  font-family: 'DM Sans', sans-serif;
}

.cg-dot {
  width: 6px;
  height: 6px;
  background: #7ec896;
  border-radius: 50%;
  animation: cg-pulse 2s ease infinite;
}

@keyframes cg-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ── Typography ── */
.cg-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cg-white);
  margin: 0;
}

.cg-accent {
  background: linear-gradient(135deg, var(--cg-gold-light), var(--cg-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cg-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  color: var(--cg-text-muted);
  font-weight: 300;
  max-width: 640px;
  margin: 1.25rem auto 0;
  line-height: 1.7;
}

/* ── Buttons ── */
.cg-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.cg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: var(--cg-radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cg-text);
  transition: all var(--cg-transition);
  cursor: pointer;
  letter-spacing: 0.02em;
}

.cg-btn:hover {
  border-color: rgba(196, 154, 60, 0.45);
  color: var(--cg-white);
  transform: translateY(-1px);
}

.cg-btn--primary {
  background: linear-gradient(135deg, var(--cg-green), var(--cg-green-light));
  border-color: rgba(42, 102, 64, 0.6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(42, 102, 64, 0.25);
}

.cg-btn--primary:hover {
  filter: brightness(1.08);
  color: #fff;
  box-shadow: 0 6px 28px rgba(42, 102, 64, 0.35);
}

.cg-btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.cg-btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.cg-btn--gold {
  background: linear-gradient(135deg, var(--cg-gold), var(--cg-gold-light));
  border-color: rgba(196, 154, 60, 0.5);
  color: var(--cg-dark);
  font-weight: 600;
}

.cg-btn--gold:hover {
  filter: brightness(1.1);
  color: var(--cg-dark);
}

/* ── Divider ── */
.cg-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 420px;
  margin: 2rem auto 0;
}

.cg-divider hr {
  flex: 1;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cg-divider span {
  color: var(--cg-gold);
  font-size: 1.1rem;
}

/* ── Section Blocks ── */
.cg-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.cg-section-title {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cg-text-muted);
  margin-bottom: 0.85rem;
}

/* ── Hero Home ── */
.cg-hero-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) 1.5rem clamp(3rem, 7vw, 6rem);
  position: relative;
  z-index: 2;
  min-height: 70vh;
  justify-content: center;
}

.cg-hero-home .cg-title {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  max-width: 900px;
}

.cg-hero-home .cg-tagline {
  max-width: 700px;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
}

/* ── Cards Grid (Group Companies) ── */
.cg-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1200px) {
  .cg-cards { grid-template-columns: repeat(5, 1fr); }
}

.cg-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.cg-card-link:hover { color: inherit; text-decoration: none; }

.cg-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--cg-radius);
  padding: 1.6rem 1.3rem;
  transition: all var(--cg-transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cg-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cg-green), var(--cg-gold));
  opacity: 0;
  transition: opacity var(--cg-transition);
}

.cg-card:hover {
  background: rgba(42, 102, 64, 0.1);
  border-color: rgba(42, 102, 64, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.cg-card:hover::after { opacity: 1; }

.cg-card-icon {
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
  display: block;
  color: var(--cg-gold-light);
}

.cg-card-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cg-white);
  margin-bottom: 0.5rem;
}

.cg-card-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--cg-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.cg-card-desc p { margin: 0 0 0.5rem; }
.cg-card-desc p:last-child { margin-bottom: 0; }

/* ── Status Badges ── */
.cg-card-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-top: auto;
}

.cg-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.cg-status-active {
  background: rgba(42, 102, 64, 0.25);
  color: #7ec896;
  border: 1px solid rgba(42, 102, 64, 0.4);
}
.cg-status-active .cg-status-dot { background: #7ec896; animation: cg-pulse 2s infinite; }

.cg-status-planned {
  background: rgba(196, 154, 60, 0.2);
  color: #e8c068;
  border: 1px solid rgba(196, 154, 60, 0.4);
}
.cg-status-planned .cg-status-dot { background: #e8c068; }

.cg-status-dev {
  background: rgba(255, 255, 255, 0.07);
  color: var(--cg-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.cg-status-dev .cg-status-dot { background: var(--cg-text-muted); }

/* ── Inner Page Hero ── */
.cg-page-hero {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 1rem clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  z-index: 2;
}

.cg-page-hero .cg-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 800px;
  margin: 0 auto;
}

.cg-page-hero .cg-tagline {
  max-width: 720px;
}

/* ── KPI Grid ── */
.cg-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}

.cg-kpi {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  text-align: left;
  transition: all var(--cg-transition);
}

.cg-kpi:hover {
  border-color: rgba(42, 102, 64, 0.3);
  transform: translateY(-2px);
}

.cg-kpi-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--cg-white);
}

.cg-kpi-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--cg-text-muted);
  margin-top: 0.4rem;
  line-height: 1.5;
}

/* ── Prose (Rich Text) ── */
.cg-prose {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.8;
  max-width: 860px;
  margin: 0 auto;
}

.cg-prose p {
  margin-bottom: 1.25rem;
}

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

/* ── Light Sections ── */
.cg-landing--light {
  background: var(--cg-light-bg);
  color: var(--cg-light-text);
}

/* ── Home: About & Operations — soft photo + brand wash (photo ~25% = ~75% gradient presence) ── */
.cg-home-strip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.cg-home-strip__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cg-home-strip__photo {
  position: absolute;
  inset: -16px;
  background-size: cover;
  background-position: center;
  /* ~75% transparent so corporate greens / golds read through */
  opacity: 0.25;
  filter: blur(12px) saturate(1.05);
  transform: scale(1.06);
  transition: opacity 0.6s ease;
}

.cg-home-strip__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Glassy wash: keeps typography contrast + shows brand tints */
  background:
    linear-gradient(
      168deg,
      rgba(247, 250, 247, 0.78) 0%,
      rgba(247, 250, 247, 0.72) 38%,
      rgba(232, 244, 236, 0.76) 100%
    );
}

.cg-home-strip__wash--about {
  background:
    linear-gradient(165deg, rgba(247, 250, 247, 0.82) 0%, rgba(241, 248, 243, 0.74) 45%, rgba(232, 244, 236, 0.8) 100%),
    radial-gradient(ellipse 75% 55% at 12% 18%, rgba(42, 102, 64, 0.14), transparent 58%),
    radial-gradient(ellipse 60% 50% at 88% 85%, rgba(196, 154, 60, 0.1), transparent 52%);
}

.cg-home-strip__wash--operations {
  background:
    linear-gradient(195deg, rgba(247, 250, 247, 0.8) 0%, rgba(247, 250, 247, 0.72) 42%, rgba(236, 244, 238, 0.78) 100%),
    radial-gradient(ellipse 65% 48% at 85% 12%, rgba(42, 102, 64, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 45% at 8% 88%, rgba(196, 154, 60, 0.09), transparent 50%);
}

.cg-home-strip > .container {
  position: relative;
  z-index: 2;
}

@media (prefers-reduced-motion: reduce) {
  .cg-home-strip__photo { filter: blur(6px) saturate(1); transform: scale(1.02); }
}

.cg-landing--light .cg-bg-canvas,
.cg-landing--light .cg-orb { display: none; }

.cg-landing--light .cg-title { color: var(--cg-light-text); }
.cg-landing--light .cg-tagline { color: var(--cg-light-muted); }
.cg-landing--light .cg-section-title { color: #607064; }
.cg-landing--light .cg-divider hr { border-top-color: rgba(3, 15, 8, 0.12); }
.cg-landing--light .cg-divider span { color: var(--cg-gold); }
.cg-landing--light .cg-prose { color: #3a4a3e; }

.cg-landing--light .cg-card {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cg-landing--light .cg-card:hover {
  border-color: rgba(42, 102, 64, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.cg-landing--light .cg-card-desc { color: #4a5a50; }
.cg-landing--light .cg-card-name { color: var(--cg-light-text); }

.cg-landing--light .cg-kpi {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cg-landing--light .cg-kpi:hover {
  border-color: rgba(42, 102, 64, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cg-landing--light .cg-kpi .cg-kpi-num { color: var(--cg-light-text); }
.cg-landing--light .cg-kpi .cg-kpi-label { color: #4a5a50; }

.cg-landing--light .cg-btn {
  border-color: rgba(15, 26, 18, 0.15);
  background: #ffffff;
  color: var(--cg-light-text);
}

.cg-landing--light .cg-btn:hover {
  border-color: rgba(42, 102, 64, 0.3);
  background: var(--cg-green-pale);
  color: var(--cg-light-text);
}

.cg-landing--light .cg-btn--secondary {
  background: #ffffff;
  border-color: rgba(15, 26, 18, 0.12);
  color: var(--cg-light-text);
}

.cg-landing--light .cg-btn--secondary:hover {
  background: var(--cg-green-pale);
  border-color: rgba(42, 102, 64, 0.25);
}

.cg-landing--light .cg-btn--primary {
  background: linear-gradient(135deg, var(--cg-green), var(--cg-green-light));
  border-color: rgba(42, 102, 64, 0.6);
  color: #fff;
  box-shadow: 0 4px 20px rgba(42, 102, 64, 0.25);
}

.cg-landing--light .cg-btn--primary:hover {
  background: linear-gradient(135deg, var(--cg-green-light), var(--cg-green));
  color: #fff;
  box-shadow: 0 6px 24px rgba(42, 102, 64, 0.35);
  transform: translateY(-1px);
}

.cg-landing--light .cg-btn--gold {
  background: linear-gradient(135deg, var(--cg-gold), var(--cg-gold-light));
  border-color: rgba(196, 154, 60, 0.5);
  color: var(--cg-dark);
  font-weight: 600;
}

.cg-landing--light .cg-btn--gold:hover {
  box-shadow: 0 6px 24px rgba(196, 154, 60, 0.3);
  transform: translateY(-1px);
}

/* ── Company Detail Page ── */
.cg-company-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) 1.5rem clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

.cg-company-hero .cg-company-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cg-company-hero .cg-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.cg-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cg-detail-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.cg-detail-card {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.08);
  border-radius: var(--cg-radius);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cg-detail-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cg-light-text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--cg-green-pale);
}

.cg-detail-card p {
  font-family: 'DM Sans', sans-serif;
  color: #3a4a3e;
  line-height: 1.75;
  font-size: 0.95rem;
}

.cg-detail-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.cg-sidebar-card {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.08);
  border-radius: var(--cg-radius);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cg-sidebar-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cg-light-text);
  margin-bottom: 0.75rem;
}

.cg-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cg-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #3a4a3e;
  border-bottom: 1px solid rgba(15, 26, 18, 0.05);
}

.cg-service-list li:last-child { border-bottom: none; }

.cg-service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cg-green);
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.cg-status-badge-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
}

/* ── About / Vision / Mission Cards ── */
.cg-vm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2.5rem auto 0;
}

@media (min-width: 768px) {
  .cg-vm-grid { grid-template-columns: 1fr 1fr; }
}

.cg-vm-card {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.08);
  border-radius: var(--cg-radius);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all var(--cg-transition);
}

.cg-vm-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cg-vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cg-green), var(--cg-gold));
}

.cg-vm-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cg-light-text);
  margin-bottom: 0.75rem;
}

.cg-vm-card .cg-vm-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.cg-vm-card p {
  font-family: 'DM Sans', sans-serif;
  color: #3a4a3e;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ══════════════════════════════════════════════
   ABOUT PAGE — Rich corporate about
   ══════════════════════════════════════════════ */

/* Label tag */
.cg-about-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cg-green);
  margin-bottom: 0.75rem;
}

.cg-about-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: var(--cg-light-text);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

/* ── Story split layout ── */
.cg-about-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.cg-about-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--cg-light-muted);
  line-height: 1.85;
}

.cg-about-text p { margin-bottom: 1.1rem; }
.cg-about-text p:last-child { margin-bottom: 0; }

/* Stat stack */
.cg-about-stat-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cg-about-stat-card {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.08);
  border-radius: var(--cg-radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all var(--cg-transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cg-about-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.cg-about-stat-card--accent {
  background: var(--cg-green);
  border-color: var(--cg-green);
}

.cg-about-stat-card--accent .cg-about-stat-num,
.cg-about-stat-card--accent .cg-about-stat-label {
  color: #fff;
}

.cg-about-stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--cg-light-text);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.cg-about-stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--cg-light-muted);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

@media (max-width: 991px) {
  .cg-about-split { grid-template-columns: 1fr; }
  .cg-about-stat-stack { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 479px) {
  .cg-about-stat-stack { grid-template-columns: 1fr; }
}

/* ── Pillar cards (dark band) ── */
.cg-about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

.cg-about-pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--cg-radius);
  padding: 2rem;
  transition: all var(--cg-transition);
  position: relative;
  overflow: hidden;
}

.cg-about-pillar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cg-green), var(--cg-gold));
  opacity: 0;
  transition: opacity var(--cg-transition);
}

.cg-about-pillar:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.cg-about-pillar:hover::after { opacity: 1; }

.cg-about-pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(42, 102, 64, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--cg-green-light);
  margin-bottom: 1.25rem;
}

.cg-about-pillar h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cg-white);
  margin-bottom: 0.6rem;
}

.cg-about-pillar p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--cg-text-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 991px) {
  .cg-about-pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .cg-about-pillars { grid-template-columns: 1fr; gap: 1rem; }
  .cg-about-pillar { padding: 1.5rem; }
}

/* ── Vision & Mission cards ── */
.cg-about-vm-section { text-align: center; }

.cg-about-vm-header { margin-bottom: 2rem; }

.cg-about-vm-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.cg-about-vm-card {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.08);
  border-radius: var(--cg-radius);
  padding: 2.5rem 2rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: all var(--cg-transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cg-about-vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.cg-about-vm-card--vision::before {
  background: linear-gradient(90deg, var(--cg-green), var(--cg-green-light));
}

.cg-about-vm-card--mission::before {
  background: linear-gradient(90deg, var(--cg-gold), var(--cg-gold-light));
}

.cg-about-vm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.cg-about-vm-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.cg-about-vm-card--vision .cg-about-vm-icon {
  background: var(--cg-green-pale);
  color: var(--cg-green);
}

.cg-about-vm-card--mission .cg-about-vm-icon {
  background: rgba(196, 154, 60, 0.12);
  color: var(--cg-gold);
}

.cg-about-vm-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cg-light-text);
  margin-bottom: 0.75rem;
}

.cg-about-vm-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--cg-light-muted);
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 767px) {
  .cg-about-vm-cards { grid-template-columns: 1fr; gap: 1.25rem; }
  .cg-about-vm-card { padding: 2rem 1.5rem; }
}

/* ── Sector strips ── */
.cg-about-sectors {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.cg-about-sector {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.06);
  border-radius: var(--cg-radius);
  padding: 1.5rem 1.75rem;
  transition: all var(--cg-transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.cg-about-sector::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cg-green), var(--cg-gold));
  opacity: 0;
  transition: opacity var(--cg-transition);
}

.cg-about-sector:hover {
  border-color: rgba(42, 102, 64, 0.15);
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.cg-about-sector:hover::before { opacity: 1; }

.cg-about-sector-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cg-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--cg-green);
  flex-shrink: 0;
}

.cg-about-sector-body h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cg-light-text);
  margin-bottom: 0.3rem;
}

.cg-about-sector-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--cg-light-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 639px) {
  .cg-about-sector { padding: 1.25rem; gap: 1rem; }
}

/* ── Company rows (about page) ── */
.cg-about-companies {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

.cg-about-company-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.06);
  border-radius: var(--cg-radius);
  padding: 1.35rem 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: all var(--cg-transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.cg-about-company-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cg-green), var(--cg-gold));
  opacity: 0;
  transition: opacity var(--cg-transition);
}

.cg-about-company-row:hover {
  border-color: rgba(42, 102, 64, 0.15);
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  color: inherit;
  text-decoration: none;
}

.cg-about-company-row:hover::before { opacity: 1; }

.cg-about-company-icon {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cg-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cg-about-company-body h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cg-light-text);
  margin-bottom: 0.2rem;
}

.cg-about-company-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--cg-light-muted);
  line-height: 1.5;
  margin: 0;
}

.cg-about-company-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.cg-about-status {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
}

.cg-status--active {
  background: rgba(42, 102, 64, 0.1);
  color: var(--cg-green);
}

.cg-status--planned {
  background: rgba(196, 154, 60, 0.1);
  color: var(--cg-gold);
}

.cg-status--dev {
  background: rgba(15, 26, 18, 0.06);
  color: var(--cg-light-muted);
}

.cg-about-company-arrow {
  color: var(--cg-green);
  font-size: 0.9rem;
  opacity: 0.3;
  transition: all var(--cg-transition);
}

.cg-about-company-row:hover .cg-about-company-arrow {
  opacity: 1;
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .cg-about-company-row {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
  .cg-about-company-meta {
    grid-column: 1 / -1;
    justify-content: space-between;
  }
}

@media (max-width: 479px) {
  .cg-about-company-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cg-about-company-icon { margin: 0 auto; }
  .cg-about-company-meta { justify-content: center; }
  .cg-about-company-arrow { display: none; }
}

/* ── Regional presence strip (dark) ── */
.cg-about-regions-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

.cg-about-region-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--cg-radius);
  transition: all var(--cg-transition);
}

.cg-about-region-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

.cg-about-region-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cg-green-light);
  box-shadow: 0 0 8px rgba(60, 140, 87, 0.5);
  flex-shrink: 0;
  margin-top: 0.35rem;
  animation: cg-pulse-dot 2s ease infinite;
}

@keyframes cg-pulse-dot {
  0%, 100% { box-shadow: 0 0 4px rgba(60, 140, 87, 0.3); }
  50% { box-shadow: 0 0 12px rgba(60, 140, 87, 0.6); }
}

.cg-about-region-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cg-white);
  margin-bottom: 0.3rem;
}

.cg-about-region-item p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--cg-text-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 767px) {
  .cg-about-regions-strip { grid-template-columns: 1fr; gap: 1rem; }
}

/* ── Contact Form ── */
.cg-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cg-contact-grid { grid-template-columns: 1.2fr 0.8fr; }
}

.cg-contact-form {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.08);
  border-radius: var(--cg-radius);
  padding: 2.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cg-contact-form label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cg-light-text);
  margin-bottom: 0.4rem;
}

.cg-contact-form .cg-input,
.cg-contact-form .cg-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(15, 26, 18, 0.12);
  border-radius: var(--cg-radius-xs);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--cg-light-text);
  background: #fafcfa;
  transition: border-color var(--cg-transition), box-shadow var(--cg-transition);
  margin-bottom: 1.25rem;
  outline: none;
}

.cg-contact-form .cg-input:focus,
.cg-contact-form .cg-textarea:focus {
  border-color: var(--cg-green);
  box-shadow: 0 0 0 3px rgba(42, 102, 64, 0.1);
}

.cg-contact-form .cg-textarea {
  min-height: 140px;
  resize: vertical;
}

.cg-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cg-info-card {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.08);
  border-radius: var(--cg-radius);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all var(--cg-transition);
}

.cg-info-card:hover {
  border-color: rgba(42, 102, 64, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.cg-info-icon {
  width: 44px;
  height: 44px;
  background: var(--cg-green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--cg-green);
  flex-shrink: 0;
}

.cg-info-card h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #607064;
  margin-bottom: 0.3rem;
}

.cg-info-card p {
  font-family: 'DM Sans', sans-serif;
  color: var(--cg-light-text);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

.cg-info-card a {
  color: var(--cg-green);
  text-decoration: none;
}

.cg-info-card a:hover { color: var(--cg-gold); }

/* ── Map Section ── */
.cg-map-wrap {
  border-radius: var(--cg-radius);
  overflow: hidden;
  border: 1px solid rgba(15, 26, 18, 0.08);
  margin-top: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.cg-map-wrap iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* ── Operations Region Cards ── */
.cg-region-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}

.cg-region-card {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.08);
  border-radius: var(--cg-radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--cg-transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cg-region-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cg-green), var(--cg-gold));
}

.cg-region-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

.cg-region-icon {
  width: 64px;
  height: 64px;
  background: var(--cg-green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
}

.cg-region-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cg-light-text);
  margin-bottom: 0.75rem;
}

.cg-region-card p {
  font-family: 'DM Sans', sans-serif;
  color: #4a5a50;
  line-height: 1.65;
  font-size: 0.92rem;
}

/* ── Other Company Cards (horizontal) ── */
.cg-other-companies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 2rem auto 0;
}

/* ── Large Feature Cards (group companies page) ── */
.cg-feature-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 2.5rem auto 0;
}

.cg-feature-card {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.08);
  border-radius: var(--cg-radius);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all var(--cg-transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.cg-feature-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cg-green), var(--cg-gold));
  opacity: 0;
  transition: opacity var(--cg-transition);
}

.cg-feature-card:hover {
  border-color: rgba(42, 102, 64, 0.2);
  transform: translateX(4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
  color: inherit;
  text-decoration: none;
}

.cg-feature-card:hover::after { opacity: 1; }

.cg-feature-icon {
  font-size: 2.5rem;
  width: 72px;
  height: 72px;
  background: var(--cg-green-pale);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cg-feature-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cg-light-text);
  margin-bottom: 0.4rem;
}

.cg-feature-body p {
  font-family: 'DM Sans', sans-serif;
  color: #4a5a50;
  line-height: 1.6;
  font-size: 0.92rem;
  margin: 0;
}

.cg-feature-arrow {
  font-size: 1.5rem;
  color: var(--cg-green);
  opacity: 0.4;
  transition: all var(--cg-transition);
}

.cg-feature-card:hover .cg-feature-arrow {
  opacity: 1;
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .cg-feature-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.75rem;
  }
  .cg-feature-icon { margin: 0 auto; }
  .cg-feature-arrow { display: none; }
}

/* ── Group Companies — Revamped Cards ── */
.cg-gc-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 1060px;
  margin: 0 auto;
}

.cg-gc-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 26, 18, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.cg-gc-card:hover {
  color: inherit;
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(42, 102, 64, 0.1), 0 4px 12px rgba(0, 0, 0, 0.04);
  border-color: rgba(42, 102, 64, 0.15);
}

.cg-gc-card-inner {
  display: grid;
  grid-template-columns: 48px 80px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 2.25rem;
}

.cg-gc-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cg-green-pale);
  letter-spacing: -0.02em;
  line-height: 1;
  transition: color 0.35s ease;
}
.cg-gc-card:hover .cg-gc-num { color: var(--cg-green); }

.cg-gc-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--cg-green-pale), rgba(42, 102, 64, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cg-gc-card:hover .cg-gc-icon {
  background: linear-gradient(135deg, var(--cg-green), var(--cg-green-light));
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 6px 20px rgba(42, 102, 64, 0.25);
  filter: grayscale(1) brightness(2);
}

.cg-gc-content { min-width: 0; }

.cg-gc-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cg-light-text);
  margin: 0 0 0.35rem;
  line-height: 1.3;
  transition: color var(--cg-transition);
}
.cg-gc-card:hover .cg-gc-name { color: var(--cg-green); }

.cg-gc-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: #5a6a5e;
  line-height: 1.6;
  margin: 0 0 0.65rem;
}

.cg-gc-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.cg-gc-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  text-transform: uppercase;
}
.cg-gc-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.cg-gc-status--active {
  background: rgba(42, 102, 64, 0.1);
  color: var(--cg-green);
}
.cg-gc-status--active .cg-gc-status-dot { background: var(--cg-green); }

.cg-gc-status--planned {
  background: rgba(196, 154, 60, 0.12);
  color: var(--cg-gold);
}
.cg-gc-status--planned .cg-gc-status-dot { background: var(--cg-gold); }

.cg-gc-status--dev {
  background: rgba(100, 120, 105, 0.1);
  color: #647869;
}
.cg-gc-status--dev .cg-gc-status-dot { background: #647869; }

.cg-gc-markets {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--cg-light-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.cg-gc-markets i { font-size: 0.7rem; color: var(--cg-gold); }

.cg-gc-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  min-width: 80px;
}

.cg-gc-action-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cg-light-muted);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.35s ease;
}
.cg-gc-card:hover .cg-gc-action-label {
  opacity: 1;
  transform: translateY(0);
}

.cg-gc-action-arrow {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--cg-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--cg-green);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cg-gc-card:hover .cg-gc-action-arrow {
  background: linear-gradient(135deg, var(--cg-green), var(--cg-green-light));
  color: #fff;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(42, 102, 64, 0.3);
}

.cg-gc-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--cg-green), var(--cg-gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cg-gc-card:hover .cg-gc-accent-bar { transform: scaleX(1); }

@media (max-width: 900px) {
  .cg-gc-card-inner {
    grid-template-columns: 68px 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }
  .cg-gc-num { display: none; }
  .cg-gc-action { display: none; }
  .cg-gc-icon { width: 60px; height: 60px; border-radius: 14px; font-size: 1.6rem; }
  .cg-gc-name { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .cg-gc-card-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }
  .cg-gc-icon { margin: 0 auto 0.25rem; }
  .cg-gc-meta { justify-content: center; }
  .cg-gc-desc { font-size: 0.85rem; }
}

/* ── Animated Entrances ── */
.cg-fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: cg-fadeUp 0.7s ease forwards;
}

.cg-fade-up-d1 { animation-delay: 0.1s; }
.cg-fade-up-d2 { animation-delay: 0.2s; }
.cg-fade-up-d3 { animation-delay: 0.3s; }
.cg-fade-up-d4 { animation-delay: 0.4s; }
.cg-fade-up-d5 { animation-delay: 0.5s; }
.cg-fade-up-d6 { animation-delay: 0.6s; }
.cg-fade-up-d7 { animation-delay: 0.7s; }
.cg-fade-up-d8 { animation-delay: 0.8s; }

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

@keyframes cg-fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   FOOTER — Corporate dark footer
   ══════════════════════════════════════════════ */
.cg-footer {
  background: var(--cg-dark);
  position: relative;
  overflow: hidden;
  padding: 0 0 0;
  margin-top: 0;
}

.cg-footer-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(42,102,64,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cg-footer-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--cg-green), var(--cg-gold), var(--cg-green));
  background-size: 200% 100%;
  animation: cg-footer-shimmer 6s ease infinite;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

@keyframes cg-footer-shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cg-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.cg-footer-col {}

/* Brand column */
.cg-footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.cg-footer-logo img {
  height: 42px;
  width: auto;
  filter: brightness(1.1);
  transition: filter var(--cg-transition);
}

.cg-footer-logo:hover img { filter: brightness(1.3); }

.cg-footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--cg-text-muted);
  line-height: 1.65;
  max-width: 320px;
  margin-bottom: 1.25rem;
}

.cg-footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.cg-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--cg-text-muted);
  line-height: 1.5;
}

.cg-footer-contact-item i {
  color: var(--cg-green-light);
  font-size: 0.9rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.cg-footer-contact-item a {
  color: var(--cg-text-muted);
  text-decoration: none;
  transition: color var(--cg-transition);
}

.cg-footer-contact-item a:hover { color: var(--cg-gold-light); }

/* Social icons */
.cg-footer-socials {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cg-footer-social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cg-text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--cg-transition);
}

.cg-footer-social:hover {
  background: rgba(42, 102, 64, 0.2);
  border-color: rgba(42, 102, 64, 0.4);
  color: #7ec896;
  transform: translateY(-2px);
}

/* Footer headings */
.cg-footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cg-white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.cg-footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--cg-green), var(--cg-gold));
  border-radius: 2px;
}

/* Link lists */
.cg-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cg-footer-links li {
  margin-bottom: 0.55rem;
}

.cg-footer-links li a,
.cg-footer-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--cg-text-muted);
  text-decoration: none;
  transition: all var(--cg-transition);
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.cg-footer-links li a::before,
.cg-footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--cg-gold-light);
  margin-right: 0;
  transition: all var(--cg-transition);
}

.cg-footer-links li a:hover,
.cg-footer-links a:hover {
  color: var(--cg-gold-light);
}

.cg-footer-links li a:hover::before,
.cg-footer-links a:hover::before {
  width: 12px;
  margin-right: 0.5rem;
}

/* Newsletter */
.cg-footer-newsletter-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--cg-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cg-footer-newsletter-wrap {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--cg-radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  transition: border-color var(--cg-transition);
}

.cg-footer-newsletter-wrap:focus-within {
  border-color: var(--cg-gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 60, 0.1);
}

.cg-footer-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--cg-text);
  min-width: 0;
}

.cg-footer-newsletter-input::placeholder {
  color: rgba(154, 172, 156, 0.6);
}

.cg-footer-newsletter-btn {
  background: linear-gradient(135deg, var(--cg-green), var(--cg-green-light));
  border: none;
  outline: none;
  padding: 0.8rem 1.15rem;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--cg-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cg-footer-newsletter-btn:hover {
  filter: brightness(1.15);
}

.cg-footer-newsletter-btn:active {
  transform: scale(0.96);
}

/* Bottom bar */
.cg-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cg-footer-copyright {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(154, 172, 156, 0.5);
}

.cg-footer-regions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cg-footer-region {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--cg-text-muted);
  letter-spacing: 0.04em;
}

.cg-footer-region-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cg-green-light);
  opacity: 0.7;
  display: inline-block;
}

/* ── Footer responsive ── */
@media (max-width: 991px) {
  .cg-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .cg-footer-col--brand { grid-column: 1 / -1; }
  .cg-footer-tagline { max-width: 100%; }
}

@media (max-width: 639px) {
  .cg-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cg-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .cg-footer-contact-row { gap: 0.5rem; }
  .cg-footer-accent { margin-bottom: 2rem; }
}

.cg-footer-dev {
  text-align: center;
  padding: 0.75rem 0 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}
.cg-footer-dev a {
  color: var(--cg-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.cg-footer-dev a:hover {
  color: var(--cg-gold-light);
}

@media (max-width: 359px) {
  .cg-footer-socials { gap: 0.35rem; }
  .cg-footer-social { width: 34px; height: 34px; font-size: 0.8rem; }
  .cg-footer-heading { font-size: 0.68rem; }
  .cg-footer-newsletter-input { padding: 0.7rem 0.8rem; font-size: 0.82rem; }
}

/* ══════════════════════════════════════════════
   PAGE BANNER — Corporate breadcrumb hero
   ══════════════════════════════════════════════ */
.cg-page-banner {
  position: relative;
  background: var(--cg-dark);
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}

.cg-page-banner .cg-bg-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(42,102,64,0.12), transparent),
    radial-gradient(ellipse 50% 60% at 80% 40%, rgba(196,154,60,0.06), transparent),
    var(--cg-dark);
}

.cg-page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}

.cg-page-banner-inner {
  text-align: center;
}

.cg-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
}

.cg-breadcrumb a {
  color: var(--cg-text-muted);
  text-decoration: none;
  transition: color var(--cg-transition);
}

.cg-breadcrumb a:hover { color: var(--cg-gold-light); }

.cg-breadcrumb-sep {
  color: rgba(154, 172, 156, 0.4);
  font-size: 0.7rem;
}

.cg-breadcrumb-current {
  color: var(--cg-gold-light);
  font-weight: 500;
}

.cg-page-banner-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--cg-white);
  margin: 0;
  line-height: 1.25;
}

/* ══════════════════════════════════════════════
   SECTION HEADER — Reusable centered heading
   ══════════════════════════════════════════════ */
.cg-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.cg-section-header .cg-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--cg-light-text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: normal;
}

.cg-section-subtitle {
  font-family: 'DM Sans', sans-serif;
  color: var(--cg-light-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════════════
   BLOG PAGE — Corporate card grid
   ══════════════════════════════════════════════ */
.cg-blogs-page { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.cg-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.cg-blog-card {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.08);
  border-radius: var(--cg-radius);
  overflow: hidden;
  transition: all var(--cg-transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.cg-blog-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.cg-blog-card-image {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.cg-blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.cg-blog-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 26, 18, 0.3));
  pointer-events: none;
}

.cg-blog-card-body {
  padding: 1.5rem;
}

.cg-blog-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

.cg-blog-card-title a {
  color: var(--cg-light-text);
  text-decoration: none;
  transition: color var(--cg-transition);
}

.cg-blog-card-title a:hover { color: var(--cg-green); }

.cg-blog-card-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--cg-light-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.cg-blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 26, 18, 0.06);
}

.cg-blog-card-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cg-blog-card-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cg-green-pale);
}

.cg-blog-card-author span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cg-light-text);
}

.cg-blog-card-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cg-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all var(--cg-transition);
}

.cg-blog-card-link:hover {
  color: var(--cg-gold);
  gap: 0.5rem;
}

/* Empty state */
.cg-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
}

.cg-empty-state-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--cg-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--cg-green);
  margin: 0 auto 1.25rem;
}

.cg-empty-state h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--cg-light-text);
  margin-bottom: 0.5rem;
}

.cg-empty-state p {
  font-family: 'DM Sans', sans-serif;
  color: var(--cg-light-muted);
  font-size: 0.92rem;
}

/* Pagination wrapper */
.cg-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.cg-pagination .pagination { gap: 0.35rem; }

.cg-pagination .page-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  border-radius: var(--cg-radius-xs) !important;
  border: 1px solid rgba(15, 26, 18, 0.1);
  color: var(--cg-light-text);
  padding: 0.5rem 0.85rem;
  transition: all var(--cg-transition);
}

.cg-pagination .page-link:hover {
  background: var(--cg-green-pale);
  border-color: var(--cg-green);
  color: var(--cg-green);
}

.cg-pagination .page-item.active .page-link {
  background: var(--cg-green);
  border-color: var(--cg-green);
  color: #fff;
}

/* ══════════════════════════════════════════════
   PRODUCTS PAGE — Supercharged Shop
   ══════════════════════════════════════════════ */
.cg-products-page {
  padding: 0 0 clamp(3rem, 5vw, 5rem);
  background: var(--cg-light-bg);
}

.cg-shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: flex-start;
  padding-top: clamp(2rem, 4vw, 3rem);
}

/* ── Sidebar ── */
.cg-shop-sidebar {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.07);
  border-radius: 16px;
  padding: 1.5rem;
  position: sticky;
  top: 100px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.cg-shop-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(15, 26, 18, 0.07);
}

.cg-shop-sidebar-header h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cg-light-text);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cg-shop-sidebar-header h4 i { color: var(--cg-green); }

.cg-shop-sidebar-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--cg-light-muted);
  cursor: pointer;
  transition: color var(--cg-transition);
}
.cg-shop-sidebar-close:hover { color: var(--cg-green); }

.cg-shop-clear {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: #c0392b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: opacity var(--cg-transition);
}
.cg-shop-clear:hover { opacity: 0.7; }

.cg-shop-filter-group {
  margin-bottom: 1.5rem;
}

.cg-shop-filter-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cg-light-muted);
  margin-bottom: 0.75rem;
}

/* Custom checkboxes */
.cg-checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--cg-light-text);
  margin-bottom: 0.55rem;
  position: relative;
  transition: color var(--cg-transition);
}
.cg-checkbox:hover { color: var(--cg-green); }

.cg-checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }

.cg-checkbox-mark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(15, 26, 18, 0.18);
  border-radius: 5px;
  flex-shrink: 0;
  transition: all var(--cg-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cg-checkbox-mark::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.55rem;
  color: #fff;
  opacity: 0;
  transition: opacity var(--cg-transition);
}

.cg-checkbox input:checked + .cg-checkbox-mark {
  background: var(--cg-green);
  border-color: var(--cg-green);
  box-shadow: 0 2px 8px rgba(42, 102, 64, 0.3);
}

.cg-checkbox input:checked + .cg-checkbox-mark::after { opacity: 1; }

/* Price inputs */
.cg-price-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cg-price-field {
  display: flex;
  align-items: center;
  border: 1px solid rgba(15, 26, 18, 0.12);
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
  transition: border-color var(--cg-transition);
}
.cg-price-field:focus-within { border-color: var(--cg-green); }

.cg-price-field span {
  padding: 0.55rem 0.6rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--cg-light-muted);
  background: rgba(15, 26, 18, 0.03);
  border-right: 1px solid rgba(15, 26, 18, 0.08);
}

.cg-price-field input {
  border: none;
  outline: none;
  padding: 0.55rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  width: 100%;
  min-width: 0;
  color: var(--cg-light-text);
}

.cg-price-sep {
  color: var(--cg-light-muted);
  font-size: 0.8rem;
}

.cg-btn--full { width: 100%; justify-content: center; }

/* ── Toolbar ── */
.cg-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(15, 26, 18, 0.06);
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}

.cg-shop-toolbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cg-shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cg-shop-result-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--cg-light-muted);
}

.cg-shop-result-num {
  font-weight: 700;
  color: var(--cg-light-text);
}

.cg-shop-filter-toggle {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: var(--cg-green-pale);
  border: 1px solid rgba(42, 102, 64, 0.15);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cg-green);
  cursor: pointer;
  transition: all var(--cg-transition);
}
.cg-shop-filter-toggle:hover {
  background: var(--cg-green);
  color: #fff;
}

/* View toggle */
.cg-shop-view-toggle {
  display: flex;
  border: 1px solid rgba(15, 26, 18, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.cg-view-btn {
  width: 36px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  color: var(--cg-light-muted);
  cursor: pointer;
  transition: all var(--cg-transition);
  font-size: 0.9rem;
}
.cg-view-btn + .cg-view-btn { border-left: 1px solid rgba(15, 26, 18, 0.1); }
.cg-view-btn--active,
.cg-view-btn:hover {
  background: var(--cg-green);
  color: #fff;
}

.cg-shop-sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cg-shop-sort-select {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(15, 26, 18, 0.12);
  border-radius: 8px;
  color: var(--cg-light-text);
  background: #fff;
  cursor: pointer;
  outline: none;
  transition: border-color var(--cg-transition);
}
.cg-shop-sort-select:focus { border-color: var(--cg-green); }

/* ── Active filter tags ── */
.cg-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.cg-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--cg-green-pale);
  color: var(--cg-green);
  border: 1px solid rgba(42, 102, 64, 0.15);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
}

.cg-filter-tag a {
  color: var(--cg-green);
  text-decoration: none;
  line-height: 1;
  transition: color var(--cg-transition);
}
.cg-filter-tag a:hover { color: #c0392b; }

/* ── Product Grid ── */
.cg-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* ── Product Card ── */
.cg-product-card {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.cg-product-card:hover {
  box-shadow: 0 12px 40px rgba(42, 102, 64, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  transform: translateY(-5px);
  border-color: rgba(42, 102, 64, 0.12);
}

.cg-product-card--soldout { opacity: 0.7; }
.cg-product-card--soldout:hover { opacity: 0.85; }

.cg-product-card-image {
  position: relative;
  aspect-ratio: 4 / 3.5;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f8f5, #eef2ee);
}

.cg-product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Badges */
.cg-product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  z-index: 2;
}

.cg-product-badge--soldout {
  background: rgba(192, 57, 43, 0.9);
  color: #fff;
  backdrop-filter: blur(4px);
}

/* Action buttons */
.cg-product-card-actions {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 0;
  transform: translateX(12px);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.cg-product-card:hover .cg-product-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.cg-product-card-actions a,
.cg-product-card-actions button {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 26, 18, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--cg-light-text);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--cg-transition);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cg-product-card-actions a:hover,
.cg-product-card-actions button:hover {
  background: var(--cg-green);
  color: #fff;
  border-color: var(--cg-green);
  transform: scale(1.1);
}

.cg-product-card-actions .addedWishlist {
  background: var(--cg-green);
  color: #fff;
  border-color: var(--cg-green);
}

/* Card body */
.cg-product-card-body {
  padding: 1.25rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cg-product-card-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cg-gold);
  margin-bottom: 0.35rem;
}

.cg-product-card-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.cg-product-card-rating ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1px;
}

.cg-product-card-rating ul li {
  font-size: 0.65rem;
  color: var(--cg-gold);
}

.cg-rating-count {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--cg-light-muted);
}

.cg-product-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.cg-product-card-title a {
  color: var(--cg-light-text);
  text-decoration: none;
  transition: color var(--cg-transition);
}
.cg-product-card-title a:hover { color: var(--cg-green); }

.cg-product-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  gap: 0.5rem;
}

.cg-product-card-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--cg-green);
  line-height: 1.2;
}

.cg-product-card-price span {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--cg-light-muted);
  margin-top: 0.15rem;
}

/* Floating add-to-cart button */
.cg-add-cart-fab {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cg-green), var(--cg-green-light));
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 3px 12px rgba(42, 102, 64, 0.3);
}

.cg-add-cart-fab:hover {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 6px 20px rgba(42, 102, 64, 0.4);
}

.cg-add-cart-fab:active {
  transform: scale(0.95);
}

/* ── List view ── */
.cg-product-grid--list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cg-product-grid--list .cg-product-card {
  flex-direction: row;
  border-radius: 14px;
}

.cg-product-grid--list .cg-product-card-image {
  width: 200px;
  min-width: 200px;
  aspect-ratio: auto;
  height: auto;
}

.cg-product-grid--list .cg-product-card-body {
  padding: 1.25rem 1.5rem;
  justify-content: center;
}

.cg-product-grid--list .cg-product-card-title {
  font-size: 1.05rem;
}

.cg-product-grid--list .cg-product-card-bottom {
  margin-top: 0.75rem;
}

/* ── Empty state ── */
.cg-shop-empty {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  background: #fff;
  border: 2px dashed rgba(15, 26, 18, 0.1);
  border-radius: 20px;
}

.cg-shop-empty-icon {
  font-size: 3.5rem;
  color: var(--cg-green-pale);
  margin-bottom: 1.25rem;
  background: var(--cg-green-pale);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cg-shop-empty-icon i { color: var(--cg-green); font-size: 2.2rem; }

.cg-shop-empty h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cg-light-text);
  margin-bottom: 0.5rem;
}

.cg-shop-empty p {
  font-family: 'DM Sans', sans-serif;
  color: var(--cg-light-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* Button variants */
.cg-btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--cg-radius-xs);
  cursor: pointer;
  transition: all var(--cg-transition);
  background: transparent;
  border: 1px solid rgba(42, 102, 64, 0.3);
  color: var(--cg-green);
  padding: 0.6rem 1.2rem;
}
.cg-btn--outline:hover {
  background: var(--cg-green-pale);
  border-color: var(--cg-green);
}

.cg-btn--sm {
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
}

/* ── Mobile sidebar overlay ── */
body.cg-sidebar-overlay::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 9998;
  backdrop-filter: blur(2px);
}

@media (max-width: 991px) {
  .cg-shop-layout { grid-template-columns: 1fr; }

  .cg-shop-sidebar {
    position: fixed;
    top: 0;
    left: -340px;
    width: 320px;
    height: 100vh;
    z-index: 9999;
    border-radius: 0 16px 16px 0;
    overflow-y: auto;
    transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
  }

  .cg-shop-sidebar.cg-sidebar-open { left: 0; }

  .cg-shop-filter-toggle { display: flex; }

  .cg-shop-view-toggle { display: none; }
}

@media (max-width: 639px) {
  .cg-product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .cg-product-card-body { padding: 0.85rem; }
  .cg-product-card-title { font-size: 0.82rem; }
  .cg-product-card-price { font-size: 0.95rem; }
  .cg-add-cart-fab { width: 36px; height: 36px; font-size: 0.85rem; border-radius: 10px; }
  .cg-shop-toolbar {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem;
  }
  .cg-shop-toolbar-left,
  .cg-shop-toolbar-right {
    justify-content: space-between;
    width: 100%;
  }
  .cg-product-grid--list .cg-product-card { flex-direction: column; }
  .cg-product-grid--list .cg-product-card-image {
    width: 100%;
    min-width: 0;
    aspect-ratio: 4 / 3.5;
  }
  .cg-product-card-cat { font-size: 0.6rem; }
}

@media (max-width: 359px) {
  .cg-product-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   FAQ SECTION — Corporate accordion
   ══════════════════════════════════════════════ */
.cg-faq-cms { padding: clamp(2rem, 4vw, 3.5rem) 0; }

.cg-faq-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: flex-start;
}

.cg-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cg-faq-item {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.08);
  border-radius: var(--cg-radius-sm);
  overflow: hidden;
  transition: all var(--cg-transition);
}

.cg-faq-item:hover { border-color: rgba(42, 102, 64, 0.15); }

.cg-faq-item--open {
  border-color: rgba(42, 102, 64, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.cg-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.cg-faq-question span:first-child {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cg-light-text);
  line-height: 1.5;
}

.cg-faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--cg-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cg-green);
  font-size: 0.75rem;
  transition: all var(--cg-transition);
}

.cg-faq-icon .fa-minus { display: none; }
.cg-faq-item--open .cg-faq-icon .fa-plus { display: none; }
.cg-faq-item--open .cg-faq-icon .fa-minus { display: inline; }

.cg-faq-item--open .cg-faq-icon {
  background: var(--cg-green);
  color: #fff;
}

.cg-faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
}

.cg-faq-answer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--cg-light-muted);
  line-height: 1.75;
  margin: 0;
}

/* FAQ aside */
.cg-faq-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.cg-faq-image-wrap {
  border-radius: var(--cg-radius);
  overflow: hidden;
}

.cg-faq-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--cg-radius);
}

.cg-faq-cta-card {
  background: var(--cg-green-pale);
  border-radius: var(--cg-radius);
  padding: 1.75rem;
  text-align: center;
}

.cg-faq-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(42, 102, 64, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--cg-green);
  margin: 0 auto 1rem;
}

.cg-faq-cta-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cg-light-text);
  margin-bottom: 0.5rem;
}

.cg-faq-cta-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--cg-light-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .cg-faq-layout { grid-template-columns: 1fr; }
  .cg-faq-aside { position: static; flex-direction: row; }
  .cg-faq-image-wrap { flex: 1; }
  .cg-faq-cta-card { flex: 1; }
}

@media (max-width: 639px) {
  .cg-faq-aside { flex-direction: column; }
  .cg-faq-question { padding: 1rem; }
  .cg-faq-answer { padding: 0 1rem 1rem; }
}

/* ══════════════════════════════════════════════
   LEGAL PAGES — Terms & Privacy
   ══════════════════════════════════════════════ */
.cg-legal-cms { padding: clamp(2rem, 4vw, 3.5rem) 0; }

.cg-legal-content {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cg-legal-block {
  background: #ffffff;
  border: 1px solid rgba(15, 26, 18, 0.06);
  border-radius: var(--cg-radius);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  position: relative;
}

.cg-legal-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cg-green), var(--cg-gold));
  border-radius: 3px 0 0 3px;
}

.cg-legal-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cg-light-text);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cg-legal-index {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cg-green);
  background: var(--cg-green-pale);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.cg-legal-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--cg-light-muted);
  line-height: 1.8;
}

.cg-legal-text p { margin-bottom: 0.75rem; }
.cg-legal-text p:last-child { margin-bottom: 0; }

.cg-legal-text ul,
.cg-legal-text ol {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.cg-legal-text li {
  margin-bottom: 0.35rem;
  line-height: 1.7;
}

@media (max-width: 639px) {
  .cg-legal-block { padding: 1.25rem; }
  .cg-legal-heading { font-size: 1.05rem; }
}

/* ══════════════════════════════════════════════
   ABOUT SECTION (CMS) — Corporate style
   ══════════════════════════════════════════════ */
.cg-about-cms, .cg-about2-cms { padding: clamp(2.5rem, 5vw, 4rem) 0; }

.cg-about-cms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.cg-about-cms-image-wrap {
  position: relative;
  border-radius: var(--cg-radius);
  overflow: hidden;
}

.cg-about-cms-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--cg-radius);
}

.cg-about-cms-image-accent {
  position: absolute;
  bottom: -4px;
  left: -4px;
  width: 50%;
  height: 50%;
  border: 3px solid var(--cg-gold);
  border-radius: var(--cg-radius);
  opacity: 0.3;
  z-index: -1;
}

.cg-about-cms-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--cg-light-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cg-about-cms-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--cg-light-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cg-about-cms-text p { margin-bottom: 0.75rem; }

.cg-about-cms-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ── About page — mosaic gallery (project root /images) ── */
.cg-about-gallery-section {
  overflow: clip;
}

.cg-about-gallery-wrap {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.cg-about-gallery-header {
  max-width: 640px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.cg-about-gallery-lead {
  color: var(--cg-light-muted);
  margin: 0.75rem auto 0;
  max-width: 520px;
}

.cg-about-mosaic {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(0.55rem, 1.5vw, 0.95rem);
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(120px, 22vw);
  grid-auto-flow: dense;
}

.cg-about-mosaic__item {
  margin: 0;
  padding: 0;
  min-height: 0;
}

.cg-about-mosaic__link {
  display: block;
  height: 100%;
  min-height: 120px;
  border-radius: var(--cg-radius-sm);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  outline-offset: 3px;
  transition: box-shadow var(--cg-transition), transform var(--cg-transition);
}

.cg-about-mosaic__link:hover,
.cg-about-mosaic__link:focus-visible {
  box-shadow: 0 12px 32px rgba(15, 26, 18, 0.14);
  transform: translateY(-2px);
  z-index: 1;
}

.cg-about-mosaic__figure {
  margin: 0;
  height: 100%;
  min-height: inherit;
  position: relative;
  background: #e8ede9;
}

.cg-about-mosaic__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.cg-about-mosaic__link:hover .cg-about-mosaic__img,
.cg-about-mosaic__link:focus-visible .cg-about-mosaic__img {
  transform: scale(1.05);
}

.cg-about-mosaic__cap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem 0.65rem;
  gap: 0.35rem;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 18, 12, 0.72) 100%);
  color: #f5f8f5;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cg-about-mosaic__link:hover .cg-about-mosaic__cap,
.cg-about-mosaic__link:focus-visible .cg-about-mosaic__cap {
  opacity: 1;
}

.cg-about-mosaic__cap-icon {
  font-size: 1.1rem;
  color: var(--cg-gold-light);
}

.cg-about-mosaic__cap-text {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

@media (min-width: 600px) {
  .cg-about-mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 52px;
  }

  .cg-about-mosaic__item--a { grid-column: span 4; grid-row: span 4; }
  .cg-about-mosaic__item--b { grid-column: span 2; grid-row: span 2; }
  .cg-about-mosaic__item--c { grid-column: span 2; grid-row: span 2; }
  .cg-about-mosaic__item--d { grid-column: span 3; grid-row: span 2; }
  .cg-about-mosaic__item--e { grid-column: span 3; grid-row: span 2; }
  .cg-about-mosaic__item--f { grid-column: span 2; grid-row: span 2; }
  .cg-about-mosaic__item--g { grid-column: span 2; grid-row: span 2; }
  .cg-about-mosaic__item--h { grid-column: span 2; grid-row: span 2; }
}

@media (min-width: 992px) {
  .cg-about-mosaic {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 58px;
    gap: 1rem;
  }

  .cg-about-mosaic__item--a { grid-column: span 7; grid-row: span 4; }
  .cg-about-mosaic__item--b { grid-column: span 5; grid-row: span 2; }
  .cg-about-mosaic__item--c { grid-column: span 5; grid-row: span 2; }
  .cg-about-mosaic__item--d { grid-column: span 4; grid-row: span 2; }
  .cg-about-mosaic__item--e { grid-column: span 4; grid-row: span 2; }
  .cg-about-mosaic__item--f { grid-column: span 4; grid-row: span 2; }
  .cg-about-mosaic__item--g { grid-column: span 6; grid-row: span 2; }
  .cg-about-mosaic__item--h { grid-column: span 6; grid-row: span 2; }
}

@media (prefers-reduced-motion: reduce) {
  .cg-about-mosaic__img,
  .cg-about-mosaic__link {
    transition: none;
  }

  .cg-about-mosaic__link:hover,
  .cg-about-mosaic__link:focus-visible {
    transform: none;
  }

  .cg-about-mosaic__link:hover .cg-about-mosaic__img,
  .cg-about-mosaic__link:focus-visible .cg-about-mosaic__img {
    transform: none;
  }

  .cg-about-mosaic__cap {
    opacity: 1;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 18, 12, 0.55) 100%);
  }
}

/* Native dialog lightbox */
.cg-gallery-dialog {
  padding: 0;
  border: none;
  max-width: min(96vw, 1120px);
  width: min(96vw, 1120px);
  background: transparent;
  color: var(--cg-text);
}

.cg-gallery-dialog::backdrop {
  background: rgba(8, 14, 10, 0.88);
  backdrop-filter: blur(6px);
}

.cg-gallery-dialog__inner {
  position: relative;
  border-radius: var(--cg-radius);
  overflow: hidden;
  background: var(--cg-dark);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.cg-gallery-dialog__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(86vh, 900px);
  object-fit: contain;
}

.cg-gallery-dialog__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #f5f8f5;
  font-size: 1.15rem;
  transition: background var(--cg-transition), color var(--cg-transition);
}

.cg-gallery-dialog__close:hover,
.cg-gallery-dialog__close:focus-visible {
  background: var(--cg-gold);
  color: var(--cg-dark);
  outline: none;
}

/* About 2 gallery */
.cg-about2-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.cg-about2-gallery-item {
  border-radius: var(--cg-radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.cg-about2-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cg-about2-gallery-item:hover img { transform: scale(1.06); }

@media (max-width: 767px) {
  .cg-about-cms-grid { grid-template-columns: 1fr; }
  .cg-about-cms-image-wrap { max-width: 500px; margin: 0 auto; }
}

/* ── Full-width Band ── */
.cg-band {
  background: var(--cg-dark);
  color: var(--cg-text);
  padding: clamp(3rem, 5vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.cg-band .cg-bg-canvas { position: absolute; }

.cg-band .container { position: relative; z-index: 2; }

/* ══════════════════════════════════════════════
   RESPONSIVE — xs through 2xl
   ══════════════════════════════════════════════ */

/* XS: < 360px */
@media (max-width: 359px) {
  .cg-hero-home { padding: 2.5rem 1rem 2rem; min-height: 50vh; }
  .cg-hero-home .cg-title { font-size: 2rem; }
  .cg-badge { font-size: 0.62rem; padding: 0.35rem 0.8rem; margin-bottom: 1.2rem; }
  .cg-cta { flex-direction: column; align-items: stretch; }
  .cg-btn { width: 100%; justify-content: center; }
  .cg-cards { grid-template-columns: 1fr; gap: 0.8rem; }
  .cg-kpi-grid { grid-template-columns: 1fr; }
  .cg-feature-card { padding: 1.25rem; }
  .cg-contact-form { padding: 1.25rem; }
  .cg-region-cards { grid-template-columns: 1fr; }
  .cg-vm-grid { grid-template-columns: 1fr; }
  .cg-detail-grid { grid-template-columns: 1fr; }
  .cg-page-hero { padding: 2.5rem 1rem 1.5rem; }
  .cg-section { padding: 1.5rem 0; }
}

/* SM: 360–479px */
@media (min-width: 360px) and (max-width: 479px) {
  .cg-hero-home { padding: 3rem 1.25rem 2.5rem; min-height: 55vh; }
  .cg-hero-home .cg-title { font-size: 2.3rem; }
  .cg-cta { flex-direction: column; align-items: stretch; }
  .cg-btn { width: 100%; justify-content: center; }
  .cg-cards { grid-template-columns: 1fr; gap: 0.85rem; }
  .cg-kpi-grid { grid-template-columns: 1fr; }
  .cg-contact-grid { grid-template-columns: 1fr; }
  .cg-section { padding: 2rem 0; }
}

/* MD: 480–767px */
@media (min-width: 480px) and (max-width: 767px) {
  .cg-hero-home { padding: 3.5rem 1.5rem 3rem; }
  .cg-cta { flex-direction: column; align-items: stretch; max-width: 340px; margin-left: auto; margin-right: auto; }
  .cg-btn { width: 100%; }
  .cg-cards { grid-template-columns: 1fr 1fr; }
  .cg-kpi-grid { grid-template-columns: 1fr 1fr; }
  .cg-contact-grid { grid-template-columns: 1fr; }
  .cg-feature-card { grid-template-columns: 1fr; text-align: center; }
  .cg-feature-icon { margin: 0 auto; }
  .cg-feature-arrow { display: none; }
}

/* LG: 768–1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .cg-hero-home { padding: 4rem 2rem 3.5rem; }
  .cg-cards { grid-template-columns: repeat(3, 1fr); }
  .cg-kpi-grid { grid-template-columns: repeat(3, 1fr); }
}

/* XL: 1024–1279px */
@media (min-width: 1024px) and (max-width: 1279px) {
  .cg-hero-home { padding: 5rem 2rem 4rem; }
  .cg-cards { grid-template-columns: repeat(5, 1fr); }
}

/* 2XL: 1280px+ */
@media (min-width: 1280px) {
  .cg-hero-home { padding: 6rem 2rem 5rem; }
  .cg-cards { grid-template-columns: repeat(5, 1fr); }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
  .cg-hero-home { padding: 2rem; min-height: auto; }
  .cg-badge { margin-bottom: 0.75rem; }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
  .cg-card:hover { transform: none; }
  .cg-feature-card:hover { transform: none; }
  .cg-btn { min-height: 48px; }
}

/* Neutralise old floating-button styles on navbar cart icon */
a.search-toggler.cart-icon {
  position: static;
  width: auto;
  height: auto;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: inherit;
  z-index: auto;
}

/* ══════════════════════════════════════════════
   AUTH PAGES — Login & Register
   ══════════════════════════════════════════════ */
.cg-auth {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) 1rem;
  overflow: hidden;
  background: var(--cg-dark);
}

.cg-auth-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(42, 102, 64, 0.15), transparent),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(196, 154, 60, 0.08), transparent);
  z-index: 0;
}

.cg-auth-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.cg-auth-orb--1 {
  width: 400px; height: 400px;
  background: rgba(42, 102, 64, 0.12);
  top: -10%; left: -5%;
  animation: cg-float 18s ease-in-out infinite;
}
.cg-auth-orb--2 {
  width: 300px; height: 300px;
  background: rgba(196, 154, 60, 0.08);
  bottom: -8%; right: -3%;
  animation: cg-float 22s ease-in-out infinite reverse;
}

.cg-auth .container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.cg-auth-card {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.cg-auth-card--wide { max-width: 620px; }

.cg-auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.cg-auth-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.cg-auth-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.cg-auth-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--cg-white);
  margin: 0 0 0.35rem;
}

.cg-auth-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--cg-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Form */
.cg-auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.cg-auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cg-auth-field label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.4rem;
}

.cg-auth-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0 1rem;
  transition: all 0.3s ease;
}

.cg-auth-input-wrap:focus-within {
  border-color: var(--cg-green);
  background: rgba(42, 102, 64, 0.08);
  box-shadow: 0 0 0 3px rgba(42, 102, 64, 0.12);
}

.cg-auth-input-wrap > i:first-child {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.3);
  margin-right: 0.65rem;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.cg-auth-input-wrap:focus-within > i:first-child {
  color: var(--cg-green);
}

.cg-auth-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 0.8rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--cg-white);
  min-width: 0;
}
.cg-auth-input-wrap input::placeholder { color: rgba(255, 255, 255, 0.25); }

.cg-auth-toggle-pw {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.3);
  margin-left: 0.5rem;
  transition: color 0.2s;
}
.cg-auth-toggle-pw:hover { color: var(--cg-green); }

.cg-auth-input-wrap--phone {
  padding: 0;
}
.cg-auth-input-wrap--phone input {
  padding: 0.8rem 1rem;
}
.cg-auth-input-wrap--phone .iti {
  width: 100%;
}
.cg-auth-input-wrap--phone .iti__flag-container { padding-left: 0.75rem; }

.cg-auth-error {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: #ef5350;
  margin-top: 0.3rem;
}

.cg-auth-captcha {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.cg-auth-captcha img {
  border-radius: 8px;
  height: 42px;
}
.cg-auth-captcha-refresh {
  color: var(--cg-green);
  font-size: 1rem;
  transition: transform 0.3s;
}
.cg-auth-captcha-refresh:hover { transform: rotate(180deg); }

/* Options row */
.cg-auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cg-auth-remember {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.cg-auth-remember input {
  accent-color: var(--cg-green);
  width: 16px;
  height: 16px;
}

.cg-auth-forgot {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--cg-gold);
  text-decoration: none;
  transition: color 0.2s;
}
.cg-auth-forgot:hover { color: var(--cg-gold-light); }

/* Submit */
.cg-auth-submit {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--cg-green), var(--cg-green-light));
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 20px rgba(42, 102, 64, 0.3);
  margin-top: 0.25rem;
}

.cg-auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42, 102, 64, 0.4);
}

.cg-auth-submit:active { transform: translateY(0); }

/* Divider */
.cg-auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.cg-auth-divider::before,
.cg-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.cg-auth-divider span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Social buttons */
.cg-auth-socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.cg-auth-social {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.6);
}
.cg-auth-social:hover { transform: translateY(-3px); }

.cg-auth-social--fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.35);
}
.cg-auth-social--google:hover {
  background: #ea4335;
  border-color: #ea4335;
  color: #fff;
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.35);
}
.cg-auth-social--github:hover {
  background: #333;
  border-color: #333;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Switch link */
.cg-auth-switch {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 1.5rem 0 0;
}
.cg-auth-switch a {
  color: var(--cg-green);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.cg-auth-switch a:hover { color: var(--cg-green-light); }

/* Responsive */
@media (max-width: 639px) {
  .cg-auth-card { padding: 1.75rem 1.25rem; border-radius: 20px; }
  .cg-auth-row { grid-template-columns: 1fr; }
  .cg-auth-title { font-size: 1.3rem; }
}

/* Print */
@media print {
  .cg-orb, .cg-bg-canvas { display: none !important; }
  .cg-landing { background: white !important; color: black !important; }
}
