/* ==============================
   IRU COVENANT — Global Styles
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --cream: #FAF7F2;
  --warm-white: #FFFDF9;
  --sand: #E8DDD0;
  --terracotta: #C4714A;
  --terracotta-dark: #A05538;
  --forest: #2D5044;
  --forest-light: #3D6B5A;
  --gold: #C9963A;
  --gold-light: #E8B860;
  --charcoal: #1E1E1E;
  --text-main: #2A2420;
  --text-muted: #7A6F66;
  --text-light: #B0A89E;
  --border: #E0D5C8;
  --shadow-sm: 0 2px 12px rgba(44,28,18,0.07);
  --shadow-md: 0 8px 32px rgba(44,28,18,0.10);
  --shadow-lg: 0 20px 60px rgba(44,28,18,0.13);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; }

/* ==============================
   NAVBAR
   ============================== */

.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.01em;
}
.nav-logo span { color: var(--terracotta); }

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 14px; font-weight: 400; color: var(--text-muted);
  letter-spacing: 0.03em;
  position: relative; padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--terracotta);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--terracotta); }

.nav-cta {
  display: flex; align-items: center; gap: 12px;
}
.btn-ghost {
  padding: 9px 20px; border-radius: 50px;
  border: 1.5px solid var(--forest); color: var(--forest);
  font-size: 13px; font-weight: 500;
  background: transparent;
  transition: all 0.2s;
}
.btn-ghost:hover { background: var(--forest); color: white; }

.btn-primary {
  padding: 10px 22px; border-radius: 50px;
  background: var(--terracotta); color: white;
  font-size: 13px; font-weight: 500;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,113,74,0.35); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text-main); border-radius: 2px; transition: 0.3s; }

/* ==============================
   HERO
   ============================== */

.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) 48px 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #FAF7F2 0%, #F0E8DC 50%, #E8DDD0 100%);
}

.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(196,113,74,0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(45,80,68,0.07) 0%, transparent 40%);
}

.hero-ornament {
  position: absolute; top: 15%; right: 8%;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,150,58,0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}
.hero-ornament-2 {
  position: absolute; bottom: 10%; left: 5%;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,80,68,0.07) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  max-width: 680px; position: relative; z-index: 2;
  animation: fadeUp 0.9s ease both;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 50px;
  border: 1px solid rgba(196,113,74,0.3);
  background: rgba(196,113,74,0.06);
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 28px;
}
.hero-badge::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 300; line-height: 1.1;
  color: var(--text-main);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero h1 strong { font-weight: 600; color: var(--forest); }

.hero p {
  font-size: 17px; color: var(--text-muted); line-height: 1.75;
  margin-bottom: 40px; max-width: 540px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.btn-hero-primary {
  padding: 14px 32px; border-radius: 50px;
  background: var(--terracotta); color: white;
  font-size: 15px; font-weight: 500;
  transition: all 0.25s;
  display: flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,113,74,0.4);
}
.btn-hero-secondary {
  padding: 14px 32px; border-radius: 50px;
  background: transparent; color: var(--forest);
  font-size: 15px; font-weight: 500;
  border: 1.5px solid var(--forest);
  transition: all 0.25s;
}
.btn-hero-secondary:hover { background: var(--forest); color: white; }

.hero-stats {
  display: flex; gap: 40px; margin-top: 60px;
  padding-top: 40px; border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 600;
  color: var(--forest); line-height: 1;
}
.hero-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.hero-visual {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: min(420px, 38vw);
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  animation: fadeUp 1.1s ease 0.2s both;
  z-index: 2;
}
.hero-card {
  background: white; border-radius: var(--radius-md);
  padding: 20px; box-shadow: var(--shadow-md);
}
.hero-card:nth-child(2) { margin-top: 28px; }
.hero-card:nth-child(3) { margin-top: -14px; }
.hero-card-icon { font-size: 28px; margin-bottom: 10px; }
.hero-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 4px; color: var(--text-main); }
.hero-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ==============================
   SECTIONS COMMON
   ============================== */

section { padding: 96px 48px; }

.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--terracotta); }
.section-title strong { font-weight: 600; color: var(--forest); }

.section-subtitle {
  font-size: 16px; color: var(--text-muted); line-height: 1.75;
  max-width: 600px;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ==============================
   PILLARS / FEATURES
   ============================== */

.pillars { background: var(--warm-white); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.pillar-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.pillar-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.pillar-card:hover::before { transform: scaleX(1); }

.pillar-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(196,113,74,0.12), rgba(201,150,58,0.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 18px;
}
.pillar-card h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  margin-bottom: 10px; color: var(--text-main);
}
.pillar-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ==============================
   JOURNEYS
   ============================== */

.journeys { background: var(--cream); }

.journey-tabs {
  display: flex; gap: 4px; margin-bottom: 40px;
  background: var(--sand); border-radius: 50px;
  padding: 5px; width: fit-content;
}
.journey-tab {
  padding: 10px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 400; color: var(--text-muted);
  background: transparent; border: none; cursor: pointer;
  transition: all 0.25s;
}
.journey-tab.active {
  background: white; color: var(--text-main);
  box-shadow: var(--shadow-sm); font-weight: 500;
}

.journey-content { display: none; animation: fadeUp 0.4s ease; }
.journey-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }

.journey-info h3 {
  font-family: var(--font-display); font-size: 36px; font-weight: 300;
  line-height: 1.2; margin-bottom: 16px;
}
.journey-info h3 em { font-style: italic; color: var(--terracotta); }
.journey-info p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }

.journey-tag {
  display: inline-block; padding: 5px 14px; border-radius: 50px;
  background: rgba(45,80,68,0.08); color: var(--forest);
  font-size: 12px; font-weight: 500; margin-bottom: 20px;
}

.journey-modules { display: flex; flex-direction: column; gap: 12px; }

.module-item {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: all 0.2s; cursor: pointer;
}
.module-item:hover { border-color: var(--terracotta); box-shadow: var(--shadow-sm); }
.module-num {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 8px; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--terracotta);
  border: 1px solid rgba(196,113,74,0.2);
}
.module-item h4 { font-size: 14px; font-weight: 500; color: var(--text-main); margin-bottom: 2px; }
.module-item p { font-size: 12px; color: var(--text-muted); }

/* ==============================
   HOW IT WORKS
   ============================== */

.how-it-works { background: var(--forest); color: white; }
.how-it-works .section-tag { color: var(--gold-light); }
.how-it-works .section-title { color: white; }
.how-it-works .section-title em { color: var(--gold-light); }
.how-it-works .section-subtitle { color: rgba(255,255,255,0.65); }

.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative; margin-top: 12px;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 36px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 1px; background: rgba(255,255,255,0.15);
}

.step-item { text-align: center; padding: 20px; position: relative; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
  color: var(--gold-light);
  margin: 0 auto 20px; position: relative; z-index: 1;
}
.step-item h3 { font-family: var(--font-display); font-size: 18px; font-weight: 500; margin-bottom: 8px; color: white; }
.step-item p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ==============================
   TESTIMONIALS
   ============================== */

.testimonials { background: var(--warm-white); }

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

.testimonial-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 32px;
  transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.testimonial-text {
  font-family: var(--font-display); font-size: 17px;
  font-style: italic; font-weight: 300;
  line-height: 1.65; color: var(--text-main);
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; font-weight: 600;
}
.testimonial-name { font-size: 14px; font-weight: 500; color: var(--text-main); }
.testimonial-detail { font-size: 12px; color: var(--text-muted); }

/* ==============================
   PRICING
   ============================== */

.pricing { background: var(--cream); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}

.pricing-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  transition: all 0.3s; position: relative;
}
.pricing-card.featured {
  background: var(--forest); border-color: var(--forest);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pricing-card:hover:not(.featured) { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--charcoal);
  padding: 4px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
}
.pricing-tier { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.6); }
.pricing-price { font-family: var(--font-display); font-size: 48px; font-weight: 600; line-height: 1; color: var(--text-main); }
.pricing-card.featured .pricing-price { color: white; }
.pricing-price span { font-size: 18px; font-weight: 400; color: var(--text-muted); }
.pricing-card.featured .pricing-price span { color: rgba(255,255,255,0.6); }
.pricing-desc { font-size: 14px; color: var(--text-muted); margin: 12px 0 28px; line-height: 1.6; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.7); }

.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-muted); padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.1); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-check { color: var(--forest); font-size: 14px; font-weight: 700; }
.pricing-card.featured .pricing-check { color: var(--gold-light); }

.btn-pricing-primary {
  width: 100%; padding: 13px; border-radius: 50px;
  background: var(--terracotta); color: white;
  font-size: 14px; font-weight: 500;
  transition: all 0.2s; border: none;
}
.btn-pricing-primary:hover { background: var(--terracotta-dark); }
.btn-pricing-secondary {
  width: 100%; padding: 13px; border-radius: 50px;
  background: transparent; color: var(--forest);
  font-size: 14px; font-weight: 500;
  border: 1.5px solid var(--forest);
  transition: all 0.2s;
}
.btn-pricing-secondary:hover { background: var(--forest); color: white; }
.btn-pricing-featured {
  width: 100%; padding: 13px; border-radius: 50px;
  background: var(--gold); color: var(--charcoal);
  font-size: 14px; font-weight: 600;
  border: none; transition: all 0.2s;
}
.btn-pricing-featured:hover { background: var(--gold-light); }

/* ==============================
   CTA BANNER
   ============================== */

.cta-banner {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  padding: 80px 48px; text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px);
  font-weight: 300; color: white; margin-bottom: 16px;
}
.cta-banner h2 em { font-style: italic; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.btn-cta-white {
  padding: 14px 36px; border-radius: 50px;
  background: white; color: var(--terracotta);
  font-size: 15px; font-weight: 600;
  transition: all 0.2s; display: inline-block;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

/* ==============================
   FOOTER
   ============================== */

.footer {
  background: var(--charcoal); color: rgba(255,255,255,0.7);
  padding: 72px 48px 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand .nav-logo { margin-bottom: 16px; color: white; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 14px; color: rgba(255,255,255,0.55);
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; display: flex;
  align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 13px; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: all 0.2s;
}
.footer-socials a:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ==============================
   PAGE HERO (inner pages)
   ============================== */

.page-hero {
  background: linear-gradient(135deg, var(--forest) 0%, #1a3a30 100%);
  padding: calc(var(--nav-h) + 80px) 48px 80px;
  text-align: center; color: white;
}
.page-hero .section-tag { color: var(--gold-light); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.7); max-w
