/* ============================================================
   ELDHAMSHIRE LLC — WEBSITE STYLES
   ============================================================ */

/* 1. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: #0a0908;
  color: #e4d4b4;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* 2. CSS VARIABLES
   ============================================================ */
:root {
  --bg:            #0a0908;
  --bg-2:          #0f0e0c;
  --bg-3:          #141311;
  --bg-card:       #161413;
  --bg-card-h:     #1c1a18;
  --gold:          #c9a84c;
  --gold-lt:       #e8c87a;
  --gold-dk:       #8a6d2e;
  --gold-a10:      rgba(201,168,76,0.10);
  --gold-a20:      rgba(201,168,76,0.20);
  --gold-a35:      rgba(201,168,76,0.35);
  --text:          #ede0c4;
  --text-2:        #a89268;
  --text-3:        #6a5840;
  --emerald:       rgba(14,40,22,0.85);
  --emerald-bd:    rgba(60,140,80,0.35);
  --purple:        rgba(28,14,50,0.85);
  --purple-bd:     rgba(130,80,200,0.35);
  --fh:            'Cinzel', 'Georgia', serif;
  --fb:            'Inter', sans-serif;
  --hero-img:      url('../images/hero-castle.jpg');
}

/* 3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fh);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
}
p { color: var(--text-2); }

/* 4. NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center;
  padding: 0 2.75rem;
  height: 80px;
  background: rgba(10,9,8,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-a20);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.85rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 62px;
  width: auto;
}
.nav-logo-text {
  display: flex; flex-direction: column; align-items: center; line-height: 1.1;
}
.nav-logo-name {
  font-family: var(--fh);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--text);
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-logo-rule {
  display: flex; align-items: center; gap: 0.4rem;
  width: 100%;
}
.nav-logo-rule span {
  flex: 1; height: 1px; background: var(--gold-a35);
}
.nav-logo-llc {
  font-family: var(--fh);
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 2.25rem;
  margin: 0 auto;
}
.nav-links a {
  font-family: var(--fh);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 5px;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold);
}
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  min-width: 150px;
  padding: 0.5rem 0;
  background: rgba(10,9,8,0.98);
  border: 1px solid var(--gold-a20);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 1.25rem;
  font-family: var(--fh);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { color: var(--gold-lt); background: var(--gold-a10); }
.nav-right {
  display: flex; align-items: center; gap: 1.25rem;
  flex-shrink: 0;
}
.nav-arrow {
  color: var(--text-3); font-size: 1.1rem; line-height: 1;
  font-family: var(--fb);
}
.nav-sigil {
  width: 34px; height: 34px;
  border: 1px solid var(--gold-a20);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.nav-mobile {
  display: none;
  position: fixed; top: 80px; left: 0; right: 0; z-index: 999;
  background: rgba(10,9,8,0.98);
  border-bottom: 1px solid var(--gold-a20);
  padding: 1.75rem 2.75rem;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  font-family: var(--fh);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-2);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gold-a10);
  transition: color 0.25s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--gold); }

/* 5. HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 68vh;
  display: flex; align-items: center;
  padding-top: 68px;
  overflow: hidden;
}
/* Default hero gradient (fallback when no image) */
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,9,8,0.97) 35%, rgba(10,9,8,0.55) 65%, rgba(10,9,8,0.35) 100%),
    linear-gradient(135deg, #1a1408 0%, #0e0c07 40%, #1a160a 70%, #0a0908 100%);
  background-size: cover;
  background-position: center right;
}
/* Apply castle image when available — user: drop hero-castle.jpg into /images/ */
.hero-bg.with-image {
  background:
    linear-gradient(rgba(10,9,8,0.45), rgba(10,9,8,0.45)),
    var(--hero-img) right center / contain no-repeat;
}
/* Atmospheric shimmer overlay */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 60%, rgba(40,28,8,0.4) 0%, transparent 65%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1320px;
  margin: 0 auto;
  padding: 5rem 2.75rem;
}
.hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 3.3rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.02em;
  color: var(--text);
  max-width: 600px;
  margin-bottom: 1.5rem;
}
.hero-accent {
  width: 52px; height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
}
.hero-accent::after {
  content: '◆';
  position: absolute; right: -10px; top: -7px;
  font-size: 6px; color: var(--gold);
}
.hero p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--text-2);
  max-width: 450px;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Breadcrumb */
.breadcrumb {
  position: relative; z-index: 2;
  font-family: var(--fh);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.75rem;
}
.breadcrumb a { color: var(--text-3); transition: color 0.25s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* 6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.68rem 1.8rem;
  font-family: var(--fh);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-a35);
}
.btn-outline:hover {
  background: var(--gold-a10);
  border-color: var(--gold);
}
.btn-dark {
  background: rgba(16,34,20,0.8);
  color: var(--gold);
  border-color: var(--gold-a35);
}
.btn-dark:hover {
  background: rgba(16,34,20,1);
  border-color: var(--gold);
}
.btn-gold {
  background: var(--gold-a10);
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-a20); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.58rem; }

/* 7. LAYOUT CONTAINERS
   ============================================================ */
.container {
  width: 100%; max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.75rem;
}
.section { padding: 5.5rem 0; }
.section-inner {
  width: 100%; max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.75rem;
}
.section-alt { background: var(--bg-2); }
.section-alt2 { background: var(--bg-3); }

/* Section header */
.section-hd {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-hd h2 {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; margin-top: 0.4rem;
}
.divider::before, .divider::after {
  content: ''; display: block;
  width: 50px; height: 1px;
  background: var(--gold-a35);
}
.divider i { color: var(--gold); font-size: 6px; font-style: normal; }

/* 8. CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--gold-a20);
  padding: 1.6rem;
  transition: background 0.3s, border-color 0.3s;
}
.card:hover {
  background: var(--bg-card-h);
  border-color: var(--gold-a35);
}
.card-icon {
  width: 40px; height: 40px;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.card-title {
  font-family: var(--fh);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.card-text {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* 9. GRID UTILITIES
   ============================================================ */
.g2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.g5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.25rem; }
.g6 { display: grid; grid-template-columns: repeat(6,1fr); gap: 1rem; }

/* 10. BADGE
   ============================================================ */
.badge {
  display: inline-block;
  padding: 0.22rem 0.7rem;
  font-family: var(--fh);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid;
  margin-bottom: 1.25rem;
}
.badge-active {
  background: var(--emerald);
  border-color: var(--emerald-bd);
  color: #70c888;
}
.badge-future {
  background: var(--purple);
  border-color: var(--purple-bd);
  color: #b090e0;
}

/* 11. FORMS
   ============================================================ */
.form-field {
  display: flex; flex-direction: column; gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form-label {
  font-family: var(--fh);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 0.5rem;
}
.form-label svg { width: 14px; height: 14px; }
.form-input, .form-textarea, .form-select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-a20);
  color: var(--text);
  padding: 0.7rem 0.9rem;
  font-size: 0.78rem;
  transition: border-color 0.25s;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-3);
  font-size: 0.75rem;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold-a35);
  background: rgba(255,255,255,0.06);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: #1a1815; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-check {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.75rem; color: var(--text-2);
  margin-bottom: 1.5rem;
}
.form-check input[type="checkbox"] {
  width: 14px; height: 14px; min-width: 14px;
  border: 1px solid var(--gold-a35);
  background: transparent;
  appearance: none;
  cursor: pointer;
  margin-top: 3px;
  border-radius: 0;
}
.form-check input[type="checkbox"]:checked { background: var(--gold-a20); }
.form-check a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

/* 12. ORNAMENTS
   ============================================================ */
.orn {
  display: flex; align-items: center; gap: 0.75rem;
  margin: 1.25rem 0;
}
.orn::before, .orn::after {
  content: ''; flex: 1; height: 1px;
  background: var(--gold-a20);
}
.orn-d { color: var(--gold); font-size: 7px; }

/* Inline diamond rule */
.rule-gold {
  border: none; border-top: 1px solid var(--gold-a20);
  margin: 0;
}

/* Page-bottom tagline */
.page-tagline {
  background: var(--bg-2);
  border-top: 1px solid var(--gold-a20);
  padding: 1.5rem 2.75rem;
  text-align: center;
  font-family: var(--fh);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-2);
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.page-tagline::before, .page-tagline::after {
  content: '❖';
  color: var(--gold-dk);
  font-size: 8px;
}

/* 13. FOOTER
   ============================================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--gold-a20);
  padding: 3.5rem 2.75rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1320px; margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--gold-a20);
}
.footer-brand .brand-name {
  font-family: var(--fh);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.footer-brand p {
  font-size: 0.75rem;
  line-height: 1.8;
  color: var(--text-3);
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--fh);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.75rem;
  color: var(--text-3);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1320px; margin: 0 auto;
  padding-top: 1.75rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom p {
  font-family: var(--fh);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--text-3);
}

/* 14. STEP PROCESS
   ============================================================ */
.steps {
  display: flex; align-items: flex-start;
  gap: 0; margin-bottom: 4rem;
}
.step {
  flex: 1; position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 1rem;
}
.step::after {
  content: '';
  position: absolute; top: 22px; left: calc(50% + 24px);
  right: calc(-50% + 24px);
  height: 1px; background: var(--gold-a20);
}
.step:last-child::after { display: none; }
.step-num {
  width: 46px; height: 46px;
  border: 1px solid var(--gold-a35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh);
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative; z-index: 1;
  background: var(--bg);
}
.step-icon {
  width: 20px; height: 20px;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.step-title {
  font-family: var(--fh);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.step-text {
  font-size: 0.75rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* Connected arrow steps (horizontal) */
.arrow-steps {
  display: flex; align-items: center; gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--gold-a20);
  padding: 0.75rem 1.5rem;
  font-family: var(--fh);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
}
.arrow-steps span {
  display: flex; align-items: center; gap: 0.6rem;
}
.arrow-steps span::after {
  content: '→';
  color: var(--gold);
  font-family: sans-serif;
  font-size: 0.8rem;
}
.arrow-steps span:last-child::after { display: none; }

/* 15. SPLIT HERO (for pages like Contact, Crowdsource)
   ============================================================ */
.hero-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
}
.hero-split-left {
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
  padding: 5rem 3rem 5rem 2.75rem;
  background:
    linear-gradient(to right, rgba(10,9,8,0.98) 40%, rgba(10,9,8,0.7) 100%),
    linear-gradient(135deg, #1a1408, #0a0908);
}
.hero-split-left.with-image {
  background:
    linear-gradient(rgba(10,9,8,0.45), rgba(10,9,8,0.45)),
    var(--hero-img) right center / contain no-repeat;
}
.hero-split-right {
  background: var(--bg-2);
  border-left: 1px solid var(--gold-a20);
  overflow-y: auto;
  padding: 3.5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
}

/* 16. PRODUCT MOCKUP PANELS
   ============================================================ */
.mockup-panel {
  background: var(--bg-3);
  border: 1px solid var(--gold-a20);
  border-radius: 2px;
  padding: 1.25rem;
  font-size: 0.7rem;
}
.mockup-stat {
  font-family: var(--fh);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.mockup-stat-label {
  font-size: 0.65rem;
  color: var(--text-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mockup-bar-row { margin: 0.4rem 0; }
.mockup-bar-label {
  font-size: 0.65rem;
  color: var(--text-2);
  margin-bottom: 0.2rem;
  display: flex; justify-content: space-between;
}
.mockup-bar {
  height: 3px;
  background: var(--gold-a10);
  position: relative;
  overflow: hidden;
}
.mockup-bar-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--gold-a35);
}
.mockup-pipeline {
  display: flex; gap: 0.5rem; margin-top: 0.75rem;
  flex-wrap: wrap;
}
.mockup-pill {
  font-family: var(--fh);
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  border: 1px solid var(--gold-a10);
  padding: 0.2rem 0.5rem;
}

/* App mockup (RealU) */
.app-mockup {
  display: flex; gap: 1rem;
}
.app-screen {
  background: var(--bg-3);
  border: 1px solid var(--gold-a20);
  border-radius: 4px;
  padding: 1rem;
  font-size: 0.65rem;
  flex: 1;
}
.app-screen-title {
  font-family: var(--fh);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gold-a20);
}
.app-stat-row {
  display: flex; gap: 0.5rem; margin-bottom: 0.75rem;
}
.app-stat {
  flex: 1; background: var(--bg-card); border: 1px solid var(--gold-a10);
  padding: 0.5rem;
  text-align: center;
}
.app-stat-val {
  font-family: var(--fh); font-size: 1rem; color: var(--gold);
}
.app-stat-lbl {
  font-size: 0.55rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em;
}

/* Progress ring (72%) */
.progress-ring-wrap {
  display: flex; align-items: center; gap: 0.75rem;
}
.progress-ring-text {
  font-family: var(--fh); font-size: 0.85rem; color: var(--gold);
}

/* 17. COMPANY OVERVIEW BULLETS
   ============================================================ */
.bullet-list {
  display: flex; flex-direction: column; gap: 0.85rem;
  margin-top: 0.5rem;
}
.bullet-item {
  display: flex; gap: 0.85rem; align-items: flex-start;
}
.bullet-item svg {
  width: 18px; height: 18px;
  color: var(--gold); flex-shrink: 0;
  margin-top: 2px;
}
.bullet-item p {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* 18. PRODUCT CARDS (large, featured)
   ============================================================ */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-a20);
  padding: 2.5rem;
  display: flex; gap: 2.5rem;
  align-items: center;
  transition: border-color 0.3s;
}
.product-card:hover { border-color: var(--gold-a35); }
.product-card-info { flex: 0 0 320px; }
.product-card-visual { flex: 1; min-height: 200px; }
.product-icon {
  width: 52px; height: 52px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.product-card h3 {
  font-size: 1.45rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.product-card p {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* 19. PROTECTION GRID
   ============================================================ */
.protect-grid {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1.25rem;
}
.protect-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.6rem; flex: 0 0 calc(20% - 1.5rem);
}
.protect-item svg {
  width: 36px; height: 36px; color: var(--gold);
}
.protect-item span {
  font-family: var(--fh);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-2);
  text-align: center;
  line-height: 1.5;
}

/* 20. CATEGORY CARDS (crowdsource page)
   ============================================================ */
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-a20);
  padding: 1.25rem;
  display: flex; gap: 0.85rem;
  align-items: flex-start;
  transition: all 0.3s;
}
.cat-card:hover {
  background: var(--bg-card-h);
  border-color: var(--gold-a35);
  cursor: pointer;
}
.cat-card svg { width: 28px; height: 28px; color: var(--gold); flex-shrink: 0; }
.cat-card-title {
  font-family: var(--fh);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.cat-card-sub { font-size: 0.72rem; color: var(--text-2); }

/* Contact info blocks */
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gold-a10);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-label {
  font-family: var(--fh);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.contact-info-val { font-size: 0.78rem; color: var(--text-2); }

/* 21. MISSION / VISION BOX
   ============================================================ */
.mv-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-a20);
  padding: 2rem;
  text-align: center;
  height: 100%;
}
.mv-box svg {
  width: 48px; height: 48px;
  color: var(--gold);
  margin: 0 auto 1.25rem;
}
.mv-box h3 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.mv-box p { font-size: 0.8rem; line-height: 1.85; }

/* 22. HOW WE BUILD (3-col principle)
   ============================================================ */
.principle {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid var(--gold-a10);
  background: var(--bg-card);
}
.principle svg { width: 28px; height: 28px; color: var(--gold); flex-shrink: 0; }
.principle p { font-size: 0.78rem; color: var(--text-2); line-height: 1.75; }

/* 23. LONG-TERM GOALS (vision page)
   ============================================================ */
.goal-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-a20);
  padding: 1.75rem 1.25rem;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 0.85rem;
  transition: all 0.3s;
}
.goal-card:hover { background: var(--bg-card-h); border-color: var(--gold-a35); }
.goal-card svg { width: 40px; height: 40px; color: var(--gold); }
.goal-card p { font-size: 0.78rem; color: var(--text-2); line-height: 1.65; }

/* Operating Principle */
.op-principle {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem;
  border-bottom: 1px solid var(--gold-a10);
}
.op-principle:last-child { border-bottom: none; }
.op-principle svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.op-principle-title {
  font-family: var(--fh);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.op-principle p { font-size: 0.76rem; color: var(--text-2); }

/* 24. CORE FEATURES (realu page)
   ============================================================ */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-a20);
  padding: 1.75rem;
  transition: all 0.3s;
}
.feature-card:hover { background: var(--bg-card-h); border-color: var(--gold-a35); }
.feature-card svg { width: 36px; height: 36px; color: var(--gold); margin-bottom: 1rem; }
.feature-card h4 {
  font-family: var(--fh);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.feature-card p { font-size: 0.78rem; color: var(--text-2); line-height: 1.75; }

/* 25. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.65s ease both; }
.fade-in.d1 { animation-delay: 0.1s; }
.fade-in.d2 { animation-delay: 0.2s; }
.fade-in.d3 { animation-delay: 0.3s; }

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.shown { opacity: 1; transform: none; }

/* Hover lift on cards */
.lift { transition: transform 0.3s ease; }
.lift:hover { transform: translateY(-3px); }

/* 26. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .g6 { grid-template-columns: repeat(3,1fr); }
  .g5 { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-arrow { display: none; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-right {
    border-left: none;
    border-top: 1px solid var(--gold-a20);
    min-height: auto;
    padding: 3rem 2rem;
  }
  .product-card { flex-direction: column; }
  .product-card-info { flex: none; width: 100%; }
  .g3, .g4, .g5 { grid-template-columns: repeat(2,1fr); }
  .g6 { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 2rem; }
  .step::after { display: none; }
}
@media (max-width: 600px) {
  :root { --fh: 'Cinzel', serif; }
  .nav { padding: 0 1.25rem; }
  .container, .section-inner { padding: 0 1.25rem; }
  .hero-inner { padding: 4rem 1.25rem; }
  .hero h1 { font-size: 1.7rem; }
  .g2, .g3, .g4, .g5, .g6 { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .footer { padding: 3rem 1.25rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .protect-item { flex: 0 0 calc(33% - 1rem); }
  .hero-split-left { padding: 4rem 1.25rem; }
  .hero-split-right { padding: 2.5rem 1.25rem; }
  .product-card { padding: 1.5rem; }
  .page-tagline { padding: 1.5rem 1.25rem; font-size: 0.55rem; letter-spacing: 0.18em; }
}
