/* ============================================================
   COUNTERFIT — Stylesheet
   Brand: Black #0a0a0a | Deep Red #8B1A1A | Off-White #F0EBE3
   ============================================================ */

/* 1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  --black:        #0a0a0a;
  --surface:      #121212;
  --surface-2:    #1c1c1c;
  --surface-3:    #262626;
  --red:          #8B1A1A;
  --red-hover:    #a52020;
  --red-glow:     rgba(139, 26, 26, 0.15);
  --white:        #F0EBE3;
  --white-dim:    #b8b3ac;
  --white-muted:  #6b6560;
  --border:       rgba(240, 235, 227, 0.08);
  --border-hover: rgba(240, 235, 227, 0.18);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --max-width: 1200px;
  --nav-height: 72px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* Scroll progress bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* 3. TYPOGRAPHY
   ============================================================ */
.label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 1rem;
}

.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4 { font-weight: 600; line-height: 1.2; }

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { color: var(--white-dim); line-height: 1.8; }
p + p { margin-top: 1.25em; }

.text-red   { color: var(--red); }
.text-white { color: var(--white); }
.text-muted { color: var(--white-muted); }

/* 4. LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section {
  padding-block: clamp(5rem, 10vw, 8rem);
}

.section--alt {
  background-color: var(--surface);
}

.section--dark {
  background-color: var(--surface-2);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.section-header {
  max-width: 640px;
}

.section-header--center {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 4rem;
}

hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: 0;
}

/* 5. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  position: relative;
}

.nav__logo span {
  color: var(--red);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  position: relative;
  transition: color 0.25s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.625rem 1.5rem;
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
  transition: background 0.25s, color 0.25s;
}

.nav__cta:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  right: -100%;
  bottom: 0;
  width: min(320px, 100vw);
  background: var(--surface);
  border-left: 1px solid var(--border);
  padding: 2.5rem 2rem;
  flex-direction: column;
  gap: 0;
  transition: right 0.4s var(--ease-out);
  z-index: 999;
}

.nav__mobile.open {
  right: 0;
}

.nav__mobile-link {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s;
}

.nav__mobile-link:hover { color: var(--white); }

.nav__mobile-cta {
  margin-top: 2rem;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  background: var(--red);
  color: var(--white);
  text-align: center;
  transition: background 0.25s;
}

.nav__mobile-cta:hover { background: var(--red-hover); }

/* 6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
}

.btn--primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(240, 235, 227, 0.3);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(240, 235, 227, 0.05);
}

.btn--ghost {
  background: transparent;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 0.75rem 1.75rem;
}

.btn--ghost:hover {
  background: var(--red);
  color: var(--white);
}

.btn svg { width: 16px; height: 16px; }

/* 7. HERO — LANDING PAGE
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Replace with: background-image: url('img/hero.jpg'); */
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(139, 26, 26, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(139, 26, 26, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Noise texture overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-height);
  max-width: 900px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--red);
}

.hero__eyebrow-text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
}

.hero__heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 2rem;
}

.hero__heading em {
  font-style: italic;
  color: var(--white-dim);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white-dim);
  max-width: 540px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--white-muted);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
  animation: float 2.5s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--red), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* 8. STATS BAR
   ============================================================ */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 3rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: 2rem;
  position: relative;
}

.stats__item + .stats__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.stats__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stats__number span {
  color: var(--red);
}

.stats__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 0.75rem;
}

/* 9. ABOUT SECTION
   ============================================================ */
.about__text-block {
  max-width: 600px;
}

.about__text-block p {
  font-size: 1.0625rem;
}

.about__pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  padding-left: 2rem;
  border-left: 3px solid var(--red);
  margin-block: 2.5rem;
}

.about__visual {
  position: relative;
  /* Photo placeholder */
  background: var(--surface-2);
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about__visual-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 1rem;
}

.about__visual-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.3;
}

.about__badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--red);
  padding: 1.5rem;
  width: 140px;
  text-align: center;
}

.about__badge-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.about__badge-text {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.8);
  margin-top: 0.375rem;
}

/* 10. PHILOSOPHY SECTION
   ============================================================ */
.philosophy__intro {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 4rem;
}

.philosophy__questions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.philosophy__q {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}

.philosophy__q:hover {
  border-color: var(--red);
  background: rgba(139, 26, 26, 0.05);
}

.philosophy__q-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
}

.philosophy__q-text {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
  max-width: 240px;
}

.philosophy__close {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--white-dim);
  max-width: 700px;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.philosophy__close strong {
  color: var(--white);
  font-style: normal;
}

/* 11. SERVICE CARDS
   ============================================================ */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
  border-color: rgba(139, 26, 26, 0.3);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.75rem;
  color: var(--red);
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--white-muted);
  line-height: 1.7;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.25s;
}

.service-card__link:hover {
  gap: 0.875rem;
}

.service-card__link svg {
  width: 14px;
  height: 14px;
}

/* Services page full cards */
.service-full {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  transition: border-color 0.3s;
}

.service-full:hover {
  border-color: rgba(139, 26, 26, 0.3);
}

.service-full__meta {
  border-right: 1px solid var(--border);
  padding-right: 3rem;
}

.service-full__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service-full__title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-full__price {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 1.5rem;
}

.service-full__desc {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.8;
}

.service-full__features {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.service-full__feature {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--white-dim);
}

.service-full__feature svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  flex-shrink: 0;
}

/* 12. LEAD MAGNET / EMAIL CAPTURE
   ============================================================ */
.lead-magnet {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lead-magnet__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.lead-magnet__label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  margin-bottom: 1.5rem;
}

.lead-magnet__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.lead-magnet__sub {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.lead-magnet__checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.lead-magnet__check {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--white-dim);
}

.lead-magnet__check svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
}

.lead-magnet__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lead-magnet__form-row {
  display: flex;
  gap: 1rem;
}

.lead-magnet__book {
  background: var(--surface-2);
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
  max-width: 300px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lead-magnet__book::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}

.lead-magnet__book-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.lead-magnet__book-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.lead-magnet__book-sub {
  font-size: 0.75rem;
  color: var(--white-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lead-magnet__disclaimer {
  font-size: 0.75rem;
  color: var(--white-muted);
  margin-top: 0.5rem;
}

/* 13. FORM INPUTS
   ============================================================ */
.input {
  width: 100%;
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 0.9375rem;
  padding: 0.875rem 1.25rem;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
}

.input::placeholder {
  color: var(--white-muted);
}

.input:focus {
  border-color: rgba(139, 26, 26, 0.6);
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.input-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-muted);
}

/* 14. TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(139, 26, 26, 0.3);
}

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  right: 1.75rem;
  pointer-events: none;
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-card__star {
  width: 14px;
  height: 14px;
  color: var(--red);
}

.testimonial-card__text {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}

.testimonial-card__author {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 1px solid var(--border);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--red);
}

.testimonial-card__name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.testimonial-card__detail {
  font-size: 0.8125rem;
  color: var(--white-muted);
}

/* Featured testimonial */
.testimonial-featured {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
}

.testimonial-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.testimonial-featured__text {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* 15. ARTICLE CARDS
   ============================================================ */
.article-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  border-color: rgba(139, 26, 26, 0.3);
  transform: translateY(-4px);
}

.article-card__image {
  aspect-ratio: 16/9;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.article-card__image svg {
  width: 32px;
  height: 32px;
  opacity: 0.2;
}

.article-card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__category {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.article-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  transition: color 0.25s;
}

.article-card:hover .article-card__title {
  color: var(--white-dim);
}

.article-card__excerpt {
  font-size: 0.9375rem;
  color: var(--white-muted);
  line-height: 1.7;
  flex: 1;
}

.article-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.article-card__date {
  font-size: 0.75rem;
  color: var(--white-muted);
  letter-spacing: 0.05em;
}

.article-card__read-more {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.25s;
}

.article-card:hover .article-card__read-more {
  gap: 0.625rem;
}

.article-card__read-more svg {
  width: 12px;
  height: 12px;
}

/* 16. TUTORIALS / VIDEO GRID
   ============================================================ */
.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
}

.video-card:hover {
  border-color: rgba(139, 26, 26, 0.3);
}

.video-card__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--black);
}

.video-card__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card__body {
  padding: 1.5rem;
}

.video-card__category {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.video-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

/* 17. PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 5rem;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}

.page-hero__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  display: block;
}

.page-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.page-hero__sub {
  font-size: 1.125rem;
  color: var(--white-dim);
  max-width: 600px;
  line-height: 1.7;
}

/* 18. CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--red);
  padding-block: 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'COUNTERFIT';
  position: absolute;
  font-family: var(--font-display);
  font-size: 20vw;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
}

.cta-section__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  position: relative;
}

.cta-section__sub {
  font-size: 1.125rem;
  color: rgba(240, 235, 227, 0.8);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  position: relative;
}

.cta-section .btn--outline {
  position: relative;
  border-color: rgba(240, 235, 227, 0.5);
  color: var(--white);
}

.cta-section .btn--outline:hover {
  background: rgba(240, 235, 227, 0.1);
  border-color: var(--white);
}

.cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* 19. FOOTER
   ============================================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__brand-logo span {
  color: var(--red);
}

.footer__brand-desc {
  font-size: 0.9375rem;
  color: var(--white-muted);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.75rem;
}

.footer__social {
  display: flex;
  gap: 0.875rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--white-muted);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.footer__social-link:hover {
  border-color: var(--red);
  color: var(--white);
  background: var(--red-glow);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__col-heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer__link {
  font-size: 0.9375rem;
  color: var(--white-muted);
  transition: color 0.25s;
}

.footer__link:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer__copyright {
  font-size: 0.8125rem;
  color: var(--white-muted);
}

.footer__bottom-links {
  display: flex;
  gap: 2rem;
}

.footer__bottom-link {
  font-size: 0.8125rem;
  color: var(--white-muted);
  transition: color 0.25s;
}

.footer__bottom-link:hover {
  color: var(--white);
}

/* 20. UTILITY ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* 21. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .service-full {
    grid-template-columns: 1fr;
  }

  .service-full__meta {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .stats__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats__item + .stats__item::before {
    top: 0;
    left: 10%;
    right: 10%;
    width: auto;
    height: 1px;
    bottom: auto;
  }

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

  .lead-magnet__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .lead-magnet__form-row {
    flex-direction: column;
  }

  .about__badge {
    right: 0;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile {
    display: flex;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .testimonial-featured {
    padding: 2.5rem 1.5rem;
  }

  .hero__heading {
    font-size: clamp(2.75rem, 12vw, 5rem);
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }
}
