/* ==========================================================================
   Colin Bondi — Content Management & Digital Publishing
   Design System & Custom Stylesheet (Organic & High-Trust Aesthetic)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System Variables
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --bg-main: #F9F8F5;
  /* Off-White Linen */
  --bg-surface: #F3EFE6;
  /* Soft Organic Warm Surface */
  --bg-surface-hover: #ECE6D8;
  /* Slightly darker surface hover */
  --bg-dark: #192C23;
  /* Deepest Forest Green for Dark CTAs */

  --text-primary: #1A201C;
  /* Charcoal with subtle warm undertone */
  --text-muted: #4A554D;
  /* Muted slate green body text */
  --text-light: #E8DFC9;
  /* Off-white text for dark backgrounds */

  --color-forest: #1E3A2B;
  /* Primary Deep Forest Green */
  --color-forest-hover: #14281D;
  /* Darker Forest Green */
  --color-sage: #3B695A;
  /* Soft Sage Accent */
  --color-earth: #8C7355;
  /* Warm Taupe / Earthy Bronze */
  --color-earth-light: #C8AD8D;
  /* Light Taupe Accent */
  --color-sand: #E2D7C3;
  /* Soft Sand Border */

  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Elevation */
  --shadow-sm: 0 2px 8px rgba(26, 32, 28, 0.04);
  --shadow-md: 0 8px 24px rgba(26, 32, 28, 0.08);
  --shadow-lg: 0 16px 40px rgba(26, 32, 28, 0.12);
  --shadow-modal: 0 24px 60px rgba(20, 40, 29, 0.25);

  /* Layout Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --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);
}

/* --------------------------------------------------------------------------
   1b. Dark Theme Variables Override
   -------------------------------------------------------------------------- */
[data-theme="dark"] {
  /* Dark Color Palette */
  --bg-main: #0F1714;
  /* Deep Forest Slate */
  --bg-surface: #17231E;
  /* Rich Organic Dark Surface */
  --bg-surface-hover: #202F28;
  /* Dark Surface Hover */
  --bg-dark: #0B120E;
  /* Deepest Forest Night */

  --text-primary: #F4F1EA;
  /* Warm Crisp Off-White */
  --text-muted: #A0B2A7;
  /* Muted Sage Slate Body Text */
  --text-light: #E8DFC9;
  /* Off-white text */

  --color-forest: #3DA882;
  /* Vibrant Emerald Sage for Dark Mode */
  --color-forest-hover: #4FC29B;
  /* Brighter Hover Green */
  --color-sage: #528E7A;
  /* Soft Sage Accent */
  --color-earth: #D9B68C;
  /* Warm Sand Gold / Earthy Accent */
  --color-earth-light: #EAD0B3;
  /* Light Warm Accent */
  --color-sand: #26382E;
  /* Dark Organic Border */

  /* 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-modal: 0 24px 60px rgba(0, 0, 0, 0.85);
}

/* --------------------------------------------------------------------------
   2. Reset & Core Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

a:hover {
  color: var(--color-earth);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   3. Container & Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  max-width: 800px;
}

.section {
  padding: 5.5rem 0 0;
  position: relative;
  overflow: hidden;
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-earth);
  margin-bottom: 0.75rem;
}

.kicker-light {
  color: var(--color-earth-light);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2.5rem;
}

.grid-2-col {
  grid-template-columns: 1fr;
}

@media (min-width: 868px) {
  .grid-2-col {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* --------------------------------------------------------------------------
   4. Buttons & Interactive Controls
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-forest);
  color: #FFFFFF;
  border-color: var(--color-forest);
  box-shadow: 0 4px 14px rgba(30, 58, 43, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-forest-hover);
  border-color: var(--color-forest-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 43, 0.3);
}

.btn-secondary {
  background-color: var(--bg-surface);
  color: var(--text-primary);
  border-color: var(--color-sand);
}

.btn-secondary:hover {
  background-color: var(--bg-surface-hover);
  color: var(--color-forest);
  border-color: var(--color-earth-light);
}

.btn-tertiary {
  background: transparent;
  color: var(--text-muted);
  padding: 0.85rem 1rem;
}

.btn-tertiary:hover {
  color: var(--color-forest);
}

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

.btn-block {
  width: 100%;
}

.btn-icon {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   5. Site Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(249, 248, 245, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 215, 195, 0.4);
  transition: all var(--transition-fast);
}

[data-theme="dark"] .site-header {
  background-color: rgba(15, 23, 20, 0.88);
  border-bottom-color: rgba(38, 56, 46, 0.8);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(249, 248, 245, 0.96);
}

[data-theme="dark"] .site-header.scrolled {
  background-color: rgba(15, 23, 20, 0.96);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-forest);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-tagline {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-earth);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.main-nav {
  display: none;
}

@media (min-width: 960px) {
  .main-nav {
    display: block;
  }
}

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

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-forest);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-social-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.header-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-muted);
  background-color: transparent;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.header-social-link:hover {
  color: var(--color-forest);
  background-color: var(--bg-surface);
  border-color: var(--color-sand);
  transform: translateY(-2px);
}

.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--bg-surface);
  border: 1px solid var(--color-sand);
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
  margin-left: 0.25rem;
}

.theme-toggle-btn:hover {
  background-color: var(--bg-surface-hover);
  border-color: var(--color-earth);
  color: var(--color-earth);
  transform: rotate(15deg);
}

.sun-icon {
  display: none;
}

.moon-icon {
  display: block;
}

[data-theme="dark"] .sun-icon {
  display: block;
}

[data-theme="dark"] .moon-icon {
  display: none;
}

/* --------------------------------------------------------------------------
   6. Hero Section (Organic Flow)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding-top: 4rem;
  overflow: hidden;
}

.hero-bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.blob-1 {
  top: -100px;
  right: -50px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(200, 173, 141, 0.4) 0%, rgba(59, 105, 90, 0.2) 100%);
}

.blob-2 {
  bottom: 0;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 105, 90, 0.3) 0%, rgba(30, 58, 43, 0.1) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-container {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-forest);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-earth);
  border-radius: 50%;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-forest);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.75rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-earth);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.hero-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.hero-intro p+p {
  margin-top: 1rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .hero-subtitle,
  .hero-intro {
    text-align: center;
  }

  .hero-cta-group {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .header-container {
    height: 70px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-tagline {
    font-size: 0.72rem;
  }

  .header-social-link {
    width: 32px;
    height: 32px;
  }

  .theme-toggle-btn {
    width: 34px;
    height: 34px;
  }

  .section {
    padding: 3.5rem 0 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-card {
    padding: 2.5rem 1.25rem;
  }
}

/* Hero Visual Card & SVG Illustration */
.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-forest);
  border: 1px solid rgba(200, 173, 141, 0.3);
}

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

/* Organic Transition Curve */
.section-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: 3.5rem;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 44px;
}

.wave-flip svg {
  transform: scaleX(-1);
}

@media (min-width: 768px) {
  .section-divider {
    margin-top: 4.5rem;
  }

  .wave-divider svg {
    height: 60px;
  }
}

/* --------------------------------------------------------------------------
   6b. Why People Work With Me Section
   -------------------------------------------------------------------------- */
.why-section {
  background-color: var(--bg-surface);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 868px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background-color: var(--bg-main);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-earth-light);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.why-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.why-card-text {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   7. Who I Work With Section (Pill Flow Layout)
   -------------------------------------------------------------------------- */
.who-section {
  background-color: var(--bg-main);
  position: relative;
}

.client-pill-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.client-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
}

.pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  cursor: default;
}

.pill-item:hover {
  transform: translateY(-3px);
  border-color: var(--color-earth-light);
  box-shadow: var(--shadow-md);
  color: var(--color-forest);
}

.pill-highlight {
  background-color: var(--color-forest);
  color: #FFFFFF;
  border-color: var(--color-forest);
}

.pill-highlight:hover {
  background-color: var(--color-forest-hover);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   8. My Approach Section (Side-by-side Photo Card)
   -------------------------------------------------------------------------- */
.approach-section {
  background-color: var(--bg-surface);
}

@media (min-width: 868px) {
  .approach-grid {
    align-items: flex-start;
  }
}

.approach-image-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.headshot-wrapper {
  position: relative;
  width: 100%;
}

.bio-blurb {
  padding: 1.35rem 1.5rem;
  background-color: var(--bg-main);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.68;
  border-left: 4px solid var(--color-earth);
  transition: all var(--transition-fast);
}

.bio-blurb p {
  margin: 0;
}

.colin-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-sand);
  object-fit: cover;
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-earth);
  line-height: 1;
}

.exp-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
}

.approach-quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-forest);
  line-height: 1.4;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 4px solid var(--color-earth);
}

.approach-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.approach-body p+p {
  margin-top: 1rem;
}

.approach-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.approach-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.98rem;
  color: var(--text-primary);
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(30, 58, 43, 0.12);
  color: var(--color-forest);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   9. Capacities Section (Core Services Flow)
   -------------------------------------------------------------------------- */
.capacities-section {
  background-color: var(--bg-main);
}

.capacities-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .capacities-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .capacity-card-featured {
    grid-column: span 2;
  }
}

.capacity-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.capacity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-earth-light);
}

.capacity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background-color: rgba(30, 58, 43, 0.08);
  color: var(--color-forest);
  flex-shrink: 0;
}

.capacity-card:hover .capacity-icon {
  background-color: var(--color-forest);
  color: #FFFFFF;
}

.capacity-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: 0.5rem;
}

.capacity-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.capacity-card-featured {
  background: linear-gradient(135deg, #1E3A2B 0%, #172D21 100%);
  border-color: var(--color-earth);
  color: var(--text-light);
}

.capacity-card-featured .capacity-icon {
  background-color: rgba(200, 173, 141, 0.2);
  color: var(--color-earth-light);
}

.capacity-card-featured .capacity-title {
  color: #FFFFFF;
}

.capacity-card-featured .capacity-description {
  color: var(--color-light);
}

/* --------------------------------------------------------------------------
   10. Process Section (3-Step Journey Visual)
   -------------------------------------------------------------------------- */
.process-section {
  background-color: var(--bg-surface);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 868px) {
  .process-steps {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }
}

.process-step {
  flex: 1;
  background-color: var(--bg-main);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: var(--color-earth-light);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-earth);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-forest);
  margin-bottom: 0.75rem;
}

.step-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-step-connector {
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-earth);
  padding: 0 0.5rem;
}

@media (min-width: 868px) {
  .process-step-connector {
    display: flex;
  }
}

/* --------------------------------------------------------------------------
   10b. What It's Like to Work Together Section
   -------------------------------------------------------------------------- */
.like-section {
  background-color: var(--bg-main);
}

.like-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-sm);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* --------------------------------------------------------------------------
   11. FAQ Accordion Section
   -------------------------------------------------------------------------- */
.faq-section {
  background-color: var(--bg-surface);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-main);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-earth-light);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-forest);
}

.faq-icon {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-earth);
  transition: transform var(--transition-fast);
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 1.75rem 1.5rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-content[hidden] {
  display: none;
}

/* --------------------------------------------------------------------------
   12. Closing Call to Action
   -------------------------------------------------------------------------- */
.cta-section {
  background-color: var(--bg-main);
  padding: 4rem 0 0;
}

.cta-card {
  background: linear-gradient(145deg, #1E3A2B 0%, #12241A 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-earth);
  max-width: 900px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-earth-light);
  max-width: 680px;
  margin: 0 auto 0.75rem;
}

.cta-subtext {
  font-size: 1.02rem;
  color: rgba(232, 223, 201, 0.85);
  max-width: 680px;
  margin: 0 auto 2.25rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   13. Footer & Social Links
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 0 3rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;

  @media (min-width: 768px) {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--color-earth-light);
  margin-top: 2px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(232, 223, 201, 0.6);
  margin-top: 0.75rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-earth-light);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(200, 173, 141, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background-color: rgba(200, 173, 141, 0.2);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   14. Netlify Contact Modal Form Styles (<dialog>)
   -------------------------------------------------------------------------- */
.contact-modal {
  border: none;
  background: transparent;
  padding: 1rem;
  margin: auto;
  max-width: 620px;
  width: 100%;
}

.contact-modal::backdrop {
  background-color: rgba(18, 36, 26, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-card {
  background-color: var(--bg-main);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-modal);
  position: relative;
  animation: modalScaleIn var(--transition-normal);
}

@keyframes modalScaleIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-forest);
  margin-bottom: 0.35rem;
}

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

.modal-close-btn {
  background: var(--bg-surface);
  border: 1px solid var(--color-sand);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.modal-close-btn:hover {
  background-color: var(--color-forest);
  color: #FFFFFF;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 580px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-forest);
}

.required {
  color: #C2410C;
}

.optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.form-input {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-sand);
  background-color: var(--bg-surface);
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-forest);
  box-shadow: 0 0 0 3px rgba(30, 58, 43, 0.15);
  background-color: #FFFFFF;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-actions {
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   15. Specific Dark Theme Enhancements & Overrides
   -------------------------------------------------------------------------- */
[data-theme="dark"] .btn-primary {
  background-color: var(--color-forest);
  border-color: var(--color-forest);
  color: #0A1712;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(61, 168, 130, 0.25);
}

[data-theme="dark"] .btn-primary:hover {
  background-color: var(--color-forest-hover);
  border-color: var(--color-forest-hover);
  color: #0A1712;
  box-shadow: 0 6px 20px rgba(61, 168, 130, 0.35);
}

[data-theme="dark"] .capacity-card-featured {
  background: linear-gradient(135deg, #163628 0%, #0F221A 100%);
  border-color: var(--color-earth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .cta-card {
  background: linear-gradient(145deg, #163628 0%, #0D1C15 100%);
  border-color: var(--color-earth);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .blob-1 {
  opacity: 0.25;
  background: radial-gradient(circle, rgba(217, 182, 140, 0.3) 0%, rgba(61, 168, 130, 0.15) 100%);
}

[data-theme="dark"] .blob-2 {
  opacity: 0.25;
  background: radial-gradient(circle, rgba(61, 168, 130, 0.25) 0%, rgba(15, 23, 20, 0.1) 100%);
}

[data-theme="dark"] .form-input:focus {
  background-color: #0E1613;
  border-color: var(--color-forest);
  box-shadow: 0 0 0 3px rgba(61, 168, 130, 0.25);
}

[data-theme="dark"] .contact-modal::backdrop {
  background-color: rgba(5, 10, 8, 0.85);
}

[data-theme="dark"] .required {
  color: #FB923C;
}