/*
 * Unfolding Empowerment — Combined Stylesheet
 * Generated from 16 individual files in load order:
 * reset → variables → base → layout → nav → hero → services → about →
 * methods → online → testimonials → faq → contact → footer → animations → responsive
 */

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

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

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  line-height: 1.2;
}

p {
  overflow-wrap: break-word;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove default fieldset styles */
fieldset {
  border: none;
}

/* Accessibility: visible focus outlines */
:focus-visible {
  outline: 2px solid var(--color-coral);
  outline-offset: 2px;
}

/* Remove focus outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* === Design Tokens === */
:root {
  /* Colors */
  --color-ink: #0A2035;
  --color-ink-light: #133150;
  --color-coral: #E0856E;
  --color-coral-deep: #C46E58;
  --color-coral-glow: #F2A08A;
  --color-teal: #1A7A7A;
  --color-teal-light: #2BA3A3;
  --color-cream: #FAF6F0;
  --color-cream-deep: #F0E8DC;
  --color-text: #2C3E44;
  --color-text-soft: #5A7480;
  --color-white: #FFFFFF;

  /* Typography — Fluid Scale */
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Source Serif 4', serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.925rem + 0.375vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.4rem + 2.4vw, 2.75rem);
  --text-4xl: clamp(2.25rem, 1.5rem + 3.75vw, 3.75rem);
  --text-5xl: clamp(2.75rem, 1.75rem + 5vw, 5rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Section Padding */
  --section-py: clamp(4rem, 3rem + 5vw, 8rem);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(11, 29, 38, 0.08);
  --shadow-md: 0 4px 12px rgba(11, 29, 38, 0.1);
  --shadow-lg: 0 8px 30px rgba(11, 29, 38, 0.12);
  --shadow-xl: 0 16px 50px rgba(11, 29, 38, 0.16);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-pill: 100px;

  /* Motion */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-reveal: 800ms;
  --stagger-delay: 80ms;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-px: clamp(1.25rem, 1rem + 2vw, 2.5rem);

  /* Nav */
  --nav-height: 80px;

  /* Noise texture (tiny base64) */
  --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* === Base Typography & Global Styles === */

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-ink);
  font-weight: 700;
}

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

p {
  line-height: 1.75;
  margin-bottom: 1em;
}

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

strong {
  font-weight: 700;
}

/* Links */
a {
  color: var(--color-teal);
  transition: color var(--duration-fast) ease;
}

a:hover {
  color: var(--color-teal-light);
}

/* Selection */
::selection {
  background-color: var(--color-coral);
  color: var(--color-white);
}

/* Section styling */
.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section--dark {
  background-color: var(--color-ink);
  color: var(--color-cream);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-cream);
}

.section--dark p {
  color: rgba(250, 246, 240, 0.8);
}

.section--cream-deep {
  background-color: var(--color-cream-deep);
}

/* Section headers */
.section-label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-coral);
  margin-bottom: var(--space-md);
  display: block;
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-soft);
  max-width: 600px;
}

.section--dark .section-subtitle {
  color: rgba(250, 246, 240, 0.6);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  transition: all var(--duration-normal) var(--ease-out-expo);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn--primary {
  background-color: var(--color-coral);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-coral-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 133, 110, 0.3);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-cream);
  border: 1.5px solid rgba(250, 246, 240, 0.3);
}

.btn--secondary:hover {
  border-color: var(--color-cream);
  background-color: rgba(250, 246, 240, 0.08);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-coral);
  border: 1.5px solid var(--color-coral);
}

.btn--outline:hover {
  background-color: var(--color-coral);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 133, 110, 0.3);
}

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

.btn--teal:hover {
  background-color: var(--color-teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 122, 122, 0.3);
}

/* Coral text utility */
.text-coral {
  color: var(--color-coral);
}

/* Noise overlay utility */
.has-noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  background-repeat: repeat;
  pointer-events: none;
  z-index: 1;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-coral);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top var(--duration-fast) ease;
}

.skip-link:focus {
  top: var(--space-md);
}

/* === Layout & Grid System === */

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

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: 1400px;
}

/* Flex utilities */
.flex {
  display: flex;
}

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

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

.flex--column {
  flex-direction: column;
}

.flex--gap-sm { gap: var(--space-sm); }
.flex--gap-md { gap: var(--space-md); }
.flex--gap-lg { gap: var(--space-lg); }
.flex--gap-xl { gap: var(--space-xl); }
.flex--gap-2xl { gap: var(--space-2xl); }

/* Grid utilities */
.grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

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

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }

/* Margin utilities */
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* === Navigation === */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background-color var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo);
}

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

/* Scrolled state — frosted glass with solid fallback */
.nav--scrolled {
  background-color: var(--color-cream);
  box-shadow: 0 1px 0 rgba(11, 29, 38, 0.06);
}

@supports (backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px)) {
  .nav--scrolled {
    background-color: rgba(250, 246, 240, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

/* Recolor elements on scroll */
.nav--scrolled .nav__link {
  color: var(--color-text);
}

.nav--scrolled .nav__link:hover,
.nav--scrolled .nav__link--active {
  color: var(--color-coral);
}

/* Logo */
.nav__logo {
  flex-shrink: 0;
  z-index: 10;
}

.nav__logo-img {
  height: 48px;
  width: auto;
}

/* Menu */
.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 246, 240, 0.8);
  position: relative;
  padding: var(--space-sm) 0;
  transition: color var(--duration-fast) ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

/* CTA Button in nav */
.nav__cta {
  padding: 0.625rem 1.5rem;
  font-size: 0.8125rem;
}

/* Hamburger Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 10;
  padding: 0;
}

.nav__toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-cream);
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--ease-out-expo),
              opacity var(--duration-fast) ease;
  transform-origin: center;
}

.nav--scrolled .nav__toggle-line {
  background-color: var(--color-ink);
}

/* Hamburger → X animation */
.nav__toggle--active .nav__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle--active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle--active .nav__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* When menu is open, always show light hamburger lines (override scrolled state) */
.nav__toggle--active .nav__toggle-line,
.nav--scrolled .nav__toggle--active .nav__toggle-line {
  background-color: var(--color-cream);
}

/* === Hero Section === */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Atmospheric background — layered gradients */
.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__atmosphere::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(26, 122, 122, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(224, 133, 110, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 60% 80%, rgba(26, 122, 122, 0.08) 0%, transparent 50%);
}

/* Diagonal lines pattern */
.hero__atmosphere::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(250, 246, 240, 0.015) 40px,
    rgba(250, 246, 240, 0.015) 41px
  );
}

/* Grid layout */
.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: var(--space-3xl);
  position: relative;
  z-index: 2;
}

/* Content side */
.hero__tagline {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-coral-glow);
  margin-bottom: var(--space-lg);
}

.hero__title {
  font-size: var(--text-5xl);
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-cream);
  margin-bottom: var(--space-xl);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(250, 246, 240, 0.7);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.hero__ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* Visual side — logo with glow */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo-glow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo-glow::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(224, 133, 110, 0.15) 0%, rgba(26, 122, 122, 0.1) 40%, transparent 70%);
  border-radius: 50%;
  animation: logo-pulse 4s ease-in-out infinite;
}

.hero__logo {
  width: clamp(200px, 25vw, 360px);
  height: auto;
  position: relative;
  filter: drop-shadow(0 0 40px rgba(224, 133, 110, 0.2));
}

@keyframes logo-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  z-index: 2;
}

.hero__scroll-text {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(250, 246, 240, 0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-coral-glow), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 1; }
}

/* === Services Section === */

/* --- Featured Public Speaking --- */
.featured {
  margin-bottom: var(--space-4xl);
}

.featured__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: var(--space-3xl);
  align-items: center;
}

.featured__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-coral);
  background: rgba(224, 133, 110, 0.08);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
}

.featured__title {
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: var(--space-xl);
  color: var(--color-ink);
}

.featured__content p {
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.featured__points {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.featured__points li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-ink);
}

.featured__points svg {
  flex-shrink: 0;
}

/* Featured aside — decorative shape + quote */
.featured__aside {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.featured__shape {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(224, 133, 110, 0.06) 0%, rgba(26, 122, 122, 0.06) 100%);
  border: 2px solid rgba(224, 133, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured__icon {
  width: 80px;
  height: 80px;
}

.featured__quote {
  background: var(--color-cream-deep);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-coral);
  position: relative;
}

.featured__quote p {
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.7;
}

/* Divider */
.services__divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-cream-deep), transparent);
  margin: 0 auto var(--space-4xl);
}

/* --- Services Grid --- */
.services__header {
  margin-bottom: var(--space-3xl);
}

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

/* Service card */
.services__card {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--color-coral);
  transition: transform var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo);
}

.services__card:nth-child(3n+2) {
  border-left-color: var(--color-teal);
}

.services__card:nth-child(3n) {
  border-left-color: var(--color-ink);
}

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

/* Wide cards span 2 columns */
.services__card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-xl);
  align-items: start;
}

/* Card icon */
.services__card-icon {
  width: 48px;
  height: 48px;
  color: var(--color-coral);
  margin-bottom: var(--space-lg);
  flex-shrink: 0;
}

.services__card-icon--teal {
  color: var(--color-teal);
}

.services__card-icon--ink {
  color: var(--color-ink);
}

.services__card-icon svg {
  width: 100%;
  height: 100%;
}

.services__card--wide .services__card-icon {
  margin-bottom: 0;
}

/* Card text */
.services__card-title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-ink);
}

.services__card-text {
  font-size: var(--text-sm);
  color: var(--color-text-soft);
  line-height: 1.7;
}

/* === About Section === */

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: center;
}

/* Photo with frame-breaking effect */
.about__photo-wrap {
  position: relative;
}

.about__photo {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-xl);
  /* Break frame — extend beyond section bounds */
  margin-left: -2rem;
}

/* Certification badges overlapping photo bottom */
.about__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  position: relative;
  z-index: 3;
  margin-top: -2rem;
  margin-left: 1rem;
}

.about__badge-img {
  height: 72px;
  width: auto;
  border-radius: var(--radius-sm);
  background: rgba(250, 246, 240, 0.9);
  padding: 4px;
}

/* Content */
.about__content .section-label {
  color: var(--color-coral-glow);
}

.about__content .section-title {
  color: var(--color-cream);
}

.about__content p {
  color: rgba(250, 246, 240, 0.75);
  margin-bottom: var(--space-md);
}

/* === Methods Section === */

.methods__header {
  margin-bottom: var(--space-3xl);
}

.methods__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

/* Method card base */
.methods__card {
  padding: var(--space-3xl);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

/* Accent bar */
.methods__card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.methods__card-accent--teal {
  background: linear-gradient(to right, var(--color-teal), var(--color-teal-light));
}

.methods__card-accent--coral {
  background: linear-gradient(to right, var(--color-coral), var(--color-coral-glow));
}

/* Light card (5-PATH) */
.methods__card--light {
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.methods__card--light .methods__card-title {
  color: var(--color-ink);
}

.methods__card--light .methods__card-desc {
  color: var(--color-text);
}

.methods__card--light .methods__benefits li {
  color: var(--color-text);
}

.methods__card--light .methods__benefits li::before {
  color: var(--color-teal);
}

/* Dark card (7th Path) */
.methods__card--dark {
  background: var(--color-ink);
  position: relative;
}

.methods__card--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--noise);
  background-repeat: repeat;
  pointer-events: none;
  border-radius: var(--radius-xl);
}

.methods__card--dark .methods__card-title {
  color: var(--color-cream);
}

.methods__card--dark .methods__card-desc {
  color: rgba(250, 246, 240, 0.7);
}

.methods__card--dark .methods__benefits li {
  color: rgba(250, 246, 240, 0.8);
}

.methods__card--dark .methods__benefits li::before {
  color: var(--color-coral);
}

/* Card content */
.methods__card-title {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-lg);
}

.methods__card-desc {
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.methods__benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.methods__benefits li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
}

.methods__benefits li::before {
  content: '→';
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* === Why Online Section === */

.online__header {
  margin-bottom: var(--space-3xl);
}

.online__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl) var(--space-3xl);
  counter-reset: online-counter;
}

.online__item {
  counter-increment: online-counter;
  position: relative;
  padding-left: 0;
}

.online__item::before {
  content: counter(online-counter, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-coral);
  opacity: 0.2;
  line-height: 1;
  display: block;
  margin-bottom: var(--space-sm);
}

.online__item-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-sm);
}

.online__item-text {
  font-size: var(--text-base);
  color: var(--color-text-soft);
  line-height: 1.7;
}

/* === Testimonials Section === */

.testimonials__header {
  margin-bottom: var(--space-3xl);
}

.testimonials__header .section-title {
  color: var(--color-cream);
  margin-left: auto;
  margin-right: auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: start;
}

/* Card */
.testimonials__card {
  background: var(--color-ink-light);
  border: 1px solid rgba(250, 246, 240, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  position: relative;
}

/* Large decorative quotation mark */
.testimonials__card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: var(--color-coral);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
  pointer-events: none;
}

/* Elevated center card */
.testimonials__card--elevated {
  transform: translateY(-24px);
  background: linear-gradient(135deg, var(--color-ink-light) 0%, rgba(26, 122, 122, 0.08) 100%);
  border-color: rgba(26, 122, 122, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonials__quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: var(--text-base);
  color: rgba(250, 246, 240, 0.85);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.testimonials__cite {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-coral-glow);
  display: block;
  position: relative;
  z-index: 1;
}

/* === FAQ Section === */

.faq__header {
  margin-bottom: var(--space-3xl);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--color-cream-deep);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-cream-deep);
}

/* Question button */
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-xl) 0;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-ink);
  text-align: left;
  cursor: pointer;
  border-left: 3px solid transparent;
  padding-left: var(--space-lg);
  transition: border-color var(--duration-normal) var(--ease-out-expo),
              color var(--duration-fast) ease;
}

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

/* Active state — coral left border */
.faq__item--active .faq__question {
  border-left-color: var(--color-coral);
  color: var(--color-coral);
}

/* Chevron */
.faq__chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-text-soft);
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.faq__item--active .faq__chevron {
  transform: rotate(180deg);
  color: var(--color-coral);
}

/* Answer — smooth expand */
.faq__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--duration-reveal) var(--ease-out-expo),
              opacity var(--duration-normal) ease;
}

.faq__item--active .faq__answer {
  max-height: 300px;
  opacity: 1;
}

.faq__answer p {
  padding: 0 0 var(--space-xl) var(--space-lg);
  color: var(--color-text-soft);
  line-height: 1.8;
  max-width: 680px;
}

/* === Contact Section === */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-4xl);
  align-items: start;
}

/* Info side */
.contact__info .section-title {
  color: var(--color-cream);
}

.contact__lead {
  font-size: var(--text-lg);
  color: rgba(250, 246, 240, 0.7);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.contact__methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact__method {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact__method-icon {
  width: 24px;
  height: 24px;
  color: var(--color-coral-glow);
  flex-shrink: 0;
}

.contact__method-label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 246, 240, 0.5);
  margin-bottom: 2px;
}

.contact__method-value {
  font-size: var(--text-base);
  color: var(--color-cream);
  transition: color var(--duration-fast) ease;
}

.contact__method-value:hover {
  color: var(--color-coral-glow);
}

/* Form card */
.contact__form-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

/* Form fields */
.contact__field {
  margin-bottom: var(--space-xl);
}

.contact__label {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-soft);
  margin-bottom: var(--space-sm);
}

.contact__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-text-soft);
  opacity: 0.7;
}

.contact__input {
  width: 100%;
  padding: 0.875rem 0;
  font-size: var(--text-base);
  color: var(--color-ink);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--color-cream-deep);
  transition: border-color var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo);
}

.contact__input::placeholder {
  color: var(--color-text-soft);
  opacity: 0.5;
}

.contact__input:focus {
  outline: none;
  border-bottom-color: var(--color-coral);
  box-shadow: 0 2px 0 0 var(--color-coral);
}

/* Error state */
.contact__input--error {
  border-bottom-color: #e53e3e;
}

.contact__error {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: #e53e3e;
  min-height: 1.25rem;
  margin-top: var(--space-xs);
}

.contact__textarea {
  resize: vertical;
  min-height: 100px;
  border: 2px solid var(--color-cream-deep);
  border-radius: var(--radius-sm);
  padding: 0.875rem;
  margin-top: var(--space-xs);
}

.contact__textarea:focus {
  border-color: var(--color-coral);
  box-shadow: 0 0 0 3px rgba(224, 133, 110, 0.1);
}

/* Submit button */
.contact__submit {
  width: 100%;
  margin-top: var(--space-md);
  padding: 1rem 2rem;
  font-size: var(--text-base);
}

.contact__submit--loading {
  opacity: 0.7;
  pointer-events: none;
}

.contact__submit--loading .contact__submit-text {
  display: none;
}

.contact__submit--loading .contact__submit-spinner {
  display: inline !important;
}

/* Honeypot — hidden from real users */
.contact__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Success message */
.contact__success {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.contact__success-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-lg);
}

.contact__form-card .contact__success-title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: #0A2035;
  margin-bottom: var(--space-sm);
}

.contact__form-card .contact__success-text {
  font-size: var(--text-lg);
  color: #4A5568;
  line-height: 1.7;
}

/* General error banner */
.contact__general-error {
  background: #fff5f5;
  color: #c53030;
  border: 1px solid #feb2b2;
  border-radius: var(--radius-sm);
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-sm);
  margin-bottom: var(--space-xl);
}

/* === Footer === */

.footer {
  padding-bottom: var(--space-2xl);
}

.footer__separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-coral), transparent);
  opacity: 0.3;
  margin-bottom: var(--space-3xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

/* Brand */
.footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: var(--space-md);
  opacity: 0.8;
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(250, 246, 240, 0.5);
  line-height: 1.7;
}

/* Links */
.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(250, 246, 240, 0.6);
  transition: color var(--duration-fast) ease;
}

.footer__links a:hover {
  color: var(--color-coral-glow);
}

/* Contact */
.footer__contact p {
  font-size: var(--text-sm);
  color: rgba(250, 246, 240, 0.5);
  margin-bottom: var(--space-xs);
  line-height: 1.6;
}

.footer__contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__contact-links a {
  font-size: var(--text-sm);
  color: rgba(250, 246, 240, 0.6);
  transition: color var(--duration-fast) ease;
}

.footer__contact-links a:hover {
  color: var(--color-coral-glow);
}

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(250, 246, 240, 0.08);
  padding-top: var(--space-xl);
  text-align: center;
}

.footer__bottom p {
  font-size: var(--text-xs);
  color: rgba(250, 246, 240, 0.35);
}

/* === Animations & Scroll Reveal === */

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- Scroll reveal: initial hidden states --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-reveal) var(--ease-out-expo),
              transform var(--duration-reveal) var(--ease-out-expo);
}

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

/* Hero elements — separate orchestration */
[data-reveal="hero"] {
  opacity: 0;
  transform: translateY(20px);
}

/* --- Revealed state --- */
[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* --- Stagger delays via data-reveal-delay --- */
[data-reveal-delay="0"] { transition-delay: 0ms; }
[data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal-delay="3"] { transition-delay: 240ms; }
[data-reveal-delay="4"] { transition-delay: 320ms; }
[data-reveal-delay="5"] { transition-delay: 400ms; }
[data-reveal-delay="6"] { transition-delay: 480ms; }

/* --- Hero stagger (order-based, for page load) --- */
[data-reveal="hero"][data-reveal-order="1"].revealed { transition-delay: 0ms; }
[data-reveal="hero"][data-reveal-order="2"].revealed { transition-delay: 200ms; }
[data-reveal="hero"][data-reveal-order="3"].revealed { transition-delay: 400ms; }
[data-reveal="hero"][data-reveal-order="4"].revealed { transition-delay: 700ms; }
[data-reveal="hero"][data-reveal-order="5"].revealed { transition-delay: 1000ms; }
[data-reveal="hero"][data-reveal-order="6"].revealed { transition-delay: 1300ms; }

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__scroll-line {
    animation: none;
  }

  .hero__logo-glow::before {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* === Responsive — All Media Queries === */

/* ---- Tablet: ≤ 1024px ---- */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
  }

  .featured__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

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

  .services__card--wide {
    grid-column: span 2;
  }

  .about__grid {
    gap: var(--space-2xl);
  }

  .contact__grid {
    gap: var(--space-2xl);
  }

  .footer__grid {
    gap: var(--space-2xl);
  }
}

/* ---- Mobile landscape / small tablet: ≤ 768px ---- */
@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  /* --- Nav mobile --- */
  .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--color-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-normal) var(--ease-out-expo),
                visibility var(--duration-normal) ease;
    z-index: 5;
  }

  .nav__menu--open {
    opacity: 1;
    visibility: visible;
  }

  /* When menu is open, make nav bar dark too (hide cream background) */
  .nav.nav--scrolled.nav--menu-open,
  .nav.nav--menu-open {
    background-color: var(--color-ink) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }

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

  .nav__link {
    font-size: var(--text-xl);
    color: var(--color-cream);
  }

  /* Override scrolled dark text when menu is open */
  .nav--menu-open .nav__link,
  .nav--menu-open.nav--scrolled .nav__link {
    color: var(--color-cream) !important;
  }

  .nav--menu-open .nav__link:hover,
  .nav--menu-open.nav--scrolled .nav__link:hover,
  .nav--menu-open .nav__link--active,
  .nav--menu-open.nav--scrolled .nav__link--active {
    color: var(--color-white) !important;
  }

  /* Staggered link reveals */
  .nav__menu--open .nav__item {
    animation: fadeInUp var(--duration-reveal) var(--ease-out-expo) both;
  }
  .nav__menu--open .nav__item:nth-child(1) { animation-delay: 80ms; }
  .nav__menu--open .nav__item:nth-child(2) { animation-delay: 160ms; }
  .nav__menu--open .nav__item:nth-child(3) { animation-delay: 240ms; }
  .nav__menu--open .nav__item:nth-child(4) { animation-delay: 320ms; }
  .nav__menu--open .nav__item:nth-child(5) { animation-delay: 400ms; }

  .nav__toggle {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  /* --- Hero --- */
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-2xl);
  }

  .hero__content {
    order: 2;
  }

  .hero__visual {
    order: 1;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__logo {
    width: clamp(160px, 40vw, 240px);
  }

  /* --- Featured --- */
  .featured__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .featured__aside {
    order: -1;
  }

  .featured__shape {
    width: 140px;
    height: 140px;
  }

  /* --- Services grid --- */
  .services__grid {
    grid-template-columns: 1fr;
  }

  .services__card--wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .services__card--wide .services__card-icon {
    margin-bottom: var(--space-md);
  }

  /* --- About --- */
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .about__photo {
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
  }

  .about__badges {
    justify-content: center;
    margin-left: 0;
  }

  /* --- Methods --- */
  .methods__grid {
    grid-template-columns: 1fr;
  }

  .methods__card {
    padding: var(--space-2xl);
  }

  /* --- Online --- */
  .online__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  /* --- Testimonials --- */
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .testimonials__card--elevated {
    transform: none;
  }

  /* --- Contact --- */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  /* --- Footer --- */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }

  .footer__logo {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---- Small mobile: ≤ 480px ---- */
@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero__ctas .btn {
    width: 100%;
    max-width: 300px;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: var(--text-xs);
  }

  .featured__points li {
    font-size: var(--text-xs);
  }

  .contact__form-card {
    padding: var(--space-xl);
  }

  .testimonials__card {
    padding: var(--space-xl);
  }

  .methods__card {
    padding: var(--space-xl);
  }
}
