/* ==========================================================================
   Mags Jacobs — Instructional Designer / LXD
   Personal brand + portfolio site
   Brand kit: Orange #FF6B35 · Navy #1E3A5F · Teal #0D9488 · Cream #FFFBF5
   Type: Montserrat (headings) + Inter (body). WCAG 2.2 AA. British English.
   Note: pure #FF6B35 fails text contrast, so a deepened orange (#C2410C) is
   used for CTA fills and orange text to keep AA; #FF6B35 stays as the vivid
   accent for shapes, icons, gradients and the logo mark.
   ========================================================================== */

/* ---- Self-hosted fonts (no third-party render-blocking / no Google CDN call) ----
   Latin variable subsets, served first-party from /fonts. font-display: swap so
   text paints immediately in the fallback and swaps when the woff2 arrives. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/montserrat-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- Design tokens (brand kit) ---- */
:root {
  --navy:      #1e3a5f;   /* headings, dark surfaces, trust */
  --navy-2:    #2b5480;   /* navy gradient partner */
  --slate:     #1e293b;   /* body text */
  --muted:     #64748b;   /* secondary text (normal size only) */
  --cream:     #fffbf5;   /* page background (warm) */
  --gray:      #f1f5f9;   /* tinted sections / cards */
  --line:      #e2e8f0;   /* hairlines / borders */

  --orange:      #ff6b35; /* vivid brand accent: mark, icons, gradients */
  --orange-cta:  #c2410c; /* CTA fill + orange text (AA on white/cream) */
  --orange-deep: #9a3208; /* CTA hover */
  --orange-tint: #fff1ea; /* soft orange surface */

  --teal:      #0d9488;   /* secondary accent: icons, gradients */
  --teal-ink:  #0a6e62;   /* teal used as text / outline (AA) */
  --teal-tint: #ccfbf1;   /* soft teal surface */
  --teal-lite: #5eead4;   /* teal accent on navy */

  --white:     #ffffff;

  --maxw: 1080px;
  --radius: 16px;
  --radius-sm: 9px;
  --shadow: 0 1px 2px rgba(30,58,95,.06), 0 10px 30px rgba(30,58,95,.09);
  --shadow-sm: 0 1px 2px rgba(30,58,95,.06), 0 3px 12px rgba(30,58,95,.06);

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head: "Montserrat", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --step-eyebrow: .78rem;
}

/* ---- Reset-ish ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
main { flex: 1 0 auto; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-cta); text-underline-offset: 3px; }
a:hover { color: var(--orange-deep); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.14; font-weight: 700; letter-spacing: -.015em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.35rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); font-weight: 700; }
p { margin: 0 0 1rem; }

/* ---- Accessibility helpers ---- */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--navy); color: #fff; padding: .6rem 1rem;
  border-radius: var(--radius-sm); z-index: 1000; transition: top .15s ease; text-decoration: none;
}
.skip-link:focus { top: 12px; color: #fff; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 3px; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tight { padding-block: clamp(2.2rem, 4vw, 3rem); }
.section--tint { background: var(--gray); }
.section--navy { background: var(--navy); color: #dbe4f0; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section__head { max-width: 46rem; margin-bottom: 2.2rem; }
.section__intro { color: var(--muted); font-size: 1.12rem; }
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  font-size: var(--step-eyebrow); letter-spacing: .13em; text-transform: uppercase;
  color: var(--orange-cta); margin-bottom: .7rem;
}
.section--navy .eyebrow { color: var(--teal-lite); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: .85rem 1.4rem; border-radius: 999px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--orange-cta); color: #fff; }
.btn--primary:hover { background: var(--orange-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal-ink); }
.section--navy .btn--ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.section--navy .btn--ghost:hover { border-color: var(--teal-lite); color: #fff; }

/* ---- Header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(30,58,95,.95); backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.nav__brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: #fff; font-weight: 700; }
.nav__brand strong { font-family: var(--font-head); font-size: 1.12rem; font-weight: 800; letter-spacing: -.01em; }
.nav__brand span { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: #b3c3d6; font-weight: 600; }
.nav__mark {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background-color: var(--orange);
  background-image: url("images/avatar.webp");
  background-size: cover; background-position: center top;
  border: 2px solid #fff; box-shadow: var(--shadow-sm);
  color: transparent; font-size: 0; overflow: hidden;
}
.nav__links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: inline-block; padding: .55rem .7rem; border-radius: var(--radius-sm);
  text-decoration: none; color: #e2e9f2; font-weight: 600; font-size: .98rem; white-space: nowrap;
}
.nav__link:hover { background: rgba(255,255,255,.09); color: #fff; }
.nav__link[aria-current="page"] { color: #fff; }
.nav__link[aria-current="page"]::after { content: ""; display: block; height: 2px; background: var(--orange); border-radius: 2px; margin-top: 3px; }
.nav__cta { margin-left: .4rem; padding: .6rem 1.1rem; color: #fff; }
.nav__cta:hover { color: #fff; }
.nav__cta.nav__link[aria-current="page"] { color: #fff; }
.nav__cta.nav__link[aria-current="page"]::after { display: none; }
.nav__cta.nav__link:hover { background: var(--orange-deep); color: #fff; }
.nav__toggle {
  display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.3);
  background: transparent; border-radius: var(--radius-sm); cursor: pointer; align-items: center; justify-content: center; color: #fff;
}
.nav__toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: absolute; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.12);
    padding: .6rem clamp(1.1rem, 4vw, 2rem) 1.1rem; box-shadow: var(--shadow-sm); display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__link { padding: .8rem .4rem; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .nav__link[aria-current="page"]::after { display: none; }
  .nav__cta { margin: .8rem 0 0; justify-content: center; }
}

/* ---- Hero ---- */
.hero { padding-block: clamp(2.6rem, 6vw, 4.6rem); }
.hero__grid { display: grid; grid-template-columns: 1.35fr .9fr; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: center; }
.hero__lead { font-size: 1.22rem; color: var(--muted); max-width: 34rem; }
.hero__title { margin: .2rem 0 1rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero__proof { margin-top: 1.9rem; font-size: .95rem; color: var(--muted); }
.hero__portrait {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 6px solid #fff; aspect-ratio: 1 / 1; background: var(--orange);
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: 12px; bottom: 12px; background: rgba(30,58,95,.94); color: #fff;
  font-size: .8rem; font-weight: 600; padding: .45rem .8rem; border-radius: 999px;
}
@media (max-width: 780px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__portrait { max-width: 300px; order: -1; }
}

/* ---- Logo strip (experience across) ---- */
.logos { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.logos__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem 2.6rem; padding-block: 2.4rem; }
.logos__label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.logos__row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 1.6rem; list-style: none; margin: 0; padding: 0; }
.logos__chip {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1rem 1.6rem; height: 150px; box-shadow: var(--shadow-sm);
}
.logos__chip img { height: 120px; width: auto; max-width: 340px; object-fit: contain; }
@media (max-width: 560px) { .logos__chip { height: 110px; padding: .8rem 1.1rem; } .logos__chip img { height: 84px; max-width: 220px; } }

/* ---- Pillars / grids ---- */
.grid { display: grid; gap: 1.4rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px) { .grid--3 { grid-template-columns: 1fr; } .grid--2 { grid-template-columns: 1fr; } }

.pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.pillar__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--teal-tint); color: var(--teal-ink); display: grid; place-items: center; margin-bottom: 1rem; }
.pillar__icon svg { width: 24px; height: 24px; }
.pillar h3 { margin: 0 0 .5rem; }
.pillar p { margin: 0; color: var(--muted); font-size: 1rem; }

/* ---- Featured case study ---- */
.featured { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.4rem, 3vw, 2.6rem); align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.featured__media { background: linear-gradient(135deg, var(--navy), var(--navy-2)); color: #fff; padding: clamp(1.6rem, 3vw, 2.6rem); min-height: 100%; }
.featured__media .kicker { color: var(--teal-lite); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; font-size: .76rem; }
.featured__media h3 { color: #fff; font-size: clamp(1.4rem,2.6vw,1.85rem); margin: .5rem 0 .8rem; }
.featured__media p { color: #d3ddec; }
.featured__stat { display: flex; gap: 1.6rem; margin-top: 1.4rem; flex-wrap: wrap; }
.featured__stat b { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--teal-lite); }
.featured__stat span { font-size: .85rem; color: #aebccf; }
.featured__body { padding: clamp(1.4rem, 3vw, 2.4rem) clamp(1.4rem,3vw,2.4rem) clamp(1.4rem,3vw,2.4rem) 0; }
@media (max-width: 820px) {
  .featured { grid-template-columns: 1fr; }
  .featured__body { padding: 0 1.4rem 1.8rem; }
}

/* ---- Case-study cards ---- */
.card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .15s, box-shadow .15s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card__media { aspect-ratio: 16 / 9; position: relative; display: grid; place-items: center; }
.card__media--a { background: linear-gradient(135deg, #1e3a5f, #0d9488); }
.card__media--b { background: linear-gradient(135deg, #0d9488, #0f766e); }
.card__media--c { background: linear-gradient(135deg, #ff6b35, #c2410c); }
.card__media span { color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; letter-spacing: .01em; padding: 0 1rem; text-align: center; }
.card__media--video { background: #000; }
.card__media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.card__body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.card__meta { font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-ink); font-weight: 700; margin-bottom: .5rem; }
.card__title { margin: 0 0 .55rem; font-size: 1.18rem; }
.card__title a { color: var(--navy); text-decoration: none; }
.card__title a:hover { color: var(--orange-cta); text-decoration: underline; }
.card__desc { color: var(--muted); font-size: 1rem; margin: 0 0 1.1rem; }
.card__link { margin-top: auto; font-weight: 600; text-decoration: none; color: var(--orange-cta); display: inline-flex; align-items: center; gap: .35rem; }
.card__link:hover { gap: .55rem; color: var(--orange-deep); }
.card__link::after { content: "→"; }

/* ---- Tags / pills ---- */
.tags { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; padding: 0; margin: .2rem 0 0; }
.tag { font-size: .82rem; font-weight: 600; color: var(--navy); background: var(--gray); border: 1px solid var(--line); border-radius: 999px; padding: .3rem .7rem; }
.section--navy .tag { background: rgba(255,255,255,.08); color: #dbe4f0; border-color: rgba(255,255,255,.18); }

/* ---- Skills ---- */
.skills { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
@media (max-width: 720px) { .skills { grid-template-columns: 1fr; } }
.skill-group { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; }
.skill-group h3 { font-size: 1.08rem; margin: 0 0 .4rem; }
.skill-group p { margin: 0; color: var(--muted); font-size: 1rem; }

/* ---- Approach / AI band ---- */
.approach__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
@media (max-width: 820px) { .approach__grid { grid-template-columns: 1fr; } }
.principle { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-left: 4px solid var(--orange); border-radius: var(--radius); padding: 1.4rem 1.6rem; }
.principle p { margin: 0; font-size: 1.15rem; color: #fff; font-family: var(--font-head); font-weight: 600; letter-spacing: -.01em; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.steps li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.steps b { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--orange); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .95rem; }
.steps span { color: #d3ddec; }

/* ---- CTA band ---- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: .6rem; }
.cta-band p { max-width: 40rem; margin-inline: auto; color: var(--muted); font-size: 1.12rem; }
.cta-band .hero__cta { justify-content: center; }
.section--navy.cta-band p, .section--navy .cta-band p { color: #c6d3e2; }

/* ---- About page ---- */
.lede { font-size: 1.3rem; color: var(--navy); font-family: var(--font-head); font-weight: 600; line-height: 1.4; letter-spacing: -.01em; }
.prose { max-width: 42rem; }
.prose p { color: var(--slate); }
.timeline { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--line); }
.timeline li { position: relative; padding: 0 0 1.7rem 1.7rem; }
.timeline li::before { content: ""; position: absolute; left: -8px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--orange); border: 3px solid var(--cream); }
.timeline__role { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.timeline__org { font-weight: 600; color: var(--slate); }
.timeline__date { font-size: .85rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.timeline p { margin: .4rem 0 0; color: var(--muted); }

.factlist { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.factlist li { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: baseline; }
.factlist svg { width: 18px; height: 18px; color: var(--teal); }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0; }

/* ---- Case study page ---- */
.cs-hero { padding-block: clamp(2.2rem, 5vw, 3.6rem) clamp(1.4rem,3vw,2rem); }
.breadcrumb { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--orange-cta); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.sample-banner {
  display: flex; gap: .7rem; align-items: flex-start;
  background: var(--orange-tint); border: 1px solid #f3c9b3; border-left: 4px solid var(--orange);
  color: #8a3d12; border-radius: var(--radius-sm); padding: .85rem 1.1rem; font-size: .95rem; margin-bottom: 1.6rem;
}
.sample-banner strong { color: #8a3d12; }
.sample-banner svg { width: 20px; height: 20px; flex: none; color: var(--orange-cta); margin-top: 2px; }
.cs-meta { display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem; margin-top: 1.4rem; padding: 1.2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cs-meta div { min-width: 8rem; }
.cs-meta dt { font-size: .76rem; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: .2rem; }
.cs-meta dd { margin: 0; font-weight: 600; color: var(--navy); }
.cs-body { max-width: 46rem; }
.cs-body h2 { margin-top: 2.4rem; }
.cs-body h2:first-child { margin-top: 0; }
.cs-body ul { padding-left: 1.2rem; }
.cs-body li { margin-bottom: .4rem; }
.cs-callout { background: var(--teal-tint); border-radius: var(--radius); padding: 1.3rem 1.5rem; margin: 1.6rem 0; border-left: 4px solid var(--teal); }
.cs-callout p { margin: 0; color: var(--slate); }
.cs-callout strong { color: var(--teal-ink); }
.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.4rem 0; }
@media (max-width: 640px) { .outcomes { grid-template-columns: 1fr; } }
.outcome { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; text-align: center; }
.outcome b { display: block; font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--orange-cta); }
.outcome span { font-size: .92rem; color: var(--muted); }
.placeholder { color: var(--orange-cta); border-bottom: 1px dashed var(--orange-cta); font-style: italic; }
.artefact { background: var(--gray); border: 1px dashed var(--line); border-radius: var(--radius); padding: 1.4rem; text-align: center; color: var(--muted); margin: 1.4rem 0; }
.artefact svg { width: 30px; height: 30px; color: var(--teal); margin-bottom: .5rem; }
.cs-nav { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }

/* ---- Live module demo ---- */
.demo { margin: 1.6rem 0 .6rem; }
.demo-frame { width: 100%; height: 660px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); background: #fff; display: block; }
@media (max-width: 640px) { .demo-frame { height: 520px; } }
.demo-actions { display: flex; gap: .9rem; flex-wrap: wrap; align-items: center; margin-top: 1rem; }
.demo-note { font-size: .9rem; color: var(--muted); }
.card__media--live { background: linear-gradient(135deg, #12233a, #0d9488); }
.badge-live { display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--orange-cta); padding: .25rem .6rem; border-radius: 999px; }
.badge-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #fff; }

/* ---- Employer / sales landing extras ---- */
.value-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 1rem; }
.value-list li { display: grid; grid-template-columns: auto 1fr; gap: .9rem; align-items: start; }
.value-list .tick { width: 28px; height: 28px; border-radius: 50%; background: var(--teal-tint); color: var(--teal-ink); display: grid; place-items: center; flex: none; }
.value-list .tick svg { width: 16px; height: 16px; }
.value-list b { color: var(--navy); font-family: var(--font-head); font-weight: 700; }
.faq { max-width: 46rem; margin-top: 1.4rem; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; margin-bottom: .8rem; padding: 0 1.2rem; }
.faq summary { cursor: pointer; font-family: var(--font-head); font-weight: 700; color: var(--navy); padding: 1rem 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--orange-cta); font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 1rem; margin: 0; color: var(--slate); }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem,4vw,3rem); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.contact-method { display: flex; align-items: center; gap: .9rem; padding: .8rem 0; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--slate); }
.contact-method:last-child { border-bottom: 0; }
.contact-method:hover .contact-method__val { color: var(--orange-cta); text-decoration: underline; }
.contact-method__ico { width: 42px; height: 42px; border-radius: 10px; background: var(--orange-tint); color: var(--orange-cta); display: grid; place-items: center; flex: none; }
.contact-method__ico svg { width: 20px; height: 20px; }
.contact-method__lbl { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.contact-method__val { font-weight: 600; color: var(--navy); }
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }
.form-field input, .form-field textarea {
  width: 100%; padding: .7rem .85rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--slate); background: var(--cream);
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--teal); }
.form-note { font-size: .88rem; color: var(--muted); }

/* ---- Availability chip ---- */
.avail { display: inline-flex; align-items: center; gap: .55rem; background: var(--teal-tint); color: var(--teal-ink); font-weight: 600; font-size: .85rem; padding: .4rem .85rem; border-radius: 999px; margin-bottom: 1rem; }
.avail .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px rgba(13,148,136,.22); flex: none; }

/* ---- Testimonials ---- */
.quotes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
@media (max-width: 820px) { .quotes { grid-template-columns: 1fr; } }
.quote { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow-sm); margin: 0; overflow: hidden; }
.quote__mark { position: absolute; right: 1.2rem; bottom: .4rem; margin: 0; color: var(--orange); font-family: var(--font-head); font-weight: 800; font-size: 3.6rem; line-height: 1; pointer-events: none; }
.quote p { color: var(--slate); font-size: 1.08rem; margin: 0 0 1.1rem; }
.quote__by { position: relative; z-index: 1; }
.quote__by { display: flex; flex-direction: column; }
.quote__by b { color: var(--navy); font-family: var(--font-head); font-weight: 700; }
.quote__by span { color: var(--muted); font-size: .9rem; }
.quote--placeholder { border-style: dashed; background: var(--gray); }
.quote--placeholder p { color: var(--muted); font-style: italic; }

/* ---- Sticky mobile CTA (injected by main.js) ---- */
.sticky-cta {
  position: fixed; left: 50%; bottom: 14px; z-index: 90;
  display: none; align-items: center; gap: .45rem;
  background: var(--orange-cta); color: #fff; font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .8rem 1.8rem; border-radius: 999px; text-decoration: none;
  box-shadow: 0 8px 22px rgba(30,58,95,.28);
  transform: translateX(-50%) translateY(150%); opacity: 0; pointer-events: none;
  transition: transform .28s ease, opacity .28s ease;
}
.sticky-cta::before { content: "\2709"; font-size: 1.05em; }
.sticky-cta.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; pointer-events: auto; }
@media (max-width: 820px) { .sticky-cta { display: inline-flex; } }

/* ---- Footer ---- */
.site-footer { background: var(--navy); color: #c6d3e2; padding-block: 2.8rem 2rem; }
.site-footer a { color: #e8eef5; text-decoration: none; }
.site-footer a:hover { color: var(--teal-lite); }
.footer__grid { display: flex; justify-content: space-between; gap: 1.6rem; flex-wrap: wrap; align-items: flex-start; }
.footer__brand { display: flex; gap: .85rem; align-items: flex-start; }
.footer__mark { width: 44px; height: 44px; border-radius: 50%; flex: none; background-color: var(--orange); background-image: url("images/avatar.webp"); background-size: cover; background-position: center top; border: 2px solid rgba(255,255,255,.55); }
.footer__brand-text { display: block; }
.footer__brand strong { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: #fff; display: block; }
.footer__brand span { font-size: .9rem; color: #9fb1c6; }
.footer__brand .footer__tagline { display: block; margin-top: .5rem; color: var(--teal-lite); font-family: var(--font-head); font-weight: 600; font-size: .95rem; }
.footer__links { display: flex; gap: 1.4rem; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.footer__links a { font-weight: 600; }
.footer__meta { margin-top: 1.8rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .86rem; color: #9fb1c6; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
