/* ===================================================================
   Remote AI Teams — Futuristic Indigenous Design System
   =================================================================== */

/* --- VARIABLES --- */
:root {
  /* Ochre / Earth palette meets futuristic neon */
  --ochre:        #d4863a;
  --ochre-light:  #e8a838;
  --ochre-glow:   rgba(232, 168, 56, 0.3);
  --earth-deep:   #1a0d06;
  --earth-dark:   #2a1508;
  --earth-mid:    #3d200f;
  --maroon:       #5a1425;
  --maroon-deep:  #3e0d19;
  --sky:          #0d1b2a;
  --sky-light:    #1b2d45;
  --cream:        #fdf6ec;
  --sand:         #f5e6d0;
  --white:        #ffffff;
  --text:         #e8e0d8;
  --text-dark:    #2d2420;
  --text-muted:   #b8a89a;
  --accent:       #c0392b;
  --teal:         #2ec4b6;
  --teal-glow:    rgba(46, 196, 182, 0.2);
  --radius:       14px;
  --radius-sm:    8px;
  --shadow:       0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-glow:  0 0 30px var(--ochre-glow);
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Fjalla One', Impact, sans-serif;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--earth-deep);
  line-height: 1.7;
  overflow-x: hidden;
  overflow-wrap: anywhere;
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
a { color: var(--ochre-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal); }
img { max-width: 100%; height: auto; display: block; }
iframe, video { max-width: 100%; }
table { display: block; width: 100%; overflow-x: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- DOT PATTERN OVERLAY (Indigenous-inspired) --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle, rgba(212, 134, 58, 0.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
body > * { position: relative; z-index: 1; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.site-nav {
  background: #1a0d06;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(212, 134, 58, 0.15);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  flex-wrap: wrap;
}
.nav-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 8px var(--ochre-glow));
  transition: filter var(--transition);
}
.nav-logo img:hover { filter: drop-shadow(0 0 16px var(--ochre-glow)); }
.nav-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.nav-links a:hover {
  color: var(--ochre-light);
  background: rgba(212, 134, 58, 0.08);
  border-color: rgba(212, 134, 58, 0.2);
  text-decoration: none;
}
.nav-links a.active {
  color: var(--ochre-light);
  background: rgba(212, 134, 58, 0.12);
  border-color: rgba(212, 134, 58, 0.3);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ochre-light);
  font-size: 1.5rem;
  cursor: pointer;
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 16px 0;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
}

/* ================================================================
   HERO BANNER
   ================================================================ */
.hero-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 80px 24px;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 13, 6, 0.85) 0%,
    rgba(90, 20, 37, 0.6) 50%,
    rgba(26, 13, 6, 0.85) 100%
  );
}
/* Indigenous dot border at bottom */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--ochre) 0px,
    var(--ochre) 6px,
    transparent 6px,
    transparent 12px
  );
}
.hero-bg > * { position: relative; z-index: 1; }
.hero-bg h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  max-width: 800px;
}
.hero-bg h1 span { color: var(--ochre-light); }
.hero-bg p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ================================================================
   SECTIONS
   ================================================================ */
section {
  padding: 80px 0;
  position: relative;
}
section.container {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
section:nth-child(even) {
  background: linear-gradient(180deg, var(--earth-dark), var(--earth-deep));
}
section:nth-child(odd) {
  background: var(--earth-deep);
}

/* Spacing between paragraphs and content blocks inside sections */
section p + p { margin-top: 14px; }
section h2 + p,
section h3 + p,
section h4 + p { margin-top: 10px; }
section p + h2,
section p + h3 { margin-top: 36px; }
section > .container > * + * { margin-top: 20px; }
section > .container > h2:first-child,
section > .container > .section-title:first-child { margin-top: 0; }

/* Spacing for direct section children (when section IS the container) */
section.container > * + * { margin-top: 20px; }
section.container > h2:first-child,
section.container > .section-title:first-child { margin-top: 0; }

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 24px;
  color: var(--ochre-light);
}

.comments-panel {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212, 134, 58, 0.2);
  border-radius: 16px;
}
.fuel-map-panel {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(46, 196, 182, 0.22);
  border-radius: 16px;
}
.fuel-map-panel h3 {
  color: var(--ochre-light);
  margin-bottom: 0.75rem;
}
.route-map-shell {
  position: relative;
  margin-top: 1rem;
}
.route-map-image {
  width: 100%;
  max-width: 900px;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.route-stop {
  position: absolute;
  z-index: 2;
  border: none;
  background: #ffe36b;
  color: #163e61;
  font-weight: 800;
  border-radius: 14px;
  padding: 8px 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
  cursor: pointer;
  text-align: left;
  line-height: 1.15;
}
.route-stop small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.82;
  margin-top: 4px;
}
.stop-cairns { left: 67%; top: 28%; }
.stop-lake-barrine { left: 62%; top: 34%; }
.stop-ravenshoe { left: 58%; top: 39%; }
.stop-georgetown { left: 49%; top: 43%; }
.stop-normanton { left: 34%; top: 44%; }
.stop-karumba { left: 29%; top: 47%; }
.stop-burketown { left: 22%; top: 43%; }
.stop-hells-gate { left: 18%; top: 39%; }
.stop-borroloola { left: 12%; top: 34%; }
.stop-robinson-river { left: 9%; top: 31%; }
.stop-roper-bar { left: 18%; top: 28%; }
.stop-pine-creek { left: 13%; top: 22%; }
.stop-jabiru { left: 18%; top: 18%; }
.stop-darwin { left: 9%; top: 12%; }
.route-stops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 1rem;
}
.route-stop-card {
  text-align: left;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
  color: var(--text);
  cursor: pointer;
  display: grid;
  gap: 8px;
}
.route-stop-card strong {
  color: var(--ochre-light);
}
.route-stop-card span {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.route-stop-card.active {
  border-color: rgba(46, 196, 182, 0.45);
  box-shadow: 0 0 0 1px rgba(46, 196, 182, 0.25) inset;
}
.fuel-tab-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}
.fuel-tab-head.vertical {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.fuel-tab-head strong {
  letter-spacing: 0.04em;
}
.fuel-tab-head span {
  font-size: 0.78rem;
}
.fuel-stack {
  display: grid;
  gap: 4px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.fuel-label {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.fuel-row,
.fuel-status-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 0.92rem;
}
.fuel-status-row.bottom-row {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: nowrap;
}
.fuel-price-live {
  color: var(--ochre-light);
  font-weight: 700;
  font-size: 1.05rem;
}
.flash-price {
  animation: flashPrice 1.6s ease-in-out infinite;
}
@keyframes flashPrice {
  0%, 100% { opacity: 1; text-shadow: 0 0 0 rgba(232,168,56,0); }
  50% { opacity: 0.7; text-shadow: 0 0 12px rgba(232,168,56,0.4); }
}
.fuel-meta {
  color: var(--text-muted);
}
.fuel-yes,
.fuel-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
}
.fuel-yes {
  background: rgba(46, 196, 182, 0.18);
  color: #7ff0d6;
  border: 1px solid rgba(46, 196, 182, 0.28);
}
.fuel-no {
  background: rgba(255, 99, 71, 0.14);
  color: #ffb4a8;
  border: 1px solid rgba(255, 99, 71, 0.22);
}
.selected-stop-panel {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
}
.selected-stop-panel h4 {
  color: var(--ochre-light);
  margin-bottom: 0.5rem;
}
.route-disclaimer {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(255, 243, 205, 0.08);
  border: 1px solid rgba(255, 214, 102, 0.2);
  color: #f4d88a;
  font-size: 0.92rem;
}
.strategy-panel {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(46, 196, 182, 0.18);
}
.strategy-panel h3 {
  color: var(--ochre-light);
  margin-bottom: 0.75rem;
}
.strategy-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 1rem;
}
.strategy-stat {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 4px;
}
.strategy-stat strong {
  color: var(--ochre-light);
  font-size: 1.1rem;
}
.strategy-stat span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.35;
  word-break: normal;
  overflow-wrap: anywhere;
}
.strategy-map {
  display: grid;
  gap: 10px;
  margin-top: 1rem;
}
.strategy-node {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
}
.strategy-node.good {
  background: rgba(46, 196, 182, 0.14);
  border: 1px solid rgba(46, 196, 182, 0.22);
  color: #90f5df;
}
.strategy-node.warn {
  background: rgba(255, 214, 102, 0.1);
  border: 1px solid rgba(255, 214, 102, 0.18);
  color: #f4d88a;
}
.strategy-node.danger {
  background: rgba(255, 99, 71, 0.12);
  border: 1px solid rgba(255, 99, 71, 0.18);
  color: #ffb4a8;
}
.strategy-explainer {
  margin-top: 1rem;
}
.strategy-table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
}
.strategy-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.strategy-table th,
.strategy-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: top;
}
.strategy-table th {
  color: var(--ochre-light);
}
.strategy-table td {
  color: var(--text);
}
.budget-table {
  table-layout: fixed;
  width: 100%;
}
.budget-table th:nth-child(1),
.budget-table td:nth-child(1) {
  width: 24%;
}
.budget-table th:nth-child(2),
.budget-table td:nth-child(2) {
  width: 20%;
  white-space: nowrap;
}
.budget-table th:nth-child(3),
.budget-table td:nth-child(3) {
  width: 56%;
}
.budget-table th {
  white-space: nowrap;
}
.strategy-total-box {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(46, 196, 182, 0.12);
  border: 1px solid rgba(46, 196, 182, 0.22);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.strategy-total-box strong {
  color: #90f5df;
  line-height: 1.35;
  white-space: normal;
}
.strategy-total-box span {
  color: var(--ochre-light);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.35;
  white-space: normal;
}
@media (max-width: 700px) {
  .route-stop {
    position: static;
    display: inline-block;
    margin: 0.4rem 0.4rem 0 0;
  }
}
.comments-panel h3,
.comments-panel h4 {
  color: var(--ochre-light);
  margin-bottom: 0.75rem;
}
.comment-note,
.comment-status,
.comment-empty,
.comment-meta {
  color: var(--text-muted);
}
.comment-form {
  margin-top: 1rem;
}
.comment-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.18);
  color: var(--text);
  font: inherit;
}
.comment-form textarea {
  resize: vertical;
  min-height: 120px;
  margin-bottom: 12px;
}
.comment-form .btn {
  cursor: pointer;
}
.comment-status {
  margin-top: 0.75rem;
  min-height: 1.4em;
}
.comments-list {
  margin-top: 1rem;
  display: grid;
  gap: 12px;
}
.comment-item {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.08);
}
.comment-item p {
  margin-top: 0.5rem;
}
.comment-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 0.9rem;
}
.comment-btn {
  border: 1px solid rgba(212, 134, 58, 0.35);
  background: rgba(212, 134, 58, 0.08);
  color: var(--ochre-light);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  font: inherit;
}
.comment-btn.reject {
  border-color: rgba(255,255,255,0.14);
  color: var(--text-muted);
}
.moderation-page {
  max-width: 1000px;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ================================================================
   PATHWAY CARDS
   ================================================================ */
.pathway-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.pathway-card {
  background: linear-gradient(135deg, var(--earth-mid), var(--earth-dark));
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 134, 58, 0.1);
  border-top: 4px solid var(--ochre);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pathway-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, var(--ochre-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}
.pathway-card:hover::before { opacity: 1; }
.pathway-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 134, 58, 0.3);
  box-shadow: var(--shadow), var(--shadow-glow);
}
.pathway-card h3 {
  color: var(--ochre-light);
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.pathway-card h3 i {
  margin-right: 8px;
  font-size: 1.1rem;
}
.pathway-card p { color: var(--text-muted); position: relative; }

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid rgba(212, 134, 58, 0.1);
}
.gallery-grid img:hover {
  transform: scale(1.03);
  border-color: var(--ochre);
  box-shadow: var(--shadow-glow);
}

/* ================================================================
   LIGHTBOX
   ================================================================ */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 5, 2, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
  max-width: 92vw;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(212, 134, 58, 0.2);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--ochre-light);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 2001;
  background: none;
  border: none;
  line-height: 1;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--white); }

/* ================================================================
   VIDEO WRAPPER
   ================================================================ */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 32px auto;
  max-width: 800px;
  border: 1px solid rgba(212, 134, 58, 0.15);
  box-shadow: var(--shadow);
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================================================================
   BOX / KIT CARDS
   ================================================================ */
.box-card {
  display: flex;
  gap: 28px;
  background: linear-gradient(135deg, var(--earth-mid), var(--earth-dark));
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 134, 58, 0.08);
  align-items: flex-start;
  transition: border-color var(--transition);
}
.box-card:hover {
  border-color: rgba(212, 134, 58, 0.25);
}
.box-card img {
  width: 380px;
  min-width: 260px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid rgba(212, 134, 58, 0.1);
  transition: all var(--transition);
}
.box-card img:hover {
  border-color: var(--ochre);
  box-shadow: var(--shadow-glow);
}
.box-card-text h3 {
  color: var(--ochre-light);
  margin-bottom: 14px;
  font-size: 1.3rem;
}
.box-card-text h4 {
  color: var(--ochre);
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.box-card-text p { color: var(--text-muted); margin-bottom: 12px; }
.box-card-text p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
  .box-card { flex-direction: column; }
  .box-card img { width: 100%; min-width: auto; }
}

/* ================================================================
   TEAM CARDS
   ================================================================ */
.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.team-card {
  background: linear-gradient(135deg, var(--earth-mid), var(--earth-dark));
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 134, 58, 0.08);
  transition: all var(--transition);
}
.team-card:hover {
  border-color: rgba(212, 134, 58, 0.25);
  transform: translateY(-2px);
}
.team-card h3 {
  color: var(--ochre-light);
  margin-bottom: 10px;
}
.team-card p { color: var(--text-muted); }
.team-card i {
  font-size: 2rem;
  color: var(--ochre);
  margin-bottom: 12px;
  display: block;
}

/* ================================================================
   CONTACT FORM
   ================================================================ */
.contact-form {
  max-width: 600px;
  margin: 24px auto;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 134, 58, 0.2);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--earth-dark);
  color: var(--text);
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--ochre);
  box-shadow: 0 0 0 3px var(--ochre-glow);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

/* Button */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--ochre), var(--ochre-light));
  color: var(--earth-deep);
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--ochre-glow);
  text-decoration: none;
  color: var(--earth-deep);
}

/* ================================================================
   ABOUT PAGE - IMAGE GRID
   ================================================================ */
.about-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.about-images img {
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid rgba(212, 134, 58, 0.1);
  transition: all var(--transition);
}
.about-images img:hover {
  border-color: var(--ochre);
  box-shadow: var(--shadow-glow);
}

/* ================================================================
   SUBSCRIBE
   ================================================================ */
.subscribe {
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  position: relative;
  overflow: hidden;
}
/* Dot pattern for subscribe */
.subscribe::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232, 168, 56, 0.08) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  pointer-events: none;
}
.subscribe * { position: relative; }
.subscribe h2 {
  color: var(--ochre-light);
  margin-bottom: 8px;
  font-size: 1.8rem;
}
.subscribe p { color: var(--text-muted); margin-bottom: 20px; }
.subscribe form { display: inline-flex; gap: 0; }
.subscribe input[type="email"] {
  padding: 14px 18px;
  width: 300px;
  border: 1px solid rgba(212, 134, 58, 0.3);
  border-right: none;
  border-radius: 50px 0 0 50px;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.3);
  color: var(--text);
}
.subscribe input[type="email"]::placeholder { color: var(--text-muted); opacity: 0.5; }
.subscribe input[type="email"]:focus {
  outline: none;
  border-color: var(--ochre);
}
.subscribe button {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--ochre), var(--ochre-light));
  color: var(--earth-deep);
  border: none;
  border-radius: 0 50px 50px 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.subscribe button:hover {
  box-shadow: 0 4px 20px var(--ochre-glow);
}
@media (max-width: 480px) {
  .subscribe form { flex-direction: column; gap: 8px; }
  .subscribe input[type="email"] { width: 100%; border-radius: 50px; border-right: 1px solid rgba(212, 134, 58, 0.3); }
  .subscribe button { border-radius: 50px; }
}

/* ================================================================
   BLOG POST
   ================================================================ */
.blog-post {
  background: linear-gradient(135deg, var(--earth-mid), var(--earth-dark));
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 134, 58, 0.08);
  margin: 24px 0;
}
.blog-post p { color: var(--text-muted); margin-bottom: 12px; }

/* ================================================================
   PRIVACY SECTION
   ================================================================ */
.privacy-section {
  background: var(--earth-dark);
  padding: 48px 28px;
  margin-top: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 134, 58, 0.08);
}
.privacy-section h2, .privacy-section h3 {
  color: var(--ochre-light);
  margin: 24px 0 12px;
}
.privacy-section p, .privacy-section li {
  color: var(--text-muted);
  margin-bottom: 8px;
}
.privacy-section ul { padding-left: 20px; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: linear-gradient(180deg, var(--earth-dark), #0a0503);
  color: var(--text-muted);
  padding: 60px 0 20px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(212, 134, 58, 0.1);
}
.site-footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}
.site-footer h4 {
  color: var(--ochre-light);
  margin-bottom: 14px;
  font-size: 1.1rem;
}
.site-footer a { color: var(--ochre); }
.site-footer a:hover { color: var(--teal); }
.footer-ack {
  font-style: italic;
  margin-top: 12px;
  font-size: 0.85rem;
  color: #8a7a6a;
  line-height: 1.6;
}
.footer-bottom {
  text-align: center;
  padding: 24px;
  background: #050301;
  color: #665a50;
  font-size: 0.85rem;
  border-top: 1px solid rgba(212, 134, 58, 0.05);
}

/* ================================================================
   CLICKABLE IMAGES
   ================================================================ */
.clickable-img {
  cursor: pointer;
  transition: all var(--transition);
}
.clickable-img:hover {
  opacity: 0.92;
  box-shadow: var(--shadow-glow);
}

/* ================================================================
   TEXT UTILITIES
   ================================================================ */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 28px;
  line-height: 1.8;
  text-align: center;
}

/* ================================================================
   CONTENT TEXT (for inner pages)
   ================================================================ */
.content-text h2 {
  color: var(--ochre-light);
  margin: 40px 0 16px;
  font-size: 1.6rem;
}
.content-text h3 {
  color: var(--ochre);
  margin: 32px 0 12px;
}
.content-text h4 {
  color: var(--ochre);
  margin: 24px 0 10px;
  font-size: 1.05rem;
}
.content-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.content-text p:last-child { margin-bottom: 0; }
.content-text ul { padding-left: 20px; margin-bottom: 16px; }
.content-text li { color: var(--text-muted); margin-bottom: 8px; }

/* ================================================================
   CONTACT INFO
   ================================================================ */
.contact-info {
  background: var(--earth-dark);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(212, 134, 58, 0.1);
  margin-top: 24px;
}
.contact-info h3 { color: var(--ochre-light); margin-bottom: 12px; }
.contact-info p { color: var(--text-muted); margin-bottom: 6px; }
.contact-info i { color: var(--ochre); margin-right: 8px; }

/* ================================================================
   SERVICES GRID
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.service-card {
  background: linear-gradient(135deg, var(--earth-mid), var(--earth-dark));
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 134, 58, 0.08);
  text-align: center;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: rgba(212, 134, 58, 0.25);
  transform: translateY(-2px);
}
.service-card i {
  font-size: 2.2rem;
  color: var(--ochre);
  margin-bottom: 12px;
}
.service-card h3 { color: var(--ochre-light); margin-bottom: 8px; font-size: 1.1rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ================================================================
   ABOUT AI AUDIENCE TABS + WORKFLOW
   ================================================================ */
.audience-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.audience-tab {
  display: block;
  background: linear-gradient(135deg, rgba(61, 32, 15, 0.96), rgba(26, 13, 6, 0.98));
  border: 1px solid rgba(212, 134, 58, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  color: inherit;
}
.audience-tab:hover {
  border-color: rgba(46, 196, 182, 0.45);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), 0 0 22px rgba(46, 196, 182, 0.12);
  transform: translateY(-4px);
  text-decoration: none;
}
.audience-letter {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ochre), var(--ochre-light));
  color: var(--earth-deep);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 16px;
}
.audience-tab h3 {
  color: var(--ochre-light);
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.audience-tab p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.ai-workflow-section {
  position: relative;
}
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.workflow-step {
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.55), rgba(42, 21, 8, 0.96));
  border: 1px solid rgba(46, 196, 182, 0.18);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.workflow-number {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(46, 196, 182, 0.16);
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 1.2rem;
  border: 1px solid rgba(46, 196, 182, 0.25);
}
.workflow-step h3 {
  color: var(--ochre-light);
  margin-bottom: 10px;
}
.workflow-step p,
.audience-detail p {
  color: var(--text-muted);
}

/* ================================================================
   SCROLL ANIMATIONS (subtle)
   ================================================================ */
@media (prefers-reduced-motion: no-preference) {
  .pathway-card, .team-card, .box-card, .service-card, .blog-post, .gallery-grid img {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
  }
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
  .pathway-card:nth-child(2) { animation-delay: 0.1s; }
  .pathway-card:nth-child(3) { animation-delay: 0.2s; }
  .gallery-grid img:nth-child(2) { animation-delay: 0.05s; }
  .gallery-grid img:nth-child(3) { animation-delay: 0.1s; }
  .gallery-grid img:nth-child(4) { animation-delay: 0.15s; }
  .gallery-grid img:nth-child(5) { animation-delay: 0.2s; }
  .gallery-grid img:nth-child(6) { animation-delay: 0.25s; }
  .gallery-grid img:nth-child(7) { animation-delay: 0.3s; }
}
