/* ─────────────────────────────────────────────
   OurNation.ai — Stylesheet
   Palette: Deep forest night + warm ember gold
   ───────────────────────────────────────────── */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #D4820A;
  --gold-light: #F0A830;
  --gold-dark:  #8B6914;
  --rust:       #8B2E00;
  --forest:     #1A3A2A;
  --forest-dk:  #0D2016;
  --night:      #0A1628;
  --midnight:   #071020;
  --cream:      #F4ECD8;
  --birch:      #EDE3CC;
  --mist:       #C8BEA8;
  --text:       #2A1F0E;
  --text-light: #6B5A3E;

  --ff-display: 'Cinzel', serif;
  --ff-body:    'Lora', serif;
  --ff-ui:      'Source Sans 3', sans-serif;

  --radius:   8px;
  --radius-lg: 16px;
  --trans:    0.3s ease;
  --shadow:   0 4px 24px rgba(10,22,40,0.18);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.28);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  line-height: 1.25;
  color: var(--night);
}

a { color: inherit; text-decoration: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
em { color: var(--gold-dark); font-style: italic; }
strong { color: var(--gold-dark); font-weight: 600; }

/* ── CONTAINER ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION SCAFFOLD ── */
.section { padding: 100px 0; position: relative; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-ornament {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
  position: relative;
}
.section-ornament::before,
.section-ornament::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.section-ornament::before { left: -12px; }
.section-ornament::after  { right: -12px; }
.section-ornament.light { background: linear-gradient(90deg, transparent, rgba(212,130,10,0.6), transparent); }
.section-ornament.light::before,
.section-ornament.light::after { background: var(--gold-light); }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.section-title.light { color: var(--cream); }

.section-sub {
  font-family: var(--ff-ui);
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto;
}
.section-sub.light { color: var(--mist); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--ff-ui);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--trans);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,130,10,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(212,130,10,0.6);
}
.btn-outline:hover {
  background: rgba(212,130,10,0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-full { width: 100%; text-align: center; }

/* ── BEADWORK STRIPS ── */
.beadwork-strip {
  height: 12px;
  background:
    repeating-linear-gradient(
      90deg,
      #D4820A 0px, #D4820A 10px,
      #8B2E00 10px, #8B2E00 20px,
      #1A3A2A 20px, #1A3A2A 30px,
      #1A2D4A 30px, #1A2D4A 40px,
      #D4820A 40px, #D4820A 50px,
      #F0A830 50px, #F0A830 60px,
      #8B2E00 60px, #8B2E00 70px,
      #1A3A2A 70px, #1A3A2A 80px
    );
  opacity: 0.85;
}

/* ─────────────── NAV ─────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--trans), box-shadow var(--trans);
  padding: 0;
}
.nav.scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.logo-mark.small { width: 32px; height: 32px; }

.logo-text {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream);
}
.logo-ai { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--ff-ui);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(244,236,216,0.8);
  letter-spacing: 0.04em;
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--midnight) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--midnight) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--trans);
}

/* ─────────────── HERO ─────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.hero-pattern {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.beadwork-top  { position: absolute; top: 0; left: 0; right: 0; z-index: 2; }
.beadwork-bottom { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; }
.beadwork-footer { width: 100%; }

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 760px;
  padding: 100px 32px 80px;
}

.hero-nation {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
  line-height: 1.15;
}

.hero-accent {
  color: var(--gold-light);
  display: inline-block;
}

.hero-sub {
  font-family: var(--ff-ui);
  font-size: 1.1rem;
  color: rgba(244,236,216,0.8);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.badge {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(212,130,10,0.4);
  background: rgba(212,130,10,0.1);
  padding: 7px 16px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.hero-ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-wheel {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  z-index: 1;
  pointer-events: none;
}

/* Fade-up animations */
.fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

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

/* ─────────────── ACKNOWLEDGMENT ─────────────── */
.acknowledgment {
  background: var(--night);
  padding: 48px 0;
  border-top: 1px solid rgba(212,130,10,0.2);
}

.ack-inner {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.ack-feather { 
  width: 48px;
  flex-shrink: 0;
  opacity: 0.85;
  padding-top: 4px;
}

.ack-label {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.ack-text p {
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: rgba(244,236,216,0.75);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

/* ─────────────── ABOUT ─────────────── */
.about { background: var(--birch); }

.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.medicine-wheel-large {
  width: 320px;
  height: 320px;
  filter: drop-shadow(0 8px 32px rgba(212,130,10,0.2));
  animation: slowSpin 60s linear infinite;
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

.about-intro {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.5em;
}

.about-text p {
  font-family: var(--ff-ui);
  font-size: 1rem;
  color: var(--text-light);
}

.about-flags {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(212,130,10,0.25);
}

.flag-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.flag-num {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.flag-label {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── START SMALL / STARTER IDEAS (About) ── */
.starter-block {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid rgba(212,130,10,0.25);
}

.starter-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.starter-intro .section-ornament { margin-bottom: 20px; }

.starter-intro h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--night);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.starter-intro p {
  font-family: var(--ff-ui);
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.starter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.starter-card {
  background: white;
  border: 1px solid rgba(212,130,10,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--trans);
  box-shadow: 0 2px 12px rgba(10,22,40,0.05);
}

.starter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,22,40,0.12);
  border-color: rgba(212,130,10,0.4);
}

.starter-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(212,130,10,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.starter-icon svg { width: 28px; height: 28px; }

.starter-card h4 {
  font-family: var(--ff-display);
  font-size: 1.02rem;
  color: var(--night);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.starter-card p {
  font-family: var(--ff-ui);
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ─────────────── SERVICES ─────────────── */
.services { background: var(--night); overflow: hidden; }

/* ── DIGITAL FOUNDATIONS (Services) ── */
.foundations {
  margin-top: 72px;
  padding: 56px 48px;
  border: 1px solid rgba(212,130,10,0.3);
  border-radius: var(--radius-lg);
  background: rgba(212,130,10,0.045);
  position: relative;
  z-index: 1;
}

.foundations-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 44px;
}

.foundations-badge {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--midnight);
  background: var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.foundations-header h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  color: var(--cream);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.foundations-header p {
  font-family: var(--ff-ui);
  font-size: 1.08rem;
  color: var(--mist);
  line-height: 1.7;
  margin: 0;
}

.foundations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.foundation-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,130,10,0.25);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
  transition: all var(--trans);
}

.foundation-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.foundation-card:hover::before { opacity: 1; }

.foundation-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,130,10,0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.foundation-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
}
.foundation-icon svg { width: 56px; height: 56px; }

.foundation-card h4 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.foundation-card p {
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  color: var(--mist);
  line-height: 1.65;
  margin: 0;
}

.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,130,10,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(26,58,42,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.services-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0px,
    transparent 30px,
    rgba(212,130,10,0.02) 30px,
    rgba(212,130,10,0.02) 31px
  );
}

.services .section-title { color: var(--cream); }
.services .section-sub { color: var(--mist); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,130,10,0.2);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,130,10,0.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(212,130,10,0.1);
}

.service-card:hover::before { opacity: 1; }

.service-card.featured {
  background: rgba(212,130,10,0.08);
  border-color: rgba(212,130,10,0.4);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.service-num {
  font-family: var(--ff-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(212,130,10,0.4);
  margin-bottom: 8px;
}

.service-badge-featured {
  display: inline-block;
  font-family: var(--ff-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--midnight);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.service-card p {
  font-family: var(--ff-ui);
  font-size: 0.92rem;
  color: var(--mist);
  margin-bottom: 20px;
  line-height: 1.65;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  font-family: var(--ff-ui);
  font-size: 0.87rem;
  color: rgba(200,190,168,0.8);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.service-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 5px;
}

.service-accent {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,130,10,0.15), transparent 70%);
}

/* ─────────────── TEACHINGS ─────────────── */
.teachings { background: var(--cream); }

.teachings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.teaching-center {
  grid-column: 2;
}

.teaching-card {
  background: white;
  border: 1px solid rgba(212,130,10,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--trans);
  box-shadow: 0 2px 12px rgba(10,22,40,0.06);
}

.teaching-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,22,40,0.12);
  border-color: rgba(212,130,10,0.4);
}

.teaching-symbol {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  border: 2px solid rgba(212,130,10,0.3);
}

.teaching-ojibwe {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.teaching-card h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--night);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.teaching-card p {
  font-family: var(--ff-ui);
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ─────────────── WHY US ─────────────── */
.why-us { background: var(--birch); }

.differentiators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.diff-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: white;
  border: 1px solid rgba(212,130,10,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--trans);
}

.diff-item:hover {
  border-color: rgba(212,130,10,0.35);
  box-shadow: var(--shadow);
}

.diff-icon-wrap {
  width: 48px;
  height: 48px;
}

.diff-item h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--night);
  letter-spacing: 0.05em;
}

.diff-item p {
  font-family: var(--ff-ui);
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* OCAP callout */
.ocap-callout {
  background: var(--night);
  border: 1px solid rgba(212,130,10,0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  overflow: hidden;
  position: relative;
}

.ocap-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at left center, rgba(26,58,42,0.2), transparent 60%);
  pointer-events: none;
}

.ocap-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.ocap-text { flex: 1; }

.ocap-text h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.ocap-text p {
  font-family: var(--ff-ui);
  font-size: 0.92rem;
  color: var(--mist);
  line-height: 1.65;
  margin: 0;
}

.ocap-pillars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.ocap-pill {
  background: rgba(212,130,10,0.12);
  border: 1px solid rgba(212,130,10,0.35);
  color: var(--gold-light);
  font-family: var(--ff-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--trans);
}

.ocap-pill:hover {
  background: rgba(212,130,10,0.25);
  border-color: var(--gold);
}

/* ─────────────── CONTACT ─────────────── */
.contact {
  background: var(--forest-dk);
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(212,130,10,0.08), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(26,58,42,0.2), transparent 50%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-lead {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  color: rgba(244,236,216,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  padding-top: 2px;
}

.contact-label {
  display: block;
  font-family: var(--ff-ui);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-item div > a,
.contact-item div > span {
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  color: var(--mist);
}

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

/* Contact Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,130,10,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--ff-ui);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,130,10,0.25);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--ff-ui);
  font-size: 0.95rem;
  color: var(--cream);
  outline: none;
  transition: border-color var(--trans);
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(200,190,168,0.4); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212,130,10,0.06);
}

.form-group select option {
  background: var(--night);
  color: var(--cream);
}

.form-group textarea { resize: vertical; }

.form-note {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  color: rgba(200,190,168,0.5);
  text-align: center;
  margin-top: 14px;
  margin-bottom: 0;
}

/* ─────────────── FOOTER ─────────────── */
.footer {
  background: var(--midnight);
  padding-top: 0;
}

.footer .container {
  padding-top: 64px;
  padding-bottom: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-tagline {
  font-family: var(--ff-ui);
  font-size: 0.82rem;
  color: rgba(200,190,168,0.5);
  line-height: 1.7;
  margin: 0;
}

.footer-links h5 {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  color: rgba(200,190,168,0.55);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-quote {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(200,190,168,0.65);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-closing-text {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  color: var(--gold-dark);
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(212,130,10,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-family: var(--ff-ui);
  font-size: 0.78rem;
  color: rgba(200,190,168,0.35);
  margin: 0;
}

/* ─────────────── SCROLL REVEAL ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-visual { margin-bottom: 40px; }
  .about-flags { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-closing { grid-column: 1 / -1; }
  .teachings-grid { grid-template-columns: repeat(2, 1fr); }
  .teaching-center { grid-column: auto; }
  .ocap-inner { flex-direction: column; }
  .starter-grid { grid-template-columns: repeat(2, 1fr); }
  .foundations-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,22,40,0.98);
    flex-direction: column;
    padding: 24px 32px;
    gap: 20px;
    border-top: 1px solid rgba(212,130,10,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-cta { align-self: flex-start; }
  .hero-wheel { display: none; }
  .hero-title { font-size: 2.2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .differentiators { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .teachings-grid { grid-template-columns: 1fr; }
  .starter-grid { grid-template-columns: 1fr; }
  .starter-block { margin-top: 56px; padding-top: 44px; }
  .foundations { margin-top: 56px; padding: 40px 22px; }
  .ack-inner { flex-direction: column; }
  .ocap-pillars { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
