/* ===== SELF-HOSTED FONTS ===== */
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-v15-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-v18-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-v18-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-v18-latin-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-v18-latin-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/inter-v18-latin-800.woff2') format('woff2');
}

/* ===== ACCESSIBILITY ===== */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--navy-900);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}

.skip-to-content:focus {
  position: fixed;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
}

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

:root {
  /* === PRIMARY — Navy (Authority & Trust) === */
  --navy-950: #0b1a30;
  --navy-900: #0f2240;
  --navy-800: #142d54;
  --navy-700: #1c3d6e;
  --navy-600: #2554a0;
  --navy-500: #3068b8;
  --navy-100: #dce6f5;
  --navy-50:  #eef2fa;

  /* === ACCENT — Sky Blue === */
  --sky-600: #1580c0;
  --sky-500: #1a8fd1;
  --sky-400: #3daae0;
  --sky-50:  #eff7fd;

  /* === ACTION — Warm Amber === */
  --amber-700: #c4521f;
  --amber-500: #e8682d;
  --amber-400: #f07e4a;
  --amber-300: #f5a070;

  /* === NEUTRALS === */
  --gray-900: #1a1d26;
  --gray-800: #2d3142;
  --gray-700: #404660;
  --gray-600: #555d78;
  --gray-400: #8e94a8;
  --gray-300: #b0b6c8;
  --gray-200: #cdd2df;
  --gray-100: #e5e8ef;
  --gray-25:  #f8f9fb;

  /* === SURFACES === */
  --surface-primary: #ffffff;
  --surface-secondary: #f5f7fa;

  /* === LEGACY ALIASES (backward compatibility) === */
  --primary: var(--navy-700);
  --primary-light: var(--navy-600);
  --accent: var(--sky-500);
  --accent-secondary: var(--amber-500);
  --accent-secondary-light: var(--amber-400);
  --white: #ffffff;
  --surface: var(--surface-secondary);
  --dark: var(--navy-950);

  /* === SHADOWS === */
  --shadow-sm: 0 1px 3px rgba(15, 25, 35, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 25, 35, 0.08);
  --shadow-lg: 0 8px 40px rgba(15, 25, 35, 0.1);
  --shadow-xl: 0 20px 60px rgba(15, 25, 35, 0.14);

  /* === RADII === */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* === TYPOGRAPHY === */
  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.8rem);
  --text-sm:   clamp(0.8125rem, 0.78rem + 0.16vw, 0.875rem);
  --text-base: clamp(0.9375rem, 0.9rem + 0.19vw, 1rem);
  --text-lg:   clamp(1.125rem, 1.05rem + 0.38vw, 1.25rem);
  --text-xl:   clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-3xl:  clamp(2rem, 1.7rem + 1.5vw, 2.75rem);
  --text-4xl:  clamp(2.5rem, 2rem + 2.5vw, 3.5rem);
  --text-5xl:  clamp(3rem, 2.4rem + 3vw, 4.5rem);

  /* === SPACING (8px grid) === */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  /* Fluid section spacing */
  --section-y:    clamp(80px, 8vw, 120px);

  /* === TRANSITIONS === */
  --transition: 0.3s ease;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--navy-950);
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--surface-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main, body > :not(footer):not(nav):not(header) {
  flex: 1;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === ACCESSIBILITY === */
.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;
}

:focus-visible {
  outline: 2px solid var(--navy-500);
  outline-offset: 2px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* === TYPOGRAPHY === */
h1, h2 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 400;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

h3, h4, h5 {
  font-family: var(--font-body);
  line-height: 1.3;
  font-weight: 700;
  color: var(--gray-900);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: 1.75;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-8);
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 var(--space-12);
  }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--accent-secondary);
  z-index: 1100;
  transition: width 0.1s linear;
}

/* ===== HEADER / NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}

.header.scrolled {
  border-bottom-color: var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.header.hidden {
  transform: translateY(-100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo img {
  height: 90px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__links a {
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition);
  position: relative;
}

.nav__links a:hover {
  color: var(--navy-700);
  background: var(--navy-50);
}

.nav__links a:focus-visible {
  outline: 2px solid var(--navy-700);
  outline-offset: 2px;
}

.nav__links a.active {
  color: var(--navy-700);
  background: var(--navy-50);
  font-weight: 600;
}

.nav__links .nav__cta {
  padding: 10px 24px;
  background: var(--navy-700);
  color: var(--surface-primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all 0.25s var(--ease-out-expo);
}

.nav__links .nav__cta:hover {
  background: var(--navy-600);
  color: var(--surface-primary);
  transform: translateY(-1px);
}

.nav__links .nav__cta.active::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO — Split Layout (Homepage) ===== */
.hero-split {
  padding: 140px 0 80px;
  background: var(--surface-primary);
  overflow: hidden;
}

.hero-split__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: var(--space-12);
  align-items: center;
}

.hero-split__text {
  max-width: 560px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: var(--space-4);
}

.hero__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent-secondary);
}

.hero-split__text h1 {
  color: var(--navy-950);
  margin-bottom: var(--space-6);
  font-size: var(--text-5xl);
}

.hero-split__subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-10);
  max-width: 480px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: var(--space-6);
}

.hero-split__credentials {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--gray-100);
}

.hero-credential {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero-credential__icon {
  width: 18px;
  height: 18px;
  color: var(--amber-500);
  flex-shrink: 0;
}

.hero-credential span {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy-800);
  letter-spacing: 0.02em;
}

.hero-split__image {
  position: relative;
}

.hero-split__image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-out-expo);
  text-align: center;
  font-family: var(--font-body);
}

.btn--primary {
  background: var(--amber-500);
  color: var(--surface-primary);
}

.btn--primary:hover {
  background: var(--amber-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 104, 45, 0.3);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy-700);
  border: 2px solid var(--navy-700);
}

.btn--outline-dark:hover {
  background: var(--navy-700);
  color: var(--surface-primary);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--surface-primary);
  color: var(--navy-700);
}

.btn--white:hover {
  background: var(--gray-25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--dark {
  background: var(--navy-700);
  color: var(--surface-primary);
}

.btn--dark:hover {
  background: var(--navy-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:focus-visible {
  outline: 2px solid var(--navy-700);
  outline-offset: 2px;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease-out-expo);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--section-y) 0;
}

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

.section--no-pb {
  padding-bottom: 0;
}


.section__header {
  max-width: 600px;
  margin-bottom: 64px;
}

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

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

.section__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent-secondary);
}

.section__header--center .section__label::before {
  display: none;
}

.section__header h2 {
  margin-bottom: 16px;
}

.section__header p {
  font-size: 1.05rem;
}

/* ===== SERVICE CARDS — Asymmetric Layout ===== */
.services-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.services-preview__stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--accent-secondary);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  border-left-color: var(--accent-secondary);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(30, 58, 110, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.93rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.service-card__link:hover svg {
  transform: translateX(4px);
}

.service-card__link:focus-visible {
  outline: 2px solid var(--navy-700);
  outline-offset: 2px;
}

/* Featured tall service card with image */
.service-card--featured {
  position: relative;
  padding: 0;
  border: none;
  border-left: none;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-card--featured img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 25, 35, 0.85) 0%, rgba(15, 25, 35, 0.3) 60%, transparent 100%);
}

.service-card--featured .service-card__content {
  position: relative;
  z-index: 2;
  padding: 40px 32px;
}

.service-card--featured h3 {
  color: var(--white);
}

.service-card--featured p {
  color: rgba(255, 255, 255, 0.7);
}

.service-card--featured .service-card__link {
  color: var(--accent-secondary-light);
}

.service-card--featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* ===== ABOUT PREVIEW — Editorial ===== */
.about-editorial {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-editorial__image {
  position: relative;
}

.about-editorial__image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-editorial__image::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 2px solid var(--accent-secondary);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.3;
}

.about-editorial__text {
  max-width: 520px;
}

.about-editorial__text h2 {
  margin-bottom: 20px;
}

.about-editorial__text p {
  margin-bottom: 16px;
  font-size: 1.02rem;
}


/* ===== TESTIMONIALS GRID ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  padding-top: 48px;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'DM Serif Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-secondary);
  opacity: 0.10;
  position: absolute;
  top: 6px;
  left: 12px;
}

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

.testimonial-card:focus-visible {
  outline: 2px solid var(--navy-700);
  outline-offset: 2px;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-800);
}

/* ===== TRUST BAR — Independence Guarantee ===== */
.trust-bar {
  padding: var(--space-12) 0;
  background: var(--navy-50);
  border-top: 1px solid var(--navy-100);
  border-bottom: 1px solid var(--navy-100);
}

.trust-bar__header {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--navy-700);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-8);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1100px;
  margin: 0 auto;
}

.trust-bar__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.trust-bar__item svg {
  width: 24px;
  height: 24px;
  color: var(--navy-600);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-bar__item strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 2px;
}

.trust-bar__item span {
  font-size: var(--text-xs);
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== TRUST STRIP — Compact independence reminder ===== */
.trust-strip {
  padding: var(--space-6) 0;
  background: var(--navy-50);
  border-top: 1px solid var(--navy-100);
  border-bottom: 1px solid var(--navy-100);
}

.trust-strip__items {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.trust-strip__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-700);
  letter-spacing: 0.02em;
}

.trust-strip__item svg {
  color: var(--amber-500);
  flex-shrink: 0;
}

/* ===== FAQ ACCORDION ===== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--gray-200);
}

.faq__item:first-child {
  border-top: 1px solid var(--gray-200);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  line-height: 1.5;
}

.faq__question:hover {
  color: var(--navy-700);
}

.faq__question:focus-visible {
  outline: 2px solid var(--navy-700);
  outline-offset: 2px;
}

.faq__question svg {
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform 0.3s ease;
}

.faq__item.active .faq__question svg {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__answer p {
  padding: 0 0 20px;
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== CTA SECTION — Photography Background ===== */
.cta {
  position: relative;
  text-align: center;
  padding: 100px 0;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
}

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15, 25, 35, 0.88) 0%, rgba(30, 58, 110, 0.85) 100%);
}

.cta .container {
  position: relative;
  z-index: 2;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ===== FOOTER — Three-Column Layout ===== */
.footer {
  background: var(--navy-950);
  padding: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  padding: var(--space-16) 0 var(--space-10);
}

.footer__brand img {
  height: 90px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--space-4);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  max-width: 280px;
}

.footer__links h4,
.footer__contact h4 {
  color: var(--surface-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-sm);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--surface-primary);
}

.footer__contact p {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-bottom: var(--space-2);
}

.footer__contact a {
  color: var(--amber-400);
  transition: color 0.2s ease;
}

.footer__contact a:hover {
  color: var(--amber-300);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.25s var(--ease-out-expo);
}

.footer__social a:hover {
  background: var(--amber-500);
  color: var(--surface-primary);
}

.footer__social a svg {
  width: 16px;
  height: 16px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-6) 0;
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: var(--text-xs);
}

/* ===== ABOUT PAGE — Clean Hero ===== */
/* ===== ABOUT PAGE — Hero Clean ===== */
.about-hero-clean {
  padding: 140px 0 var(--space-10);
  text-align: center;
}

.about-hero-clean .section__label {
  margin-bottom: var(--space-4);
}

.about-hero-clean h1 {
  color: var(--navy-950);
  margin-bottom: var(--space-4);
}

.about-hero-clean p {
  max-width: 620px;
  margin: 0 auto;
  font-size: var(--text-lg);
  color: var(--gray-600);
  line-height: 1.7;
}

.about-hero-image {
  padding-bottom: 0;
}

.about-hero-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===== ABOUT PAGE — Story Editorial ===== */
.story-editorial {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-16);
  align-items: start;
}

.story-editorial__content h2 {
  margin-bottom: var(--space-6);
}

.story-editorial__lead {
  font-size: var(--text-lg);
  color: var(--gray-800);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  font-weight: 500;
}

.story-editorial__content p {
  margin-bottom: var(--space-5);
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--gray-600);
}

.story-editorial__sidebar {
  padding-top: var(--space-16);
}

.story-editorial__quote {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--navy-700);
  line-height: 1.5;
  padding-left: var(--space-6);
  border-left: 3px solid var(--amber-500);
}

/* ===== ABOUT PAGE — Founder Profile ===== */
.founder-profile {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.founder-profile__image {
  position: relative;
}

.founder-profile__placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-width: 380px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
}

.founder-profile__placeholder span {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 6rem);
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.05em;
  user-select: none;
}

.founder-profile__placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.founder-profile__text h2 {
  font-size: var(--text-3xl);
  color: var(--navy-950);
  margin-bottom: var(--space-2);
}

.founder-profile__role {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--amber-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-5);
}

.founder-profile__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.credential-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--navy-50);
  color: var(--navy-700);
  border: 1px solid var(--navy-100);
  border-radius: 100px;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.founder-profile__text p {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

/* ===== ABOUT PAGE — Team Grid ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

.team-card:hover {
  transform: translateY(-2px);
}

.team-card__image {
  position: relative;
}

.team-card__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__placeholder span {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.05em;
  user-select: none;
}

.team-card__placeholder--muted {
  background: linear-gradient(135deg, var(--gray-300), var(--gray-400));
}

.team-card__body {
  padding: var(--space-6);
}

.team-card__body h3 {
  font-size: var(--text-xl);
  color: var(--navy-950);
  margin-bottom: var(--space-1);
}

.team-card__role {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--amber-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}

.team-card__body .founder-profile__chips {
  margin-bottom: var(--space-4);
}

.team-card__body p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.7;
}

.team-card--coming-soon {
  opacity: 0.75;
}

.team-card--coming-soon .team-card__body {
  position: relative;
}

.team-card--coming-soon .product-badge {
  margin-bottom: var(--space-3);
}

/* ===== ABOUT PAGE — Mission/Vision Grid ===== */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.mission-vision-card {
  padding: var(--space-10) var(--space-8);
  background: var(--surface-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: border-color 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.mission-vision-card:hover {
  border-color: var(--navy-100);
  box-shadow: var(--shadow-md);
}

.mission-vision-card:focus-visible {
  outline: 2px solid var(--navy-700);
  outline-offset: 2px;
}

.mission-vision-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--navy-100);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.mission-vision-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--navy-950);
}

.mission-vision-card p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--gray-600);
}

.form-hint {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 4px;
}

/* ===== AUDIENCE GRID (Who This Is For) ===== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.audience-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
}

.audience-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* (stats--three moved to founder-profile) */

/* ===== GUIDE PAGE ===== */
.course-wrapper {
  padding-top: 72px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  height: 100vh;
  height: 100dvh;
}

.course-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ===== SERVICES PAGE — Mixed-size Grid ===== */
/* ===== SERVICES PAGE — V2 Service Cards (stacked) ===== */
.services-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.service-card-v2 {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-6);
  padding: var(--space-8) var(--space-8);
  background: var(--surface-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: border-color 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.service-card-v2:hover {
  border-color: var(--navy-100);
  box-shadow: var(--shadow-md);
}

.service-card-v2__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--gray-100);
  line-height: 1;
  pointer-events: none;
}

.service-card-v2__body h3 {
  font-size: var(--text-xl);
  color: var(--navy-950);
  margin-bottom: var(--space-3);
}

.service-card-v2__body p {
  font-size: var(--text-base);
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.service-card-v2__meta {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.service-card-v2__price {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--amber-700);
}

.service-card-v2__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-700);
  transition: color 0.2s ease;
}

.service-card-v2__link:hover,
.service-card-v2__link:focus-visible {
  color: var(--navy-600);
  outline: 2px solid var(--navy-600);
  outline-offset: 4px;
  border-radius: 2px;
}

.service-card-v2__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease-out-expo);
}

.service-card-v2__link:hover svg {
  transform: translateX(3px);
}

/* Featured service card */
.service-card-v2--featured {
  background: var(--navy-900);
  border-color: transparent;
}

.service-card-v2--featured:hover {
  border-color: transparent;
  box-shadow: var(--shadow-xl);
}

.service-card-v2--featured .service-card-v2__number {
  color: rgba(255, 255, 255, 0.08);
}

.service-card-v2--featured .service-card-v2__body h3 {
  color: var(--white);
}

.service-card-v2--featured .service-card-v2__body p {
  color: rgba(255, 255, 255, 0.65);
}

.service-card-v2--featured .service-card-v2__price {
  color: var(--amber-400);
}

.service-card-v2--featured .service-card-v2__link {
  color: var(--white);
}

.service-card-v2--featured .service-card-v2__link:hover {
  color: var(--amber-400);
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.product-card {
  background: var(--surface-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}

.product-card:hover {
  border-color: var(--navy-100);
  box-shadow: var(--shadow-md);
}

.product-card:focus-visible {
  outline: 2px solid var(--navy-700);
  outline-offset: 2px;
}

.product-card__icon {
  width: 48px;
  height: 48px;
  background: var(--navy-50);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--navy-700);
}

.product-card__icon svg {
  width: 24px;
  height: 24px;
}

.product-card h3 {
  font-size: var(--text-lg);
  color: var(--navy-950);
  margin-bottom: var(--space-3);
}

.product-card p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--gray-100);
}

.product-card__price {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy-950);
  margin-right: var(--space-6);
}

.product-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--sky-500);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  width: fit-content;
}

.product-card__footer .product-badge {
  margin-bottom: 0;
}

/* ===== GUIDANCE PACKAGE DETAIL ===== */
.guidance-detail {
  margin-top: var(--space-12);
  padding: var(--space-10) var(--space-8);
  background: var(--surface-primary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}

.guidance-detail__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--navy-950);
  margin-bottom: var(--space-8);
  text-align: center;
}

.guidance-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6) var(--space-10);
}

.guidance-detail__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.guidance-detail__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-50);
  border-radius: var(--radius-sm);
  color: var(--sky-600);
}

.guidance-detail__item strong {
  display: block;
  font-size: var(--text-base);
  color: var(--navy-950);
  margin-bottom: var(--space-1);
}

.guidance-detail__item p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.guidance-detail__badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--sky-500);
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 100px;
  margin: var(--space-2) 0;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .guidance-detail__grid {
    grid-template-columns: 1fr;
  }

  .guidance-detail {
    padding: var(--space-8) var(--space-6);
  }
}

/* ===== PROCESS STEPS (card-based) ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.process-step {
  text-align: center;
  padding: var(--space-8) var(--space-5);
}

.process-step__number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  color: var(--navy-100);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.process-step h3 {
  font-size: var(--text-lg);
  color: var(--navy-950);
  margin-bottom: var(--space-3);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== CONTACT PAGE ===== */
/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.contact-grid--centered {
  max-width: 640px;
  margin: 0 auto;
}

.contact-trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-8);
}

.contact-trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-600);
}

.contact-trust-bar__item svg {
  color: var(--navy-700);
  flex-shrink: 0;
}

.contact-form {
  background: var(--surface-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  border: 1px solid var(--gray-100);
}

.form-success {
  text-align: center;
  padding: var(--space-10) var(--space-6);
}

.form-success svg {
  color: var(--amber-500);
  margin-bottom: var(--space-4);
}

.form-success h3 {
  margin-bottom: var(--space-3);
}

.form-success p {
  color: var(--gray-600);
  line-height: 1.7;
}

.form-error {
  margin-top: var(--space-4);
  padding: var(--space-4);
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  color: #991b1b;
  font-size: var(--text-sm);
}

.form-error a {
  color: #991b1b;
  font-weight: 600;
}

.contact-form__title {
  margin-bottom: 4px;
}

.form-hint {
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-family: inherit;
  color: var(--gray-800);
  background: var(--surface-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 3px var(--navy-100);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  width: 100%;
  padding: 16px 32px;
  background: var(--amber-500);
  color: var(--surface-primary);
  border: none;
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}

.form-submit:hover {
  background: var(--amber-400);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 104, 45, 0.25);
}

.form-submit:focus-visible {
  outline: 2px solid var(--navy-700);
  outline-offset: 2px;
}

/* ===== ANIMATIONS ===== */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate="fade-up"] {
  transform: translateY(24px);
}

[data-animate="fade-left"] {
  transform: translateX(-24px);
}

[data-animate="fade-right"] {
  transform: translateX(24px);
}

[data-animate="scale-in"] {
  transform: scale(0.95);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Legacy support */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== ARTICLE PAGE ===== */
.article-header {
  padding: calc(var(--header-height, 80px) + var(--space-12)) 0 var(--space-10);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: none;
  margin-bottom: var(--space-6);
  transition: color var(--transition);
}

.article-back:hover {
  color: var(--navy-700);
}

.article-back:focus-visible {
  outline: 2px solid var(--navy-700);
  outline-offset: 2px;
}

.article-header h1 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--navy-950);
  line-height: 1.15;
  max-width: 760px;
  margin: var(--space-3) 0 var(--space-4);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--gray-500);
}

.article-meta__sep {
  color: var(--gray-300);
}

.article-hero-image {
  padding-bottom: var(--space-2);
}

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

.article-body {
  padding-top: var(--space-12);
}

.prose {
  max-width: 680px;
}

.prose p {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--gray-800);
  margin-bottom: var(--space-6);
}

.prose h2 {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--navy-950);
  margin: var(--space-12) 0 var(--space-4);
  line-height: 1.25;
}

.prose h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--navy-900);
  margin: var(--space-10) 0 var(--space-3);
  line-height: 1.3;
}

.prose a {
  color: var(--navy-700);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.prose a:hover {
  color: var(--amber-500);
}

.prose strong {
  font-weight: 700;
  color: var(--navy-900);
}

.prose em {
  font-style: italic;
}

.prose ul,
.prose ol {
  margin: 0 0 var(--space-6) var(--space-6);
  padding: 0;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--gray-800);
  margin-bottom: var(--space-2);
}

.prose blockquote {
  border-left: 4px solid var(--amber-500);
  margin: var(--space-10) 0;
  padding: var(--space-4) var(--space-6);
  background: var(--navy-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--navy-800);
  line-height: 1.6;
}

.prose hr {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: var(--space-12) 0;
}

.prose figure {
  margin: var(--space-10) 0;
}

.prose figure img {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
}

.prose figcaption {
  font-size: var(--text-sm);
  color: var(--gray-500);
  text-align: center;
  margin-top: var(--space-3);
}

.prose__callout {
  background: var(--sky-50);
  border: 1px solid var(--navy-100);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  margin: var(--space-8) 0;
  font-size: var(--text-sm);
  color: var(--navy-800);
  line-height: 1.65;
}

.prose__callout strong {
  display: block;
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
  color: var(--navy-700);
}

.article-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-16);
  padding-top: var(--space-8);
  border-top: 1px solid var(--gray-200);
  max-width: 680px;
}

.article-author__avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.article-author__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.article-author__name {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--navy-900);
}

.article-author__role {
  font-size: var(--text-sm);
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .article-header h1 {
    font-size: var(--text-3xl);
  }

  .article-hero-image img {
    height: 280px;
    border-radius: var(--radius-md);
  }
}

/* ===== BLOG PAGE ===== */
.blog-filters {
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--gray-100);
}

.blog-filters__bar {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
}

.blog-filters__btn {
  background: none;
  border: 1px solid var(--gray-200);
  padding: var(--space-2) var(--space-5);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
}

.blog-filters__btn:hover {
  border-color: var(--navy-700);
  color: var(--navy-700);
}

.blog-filters__btn.active {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: #fff;
}

.blog-filters__btn:focus-visible {
  outline: 2px solid var(--navy-700);
  outline-offset: 2px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card__image {
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: var(--gray-100);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out-expo);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: var(--space-6);
}

.blog-card__category {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--amber-500);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-3);
}

.blog-card__body h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--navy-950);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.blog-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-card__body h3 a:hover {
  color: var(--navy-700);
}

.blog-card__body h3 a:focus-visible {
  outline: 2px solid var(--navy-700);
  outline-offset: 2px;
}

.blog-card__body p {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.blog-card__date {
  font-size: var(--text-xs);
  color: var(--gray-400);
  font-weight: 500;
}

.blog-empty {
  text-align: center;
  font-size: var(--text-lg);
  color: var(--gray-400);
  padding: var(--space-16) 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-split__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .hero-split {
    padding: 120px 0 0;
  }

  .hero-split__image img {
    height: 400px;
    border-radius: var(--radius-md);
  }

  .services-preview {
    grid-template-columns: 1fr;
  }

  .about-editorial {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-editorial__image img {
    height: 360px;
  }

  .story-editorial {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .story-editorial__sidebar {
    padding-top: 0;
  }

  .founder-profile {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }

  .founder-profile__placeholder {
    max-width: 320px;
    margin: 0 auto;
  }

  .founder-profile__chips {
    justify-content: center;
  }

  .service-card-v2 {
    grid-template-columns: 60px 1fr;
    gap: var(--space-4);
    padding: var(--space-6);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-bar__grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    max-width: 500px;
  }

  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--surface-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 24px 32px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transition: right 0.35s var(--ease-out-expo);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__links a {
    width: 100%;
    padding: 14px 20px;
    font-size: var(--text-base);
    min-height: 52px;
    display: flex;
    align-items: center;
    border-radius: var(--radius-sm);
  }

  .nav__links .nav__cta {
    margin-top: var(--space-4);
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  .hamburger {
    display: flex;
  }

  .hero-split {
    padding: 100px 0 0;
  }

  .hero-split__text h1 {
    font-size: var(--text-4xl);
  }

  .hero-split__image img {
    height: 320px;
  }

  .hero-split__credentials {
    flex-wrap: wrap;
    gap: var(--space-3) var(--space-6);
  }

  .section {
    padding: 72px 0;
  }

  .section--no-pb {
    padding-bottom: 0;
  }

  .section__header {
    margin-bottom: 48px;
  }

  .about-editorial__image::after {
    display: none;
  }

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

  .service-card-v2 {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .service-card-v2__number {
    font-size: var(--text-2xl);
  }

  .service-card-v2__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-hero-clean {
    padding: 120px 0 var(--space-6);
  }

  .about-hero-clean h1 {
    font-size: var(--text-3xl);
  }

  .about-hero-image img {
    max-height: 320px;
    border-radius: var(--radius-md);
  }

  .founder-profile__placeholder {
    max-width: 280px;
    aspect-ratio: 3 / 4;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .course-wrapper {
    padding-top: 72px;
    height: 100vh;
    height: 100dvh;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    justify-content: center;
  }

  .blog-filters__bar {
    gap: var(--space-2);
  }

  .blog-filters__btn {
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-4);
  }

  .contact-form {
    padding: 28px 20px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding-top: 140px;
  padding-bottom: 80px;
}

.legal-page h1 {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 8px;
}

.legal-page__updated {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 48px;
}

.legal-page h2 {
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-page p {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-page ul {
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-page ul li {
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
}

.legal-page a:hover {
  color: var(--primary-light);
}

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

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.legal-table th,
.legal-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}

.legal-table th {
  font-weight: 600;
  color: var(--gray-800);
  background: var(--surface);
}

.legal-blockquote {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  margin: 16px 0 24px;
  font-style: italic;
  color: var(--gray-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ===== FOOTER LEGAL LINKS ===== */
.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.35);
  font-size: var(--text-xs);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}



.btn--sm {
  padding: 8px 16px;
  font-size: var(--text-sm);
}

.btn--mt {
  margin-top: var(--space-6);
}

@media (max-width: 768px) {
  .legal-page {
    padding-top: 100px;
  }

  .legal-table th,
  .legal-table td {
    padding: 8px 10px;
    font-size: 0.85rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__brand {
    text-align: left;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
  }
}
