/* =========================================================
   The Start Up Ally – Global Stylesheet
   ========================================================= */

/* ---------- Brand Fonts ---------- */
/* Classma – display / headings */
@font-face {
  font-family: "Classma";
  src: url("../assets/fonts/Classma/Classma.otf") format("opentype"),
       url("../assets/fonts/Classma/Classma.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Larken – sub-heading serif */
@font-face {
  font-family: "Larken";
  src: url("../assets/fonts/Larken/Larken Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Larken";
  src: url("../assets/fonts/Larken/Larken Italic.ttf") format("truetype");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Larken";
  src: url("../assets/fonts/Larken/Larken Light.ttf") format("truetype");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Larken";
  src: url("../assets/fonts/Larken/Larken Medium.ttf") format("truetype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Larken";
  src: url("../assets/fonts/Larken/Larken Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* Aktiv Grotesk – body sans */
@font-face {
  font-family: "Aktiv Grotesk";
  src: url("../assets/fonts/Aktiv Grotesk/Aktiv Grotesk Light.ttf") format("truetype");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Aktiv Grotesk";
  src: url("../assets/fonts/Aktiv Grotesk/Aktiv Grotesk Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Aktiv Grotesk";
  src: url("../assets/fonts/Aktiv Grotesk/Aktiv Grotesk Italic.ttf") format("truetype");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Aktiv Grotesk";
  src: url("../assets/fonts/Aktiv Grotesk/Aktiv Grotesk Medium.ttf") format("truetype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Aktiv Grotesk";
  src: url("../assets/fonts/Aktiv Grotesk/Aktiv Grotesk SemiBold.ttf") format("truetype");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Aktiv Grotesk";
  src: url("../assets/fonts/Aktiv Grotesk/Aktiv Grotesk Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  /* Brand colors – primitives */
  --evergreen: #17400D;
  --new-growth: #A8B878;
  --limestone: #EEEBD0;
  --dark-soil: #0B1304;

  /* Brand alpha tokens */
  --evergreen-15: rgba(23, 64, 13, 0.15);
  --evergreen-25: rgba(23, 64, 13, 0.25);
  --evergreen-35: rgba(23, 64, 13, 0.35);
  --limestone-35: rgba(237, 237, 214, 0.35);
  --limestone-70: rgba(237, 237, 214, 0.7);
  --limestone-85: rgba(237, 237, 214, 0.85);

  /* Typography – brand fonts */
  --font-heading: "Classma", Georgia, "Times New Roman", serif;
  --font-sub:     "Larken", Georgia, "Times New Roman", serif;
  --font-body:    "Aktiv Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Fluid type scale (320 → 1280px viewport)
     min applies ≤320; max applies ≥1280; smooth between. */
  --fs-small:   13px;
  --fs-body:    clamp(16px, 0.21vw + 15.3px, 18px);
  --fs-eyebrow: clamp(15px, 0.31vw + 14px, 18px);
  --fs-h3:      clamp(19px, 0.52vw + 17.3px, 24px);
  --fs-lede:    clamp(20px, 0.83vw + 17.3px, 28px);
  --fs-num:     clamp(28px, 1.67vw + 22.7px, 44px);
  --fs-h2:      clamp(32px, 2.5vw + 24px, 56px);
  --fs-h1:      clamp(36px, 2.5vw + 27.6px, 60px);

  /* Fluid spacing */
  --space-section: clamp(56px, 6.67vw + 34.7px, 120px);

  /* Layout */
  --container: 1280px;
  --gutter: 64px;
  --radius: 6px;
  --transition: 0.25s ease;

  /* Motion – light & airy glide */
  --ease-glide: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-drift: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-quick:  280ms;
  --dur-base:   600ms;
  --dur-slow:   1000ms;
}

/* ---------- Page load – body fade-in ---------- */
body {
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
body.is-loaded { opacity: 1; }

/* ---------- Hero image – gentle settle ---------- */
.hero__image img {
  transform: scale(1.04);
  transition: transform 2200ms cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  will-change: transform;
}
body.is-loaded .hero__image img { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  body { opacity: 1 !important; transition: none !important; }
  .hero__image img { transform: none !important; transition: none !important; }
}

/* ---------- Scroll reveal – subtle ---------- */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  will-change: opacity, transform;
  backface-visibility: hidden;
  transition: opacity 1400ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 1400ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Fade-only variant – no vertical slide (avoids jolt on buttons) */
.btn[data-reveal] {
  transform: none;
  transition: opacity 1400ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.btn[data-reveal].is-in {
  transform: none;
}

/* Group reveal – all children animate together when parent enters view */
[data-reveal-group] > * {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  will-change: opacity, transform;
  transition: opacity 1400ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 1400ms cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal-group] > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal-group] > *:nth-child(2) { transition-delay: 160ms; }
[data-reveal-group] > *:nth-child(3) { transition-delay: 320ms; }
[data-reveal-group] > *:nth-child(4) { transition-delay: 480ms; }
[data-reveal-group].is-in > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal-group] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Hover – buttons only, very light ---------- */
@media (hover: hover) {
  .btn {
    transition: background var(--dur-quick) var(--ease-glide),
                color var(--dur-quick) var(--ease-glide),
                transform var(--dur-quick) var(--ease-glide),
                opacity var(--dur-quick) var(--ease-glide);
  }
  .btn:hover {
    transform: translateY(-1px);
  }
}

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

/* ---------- Focus visible ---------- */
:focus-visible {
  outline: 2px solid var(--evergreen);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible {
  outline-offset: 4px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body); /* → Aktiv Grotesk */
  font-weight: 300;
  font-synthesis: none;
  -webkit-font-synthesis: none;
  font-size: var(--fs-body);
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--dark-soil);
  background: var(--limestone);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--evergreen); text-decoration: none; transition: color var(--transition), opacity var(--transition); }
a:hover { opacity: 0.75; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--evergreen);
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0 0 0.5em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-family: var(--font-sub); }

p { margin: 0 0 1em; }

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

/* ---------- Buttons ---------- */
/* Global rule: a CTA button always sits 30px below the element above it */
* + .btn { margin-top: 30px; }

.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  height: 48px;
  padding: 0 24px;
  border-radius: 100px;
  border: 1.5px solid var(--evergreen);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn--primary { background: var(--evergreen); color: var(--limestone); }
.btn--primary:hover { background: var(--dark-soil); color: var(--limestone); opacity: 1; transform: translateY(-1px); }
.btn--sm { padding: 0.65em 1.35em; font-size: 0.85rem; }

/* Hero CTA – per Figma spec */
.btn--hero {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  border-radius: 100px;
  border: 1px solid var(--limestone);
  background: var(--limestone);
  color: #17400D;
  text-align: center;
  font-family: "Aktiv Grotesk", var(--font-body);
  font-size: var(--fs-body);
  font-style: normal;
  font-weight: 500;
  height: 48px;
  line-height: 1;
  padding: 0 24px;
  letter-spacing: 0;
}
.btn--hero:hover { background: transparent; color: var(--limestone); opacity: 1; }

/* Dark (evergreen-fill) hero buttons → invert to limestone on hover */
.intro .btn--hero:hover,
.who__cta .btn--hero:hover,
.how__cta .btn--hero:hover,
.approach .btn--hero:hover,
.about-intro .btn--hero:hover,
.areas__copy .btn--hero:hover,
.packages__cta .btn--hero:hover {
  background: var(--limestone) !important;
  border-color: var(--evergreen) !important;
  color: var(--evergreen) !important;
  opacity: 1;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--limestone);
  height: 80px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background-color 0.25s ease, transform 0.4s ease, opacity 0.4s ease;
}
.site-header.is-scrolled {
  background: rgba(237, 237, 214, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  max-width: none;
  padding: 0 60px 0 0;
}
.site-header__logo { margin-left: 60px; }
.site-header__logo img { height: 30px; width: auto; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 100%;
}
.site-nav li { display: flex; align-items: center; }
.site-nav .nav-home { display: none; }
@media (max-width: 900px) {
  .site-nav .nav-home { display: flex; }
}
.site-nav a {
  font-family: var(--font-heading); /* Classma */
  color: #17400D;
  text-align: right;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.3px;
}
.site-nav .btn--primary {
  height: 40px;
  color: var(--limestone);
  background: var(--evergreen);
  border-color: var(--evergreen);
  text-align: center;
  font-family: var(--font-heading); /* → Classma */
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.3px;
  line-height: 1;
  padding: 0 24px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 48px;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--limestone);
  margin: 5px auto;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  background: var(--evergreen);
  color: var(--limestone);
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 90vh;
  min-height: 520px;
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 19, 4, 0.85) 0%, rgba(11, 19, 4, 0.55) 25%, rgba(11, 19, 4, 0.2) 50%, rgba(11, 19, 4, 0) 75%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: none;
  padding-left: 60px;
  padding-right: var(--gutter);
}
.hero__copy { max-width: 720px; position: relative; z-index: 2; }
.hero h1 {
  margin: 0;
  color: var(--limestone);
  font-family: var(--font-heading); /* → Classma */
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.18;
  max-width: 22ch;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

/* ---------- Intro ---------- */
.intro {
  background: #ffffff;
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 60px;
  position: relative;
}
.intro__image {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 4 / 5;
  justify-self: end;
  overflow: hidden;
  border-radius: 6px;
}
.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intro__copy { max-width: 560px; }
.intro .btn--hero {
  background: var(--evergreen);
  border-color: var(--evergreen);
  color: var(--limestone);
}
.intro .btn--hero:hover {
  background: var(--dark-soil);
  color: var(--limestone);
}
.intro__copy .lede {
  font-family: var(--font-sub); /* → Larken */
  color: var(--evergreen);
  font-size: var(--fs-lede);
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 24px;
}
.intro__copy p {
  font-family: var(--font-body); /* Aktiv Grotesk */
  color: var(--dark-soil);
  font-size: var(--fs-body);
  line-height: 1.6;
  margin: 0 0 24px;
}
.intro__copy p:last-of-type { margin-bottom: 0; }
.intro__vector {
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.intro__image, .intro__copy { position: relative; z-index: 1; }

/* ---------- Section header shared ---------- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-header h2 { margin-bottom: 0.5em; }
.section-header::after {
  content: "";
  display: block;
  width: 60%;
  max-width: 420px;
  height: 1px;
  background: var(--evergreen);
  opacity: 0.25;
  margin: 2rem auto 0;
}

/* ---------- Who This Is For ---------- */
.who {
  background: var(--limestone);
  padding: var(--space-section) 0;
}
.who__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 60px;
}
.who__header { text-align: center; }
.who__header h2 {
  font-family: var(--font-heading); /* Classma */
  color: var(--evergreen);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 16px;
}
.who__header p {
  font-family: var(--font-sub); /* Larken */
  color: var(--evergreen);
  font-size: var(--fs-lede);
  font-weight: 400;
  line-height: 1.25;
  text-wrap: balance;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  margin: 0 auto;
  text-wrap: balance;
}
.who__eyebrow {
  font-family: var(--font-body);
  color: var(--evergreen);
  font-size: var(--fs-eyebrow);
  font-weight: 400;
  text-align: center;
  margin: 48px 0 0;
}
.who__divider {
  width: 100%;
  max-width: 720px;
  margin: 32px auto 0;
  border: 0;
  border-top: 1px solid rgba(23, 64, 13, 0.35);
}
.who__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 32px;
}
.who__card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.who__card img {
  width: 100%;
  max-width: 260px;
  height: 220px;
  object-fit: contain;
  margin-bottom: 8px;
}
.who__card h3 {
  font-family: var(--font-sub); /* Larken */
  color: var(--evergreen);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.who__card p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--dark-soil);
  margin: 0;
  max-width: 36ch;
  text-wrap: balance;
}
.who__cta { text-align: center; margin-top: 30px; }
.who__cta .btn--hero {
  background: var(--evergreen);
  border-color: var(--evergreen);
  color: var(--limestone);
}
.who__cta .btn--hero:hover { background: var(--dark-soil); color: var(--limestone); }

/* ---------- How I Help ---------- */
.how {
  background: #ffffff;
  padding: var(--space-section) 0;
}
.how__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 60px;
}
.how__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.how__header h2 {
  font-family: var(--font-heading);
  color: var(--evergreen);
  font-size: clamp(2.25rem, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 16px;
}
.how__header p {
  font-family: var(--font-sub); /* Larken */
  color: var(--evergreen);
  font-size: var(--fs-lede);
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  text-wrap: balance;
  max-width: 32ch;
}
.how__lede {
  font-family: var(--font-body);
  color: var(--evergreen);
  font-size: var(--fs-body);
  line-height: 1.6;
  text-align: right;
  margin: 0;
  max-width: 420px;
  justify-self: end;
}
.how__divider {
  border: 0;
  border-top: 1px solid rgba(23, 64, 13, 0.35);
  margin: 40px 0 0;
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.how__card {
  padding: 36px 32px;
  border-radius: 8px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 1;
  border: 1px solid transparent;
  box-shadow: 0 2px 12px rgba(11, 19, 4, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
/* Alternating evergreen / cream */
.how__card:nth-child(odd) {
  background: var(--evergreen);
  color: var(--limestone);
  border-color: transparent;
}
.how__card:nth-child(even) {
  background: #F5F2E6;
  color: var(--evergreen);
  border-color: rgba(23, 64, 13, 0.15);
}
.how__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(11, 19, 4, 0.18);
}
.how__num {
  font-family: var(--font-sub); /* Larken */
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 400;
  color: inherit;
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.how__card h3 {
  font-family: var(--font-sub); /* Larken */
  color: inherit;
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 16px;
  text-wrap: balance;
}
.how__card p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: inherit;
  opacity: 0.85;
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.how__cta { text-align: center; margin-top: 40px; }
.how__cta .btn--hero:hover {
  background: var(--dark-soil);
  border-color: var(--dark-soil);
  color: var(--limestone);
}

/* ---------- Approach Quote ---------- */
.approach {
  background: var(--limestone);
  padding: var(--space-section) 0;
}
.approach__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.approach__copy { max-width: 560px; }
.approach__heading {
  font-family: var(--font-heading);
  color: var(--evergreen);
  font-size: clamp(2rem, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 20px;
}
.approach__lede {
  margin: 0 0 20px;
  font-family: var(--font-sub); /* Larken */
  color: var(--evergreen);
  font-size: clamp(1.25rem, 1.9vw, 26px);
  font-weight: 400;
  line-height: 1.3;
}
.approach__fractional-note {
  margin: 0 0 28px;
  color: var(--evergreen);
  font-family: var(--font-body); /* Aktiv Grotesk */
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.9;
}
.hero h1 .h1-comma {
  font-family: var(--font-sub); /* Larken – clearer comma glyph */
}
.approach .btn--hero {
  background: var(--evergreen);
  border-color: var(--evergreen);
  color: var(--limestone);
}
.approach .btn--hero:hover {
  background: var(--dark-soil);
  border-color: var(--dark-soil);
  color: var(--limestone);
}
.approach__image {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 3 / 4;
  justify-self: end;
  overflow: hidden;
  border-radius: 6px;
}
.approach__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Testimonials ---------- */
.testimonials--cream { background: var(--limestone) !important; border-top: 0 !important; }
.testimonials--cream .testimonials__grid { grid-template-columns: 1fr; gap: 0; }
.testimonials--cream .testimonials__grid::before { display: none; }
.testimonials--cream .testimonial blockquote p { max-width: none; }
.testimonials {
  background: #ffffff;
  padding: var(--space-section) 0;
  border-top: 1px solid rgba(23, 64, 13, 0.15);
}
.testimonials__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 60px;
}
.testimonials__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}
.testimonials__header h2 {
  font-family: var(--font-heading); /* Classma */
  color: var(--evergreen);
  font-size: clamp(2.25rem, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.testimonials__icon {
  width: 140px;
  height: auto;
  flex-shrink: 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  position: relative;
}
.testimonials__grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(23, 64, 13, 0.35);
}
.testimonial {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial blockquote { margin: 0 0 32px; }
.testimonial blockquote p {
  font-family: var(--font-body);
  color: var(--dark-soil);
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}
.testimonial figcaption {
  font-family: var(--font-sub); /* Larken */
  font-size: 18px;
  color: var(--evergreen);
  font-weight: 500;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--evergreen);
  color: var(--limestone);
  padding: 80px 0 32px;
}
.site-footer__inner {
  width: 100%;
  max-width: none;
  padding: 0 60px;
}
.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 64px;
}
.site-footer__brand img {
  width: auto;
  height: 220px;
  display: block;
}
.site-footer__brand img.site-footer__brand-mobile { display: none; }
.site-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}
.site-footer__right nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.site-footer__right nav a {
  font-family: var(--font-sub); /* Larken */
  color: var(--limestone);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
.site-footer__right nav a:hover { opacity: 0.8; }
.site-footer__social { display: inline-block; }
.site-footer__social img { height: 28px; width: auto; display: block; }
.site-footer__divider {
  border: 0;
  border-top: 1px solid rgba(237, 237, 214, 0.35);
  margin: 0;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
}
.site-footer__copy,
.site-footer__legal {
  margin: 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(237, 237, 214, 0.7);
}
.site-footer__legal { display: flex; gap: 10px; align-items: center; }
.site-footer__legal a { color: rgba(237, 237, 214, 0.7); }
.site-footer__legal a:hover { color: var(--limestone); opacity: 1; }
.site-footer__credit { display: inline-block; margin-left: 6px; }
.site-footer__credit a { color: rgba(237, 237, 214, 0.7); text-decoration: underline; }
.site-footer__credit a:hover { color: var(--limestone); opacity: 1; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero { height: 80vh; aspect-ratio: auto; min-height: 0; max-height: none; }
  .hero__inner { align-items: flex-end; padding-bottom: 8%; }
  .hero__image img { object-position: 30% center; }
  .hero h1 { font-size: clamp(2rem, 6vw, 44px); max-width: 20ch; }

  /* --- Mobile typographic hierarchy ---
     Classma (display)  → 42px  section h2s
     Larken  (sub)      → 24 lede / 24 quote / 22 card titles
     Aktiv   (body)     → 18 body, 16 eyebrow, 13 footer */
  .who__header h2,
  .how__header h2,
  .testimonials__header h2 { font-size: 42px; line-height: 1.1; margin: 0 0 16px; }
  .approach__heading { font-size: 36px; line-height: 1.1; margin: 0 0 16px; }
  .who__header p { font-size: 24px; line-height: 1.35; margin: 0 0 32px; }
  .how__header p { font-size: 24px; line-height: 1.35; margin: 0; }
  .approach__lede { font-size: 22px; line-height: 1.35; }
  .who__eyebrow { font-size: 16px; letter-spacing: 0.02em; margin: 0 0 8px; }
  .who__card h3,
  .how__card h3 { font-size: 23px; line-height: 1.25; margin: 8px 0 14px; }
  .how__num { font-size: 38px; }
  .who__card p,
  .how__card p,
  .how__lede,
  .testimonial blockquote p { font-size: 18px; line-height: 1.55; }
  .testimonial figcaption,
  .site-footer__right nav a { font-size: 18px; }

  /* --- Tighten Who section spacing on mobile --- */
  .who__card img { height: 140px; max-width: 180px; margin-bottom: 4px; }
  .who__divider { margin-top: 20px; }
  .who__grid { margin-top: 32px; gap: 40px; }

  /* --- Normalise section vertical rhythm on mobile --- */
  .intro,
  .approach { padding: 72px 0; }
  .who,
  .how,
  .testimonials { padding: 72px 0; }
  .site-footer { padding: 64px 0 24px; }
  .section-header { margin-bottom: 2rem; }

  .intro {
    height: auto;
    min-height: 0;
  }
  .intro__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    height: auto;
    padding: 0 var(--gutter);
  }
  .intro__copy .lede { font-size: 26px; line-height: 1.35; margin-bottom: 18px; }
  .intro__copy p { font-size: 18px; line-height: 1.55; }
  .intro__image {
    height: auto;
    aspect-ratio: auto;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
    justify-self: center;
    order: 2;
  }
  .intro__copy { order: 1; }
  .intro__image img { height: auto; width: 100%; margin: 0 auto; }
  .intro__copy { max-width: none; }

  .approach { padding: 60px 0; }
  .approach__inner { grid-template-columns: 1fr; gap: 40px; padding: 0 var(--gutter); }
  .approach__copy { max-width: none; order: 2; }
  .approach__image { justify-self: stretch; max-width: none; order: 1; }
  .site-footer__inner { padding: 0 var(--gutter); text-align: center; }
  .site-footer__top { flex-direction: column; align-items: center; gap: 48px; padding-bottom: 48px; }
  .site-footer__right { align-items: center; }
  .site-footer__right nav ul { align-items: center; }
  .site-footer__brand img.site-footer__brand-desktop { display: none; }
  .site-footer__brand img.site-footer__brand-mobile { display: block; height: auto; width: 100%; max-width: 320px; margin: 0 auto; }
  .site-footer__bottom { flex-direction: column; align-items: center; gap: 12px; text-align: center; }
  .site-footer__legal { justify-content: center; }
  .site-footer__credit { display: block; margin-left: 0; margin-top: 6px; }
  .who__inner { padding: 0 var(--gutter); }
  .who__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .how__inner { padding: 0 var(--gutter); }
  .how__top { grid-template-columns: 1fr; gap: 16px; }
  .how__header p { max-width: none; }
  .how__lede { justify-self: start; text-align: left; max-width: none; }
  .how__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__inner { padding: 0 var(--gutter); }
  .testimonials__grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonials__grid::before { display: none; }
  .testimonials__header { gap: 20px; margin-bottom: 40px; }
  .testimonials__icon { width: 90px; }
  .intro__vector { display: none; }
  .nav-toggle { display: block; }
  .nav-toggle span { background: var(--evergreen); }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--limestone);
    padding: 0 var(--gutter);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition), padding var(--transition);
    border-top: 0;
  }
  .site-nav.is-open { max-height: 460px; padding: 1.75rem var(--gutter); border-top: 1px solid rgba(23, 64, 13, 0.15); }
  .site-nav ul { flex-direction: column; align-items: flex-end; gap: 1.5rem; }
  .site-nav a { font-size: 24px; }
  .site-nav .btn--primary { font-size: 20px; padding: 0 40px; height: 48px; }
  .how__card h3 { white-space: normal; font-size: 20px; }

  .btn--hero,
  .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .site-nav .btn--primary { width: auto; }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}

@media (max-width: 900px) {
  .hero__image img { object-position: 60% center; }
}
@media (max-width: 560px) {
  :root { --gutter: 32px; }
  .hero__image img { object-position: 80% 25%; }
  .how__grid { grid-template-columns: 1fr; }
  .who__grid { grid-template-columns: 1fr; }
  .site-header__logo { margin-left: 32px; }
  .site-header__inner { padding-right: 32px; }
  .hero__inner { padding-left: 32px; padding-right: 32px; }
  .intro__inner,
  .who__inner,
  .how__inner,
  .approach__inner,
  .testimonials__inner,
  .site-footer__inner { padding-left: 32px; padding-right: 32px; }
  .about-intro__inner { grid-template-columns: 1fr; padding: 0 32px; gap: 40px; }
  .creds__inner,
  .contact__inner { padding-left: 32px; padding-right: 32px; }
  .creds__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .page-banner__inner { padding: 0 32px; }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

/* ---------- Page banner (dark green strip) ---------- */
.page-banner {
  background: var(--evergreen);
  color: var(--limestone);
  position: relative;
  overflow: hidden;
}
.page-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 60px;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 220px;
}
.page-banner h1 {
  font-family: var(--font-heading);
  color: var(--limestone);
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.page-banner__vector {
  position: absolute;
  right: 60px; /* aligns with container right edge inside .page-banner__inner */
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
}

/* ---------- About intro ---------- */
.about-intro {
  background: #ffffff;
  padding: var(--space-section) 0;
}
.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 60px;
}
.about-intro__image {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
}
.about-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-intro__copy { max-width: 540px; }
.about-intro__copy h2 {
  font-family: var(--font-sub); /* Larken */
  color: var(--evergreen);
  font-size: clamp(28px, 2.2vw + 18px, 40px);
  font-weight: 400;
  margin: 0 0 20px;
  line-height: 1.2;
}
.about-intro__copy .lede {
  font-family: var(--font-body);
  color: var(--dark-soil);
  font-size: var(--fs-body);
  line-height: 1.6;
  margin: 0 0 20px;
}
.about-intro__copy p {
  font-family: var(--font-body);
  color: var(--dark-soil);
  font-size: var(--fs-body);
  line-height: 1.6;
  margin: 0 0 16px;
}
.about-intro .btn--hero {
  background: var(--evergreen);
  border-color: var(--evergreen);
  color: var(--limestone);
}
.about-intro .btn--hero:hover {
  background: var(--dark-soil);
  color: var(--limestone);
}

/* ---------- Credentials & Expertise ---------- */
.creds {
  background: var(--limestone);
  padding: var(--space-section) 0;
}
.creds__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 60px;
}
.creds__header h2 {
  font-family: var(--font-heading);
  color: var(--evergreen);
  font-size: var(--fs-h2);
  font-weight: 400;
  margin: 0 0 24px;
}
.creds__divider {
  border: 0;
  border-top: 1px solid rgba(23, 64, 13, 0.35);
  margin: 0 0 32px;
}
.creds__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 24px;
  align-items: stretch;
}
.cred-card { grid-column: span 2; }
.cred-card:nth-child(7) { grid-column: 2 / span 2; }
.cred-card:nth-child(8) { grid-column: 4 / span 2; }
.cred-card {
  background: var(--evergreen);
  color: var(--limestone);
  border-radius: 8px;
  padding: 56px 32px 36px;
  min-height: 240px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  box-sizing: border-box;
}
.cred-card__num {
  font-family: var(--font-sub); /* Larken */
  font-size: clamp(36px, 3vw + 14px, 56px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--limestone);
}
.cred-card__num sup {
  font-size: 0.55em;
  vertical-align: super;
  line-height: 0;
}
.cred-card p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--limestone);
  opacity: 0.9;
  margin: 0;
  max-width: 28ch;
}
.cred-card__logo-img {
  height: 90px;
  width: auto;
  max-width: 80%;
  object-fit: contain;
  margin-bottom: 14px;
  filter: brightness(0) saturate(100%) invert(94%) sepia(13%) saturate(353%) hue-rotate(13deg) brightness(98%) contrast(91%);
}
/* Per-logo balancing – different aspect ratios, similar visual weight */
.cred-card--logo:nth-of-type(6) .cred-card__logo-img { height: 80px; }   /* CEDR */
.cred-card--logo:nth-of-type(7) .cred-card__logo-img { height: 110px; }  /* MHFA */
.cred-card--logo:nth-of-type(8) .cred-card__logo-img { height: 70px; }   /* PRINCE2 */

/* ---------- Get In Touch ---------- */
.contact {
  background: #ffffff;
  padding: var(--space-section) 0;
}
.contact__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact__copy h2 {
  font-family: var(--font-heading);
  color: var(--evergreen);
  font-size: var(--fs-h2);
  font-weight: 400;
  margin: 0 0 20px;
}
.contact__copy p {
  font-family: var(--font-sub); /* Larken */
  color: var(--evergreen);
  font-size: var(--fs-lede);
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 12px;
  max-width: 36ch;
  text-wrap: balance;
}
.contact__copy .btn--hero {
  background: var(--limestone);
  border-color: var(--limestone);
  color: var(--evergreen);
  margin-top: 12px;
}
.contact__copy .btn--hero:hover {
  background: var(--evergreen);
  border-color: var(--evergreen);
  color: var(--limestone);
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__field input,
.contact__field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--dark-soil);
  background: var(--limestone);
  border: 1px solid rgba(23, 64, 13, 0.25);
  border-radius: 6px;
  padding: 16px 20px;
  letter-spacing: 0.04em;
  transition: border-color var(--transition);
}
.contact__field textarea {
  resize: vertical;
  min-height: 160px;
}
.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: rgba(23, 64, 13, 0.55);
  letter-spacing: 0.06em;
  font-size: 0.9em;
}
.contact__field input:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--evergreen);
}
.contact__submit {
  align-self: stretch;
  justify-content: center;
  background: var(--evergreen);
  color: var(--limestone);
  border-color: var(--evergreen);
  letter-spacing: 0.08em;
  margin-top: 8px;
}
.contact__submit:hover {
  background: var(--limestone);
  color: var(--evergreen);
  border-color: var(--evergreen);
}
.contact__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.contact__status {
  margin: 4px 0 0;
  min-height: 1.4em;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--evergreen);
}
.contact__status.is-success {
  color: var(--evergreen);
}
.contact__status.is-error {
  color: #a23a2a;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */

/* ---------- Areas Of Support ---------- */
.areas {
  background: #ffffff;
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}
.areas__vector {
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 520px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.areas__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.areas__copy { max-width: 460px; }
.areas__copy h2 {
  font-family: var(--font-heading);
  color: var(--evergreen);
  font-size: var(--fs-h2);
  font-weight: 400;
  margin: 0 0 24px;
}
.areas__copy p {
  font-family: var(--font-sub); /* Larken */
  color: var(--evergreen);
  font-size: var(--fs-lede);
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 20px;
  text-wrap: balance;
}
.areas__copy .btn--hero {
  background: var(--evergreen);
  border-color: var(--evergreen);
  color: var(--limestone);
}
.areas__copy .btn--hero:hover {
  background: var(--dark-soil);
  color: var(--limestone);
}
.areas__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Accordion item */
.area {
  background: var(--limestone);
  border-radius: 12px;
  padding: 22px 28px;
  transition: background var(--transition);
}
.area > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-sub); /* Larken */
  color: var(--evergreen);
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.2;
}
.area > summary::-webkit-details-marker { display: none; }
.area__icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--evergreen);
  border-radius: 50%;
  position: relative;
}
.area__icon::before,
.area__icon::after {
  content: "";
  position: absolute;
  background: var(--evergreen);
  left: 50%;
  top: 50%;
}
.area__icon::before {
  width: 10px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.area__icon::after {
  width: 1.5px;
  height: 10px;
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}
.area[open] .area__icon::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.area__body {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgba(23, 64, 13, 0.25);
}
.area__body p {
  font-family: var(--font-body);
  color: var(--dark-soil);
  font-size: var(--fs-body);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Packages ---------- */
.packages {
  background: var(--limestone);
  padding: var(--space-section) 0;
}
.packages__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 60px;
}
.packages__header h2 {
  font-family: var(--font-heading);
  color: var(--evergreen);
  font-size: var(--fs-h2);
  font-weight: 400;
  margin: 0 0 16px;
}
.packages__header p {
  font-family: var(--font-sub); /* Larken */
  color: var(--evergreen);
  font-size: var(--fs-lede);
  font-weight: 400;
  line-height: 1.25;
  margin: 0;
  max-width: 56ch;
  text-wrap: balance;
}
.packages__divider {
  border: 0;
  border-top: 1px solid rgba(23, 64, 13, 0.35);
  margin: 32px 0;
}
.packages__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.package {
  background: #ffffff;
  border-radius: 8px;
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.package h3 {
  font-family: var(--font-sub); /* Larken */
  color: var(--evergreen);
  font-size: var(--fs-h3);
  font-weight: 500;
  margin: 0 0 16px;
}
.package > hr {
  border: 0;
  border-top: 1px solid rgba(23, 64, 13, 0.35);
  margin: 0 0 20px;
}
.package > p {
  font-family: var(--font-body);
  color: var(--dark-soil);
  font-size: var(--fs-body);
  line-height: 1.6;
  margin: 0 0 20px;
}
.package__price {
  font-family: var(--font-sub); /* Larken */
  color: var(--evergreen);
  font-size: clamp(20px, 1vw + 16px, 26px);
  margin: auto 0 0 auto !important;
  text-align: right;
}
.packages__cta { text-align: center; margin-top: 40px; }
.packages__cta .btn--hero {
  background: var(--evergreen);
  border-color: var(--evergreen);
  color: var(--limestone);
}
.packages__cta .btn--hero:hover {
  background: var(--dark-soil);
  color: var(--limestone);
}

@media (max-width: 900px) {
  .areas__inner { grid-template-columns: 1fr; gap: 40px; padding: 0 32px; }
  .packages__inner { padding: 0 32px; }
  .packages__grid { grid-template-columns: 1fr; }
  .areas__vector { width: 360px; left: -160px; }
}

/* ---------- Mobile: About + Services pages ---------- */
@media (max-width: 900px) {
  /* Banner */
  .page-banner__inner { padding: 56px 32px; min-height: 160px; }
  .page-banner__vector { right: 32px; width: 120px; }
  .page-banner h1 { font-size: clamp(36px, 8vw, 48px); }

  /* About intro */
  .about-intro { padding: 64px 0; }
  .about-intro__inner { grid-template-columns: 1fr; gap: 32px; padding: 0 32px; }
  .about-intro__image { max-width: 100%; aspect-ratio: 4 / 5; }
  .about-intro__copy { max-width: 100%; }

  /* Credentials */
  .creds { padding: 64px 0; }
  .creds__inner { padding: 0 32px; }
  .creds__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .cred-card,
  .cred-card:nth-child(7),
  .cred-card:nth-child(8) { grid-column: auto; padding: 28px 18px; min-height: 180px; }
  .cred-card__num { font-size: clamp(36px, 8vw, 44px); margin-bottom: 10px; }
  .cred-card p { font-size: var(--fs-body); line-height: 1.5; }
  .cred-card__logo-img { max-width: 100px; max-height: 44px; margin-bottom: 10px; }

  /* Contact */
  .contact { padding: 64px 0; }
  .contact__inner { grid-template-columns: 1fr; gap: 32px; padding: 0 32px; }
  .contact__copy p { max-width: 100%; }

  /* Areas Of Support – tightened */
  .areas { padding: 64px 0; }
  .area { padding: 18px 22px; }
  .area > summary { font-size: 23px; }

  /* Packages */
  .packages { padding: 64px 0; }
  .package { padding: 28px 24px 24px; min-height: 0; }
  .package__price { text-align: left; margin: 16px 0 0 !important; }
  .packages__header p { max-width: 100%; }
  .packages__header p br { display: none; }
}

@media (max-width: 560px) {
  .page-banner__inner { padding: 44px 24px; min-height: 140px; }
  .page-banner__vector { width: 90px; right: 24px; }
  .about-intro__inner,
  .contact__inner,
  .creds__inner,
  .areas__inner,
  .packages__inner { padding-left: 24px; padding-right: 24px; }
  .creds__inner { padding: 0 16px; }
  .creds__grid { grid-template-columns: 1fr; gap: 16px; max-width: none; margin: 0; }
  .cred-card,
  .cred-card:nth-child(7),
  .cred-card:nth-child(8) { grid-column: auto; min-height: 220px; padding: 32px 20px; border-radius: 8px; }
  .cred-card__num { font-size: 44px; margin-bottom: 12px; }
  .cred-card p { font-size: var(--fs-body); line-height: 1.5; max-width: none; }
  .area > summary { font-size: 23px; gap: 12px; }
  .package h3 { font-size: 23px; }
}
