/* ============================================================
   HEARTS MATTERS — Masculine Rebuild Concept
   Palette derived from live-site audit: red #B03030, blacks #1B1B1B/#232525/#2B2C2E
   ============================================================ */

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

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  hanging-punctuation: first last;
  scroll-padding-top: 88px;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"], ol[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; font-family: var(--font-display); }
p, li, figcaption { text-wrap: pretty; }

::selection { background: color-mix(in oklab, var(--color-primary) 30%, transparent); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: 4px; }

@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;
  }
}

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

a, button, [role="button"], input, textarea, select {
  transition: color 180ms cubic-bezier(.16,1,.3,1), background 180ms cubic-bezier(.16,1,.3,1),
    border-color 180ms cubic-bezier(.16,1,.3,1), box-shadow 180ms cubic-bezier(.16,1,.3,1), transform 180ms cubic-bezier(.16,1,.3,1);
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--color-primary); color: #fff; padding: 12px 20px;
}
.skip-link:focus { left: 12px; top: 12px; border-radius: 6px; }

/* ---------- Design tokens ---------- */
:root {
  /* Type scale */
  --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.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.75rem);
  --text-hero: clamp(2.75rem, 0.8rem + 6vw, 6rem);

  /* Spacing */
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem; --space-4: 1rem;
  --space-5: 1.25rem; --space-6: 1.5rem; --space-8: 2rem; --space-10: 2.5rem;
  --space-12: 3rem; --space-16: 4rem; --space-20: 5rem; --space-24: 6rem; --space-32: 8rem;

  --radius-sm: 0.25rem; --radius-md: 0.4rem; --radius-lg: 0.6rem; --radius-full: 9999px;

  --font-display: 'Clash Display', 'Satoshi', 'Helvetica Neue', sans-serif;
  --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;

  --content-default: 1200px;
  --content-narrow: 720px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,.35);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.45);
}

:root, [data-theme="light"] {
  --color-bg: #FBFAF9;
  --color-surface: #FFFFFF;
  --color-surface-2: #F4F2F0;
  --color-surface-offset: #EFECE9;
  --color-divider: #E2DEDA;
  --color-border: #D5D0CA;

  --color-text: #1B1B1B;
  --color-text-muted: #5A5A58;
  --color-text-faint: #9B9895;
  --color-text-inverse: #FBFAF9;

  --color-primary: #B03030;
  --color-primary-hover: #8F2626;
  --color-primary-active: #6E1E1E;
  --color-primary-highlight: #EFD6D6;

  --color-ink: #1B1B1B;
  --color-ink-2: #232525;
  --color-ink-3: #2B2C2E;
}

[data-theme="dark"] {
  --color-bg: #141414;
  --color-surface: #1B1B1B;
  --color-surface-2: #201F1F;
  --color-surface-offset: #232525;
  --color-divider: #2E2D2C;
  --color-border: #3A3838;

  --color-text: #ECEAE7;
  --color-text-muted: #A8A5A1;
  --color-text-faint: #706D6A;
  --color-text-inverse: #1B1B1B;

  --color-primary: #C6473F;
  --color-primary-hover: #D9615A;
  --color-primary-active: #E8817B;
  --color-primary-highlight: #3A2222;

  --color-ink: #0E0E0E;
  --color-ink-2: #181818;
  --color-ink-3: #202020;
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--content-default); margin-inline: auto; padding-inline: var(--space-6); }

.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: var(--space-4);
}
.eyebrow--light { color: #E8817B; }

.section-title { font-size: var(--text-xl); font-weight: 600; color: var(--color-text); margin-bottom: var(--space-6); max-width: 20ch; }

.text-accent { color: var(--color-primary); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-sm);
  letter-spacing: 0.02em; text-decoration: none; border-radius: var(--radius-full);
  padding: 0.85em 1.7em; border: 1.5px solid transparent; white-space: nowrap; cursor: pointer;
}
.btn--lg { font-size: var(--text-sm); padding: 1em 2.2em; }
.btn--sm { padding: 0.6em 1.3em; }
.btn--block { width: 100%; }

.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn--outline { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn--outline:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* ---------- Utility bar ---------- */
.utility-bar { background: var(--color-ink-2); position: relative; z-index: 101; }
.utility-bar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-6);
  padding-block: 9px; flex-wrap: wrap;
}
.utility-bar__left, .utility-bar__right { display: flex; align-items: center; gap: var(--space-6); flex-wrap: wrap; }
.utility-bar__item {
  font-size: var(--text-xs); color: rgba(255,255,255,0.68); text-decoration: none; white-space: nowrap;
}
.utility-bar__right .utility-bar__item:hover { color: #E8817B; }

/* ---------- Header ---------- */
:root { --header-h: 88px; }
.header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  margin-bottom: calc(-1 * var(--header-h));
  border-bottom: 1px solid transparent;
  transition: background 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s cubic-bezier(.16,1,.3,1),
    border-color 0.3s cubic-bezier(.16,1,.3,1), transform 0.3s cubic-bezier(.16,1,.3,1);
}
.header--hidden { transform: translateY(-100%); }
.header--scrolled {
  background: color-mix(in oklab, var(--color-ink) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: var(--shadow-md);
}

.header__inner {
  max-width: var(--content-default); margin-inline: auto; padding: var(--space-4) var(--space-6);
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-6);
}

.logo { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; color: #fff; }

.logo__badge {
  display: inline-flex; align-items: center; background: #fff; border-radius: var(--radius-md);
  padding: 6px 10px; box-shadow: var(--shadow-md);
}
.logo__badge img { height: 32px; width: auto; display: block; }
.logo--footer .logo__badge img { height: 28px; }

.nav { display: flex; align-items: center; gap: var(--space-8); }
.nav a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: var(--text-sm); font-weight: 600; }
.nav a:hover { color: #E8817B; }

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

.theme-toggle {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: var(--radius-full);
  color: #fff; border: 1px solid rgba(255,255,255,0.28);
}
.theme-toggle:hover { border-color: var(--color-primary); color: #E8817B; }

.btn--pill-dark {
  background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.25);
}
.btn--pill-dark:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); }
.btn--pill-dark svg { flex-shrink: 0; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column; gap: var(--space-1); padding: var(--space-4) var(--space-6) var(--space-6);
  background: var(--color-ink); border-top: 1px solid rgba(255,255,255,0.1);
  position: absolute; top: 100%; left: 0; right: 0; z-index: 99;
  box-shadow: var(--shadow-lg);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a { padding: var(--space-3) 0; color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 600; }
.nav-mobile a:hover { color: #E8817B; }
.nav-mobile .btn { margin-top: var(--space-2); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 38%; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(14,14,14,0.94) 0%, rgba(14,14,14,0.78) 38%, rgba(14,14,14,0.28) 65%, rgba(14,14,14,0.15) 100%),
              linear-gradient(to top, rgba(14,14,14,0.75) 0%, transparent 40%);
}

.hero__content { position: relative; z-index: 1; max-width: var(--content-default); margin-inline: auto; padding: var(--space-24) var(--space-6) var(--space-16); width: 100%; }

.hero__title { font-size: var(--text-hero); font-weight: 600; color: #fff; max-width: 14ch; margin-bottom: var(--space-6); }
.hero__lead { font-size: var(--text-lg); color: rgba(255,255,255,0.82); max-width: 46ch; margin-bottom: var(--space-8); font-family: var(--font-body); font-weight: 400; }

.hero__actions { display: flex; gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-16); }

.hero__stats { display: flex; gap: var(--space-10); flex-wrap: wrap; }
.hero__stats > div { display: flex; flex-direction: column; }
.hero__stat-num { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; color: #fff; }
.hero__stat-label { font-size: var(--text-xs); color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-top: var(--space-1); }

/* ---------- Intro strip ---------- */
.intro { background: var(--color-ink); padding-block: var(--space-10); }
.intro__grid { display: flex; align-items: center; justify-content: space-between; gap: var(--space-8); flex-wrap: wrap; }
.intro__lead { color: #fff; font-size: var(--text-lg); font-family: var(--font-display); font-weight: 500; max-width: 48ch; }
.intro__badges { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.badge {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: #fff; border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4); white-space: nowrap;
}

/* ---------- Services ---------- */
.services { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); margin-top: var(--space-10); }

.service-card {
  background: var(--color-surface); border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg); padding: var(--space-8); position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: transform 0.3s cubic-bezier(.16,1,.3,1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: var(--color-border); box-shadow: var(--shadow-md); transform: translateY(-3px); }

.service-card__icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--color-ink); color: var(--color-primary); margin-bottom: var(--space-5);
}
.service-card h3 { font-size: var(--text-lg); font-weight: 600; margin-bottom: var(--space-2); color: var(--color-text); }
.service-card p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ---------- Team ---------- */
.team { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); }
.team__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-10); margin-top: var(--space-10); max-width: 720px; margin-inline: auto; }

.team-card { text-align: center; }
.team-card__photo {
  width: 152px; height: 152px; border-radius: 50%; overflow: hidden; margin: 0 auto var(--space-6);
  background: var(--color-ink); box-shadow: var(--shadow-md);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__photo--placeholder { display: grid; place-items: center; border: 2px dashed var(--color-border); background: var(--color-surface-2); box-shadow: none; }
.team-card__photo--placeholder span { font-size: var(--text-xl); font-weight: 700; color: var(--color-primary); letter-spacing: 0.02em; }

.team-card h3 { font-size: var(--text-lg); font-weight: 600; color: var(--color-text); margin-bottom: var(--space-1); }
.team-card__title { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-primary); margin-bottom: var(--space-4); }
.team-card__bio { font-size: var(--text-sm); color: var(--color-text-muted); max-width: 32ch; margin: 0 auto; }
.team-card__bio a { color: var(--color-primary); font-weight: 600; white-space: nowrap; }

/* ---------- Approach ---------- */
.approach { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); background: var(--color-surface-2); }
.approach__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.approach__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: var(--color-ink); }
.approach__media img { width: 100%; height: 100%; object-fit: cover; }
.approach__media.img-fallback { display: grid; place-items: center; }

.approach__text { color: var(--color-text-muted); font-size: var(--text-base); margin-bottom: var(--space-6); max-width: 42ch; }
.approach__list { display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-8); }
.approach__list li { font-size: var(--text-sm); color: var(--color-text-muted); padding-left: var(--space-6); position: relative; }
.approach__list li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 10px; height: 2px; background: var(--color-primary); }
.approach__list strong { color: var(--color-text); font-weight: 700; }

/* ---------- Results ---------- */
.results { position: relative; padding-block: clamp(var(--space-20), 10vw, var(--space-32)); overflow: hidden; }
.results__bg { position: absolute; inset: 0; background: linear-gradient(160deg, var(--color-ink) 0%, var(--color-ink-2) 55%, #3A1E1E 130%); z-index: 0; }
.results__inner { position: relative; z-index: 1; text-align: center; max-width: 820px; }

.pull-quote {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: 500; color: #fff;
  line-height: 1.3; margin-bottom: var(--space-6);
}
.pull-quote__attribution { color: rgba(255,255,255,0.55); font-size: var(--text-sm); margin-bottom: var(--space-16); }

.results__stats { display: flex; justify-content: center; gap: var(--space-16); flex-wrap: wrap; }
.results__stats > div { display: flex; flex-direction: column; align-items: center; }
.results__num { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 600; color: var(--color-primary); }
[data-theme="dark"] .results__num { color: #E8817B; }
.results__label { font-size: var(--text-xs); color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; margin-top: var(--space-2); max-width: 16ch; }

/* ---------- FAQ ---------- */
.faq { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); }
.faq__list { max-width: var(--content-narrow); margin-top: var(--space-8); border-top: 1px solid var(--color-divider); }
.faq__item { border-bottom: 1px solid var(--color-divider); padding-block: var(--space-5); }
.faq__item summary {
  cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: var(--text-base);
  color: var(--color-text); list-style: none; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
}
.faq__item summary::after { content: "+"; font-size: 1.4em; color: var(--color-primary); flex-shrink: 0; transition: transform 0.25s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--color-text-muted); margin-top: var(--space-3); font-size: var(--text-sm); max-width: 60ch; }

/* ---------- CTA ---------- */
.cta { position: relative; padding-block: clamp(var(--space-20), 10vw, var(--space-24)); overflow: hidden; }
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__inner { position: relative; z-index: 1; text-align: center; max-width: 680px; }
.cta__title { font-size: var(--text-2xl); font-weight: 600; color: #fff; margin-bottom: var(--space-5); }
.cta__lead { color: rgba(255,255,255,0.8); font-size: var(--text-base); margin-bottom: var(--space-8); }

/* ---------- Contact ---------- */
.contact { padding-block: clamp(var(--space-16), 8vw, var(--space-24)); background: var(--color-surface-2); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); }
.contact__text { color: var(--color-text-muted); margin-bottom: var(--space-8); max-width: 40ch; }
.contact__details { display: flex; flex-direction: column; gap: var(--space-5); }
.contact__details li { display: flex; flex-direction: column; gap: var(--space-1); }
.contact__details strong { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-primary); font-weight: 700; }
.contact__details span { color: var(--color-text); font-size: var(--text-base); }
.contact__details a { color: var(--color-text); text-decoration: none; }
.contact__details a:hover { color: var(--color-primary); }

.contact__form { background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); padding: var(--space-8); box-shadow: var(--shadow-sm); }
.field { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-5); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); min-width: 0; }
.field-row .field { min-width: 0; }
.field span { font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); }
.field input, .field textarea {
  width: 100%; max-width: 100%; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-3) var(--space-4);
  background: var(--color-bg); color: var(--color-text); font-size: var(--text-base); resize: vertical;
}
.field input:focus, .field textarea:focus { border-color: var(--color-primary); }
.form-success { color: var(--color-primary); font-family: var(--font-display); font-weight: 600; font-size: var(--text-lg); text-align: center; padding: var(--space-8) 0; }

/* ---------- Book a Session modal ---------- */
.booking-modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: var(--space-6); }
.booking-modal[aria-hidden="true"] { display: none; }
.booking-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(2px); }
.booking-modal__dialog {
  position: relative; z-index: 1; width: 100%; max-width: 30rem; max-height: 90vh; overflow-y: auto; overflow-x: hidden; scrollbar-gutter: stable;
  background: var(--color-surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: var(--space-8); animation: booking-modal-in 0.2s ease-out;
}
.booking-modal__close {
  position: absolute; top: var(--space-5); right: var(--space-5); display: grid; place-items: center;
  width: 2rem; height: 2rem; border-radius: var(--radius-full); border: 1px solid var(--color-border);
  background: transparent; color: var(--color-text-muted); cursor: pointer;
}
.booking-modal__close:hover { color: var(--color-text); border-color: var(--color-primary); }
.booking-modal__title { font-size: var(--text-xl); font-weight: 600; color: var(--color-text); margin-bottom: var(--space-3); padding-right: var(--space-10); }
.booking-modal__text { color: var(--color-text-muted); margin-bottom: var(--space-6); max-width: 40ch; }
.booking-modal__form { padding: 0; border: none; box-shadow: none; }
@keyframes booking-modal-in { from { opacity: 0; transform: translateY(8px) scale(0.98); } to { opacity: 1; transform: none; } }
@media (max-width: 640px) {
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer { background: var(--color-ink); color: rgba(255,255,255,0.6); padding-block: var(--space-16) var(--space-10); }
.footer .logo { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-10); align-items: start; }
.footer__brand p { margin-top: var(--space-4); font-size: var(--text-sm); max-width: 32ch; }
.footer__nav { display: flex; flex-direction: column; gap: var(--space-3); }
.footer__nav a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: var(--text-sm); }
.footer__nav a:hover { color: var(--color-primary); }
.footer__meta { font-size: var(--text-xs); text-align: right; }
.footer__meta p { margin-bottom: var(--space-2); }
.footer__note { color: rgba(255,255,255,0.4); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav, .header__actions .btn--sm { display: none; }
  .nav-toggle { display: flex; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; gap: var(--space-12); }
  .approach__grid, .contact__grid { grid-template-columns: 1fr; }
  .approach__media { order: -1; }
  .footer__grid { grid-template-columns: 1fr; text-align: left; gap: var(--space-8); }
  .footer__meta { text-align: left; }
}

@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: var(--space-6); }
  .results__stats { gap: var(--space-8); }
  .header__actions .theme-toggle { display: none; }
}
