/* ==========================================================================
   MONARCH HARBOR — PROFESSIONAL DEVELOPMENT & LIFE COACHING LLC
   Design System & Clean Styling
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  /* Core Brand Colors */
  --color-navy-950: #040913;
  --color-navy-900: #07101E;
  --color-navy-850: #0B172B;
  --color-navy-800: #10213A;
  --color-navy-700: #172D4D;
  --color-navy-600: #223D64;

  /* Gold Tones */
  --color-gold-200: #FDE8A5;
  --color-gold-300: #F7D56B;
  --color-gold-400: #E6BE45;
  --color-gold-500: #D4AF37;
  --color-gold-600: #B89223;

  /* Warm Earth */
  --color-parchment: #F8F4EC;
  --color-parchment-muted: #E8E0D0;

  /* UI Functional */
  --color-text-light: #F4F7FC;
  --color-text-muted: #9BB0CD;
  --color-text-subtle: #6D82A2;
  --color-border-glow: rgba(212, 175, 55, 0.25);
  --color-border-subtle: rgba(255, 255, 255, 0.08);

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #FFF0B3 0%, #E5C07B 35%, #D4AF37 70%, #996515 100%);
  --grad-navy-hero: radial-gradient(circle at 50% 20%, #15263F 0%, #0A1424 50%, #040913 100%);
  --grad-card-dark: linear-gradient(180deg, rgba(16, 33, 58, 0.85) 0%, rgba(7, 16, 30, 0.95) 100%);

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.28);
  --shadow-gold-hover: 0 0 35px rgba(212, 175, 55, 0.45);

  /* Radius & Transitions */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1240px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-navy-950);
  color: var(--color-text-light);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
  background-color: var(--color-navy-950);
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(34, 61, 100, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(47, 80, 127, 0.2) 0%, transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   Typography & Helpers
   ========================================================================== */
.text-gold-gradient {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--color-border-glow);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-400);
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 680px;
  line-height: 1.65;
}

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

.btn-primary {
  background: var(--grad-gold);
  color: var(--color-navy-950);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
}

.btn-secondary {
  background: rgba(16, 33, 58, 0.7);
  color: var(--color-text-light);
  border: 1px solid var(--color-border-glow);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(23, 45, 77, 0.9);
  border-color: var(--color-gold-400);
  color: var(--color-gold-300);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold-400);
  border: 1px solid var(--color-gold-500);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--color-gold-200);
  border-color: var(--color-gold-300);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2;
  vertical-align: middle;
  fill: currentColor;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: 1.15rem 0;
  background: rgba(7, 16, 30, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.site-header.scrolled {
  padding: 0.75rem 0;
  background: rgba(4, 9, 19, 0.94);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-emblem-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, #172D4D 0%, #07101E 100%);
  border: 1px solid var(--color-border-glow);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
  flex-shrink: 0;
}

.brand-emblem-img {
  width: 32px;
  height: 32px;
}

.brand-text-group {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.35rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--grad-gold);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-gold-300);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sound-toggle-btn {
  background: rgba(16, 33, 58, 0.6);
  border: 1px solid var(--color-border-glow);
  color: var(--color-gold-400);
  border-radius: var(--radius-full);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sound-toggle-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold-200);
  transform: scale(1.05);
}

.sound-toggle-btn.playing {
  border-color: var(--color-gold-400);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
  color: var(--color-gold-300);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 5rem;
  overflow: hidden;
  background: var(--grad-navy-hero);
}

.hero-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  background: rgba(16, 33, 58, 0.85);
  border: 1px solid var(--color-border-glow);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold-300);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.75rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  color: var(--color-text-light);
}

.hero-description {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
}

/* Hero Showcase Card - Clean Unobstructed Presentation */
.hero-visual-col {
  position: relative;
}

.showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grad-card-dark);
  border: 1px solid var(--color-border-glow);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-gold-hover);
}

.showcase-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ==========================================================================
   The Passage Interactive Journey Map
   ========================================================================== */
.passage-section {
  padding: 6.5rem 0;
  position: relative;
}

.passage-map-wrapper {
  position: relative;
  background: var(--grad-card-dark);
  border: 1px solid var(--color-border-glow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.passage-map-container {
  position: relative;
  width: 100%;
  min-height: 440px;
  background: #000;
}

.passage-map-img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) contrast(1.05);
}

/* Map Interactive Hotspots */
.map-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
}

.hotspot-pin {
  width: 38px;
  height: 38px;
  background: rgba(7, 16, 30, 0.9);
  border: 2px solid var(--color-gold-400);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-300);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  transition: all var(--transition-fast);
  position: relative;
  font-size: 1.1rem;
}

.map-hotspot:hover .hotspot-pin,
.map-hotspot.active .hotspot-pin {
  background: var(--color-gold-500);
  color: var(--color-navy-950);
  transform: scale(1.2);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.9);
}

.hotspot-label {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  background: rgba(7, 16, 30, 0.95);
  border: 1px solid var(--color-border-glow);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--color-gold-300);
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}

.hotspot-1 { top: 52%; left: 50%; }
.hotspot-2 { top: 28%; left: 56%; }
.hotspot-3 { top: 26%; left: 80%; }
.hotspot-4 { top: 75%; left: 18%; }

/* Waymark Step Cards */
.waymarks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.waymark-card {
  background: rgba(16, 33, 58, 0.55);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
}

.waymark-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--grad-gold);
  border-radius: 4px 0 0 4px;
  transition: height var(--transition-normal);
}

.waymark-card:hover,
.waymark-card.active {
  background: rgba(23, 45, 77, 0.85);
  border-color: var(--color-border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(212, 175, 55, 0.15);
}

.waymark-card:hover::before,
.waymark-card.active::before {
  height: 100%;
}

.waymark-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-gold-400);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.waymark-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.waymark-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Founder Creed & Philosophy Section
   ========================================================================== */
.creed-section {
  padding: 6.5rem 0;
  position: relative;
}

.creed-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.creed-image-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 3px solid var(--color-gold-400);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.35), var(--shadow-lg), 0 0 60px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.creed-image-wrap:hover {
  transform: scale(1.02);
  box-shadow: 0 0 45px rgba(212, 175, 55, 0.5), var(--shadow-lg);
}

.creed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 28%;
  border-radius: var(--radius-full);
}

.creed-text-block {
  display: flex;
  flex-direction: column;
}

.creed-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.6;
  color: var(--color-parchment);
  border-left: 3px solid var(--color-gold-400);
  padding-left: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.creed-pillars-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.creed-pillar {
  display: flex;
  gap: 1rem;
}

.pillar-bullet {
  color: var(--color-gold-400);
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 0.2rem;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-gold-300);
  margin-bottom: 0.25rem;
}

.pillar-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Forms & Modal
   ========================================================================== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(4, 9, 19, 0.7);
  border: 1px solid var(--color-border-glow);
  color: var(--color-text-light);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-gold-400);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(4, 9, 19, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-card {
  background: var(--grad-card-dark);
  border: 1px solid var(--color-border-glow);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.75rem 2.25rem;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .booking-modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-border-subtle);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  color: var(--color-gold-300);
}

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

.booking-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.booking-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.booking-confirm-state {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.confirm-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10B981;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #03060D;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 4.5rem 0 2.5rem;
  position: relative;
}

.footer-top-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 1.25rem 0 1.5rem;
  max-width: 360px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-400);
  margin-bottom: 1.25rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-link {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--color-gold-300);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.85rem;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  color: var(--color-text-subtle);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

/* ==========================================================================
   Mobile Nav Drawer
   ========================================================================== */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--color-navy-900);
  border-left: 1px solid var(--color-border-glow);
  z-index: 1500;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-text-light);
  font-weight: 700;
}

.mobile-drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content-grid,
  .creed-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual-col {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-section {
    padding: 7.5rem 0 3.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
}
