/* ============================================================
   BLACK DOG CONSULTING — Global Stylesheet v2.0
   Brand: Gold #F5A500 | Charcoal #2D2D2D | Near-Black #111111
   Fonts: Instrument Serif (headings) | Inter (body)
   Aesthetic: Cinematic, premium, trustworthy, local
   ============================================================ */

/* --- GOOGLE FONTS ---------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --gold:        #F5A500;
  --gold-hover:  #D99100;
  --gold-light:  #FEF3DC;
  --dark:        #111111;
  --charcoal:    #2D2D2D;
  --body-text:   #444444;
  --mid-gray:    #666666;
  --border:      #E0DDD8;
  --light-gray:  #F0EDE8;
  --cream:       #FAF8F5;
  --white:       #FFFFFF;
  --teal:        #2A6B6B;
  --teal-light:  #E8F4F4;

  --font-head:   'Instrument Serif', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;

  --max-width:   1140px;
  --radius:      6px;
  --radius-lg:   12px;
  --radius-full: 999px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.15);
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
.nav-logo img, .footer-brand .footer-logo { height: 40px; max-height: 40px; width: auto; max-width: 180px; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- ANIMATIONS ------------------------------------------ */
@keyframes fade-rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-rise {
  animation: fade-rise 0.9s ease-out both;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.35s; }
.delay-3 { animation-delay: 0.55s; }
.delay-4 { animation-delay: 0.75s; }

/* --- TYPOGRAPHY ------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.1;
  color: var(--dark);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title { margin-bottom: 1rem; }
.section-intro { font-size: 1.1rem; color: var(--mid-gray); max-width: 640px; margin-bottom: 0; line-height: 1.8; }

/* --- LAYOUT ------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }

/* --- BUTTONS ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-primary:hover {
  background: var(--charcoal);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(245,165,0,0.3);
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(245,165,0,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 15px 32px;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

/* --- NAVIGATION ------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
  padding: 0;
}

.site-nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 40px !important;
  width: auto !important;
  max-width: 180px !important;
  max-height: 40px !important;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  transition: color var(--transition);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.site-nav.scrolled .nav-logo-text {
  color: var(--dark);
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--white);
}

.site-nav.scrolled .nav-links a {
  color: var(--charcoal);
}

.site-nav.scrolled .nav-links a:hover {
  color: var(--dark);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--white);
  color: var(--dark);
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
}

.site-nav.scrolled .nav-cta {
  background: var(--dark);
  color: var(--white);
}

.nav-cta:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-sm);
}

/* Mobile menu — hidden by default on ALL screen sizes, shown only when .open added */
.mobile-menu {
  display: none;
}
.mobile-menu.open {
  display: flex;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition);
}
.site-nav.scrolled .nav-toggle span { background: var(--dark); }

/* --- VIDEO HERO ------------------------------------------- */
.hero-video-section {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

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

.hero-video-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-video-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1A1A1A 100%);
}

/* Gradient overlay for text readability */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.15) 40%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 24px 40px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fade-in 2s ease 1.5s both;
}

.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* --- TRUST BAR -------------------------------------------- */
.trust-bar {
  background: var(--dark);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 0 24px 0 0;
}

.trust-item::after {
  content: '·';
  position: absolute;
  right: 0;
  color: rgba(255,255,255,0.2);
  font-size: 1.2rem;
}

.trust-item:last-child::after {
  display: none;
}

.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* --- INTRO STRIP ------------------------------------------ */
.intro-strip {
  background: var(--cream);
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.intro-strip-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
  color: var(--charcoal);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* --- PAIN POINTS ------------------------------------------ */
.pain-section {
  background: var(--dark);
  padding: 96px 0;
}

.pain-header {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}

.pain-header h2 { color: var(--white); }
.pain-header .section-intro { color: rgba(255,255,255,0.55); }

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

.pain-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,165,0,0.5);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,165,0,0.25);
}

.pain-icon, .card-icon, .service-icon, .value-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  width: 24px;
  height: 24px;
}

.pain-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--white);
}

.pain-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* --- SOLUTION / INTRO ------------------------------------- */
.solution-section {
  background: var(--dark);
  color: var(--white);
  padding: 96px 0;
}

.solution-section h2 {
  color: var(--white);
}

.solution-section .eyebrow {
  color: var(--gold);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-copy p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.solution-proof {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.proof-quote {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 20px;
}

.proof-attr {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.proof-attr strong {
  color: var(--gold);
  display: block;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

/* --- WHY NOT A BIG AGENCY --------------------------------- */
.agency-section {
  padding: 96px 0;
  background: #1A1A1A;
}

.agency-section h2 { color: var(--white); }
.agency-section .section-intro { color: rgba(255,255,255,0.55); }
.agency-section .eyebrow { color: var(--gold); }

.agency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.agency-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.agency-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,165,0,0.5);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,165,0,0.25);
}

.agency-card h4 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.agency-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

.agency-card .card-icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
  display: block;
}

/* --- SERVICES OVERVIEW ------------------------------------ */
.services-section {
  padding: 96px 0;
  background: var(--dark);
}

.services-section h2 { color: var(--white); }
.services-section .section-intro { color: rgba(255,255,255,0.55); }
.services-section .eyebrow { color: var(--gold); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,165,0,0.5);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,165,0,0.25);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition), color var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--gold-hover);
}

/* --- PROOF / DIFFERENTIATOR ------------------------------- */
.proof-section {
  background: var(--dark);
  color: var(--white);
  padding: 96px 0;
}

.proof-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.proof-section h2 {
  color: var(--white);
}

.proof-section .eyebrow {
  color: var(--gold);
}

.proof-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
}

.proof-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,165,0,0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.proof-card blockquote {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 24px;
}

.proof-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.proof-card cite strong {
  display: block;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 4px;
}

/* --- FORM / CTA SECTION ----------------------------------- */
.form-section {
  padding: 96px 0;
  background: var(--white);
}

.form-section h2 { color: var(--dark); }

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}

.form-intro p {
  font-size: 1.05rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.form-benefits {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--body-text);
  font-weight: 500;
}

.form-benefit::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.discovery-form {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,165,0,0.12);
}

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

.form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* --- FOOTER ------------------------------------------------ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand .footer-logo {
  height: 48px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  margin-bottom: 16px;
  opacity: 0.85;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
  margin-bottom: 8px;
}

.footer-brand .faith-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

.footer-tagline {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold) !important;
  margin-bottom: 12px !important;
  opacity: 1 !important;
}

/* About page tagline sign-off */
.tagline-signoff {
  background: var(--cream);
  padding: 64px 0;
  text-align: center;
}

.tagline-signoff-text {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* --- SERVICES PAGE ---------------------------------------- */
.services-page-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}

.services-page-hero h1 { color: var(--white); }
.services-page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

.service-detail-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.service-detail-section:last-of-type { border-bottom: none; }

.service-detail-section:nth-child(even) {
  background: var(--cream);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail-section:nth-child(even) .service-detail-grid {
  direction: rtl;
}

.service-detail-section:nth-child(even) .service-detail-grid > * {
  direction: ltr;
}

.service-detail-copy h2 { margin-bottom: 1rem; }

.service-detail-copy p {
  font-size: 1rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.service-checklist {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.5;
}

.service-checklist li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-visual {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
}

.service-visual-stat {
  margin-bottom: 20px;
}

.service-visual-stat .stat-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.service-visual-stat .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.how-it-works {
  background: var(--dark);
  padding: 96px 0;
  color: var(--white);
}

.how-it-works h2 { color: var(--white); }
.how-it-works .eyebrow { color: var(--gold); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.step {
  text-align: center;
  padding: 0 16px;
}

.step-number {
  font-family: var(--font-head);
  font-size: 4rem;
  color: rgba(245,165,0,0.2);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.step h4 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* --- FAQ Section ----------------------------------------- */
.faq-section {
  padding: 96px 0;
  background: var(--cream);
}

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
}

.faq-a {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.8;
  padding-top: 14px;
}

/* --- CTA BANNER ------------------------------------------- */
.cta-banner {
  background: var(--gold);
  padding: 72px 0;
}

.cta-banner-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.05rem;
  color: rgba(17,17,17,0.7);
  margin-bottom: 2rem;
}

/* --- ABOUT PAGE ------------------------------------------- */
.about-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  color: var(--white);
}

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

.about-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem); }
.about-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 1.25rem;
}

.about-hero-photo {
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.85rem;
  overflow: hidden;
}

.about-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.credentials-bar {
  background: var(--gold);
  padding: 20px 0;
}

.credentials-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.credential-item {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
}

.credential-divider {
  width: 1px;
  height: 16px;
  background: rgba(17,17,17,0.2);
}

.about-story {
  padding: 96px 0;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.about-story-sidebar h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.about-story-sidebar p {
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-story-main h2 { margin-bottom: 1.25rem; }
.about-story-main p {
  font-size: 1.05rem;
  color: var(--mid-gray);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.values-section {
  padding: 96px 0;
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.value-card h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.65;
}

/* --- BLOG ------------------------------------------------- */
.blog-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}

.blog-hero h1 { color: var(--white); }
.blog-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 1rem auto 0;
}

.blog-section { padding: 80px 0; background: var(--white); }

.blog-featured {
  margin-bottom: 60px;
}

.blog-featured-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  transition: box-shadow var(--transition);
}

.blog-featured-card:hover {
  box-shadow: var(--shadow-md);
}

.blog-featured-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.blog-featured-copy h2 a { color: var(--dark); }
.blog-featured-copy h2 a:hover { color: var(--gold); }

.blog-featured-copy p {
  color: var(--mid-gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.blog-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.blog-meta-light {
  font-size: 0.8rem;
  color: var(--mid-gray);
  margin-bottom: 12px;
}

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

.blog-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.blog-card.coming-soon {
  opacity: 0.45;
  pointer-events: none;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card h3 a { color: var(--dark); }
.blog-card h3 a:hover { color: var(--gold); }

.blog-card p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* --- BLOG POST -------------------------------------------- */
.post-hero {
  background: var(--dark);
  padding: 140px 0 64px;
  color: var(--white);
}

.post-hero-inner { max-width: 780px; margin: 0 auto; }
.post-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.post-hero .post-meta {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0;
}

.post-content {
  padding: 72px 0;
  background: var(--white);
}

.post-body {
  max-width: 780px;
  margin: 0 auto;
}

.post-body h2 {
  font-size: 1.9rem;
  margin: 48px 0 16px;
  color: var(--dark);
}

.post-body h3 {
  font-size: 1.4rem;
  margin: 36px 0 12px;
  color: var(--dark);
}

.post-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--body-text);
  margin-bottom: 1.25rem;
}

.post-body ul, .post-body ol {
  margin: 1.25rem 0;
  padding-left: 24px;
}

.post-body ul li, .post-body ol li {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--body-text);
  margin-bottom: 8px;
  list-style: disc;
}

.post-body ol li { list-style: decimal; }

.post-body strong { color: var(--dark); font-weight: 600; }

.post-callout {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
}

.post-callout p { font-size: 1rem; color: var(--dark); margin: 0; }

.post-author-bar {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info .author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  display: block;
}

.author-info .author-title {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

.related-posts { padding: 64px 0; background: var(--cream); }
.related-posts h3 { text-align: center; margin-bottom: 36px; font-size: 1.6rem; }

/* --- THANK YOU PAGE --------------------------------------- */
.thankyou-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  padding: 80px 0;
}

.thankyou-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.thankyou-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  display: block;
}

.thankyou-inner h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.thankyou-inner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* --- UTILITIES -------------------------------------------- */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }

/* --- RESPONSIVE ------------------------------------------- */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .agency-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .mobile-menu.open { display: flex; }

  .mobile-menu a {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition);
  }

  .mobile-menu a:hover { color: var(--gold); }

  .mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
  }

  .hero-content { padding: 110px 20px 30px; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { text-align: center; justify-content: center; }

  .solution-grid { grid-template-columns: 1fr; gap: 40px; }
  .proof-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-layout { grid-template-columns: 1fr; gap: 40px; }
  .pain-grid { grid-template-columns: 1fr; }
  .agency-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured-card { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-section:nth-child(even) .service-detail-grid { direction: ltr; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-hero-photo { aspect-ratio: 16/9; }
  .credentials-inner { gap: 24px; }
  .credential-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { gap: 24px; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .discovery-form { padding: 24px 20px; }
  h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
}
