/*
Theme Name: Ninebark
Theme URI: https://ninebarkllc.com
Author: Ninebark LLC
Author URI: https://ninebarkllc.com
Description: Custom WordPress theme for Ninebark LLC â€” a business and technology partner for small businesses. Custom websites, software tools, CRM systems, workflow improvement, and operational support. Columbia, Missouri.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ninebark
Tags: one-column, custom-menu, featured-images, theme-options, translation-ready

Ninebark LLC â€” Business & Technology Partner
Nine layers deep. Always renewing.
*/

/* ===========================================
   DESIGN TOKENS
   =========================================== */
:root {
  /* Colors */
  --cream: #FAF7F2;
  --cream-warm: #F3EDE4;
  --sand: #E8DFD0;
  --sand-deep: #D4C4A0;
  --bark: #B8A07A;
  --moss: #8B9E6B;
  --sage: #7A9E5F;
  --sage-soft: #A3B88E;
  --forest: #3D6B35;
  --forest-deep: #2D5016;
  --teal: #5A9E9F;
  --teal-soft: #7BBCBD;
  --heartwood: #1E3A0F;
  --clay: #C49A6C;

  /* Text â€” neutral darks, NOT green-tinted */
  --text-rich: #1B1F14;
  --text-body: #36382E;
  --text-muted: #52554A;
  --text-faint: #6E7166;
  --text-on-dark: #F5F2ED;
  --text-on-dark-soft: #DDD8CC;

  /* Backgrounds */
  --bg: #FDFCFA;
  --bg-warm: #FAF7F2;
  --bg-earth: #F3EDE4;
  --bg-dark: #1C2E14;
  --bg-dark-rich: #142409;

  /* Borders */
  --border-whisper: rgba(180, 170, 150, .20);
  --border-soft: rgba(180, 170, 150, .35);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Radii */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 100px;

  /* Shadows */
  --glow-sm: 0 2px 8px rgba(45, 80, 22, .04), 0 1px 3px rgba(45, 80, 22, .03);
  --glow-md: 0 4px 20px rgba(45, 80, 22, .06), 0 2px 8px rgba(45, 80, 22, .04);
  --glow-lg: 0 8px 40px rgba(45, 80, 22, .08), 0 4px 16px rgba(45, 80, 22, .04);

  /* Motion */
  --ease: cubic-bezier(.25, .46, .45, .94);
  --t-fast: .25s var(--ease);
  --t-med: .45s var(--ease);

  /* Layout */
  --max-w: 1180px;
  --max-w-narrow: 780px;
  --max-w-tight: 600px;

  /* Header height â€” used for scroll offsets */
  --header-h: 76px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.75;
  overflow-x: hidden;
  color-scheme: light;
}

/* Subtle grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--teal); }
::selection { background: var(--sage-soft); color: var(--heartwood); }

/* ===========================================
   TYPOGRAPHY
   =========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-rich);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -.015em;
}

h1 { font-size: clamp(2.8rem, 5.5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.3rem; }

p { margin-bottom: 1.5rem; font-size: 1.05rem; }

.lead {
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 400;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal-soft);
  border-radius: 2px;
}

.text-center .section-eyebrow { justify-content: center; }

.section-desc {
  max-width: var(--max-w-tight);
  margin: 0 auto 4.5rem;
  color: var(--text-body);
  font-size: 1.08rem;
  line-height: 1.8;
}

/* ===========================================
   LAYOUT
   =========================================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow { max-width: var(--max-w-narrow); }
.container--tight { max-width: var(--max-w-tight); }
.text-center { text-align: center; }

.section {
  padding: 8rem 0;
  position: relative;
  background: var(--bg);
}

.section--warm  { background: var(--bg-warm); }
.section--earth { background: var(--bg-earth); }
.section--dark  { background: var(--bg-dark); color: var(--text-on-dark); }

.section--dark h2,
.section--dark h3,
.section--dark h4    { color: var(--cream); }
.section--dark p,
.section--dark .lead { color: var(--text-on-dark-soft); }
.section--dark .section-eyebrow        { color: var(--teal-soft); }
.section--dark .section-eyebrow::before { background: var(--teal-soft); }

/* ===========================================
   HEADER â€” dark on all pages, transparent only
   on homepage where hero is dark green
   =========================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(20, 36, 9, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(90, 155, 156, .15);
  transition: background var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
}

/* Homepage only: start transparent so it blends into the dark hero */
.home .site-header {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Any page, once scrolled: always solid dark */
.site-header.scrolled {
  background: rgba(20, 36, 9, .97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(90, 155, 156, .2);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-logo svg { width: 34px; height: 34px; }

.site-logo-img { height: 60px; width: auto; display: block; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: -.02em;
}

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

.main-nav a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(245, 240, 232, .85);
  position: relative;
  padding: .25rem 0;
  transition: color var(--t-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: width var(--t-fast), left var(--t-fast);
}

.main-nav a:hover,
.main-nav .current-menu-item a { color: #F5F0E8; }

.main-nav a:hover::after,
.main-nav .current-menu-item a::after { width: 100%; left: 0; }

/* "Get a Quote" â€” secondary outlined nav button */
.nav-quote {
  font-size: .85rem !important;
  font-weight: 600 !important;
  color: rgba(245, 240, 232, .85) !important;
  background: transparent !important;
  padding: .5rem 1.2rem !important;
  border-radius: var(--r-pill) !important;
  border: 1.5px solid rgba(245, 240, 232, .35) !important;
  transition: all var(--t-fast) !important;
}

.nav-quote:hover {
  background: rgba(245, 240, 232, .1) !important;
  color: #F5F0E8 !important;
  border-color: rgba(245, 240, 232, .6) !important;
}

.nav-quote::after { display: none !important; }

/* "Get Started" â€” primary green pill nav CTA */
.nav-cta {
  font-size: .85rem !important;
  font-weight: 600 !important;
  color: white !important;
  background: var(--forest) !important;
  padding: .55rem 1.4rem !important;
  border-radius: var(--r-pill) !important;
  box-shadow: 0 2px 8px rgba(45, 80, 22, .15);
  transition: all var(--t-fast) !important;
}

.nav-cta:hover {
  background: var(--teal) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(90, 158, 159, .2) !important;
}

.nav-cta::after { display: none !important; }

/* ===========================================
   DROPDOWN SUBMENU â€” desktop
   =========================================== */
.main-nav .menu-item-has-children {
  position: relative;
}

.main-nav .menu-item-has-children > a {
  padding-right: 1.1rem;
}

/* Chevron indicator */
.main-nav .menu-item-has-children > a::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(245, 240, 232, .6);
  transition: transform var(--t-fast);
}

.main-nav .menu-item-has-children:hover > a::before {
  transform: translateY(-50%) rotate(180deg);
}

/* Remove underline animation from parent item */
.main-nav .menu-item-has-children > a::after { display: none; }

.main-nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: -1rem;
  background: rgba(14, 26, 6, .98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(90, 155, 156, .2);
  border-radius: var(--r-md);
  padding: .5rem 0;
  min-width: 230px;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  z-index: 200;
  list-style: none;
}

.main-nav .menu-item-has-children:hover .sub-menu {
  display: block;
}

.main-nav .sub-menu li {
  display: block;
}

.main-nav .sub-menu a {
  display: block;
  padding: .6rem 1.25rem;
  font-size: .84rem;
  white-space: nowrap;
  color: rgba(245, 240, 232, .75);
  border-radius: 0;
  transition: color var(--t-fast), background var(--t-fast);
}

.main-nav .sub-menu a:hover {
  color: #F5F0E8;
  background: rgba(255, 255, 255, .06);
}

.main-nav .sub-menu a::after,
.main-nav .sub-menu a::before { display: none !important; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  border-radius: var(--r-sm);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #F5F0E8;
  margin: 5px 0;
  border-radius: 2px;
  transition: all var(--t-fast);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================================
   BUTTONS
   =========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .92rem;
  padding: .85rem 2rem;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: all var(--t-fast);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--forest);
  color: white;
  box-shadow: 0 2px 12px rgba(45, 80, 22, .15);
}

.btn--primary:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(90, 158, 159, .2);
}

.btn--soft {
  background: var(--cream-warm);
  color: var(--forest-deep);
  border: 1px solid var(--border-soft);
}

.btn--soft:hover {
  background: var(--sand);
  border-color: var(--bark);
  transform: translateY(-2px);
  color: var(--forest-deep);
}

.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid rgba(61, 107, 53, .45);
}

.btn--outline:hover {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, .1);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, .2);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .35);
  color: white;
  transform: translateY(-2px);
}

.btn-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===========================================
   HERO
   =========================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 15% 85%, rgba(90, 158, 159, .12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(122, 158, 95, .08) 0%, transparent 60%),
    radial-gradient(ellipse 90% 80% at 50% 50%, rgba(28, 46, 20, .97) 0%, rgba(20, 36, 9, 1) 100%);
}

.hero-blob-1,
.hero-blob-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .06;
  pointer-events: none;
}

.hero-blob-1 {
  width: 600px; height: 500px;
  background: var(--teal);
  right: -10%; top: 10%;
  animation: blobFloat 20s ease-in-out infinite;
}

.hero-blob-2 {
  width: 400px; height: 400px;
  background: var(--sage);
  left: -5%; bottom: -10%;
  animation: blobFloat 25s ease-in-out infinite reverse;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.05); }
  66%       { transform: translate(-15px, 15px) scale(.97); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-soft);
  margin-bottom: 2rem;
  opacity: 0;
  animation: gentleUp .9s var(--ease) .2s forwards;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 1rem;
  opacity: 0;
  animation: gentleUp .9s var(--ease) .35s forwards;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--text-on-dark-soft);
  line-height: 1.4;
  margin-bottom: 1.75rem;
  font-weight: 400;
  font-style: italic;
  opacity: 0;
  animation: gentleUp .9s var(--ease) .5s forwards;
}

.hero .lead {
  color: rgba(221, 216, 204, .75);
  margin-bottom: 3rem;
  max-width: 520px;
  opacity: 0;
  animation: gentleUp .9s var(--ease) .62s forwards;
}

.hero .btn-row {
  opacity: 0;
  animation: gentleUp .9s var(--ease) .75s forwards;
}

.hero-rings {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  opacity: .035;
  z-index: 0;
}

/* ===========================================
   SERVICES OVERVIEW â€” Two-Umbrella Layout
   =========================================== */
.umbrella-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.umbrella-card {
  background: var(--bg);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-xl);
  padding: 3rem;
  transition: all var(--t-med);
}

.umbrella-card:hover {
  box-shadow: var(--glow-md);
  border-color: var(--sage-soft);
}

.umbrella-label {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal);
  margin-bottom: .75rem;
  display: block;
}

.umbrella-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--text-rich);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.service-list {
  list-style: none;
  margin: 0 0 2.5rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-whisper);
}

.service-list li:last-child { border-bottom: none; }

.service-list-icon {
  width: 36px;
  height: 36px;
  background: var(--bg-earth);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .1rem;
  transition: all var(--t-fast);
}

.umbrella-card:hover .service-list-icon {
  background: var(--teal);
  color: white;
}

.service-list-body h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-rich);
  margin-bottom: .2rem;
}

.service-list-body p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

.umbrella-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--t-fast), color var(--t-fast);
}

.umbrella-link:hover { gap: .7rem; color: var(--forest); }

/* ===========================================
   PROOF POINTS
   =========================================== */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.proof-card {
  background: var(--bg);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  transition: all var(--t-med);
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-lg);
  border-color: var(--sage-soft);
}

.proof-stat {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
  margin-bottom: .85rem;
  letter-spacing: -.02em;
}

.proof-stat-quoted {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: .85rem;
  font-style: italic;
  letter-spacing: -.01em;
}

.proof-context {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: .6rem;
}

.proof-desc {
  font-size: .95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

.proof-note {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 3rem;
  text-align: center;
  font-style: italic;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================================
   CLIENT VOICES
   =========================================== */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.voice-item {
  background: var(--bg-warm);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem 1.5rem 2.5rem;
  position: relative;
  transition: all var(--t-fast);
}

.voice-item:hover {
  background: var(--bg-earth);
  border-color: var(--sage-soft);
  transform: translateY(-2px);
  box-shadow: var(--glow-sm);
}

.voice-item::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--sage-soft);
  position: absolute;
  top: .25rem;
  left: .85rem;
  line-height: 1;
  opacity: .5;
}

.voice-item p {
  font-size: .95rem;
  color: var(--text-body);
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

/* ===========================================
   SERVICE CARDS (Services page)
   =========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  transition: all var(--t-med);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-lg);
  border-color: var(--sage-soft);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, var(--sage-soft), var(--teal-soft));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.15rem;
  box-shadow: 0 4px 16px rgba(122, 158, 95, .15);
}

.service-card h3 { margin-bottom: .75rem; font-size: 1.4rem; }
.service-card > p { font-size: .95rem; color: var(--text-body); margin-bottom: 1.5rem; }

.service-card .learn-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap var(--t-fast), color var(--t-fast);
}

.service-card:hover .learn-link { gap: .7rem; color: var(--forest); }

/* ===========================================
   ABOUT
   =========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
}

.value-item {
  padding: 1.5rem;
  background: var(--bg-warm);
  border-radius: var(--r-lg);
  text-align: center;
  transition: all var(--t-fast);
}

.value-item:hover {
  background: var(--bg-earth);
  transform: translateY(-3px);
  box-shadow: var(--glow-md);
}

.value-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
  margin-bottom: .25rem;
}

.value-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}

/* Founder card */
.founder-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2.5rem;
  align-items: start;
  background: var(--bg-warm);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-xl);
  padding: 3rem;
  margin-top: 3rem;
}

.founder-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--bg-earth), var(--sand));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  border: 3px solid var(--border-soft);
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-rich);
  margin-bottom: .25rem;
}

.founder-title {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  margin-bottom: 1rem;
}

/* ===========================================
   PORTFOLIO / WORK
   =========================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.project-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border-whisper);
  transition: all var(--t-med);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-lg);
}

.project-card-img {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--bg-earth), var(--sand));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bark);
  font-size: 2.5rem;
  overflow: hidden;
}

.project-card-img img { width: 100%; height: 100%; object-fit: cover; }
.project-card-body { padding: 2.25rem; }
.project-card-body h3 { font-size: 1.3rem; margin-bottom: .5rem; }

.project-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--teal);
  background: rgba(90, 158, 159, .08);
  border: 1px solid rgba(90, 158, 159, .15);
  padding: .2rem .65rem;
  border-radius: var(--r-pill);
  margin-right: .25rem;
  margin-bottom: .5rem;
}

.project-coming-soon {
  background: var(--bg-warm);
  border: 1px dashed var(--border-soft);
  border-radius: var(--r-xl);
  padding: 3rem;
  text-align: center;
  color: var(--text-muted);
}

.project-coming-soon p { margin: 0; font-style: italic; }

/* ===========================================
   FORMS â€” Quote & Intake
   =========================================== */
.form-card {
  background: var(--bg-warm);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-xl);
  padding: 3rem;
}

.form-field { margin-bottom: 1.5rem; }

.form-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-rich);
  margin-bottom: .4rem;
  letter-spacing: .01em;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: .8rem 1.1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  background: var(--bg);
  color: var(--text-rich);
  transition: all var(--t-fast);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(90, 158, 159, .1);
}

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

/* ===========================================
   SERVICE DETAIL PAGES
   =========================================== */
.service-hero {
  padding: 6rem 0 4rem;
  padding-top: calc(var(--header-h) + 4rem);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.service-feature-list { list-style: none; margin: 2rem 0; }

.service-feature-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .75rem;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}

.service-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .62rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-soft);
}

.service-sidebar {
  background: var(--bg-warm);
  border: 1px solid var(--border-whisper);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.service-sidebar h4 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-sidebar ul { list-style: none; }
.service-sidebar li { margin-bottom: .5rem; }

.service-sidebar a {
  font-size: .92rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 0;
  transition: color var(--t-fast);
}

.service-sidebar a:hover { color: var(--teal); }
.service-sidebar .current-menu-item a { color: var(--forest); font-weight: 600; }

/* ===========================================
   ENTRY CONTENT (Blog/Pages)
   =========================================== */
.entry-content { font-size: 1.05rem; line-height: 1.8; }
.entry-content h2 { margin: 2.5rem 0 1rem; }
.entry-content h3 { margin: 2rem 0 .75rem; }
.entry-content p  { margin-bottom: 1.5rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.entry-content li { margin-bottom: .5rem; }

.entry-content blockquote {
  border-left: 4px solid var(--sage);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--bg-warm);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
  color: var(--text-muted);
}

.entry-content img { border-radius: var(--r-lg); margin: 2rem 0; }

.entry-content a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: rgba(90, 158, 159, .3);
  text-underline-offset: 3px;
}

.entry-content a:hover { text-decoration-color: var(--teal); }

.entry-content code {
  font-family: var(--font-mono);
  background: var(--bg-earth);
  padding: .15rem .4rem;
  border-radius: 4px;
  font-size: .9em;
}

.entry-content pre {
  background: var(--bg-earth);
  padding: 1.5rem;
  border-radius: var(--r-md);
  overflow-x: auto;
  margin: 2rem 0;
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
  background: var(--bg-dark-rich);
  color: var(--text-on-dark-soft);
  padding: 6rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: .9rem;
  max-width: 280px;
  line-height: 1.7;
  color: var(--text-on-dark-soft);
  margin-top: 1.5rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: var(--text-on-dark-soft); font-size: .9rem; }
.footer-col a:hover { color: var(--teal-soft); }

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 600;
  color: white;
  background: var(--forest);
  padding: .6rem 1.25rem;
  border-radius: var(--r-pill);
  margin-bottom: .75rem;
  transition: all var(--t-fast);
}

.footer-cta-btn:hover { background: var(--teal); color: white; }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin: 1.5rem 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(221, 216, 204, .45);
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: .9rem;
  color: rgba(221, 216, 204, .4);
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes gentleUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .40s; }

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .umbrella-grid { grid-template-columns: 1fr; }
  .proof-grid  { grid-template-columns: 1fr 1fr; }
  .voice-grid  { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .founder-card { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .hero { min-height: auto; padding-bottom: 4.5rem; }
  .hero-rings, .hero-blob-1, .hero-blob-2 { display: none; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(14, 26, 6, .98);
    border-bottom: 1px solid rgba(90, 155, 156, .2);
    box-shadow: 0 12px 40px rgba(0,0,0,.4);
    padding: 1.5rem;
    border-radius: 0 0 var(--r-lg) var(--r-lg);
  }

  .main-nav.active { display: block; }
  .main-nav ul { flex-direction: column; gap: .75rem; }
  .menu-toggle { display: block; }

  /* Mobile submenu â€” shown inline when .open */
  .main-nav .menu-item-has-children > a::before { display: none; }
  .main-nav .sub-menu {
    display: none;
    position: static;
    background: transparent;
    border: none;
    border-left: 2px solid rgba(90, 155, 156, .3);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: .25rem 0 .25rem 1rem;
    margin: .25rem 0 .25rem .5rem;
    min-width: auto;
  }
  .main-nav .sub-menu.open { display: block; }
  .main-nav .menu-item-has-children:hover .sub-menu { display: none; }
  .main-nav .sub-menu.open { display: block !important; }
  .main-nav .sub-menu a { padding: .45rem .75rem; font-size: .82rem; }

  .section { padding: 4.5rem 0; }
  .service-hero { padding-top: calc(var(--header-h) + 3rem); }

  .services-grid  { grid-template-columns: 1fr; }
  .proof-grid     { grid-template-columns: 1fr; }
  .voice-grid     { grid-template-columns: 1fr; }
  .projects-grid  { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom  { flex-direction: column; gap: .5rem; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.5rem; }
  .btn-row { flex-direction: column; }
  .btn { justify-content: center; width: 100%; }
  .about-values { grid-template-columns: 1fr; }
  .umbrella-card { padding: 2rem; }
  .proof-card { padding: 2rem; }
  .form-card { padding: 2rem; }
}