/* =========================================================
   SitesByNjabulo — Main Stylesheet
   Typography: Archivo Black (display) + Fraunces italic (accent) + Manrope (body)
   Palette: Coastal Midnight — Primary #2D5B75
   ========================================================= */

/* ─── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--body-text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: 0; background: none; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }

/* ─── TOKENS — Coastal Midnight Palette ──────────────────── */
:root {
  --brand:       #2D5B75;
  --brand-dark:  #123249;
  --brand-tint:  #F3F9FC;
  --brand-mid:   #A8CCE0;
  --brand-light: #447794;
  --ink:         #091329;
  --body-text:   #374151;
  --muted:       #6B7280;
  --white:       #FFFFFF;
  --surface:     #F8FAFC;
  --border:      #E5E7EB;
  --ease:        cubic-bezier(.22, 1, .36, 1);

  --font-display: 'Archivo Black', system-ui, sans-serif;
  --font-serif:   'Fraunces', Georgia, serif;
  --font-body:    'Manrope', system-ui, sans-serif;

  --container: 1200px;
  --pad: clamp(20px, 5vw, 80px);
  --section-y: clamp(72px, 10vw, 120px);
  --radius: 12px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);
}

/* ─── LAYOUT UTILITIES ────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); width: 100%; }
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--white   { background: var(--white); }
.section--surface { background: var(--surface); }
.section--tint    { background: var(--brand-tint); }
.section--ink     { background: var(--ink); }
.section--blue    { background: var(--brand); }

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
@media (min-width: 1024px) {
  .hero__headline { font-size: clamp(2.4rem, 5.2vw, 4.25rem); }
}
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.1rem; }

/* Fraunces italic accent — mixed into headings */
.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--brand-light);
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}
.section__eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--brand);
  flex-shrink: 0;
}
.section__title { margin-bottom: 1rem; }
.section__lead { font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--muted); line-height: 1.75; max-width: 52ch; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(45,91,117,.35);
}
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn--ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--ghost-white:hover { background: #fff; color: var(--brand); border-color: #fff; }
.btn--white { background: #fff; color: var(--brand); border-color: #fff; }
.btn--white:hover { background: var(--brand-tint); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.btn--large { padding: 18px 40px; font-size: 1rem; border-radius: 10px; }

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ─── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.nav__logo { text-decoration: none; }
.logo-wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.05em;
  line-height: 1;
  display: inline-block;
}
.logo-by { color: var(--brand); }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a { font-size: 0.875rem; font-weight: 500; color: var(--body-text); transition: color 0.2s ease; }
.nav__links a:hover { color: var(--brand); }
.nav__cta { flex-shrink: 0; }
/* ─── BURGER BUTTON — TrueSouth style ────────────────────── */
.nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(9,19,41,.2);
  border-radius: 2px;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  transition: transform .3s ease, opacity .2s ease, background .2s ease;
}
.menu-icon { position: relative; }
.menu-icon::before,
.menu-icon::after { content: ''; position: absolute; left: 0; }
.menu-icon::before { top: -6px; }
.menu-icon::after  { top: 6px; }
.nav__burger[aria-expanded="true"] .menu-icon { background: transparent; }
.nav__burger[aria-expanded="true"] .menu-icon::before { top: 0; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] .menu-icon::after  { top: 0; transform: rotate(-45deg); }

/* ─── MOBILE NAV DROPDOWN — TrueSouth style ──────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 98;
  background: var(--ink);
  padding: 8px 24px 24px;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.mobile-nav.is-open { display: flex; }
@media (min-width: 769px) { .mobile-nav { display: none !important; } }
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s ease;
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--brand-light); }
.mobile-nav__cta {
  margin-top: 12px;
  text-align: center;
  border-bottom: none !important;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding-top: calc(72px + 56px);
  padding-bottom: clamp(48px, 6vw, 80px);
  min-height: 70svh;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 90svh;
    padding-top: calc(72px + 28px);
    align-items: flex-start;
  }
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-tint);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--brand-mid);
  margin-bottom: 24px;
  animation: fadeSlideUp 0.6s var(--ease) forwards;
  opacity: 0;
}
.hero__badge::before {
  content: '';
  display: block;
  width: 7px; height: 7px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}
.hero__headline { animation: fadeSlideUp 0.7s 0.1s var(--ease) both; margin-bottom: 20px; }
.hero__subline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--muted);
  line-height: 1.7;
  max-width: 52ch;
  margin: 0 auto 36px;
  animation: fadeSlideUp 0.7s 0.2s var(--ease) both;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; animation: fadeSlideUp 0.7s 0.3s var(--ease) both; }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__bg-blob {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,91,117,.08) 0%, transparent 70%);
  bottom: -200px; right: -100px;
  pointer-events: none;
}

/* ─── REVIEWS SLIDER — White bg, Coastal Midnight accents ── */
.reviews {
  background: #ffffff;
  overflow-x: clip;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.reviews__head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.reviews__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1rem;
}
.reviews__kicker::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--brand);
  flex-shrink: 0;
}
.reviews__head h2 { color: var(--ink); }
.reviews__head h2 .serif-accent { color: var(--brand-light); }
.reviews__carousel { position: relative; }
.reviews__marquee {
  position: relative;
  overflow-x: clip;
  padding-top: 10px;
  padding-bottom: 18px;
  mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.reviews__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: reviewsScroll 70s linear infinite;
}
.reviews__marquee:hover .reviews__track,
.reviews__marquee:focus-within .reviews__track { animation-play-state: paused; }
@keyframes reviewsScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews__track { animation: none; }
  .reviews__marquee { overflow-x: auto; scroll-snap-type: x mandatory; }
  .reviews__card { scroll-snap-align: start; }
}
.reviews__card {
  flex: 0 0 auto;
  width: clamp(260px, 82vw, 360px);
  padding: 1.75rem 1.5rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--brand);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 24px rgba(9,19,41,.08);
}
.reviews__stars { font-size: 0.9rem; letter-spacing: 0.2em; color: var(--brand-light); }
.reviews__quote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #0f1011;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1 1 auto;
}
.reviews__cap { display: flex; flex-direction: column; gap: 0.15rem; padding-top: 0.75rem; border-top: 1px solid var(--border); }
.reviews__name { font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.reviews__role { font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-light); }
.reviews__foot { text-align: center; margin-top: 2.25rem; }
.reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  border-bottom: 1px solid var(--brand-mid);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}
.reviews__link svg { flex-shrink: 0; }
.reviews__link:hover { color: var(--brand-dark); border-color: var(--brand-dark); }

/* ─── PROBLEM SECTION ─────────────────────────────────────── */
.problem__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.problem__image { position: relative; }
.problem__image img { width: 100%; height: 560px; object-fit: cover; object-position: 50% 38%; border-radius: 16px; box-shadow: var(--shadow-lg); }
.problem__image-accent {
  position: absolute;
  bottom: -24px; left: -24px;
  width: 180px; height: 180px;
  border-radius: 16px;
  background: var(--brand-tint);
  border: 2px solid var(--brand-mid);
  z-index: -1;
}
.problem__list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.problem__item { display: flex; gap: 16px; align-items: flex-start; }
.problem__item-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--brand-tint);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.problem__item-icon svg { width: 18px; height: 18px; stroke: var(--brand); fill: none; stroke-width: 2; }
.problem__item-text h4 { margin-bottom: 4px; font-size: 1rem; }
.problem__item-text p  { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.problem__cta { margin-top: 36px; }
@media (max-width: 860px) {
  .problem__grid { grid-template-columns: 1fr; gap: 48px; }
  .problem__image img { height: 360px; }
}

/* ─── PROJECTS ────────────────────────────────────────────── */
.projects__head { text-align: center; margin-bottom: 56px; }
.projects__head .section__lead { margin: 0 auto; }
.projects__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.project-card {
  text-decoration: none;
  color: inherit;
  display: block;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
  cursor: pointer;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-card__image { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.project-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s var(--ease); }
.project-card:hover .project-card__image img { transform: scale(1.04); }
.project-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,18,34,.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.project-card:hover .project-card__overlay { opacity: 1; }
.project-card__overlay-text {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.project-card__body { padding: 24px; }
.project-card__body h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--ink); }
.project-card__body p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
@media (max-width: 720px) { .projects__grid { grid-template-columns: 1fr; } }

/* ─── WHY GROW ────────────────────────────────────────────── */
.grow { position: relative; overflow: hidden; }
.grow::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,91,117,.25) 0%, transparent 70%);
  pointer-events: none;
}
.grow__head { text-align: center; margin-bottom: 60px; }
.grow__head h2, .grow__head .section__eyebrow { color: #fff; }
.grow__head h2 .serif-accent { color: rgba(255,255,255,.85); }
.grow__head .section__eyebrow { color: rgba(255,255,255,.7); }
.grow__head .section__eyebrow::before { background: rgba(255,255,255,.5); }
.grow__intro { font-size: clamp(1rem, 1.6vw, 1.15rem); color: rgba(255,255,255,.7); max-width: 58ch; margin: 16px auto 0; line-height: 1.75; text-align: center; }
.grow__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grow-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}
.grow-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.grow-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(68,119,148,.4);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.grow-card__icon svg { width: 22px; height: 22px; stroke: #fff; fill: none; stroke-width: 2; }
.grow-card h4 { color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.grow-card p  { font-size: 0.875rem; color: rgba(255,255,255,.65); line-height: 1.65; }
@media (max-width: 900px) { .grow__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .grow__grid { grid-template-columns: 1fr; } }

/* ─── PROCESS ─────────────────────────────────────────────── */
.process__head { text-align: center; margin-bottom: 60px; }
.process__head .section__lead { margin: 0 auto; }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process__steps::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(12.5% + 20px);
  width: calc(75% - 40px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; }
.process-step__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 2px solid var(--brand-mid);
  background: var(--brand-tint);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--brand);
  margin-bottom: 20px;
}
.process-step h4 { margin-bottom: 8px; font-size: 1rem; }
.process-step p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
@media (max-width: 860px) {
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process__steps::before { display: none; }
}
@media (max-width: 480px) { .process__steps { grid-template-columns: 1fr; } }

/* ─── PRETTY WEBSITE ──────────────────────────────────────── */
.pretty__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.pretty__headline { font-size: clamp(1.8rem, 3.5vw, 2.6rem); line-height: 1.1; margin-bottom: 20px; }
.pretty__headline .serif-accent { color: var(--brand-light); }
.pretty__intro { color: var(--muted); line-height: 1.75; font-size: 1rem; }
.pretty__col h4 { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.pretty__list { display: flex; flex-direction: column; gap: 14px; }
.pretty__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; line-height: 1.55; color: var(--body-text); }
.pretty__list li svg { flex-shrink: 0; margin-top: 2px; width: 18px; height: 18px; }
.pretty__list--wrong svg { stroke: #EF4444; fill: none; stroke-width: 2.5; }
.pretty__list--right svg { stroke: var(--brand); fill: none; stroke-width: 2.5; }
@media (max-width: 760px) { .pretty__grid { grid-template-columns: 1fr; gap: 40px; } }

/* ─── FRUSTRATIONS ────────────────────────────────────────── */
.frustrations__head { text-align: center; margin-bottom: 56px; }
.frustrations__head .section__lead { margin: 0 auto; }
.frustrations__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.frust-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.frust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.frust-card__pain { display: flex; flex-direction: column; gap: 10px; }
.frust-card__pain-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #EF4444; }
.frust-card__pain p { font-size: 0.925rem; color: var(--ink); font-weight: 500; line-height: 1.55; }
.frust-card__arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand-tint);
  border: 1px solid var(--brand-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.frust-card__arrow svg { width: 16px; height: 16px; stroke: var(--brand); fill: none; stroke-width: 2.5; }
.frust-card__solution { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid var(--border); }
.frust-card__solution-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand); }
.frust-card__solution p { font-size: 0.925rem; color: var(--body-text); line-height: 1.55; }
@media (max-width: 860px) { .frustrations__grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; } }

/* ─── APPLY NOW ───────────────────────────────────────────── */
.apply { position: relative; overflow: hidden; }
.apply::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 65%);
  pointer-events: none;
}
.apply__head { text-align: center; margin-bottom: 48px; }
.apply__head h2 { color: #fff; }
.apply__head h2 .serif-accent { color: rgba(255,255,255,.85); }
.apply__head .section__eyebrow { color: rgba(255,255,255,.7); }
.apply__head .section__eyebrow::before { background: rgba(255,255,255,.5); }
.apply__subtext { font-size: clamp(1rem, 1.6vw, 1.15rem); color: rgba(255,255,255,.8); max-width: 52ch; margin: 16px auto 0; line-height: 1.75; }
.apply__cal { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 16px; padding: 8px; overflow: hidden; }
#cal-embed { width: 100%; height: 600px; border-radius: 12px; overflow: hidden; background: #fff; }

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact { position: relative; overflow: hidden; }
.contact::before {
  content: '';
  position: absolute;
  bottom: -200px; left: -150px;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,91,117,.2) 0%, transparent 70%);
  pointer-events: none;
}
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; position: relative; }
.contact__info h2 { color: #fff; margin-bottom: 16px; }
.contact__info .section__eyebrow { color: rgba(255,255,255,.6); }
.contact__info .section__eyebrow::before { background: rgba(255,255,255,.4); }
.contact__lead { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.75; margin-bottom: 32px; }
.contact__channels { display: flex; flex-direction: column; gap: 14px; }
.contact__channel {
  display: flex; align-items: center; gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
a.contact__channel:hover {
  background: rgba(45,91,117,.4);
  border-color: rgba(68,119,148,.5);
  transform: translateX(6px);
}
.contact__channel-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact__channel-icon svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; }
.contact__channel-text { display: flex; flex-direction: column; gap: 2px; }
.contact__channel-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.contact__channel-val { font-size: 0.95rem; color: #fff; }
.contact__form-card { background: #fff; border-radius: 16px; padding: 40px; box-shadow: var(--shadow-lg); }
.cf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.cf-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink); }
.cf-input, .cf-select, .cf-textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
}
.cf-input::placeholder, .cf-textarea::placeholder { color: var(--muted); }
.cf-input:focus, .cf-select:focus, .cf-textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(45,91,117,.15);
}
.cf-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.cf-textarea { resize: vertical; min-height: 110px; }
.cf-submit {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--brand);
  color: #fff;
  border: 2px solid var(--brand);
  border-radius: 8px;
  padding: 14px 24px;
  width: 100%;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.cf-submit:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(45,91,117,.35);
}
@media (max-width: 860px) {
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__form-card { padding: 28px 20px; }
}

/* ─── INSTAGRAM ───────────────────────────────────────────── */
.instagram__head { text-align: center; margin-bottom: 48px; }
.instagram__head .section__lead { margin: 0 auto; }
.instagram__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ig-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9/16;
  background: var(--ink);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}
.ig-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lg); }
.ig-card__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s var(--ease); }
.ig-card:hover .ig-card__bg { transform: scale(1.06); }
.ig-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 50%, transparent 100%); }
.ig-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.ig-card:hover .ig-card__play { background: var(--brand); border-color: var(--brand); transform: translate(-50%,-50%) scale(1.1); }
.ig-card__play svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.ig-card__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 16px 16px; }
.ig-card__title { font-family: var(--font-display); font-size: 0.85rem; font-weight: 400; color: #fff; line-height: 1.35; margin-bottom: 8px; }
.ig-card__link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color 0.2s ease;
}
.ig-card:hover .ig-card__link { color: #fff; }
.ig-card__link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }
.instagram__follow { text-align: center; margin-top: 36px; }
@media (max-width: 900px) { .instagram__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .instagram__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq__head { text-align: center; margin-bottom: 56px; }
.faq__head .section__lead { margin: 0 auto; }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item__q {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  color: var(--ink);
  text-align: left;
  transition: color 0.2s ease;
  user-select: none;
  width: 100%;
}
.faq-item__q:hover { color: var(--brand); }
.faq-item__icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}
.faq-item__icon svg { width: 14px; height: 14px; stroke: var(--muted); fill: none; stroke-width: 2.5; transition: stroke 0.2s ease; }
.faq-item.open .faq-item__icon { background: var(--brand); border-color: var(--brand); transform: rotate(45deg); }
.faq-item.open .faq-item__icon svg { stroke: #fff; }
.faq-item.open .faq-item__q { color: var(--brand); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease), padding 0.3s ease; }
.faq-item.open .faq-item__a { max-height: 400px; }
.faq-item__a p { padding-bottom: 22px; font-size: 0.925rem; color: var(--muted); line-height: 1.75; }

/* ─── FINAL CTA ───────────────────────────────────────────── */
.cta-final { text-align: center; position: relative; overflow: hidden; background: var(--brand); }
.cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(255,255,255,.1) 0%, transparent 70%); pointer-events: none; }
.cta-final h2 { color: #fff; max-width: 16ch; margin: 0 auto 24px; }
.cta-final h2 .serif-accent { color: rgba(255,255,255,.85); }
.cta-final__subtext { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 44ch; margin: 0 auto 36px; line-height: 1.7; }
.cta-final__ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--brand-dark); padding: 60px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__logo-img { display: none; }
.logo-wordmark--footer { color: #fff; font-size: 20px; margin-bottom: 16px; }
.logo-by--footer { color: #5B9CC4; }
.footer__tagline { font-size: 0.875rem; color: #fff; line-height: 1.6; max-width: 28ch; }
.footer__col-title { font-family: var(--font-display); font-size: 0.72rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 0.875rem; color: #fff; transition: color 0.2s ease; }
.footer__links a:hover { color: rgba(255,255,255,.75); }
.footer__bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__copy { font-size: 0.8rem; color: #fff; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.footer__social a:hover { color: #fff; border-color: var(--brand); background: rgba(45,91,117,.3); }
.footer__social svg { width: 16px; height: 16px; fill: currentColor; }
@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > :first-child { grid-column: 1/-1; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── FLOATING BUTTON ─────────────────────────────────────── */
.floating-book {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 12px;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(45,91,117,.28);
  font-family: var(--font-body);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px) scale(.9);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.2s ease, box-shadow 0.2s ease;
}
.floating-book.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.floating-book:hover { background: var(--brand-dark); box-shadow: 0 6px 18px rgba(45,91,117,.35); }
.floating-book__icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.floating-book__icon svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }
.floating-book__text { display: flex; flex-direction: column; gap: 1px; }
.floating-book__label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; opacity: .7; }
.floating-book__main { font-size: 0.875rem; font-weight: 700; }
@media (max-width: 480px) { .floating-book { right: 16px; bottom: 16px; } }

/* ─── MISC UTILITIES ──────────────────────────────────────── */
.text-blue    { color: var(--brand); }
.text-muted   { color: var(--muted); }
.text-center  { text-align: center; }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
