/* frasermalyk.com — design system
   Premium independent practitioner. Space Grotesk display / Inter body.
   Accent: Fraser blue dot. Secondary: Skär dark green. Light + dark. */

@font-face {
  font-family: 'Inter Var';
  src: url('/fonts/inter-latin-wght-normal.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk Var';
  src: url('/fonts/space-grotesk-latin-wght-normal.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --font-body: 'Inter Var', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk Var', var(--font-body);

  --bg: #faf9f7;
  --bg-raised: #ffffff;
  --bg-sunken: #f1efeb;
  --ink: #191b1f;
  --ink-soft: #4d5259;
  --ink-faint: #8b9097;
  --line: #e4e1db;
  --accent: #2f5bea;
  --accent-ink: #2450d8;
  --accent-soft: #e8edfd;
  --green: #24443a;
  --green-soft: #e7efeb;

  --radius: 14px;
  --radius-sm: 8px;
  --measure: 66ch;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section: clamp(4rem, 9vw, 7.5rem);
  --shadow: 0 1px 2px rgb(20 22 26 / 0.04), 0 8px 28px rgb(20 22 26 / 0.07);
}

/* Light is the site's design; no automatic dark switching (client preference). */
:root { color-scheme: light; }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
p, ul, ol { margin: 0 0 1.1em; }
p, li { max-width: var(--measure); }
a { color: var(--accent-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
img { max-width: 100%; height: auto; display: block; }
strong { font-weight: 650; }
::selection { background: var(--accent); color: #fff; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.wrap { max-width: 72rem; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section--sunken { background: var(--bg-sunken); }
.section--green { background: var(--green-soft); }

/* The blue dot — brand motif */
.dot { color: var(--accent); }

.kicker {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 1rem;
}
.kicker::before { content: '● '; font-size: 0.55rem; vertical-align: 0.2em; }

.lede { font-size: clamp(1.15rem, 2vw, 1.35rem); line-height: 1.55; color: var(--ink-soft); max-width: 56ch; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.25rem; }
.brand {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(0.7rem, 1.8vw, 1.5rem); flex-wrap: wrap; row-gap: 0.25rem; }
.site-nav a { color: var(--ink-soft); text-decoration: none; font-size: 0.93rem; font-weight: 500; }
.site-nav a:hover, .site-nav a[aria-current='page'] { color: var(--ink); }
.site-nav a[aria-current='page'] { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 6px; }
.site-nav .nav-cta {
  background: var(--accent); color: #fff; font-weight: 600;
  padding: 0.45rem 1rem; border-radius: 999px;
}
.site-nav .nav-cta:hover { background: var(--accent-ink); color: #fff; }
@media (max-width: 47.9rem) {
  .site-header .wrap { flex-wrap: wrap; padding-block: 0.75rem; }
  .site-nav { justify-content: flex-start; width: 100%; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 0.8rem 1.5rem; border-radius: 999px; text-decoration: none;
  border: 1.5px solid transparent; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgb(47 91 234 / 0.3); }
.btn--primary:hover { background: var(--accent-ink); }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink-faint); }
.btn-row { display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; }

/* ---------- hero ---------- */
.hero { padding-block: clamp(3.5rem, 8vw, 6.5rem) var(--section); }
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (min-width: 56rem) { .hero-grid { grid-template-columns: 1.15fr 0.85fr; } }
.hero h1 { margin-bottom: 0.5em; }
.hero-portrait { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/4.4; }

/* Cutout hero — the classic frasermalyk.com treatment: warm yellow panel,
   teal-to-blue sweep curving in from the right, Google Partner badge card.
   Elements animate once on load (fade-in-from-bottom / sweep), then rest. */
.hero-cutout {
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  background: #ffc93f;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: clamp(20rem, 38vw, 30rem);
  box-shadow: var(--shadow);
}
/* The teal sweep */
.hero-cutout::before {
  content: '';
  position: absolute;
  width: 130%; aspect-ratio: 1;
  right: -58%; top: -14%;
  border-radius: 50%;
  background: linear-gradient(195deg, #40e296 10%, #2fb3e6 72%);
  animation: hero-sweep-in 1s ease-out both;
}
.hero-cutout img {
  position: relative; z-index: 1;
  width: min(88%, 27rem);
  height: auto;
  filter: drop-shadow(0 20px 32px rgb(60 45 10 / 0.28));
  animation: hero-rise-in 0.9s ease-out 0.15s both;
}
.partner-badge {
  position: absolute; z-index: 2;
  top: 1.25rem; left: 1.25rem;
  background: #fff;
  border-radius: 12px;
  padding: 0.65rem 1rem;
  box-shadow: 0 6px 20px rgb(60 45 10 / 0.18);
  animation: hero-rise-in 0.8s ease-out 0.45s both;
}
.partner-badge b { display: block; font-family: var(--font-display); font-size: 1.15rem; letter-spacing: -0.01em; color: var(--ink); }
.partner-badge span { display: block; font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.1rem; }
@keyframes hero-rise-in {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hero-sweep-in {
  from { opacity: 0; transform: translateX(12%); }
  to   { opacity: 1; transform: none; }
}

/* ---------- cards ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr)); }
.card {
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem; display: flex; flex-direction: column; gap: 0.4rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card h3 { margin-bottom: 0.2em; }
.card p { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 0.4em; }
.card .card-link { margin-top: auto; font-weight: 600; font-size: 0.95rem; text-decoration: none; }
.card .card-link::after { content: ' →'; }
.card a.card-cover { color: inherit; text-decoration: none; }
.card .tag {
  align-self: flex-start; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--accent-soft); color: var(--accent-ink); border-radius: 999px; padding: 0.25rem 0.7rem; margin-bottom: 0.6rem;
}
.card .tag--green { background: var(--green-soft); color: var(--green); }

/* ---------- proof strip ---------- */
/* Logo tiles: uniform cards normalise optical size across mixed marks */
.logo-tile {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: clamp(10rem, 16vw, 12.5rem); height: 6.5rem;
  padding: 1.1rem 1.5rem;
  background: var(--bg-raised);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.logo-tile:hover { border-color: var(--accent); transform: translateY(-2px); }
.logo-tile img { max-height: 3.6rem; max-width: 100%; width: auto; height: auto; mix-blend-mode: multiply; }

/* Marquee: slow infinite scroll, pauses on hover, edge-faded */
.logo-marquee {
  --logo-gap: 1rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logo-track {
  display: flex; gap: var(--logo-gap);
  width: max-content;
  animation: logo-marquee 38s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes logo-marquee {
  to { transform: translateX(calc(-50% - var(--logo-gap) / 2)); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { width: auto; flex-wrap: wrap; }
  .logo-track > [aria-hidden] { display: none; }
  .logo-marquee { mask-image: none; -webkit-mask-image: none; }
}

/* Static tile grid (testimonials page) */
.logo-grid { display: flex; flex-wrap: wrap; gap: 1rem; }

.stat-row { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(14rem, 100%), 1fr)); }
.stat { border-left: 3px solid var(--accent); padding-left: 1.1rem; }
.stat b { display: block; font-family: var(--font-display); font-size: 1.6rem; letter-spacing: -0.02em; }
.stat span { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- testimonials ---------- */
.quote {
  background: var(--bg-raised); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem; font-size: 1rem;
}
.quote blockquote { margin: 0 0 1rem; font-style: normal; color: var(--ink); }
.quote blockquote::before { content: '“'; color: var(--accent); font-family: var(--font-display); font-size: 2rem; line-height: 0; vertical-align: -0.35em; margin-right: 0.15rem; }
.quote figcaption { color: var(--ink-faint); font-size: 0.9rem; }
.quote figcaption b { color: var(--ink-soft); }

/* ---------- visual post/work tiles (image-led, old-site style) ---------- */
.tile-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 1fr)); }
.post-tile {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--radius); aspect-ratio: 4/3;
  color: #fff; text-decoration: none;
  box-shadow: var(--shadow);
  background: var(--green);
}
.post-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.post-tile:hover img, .post-tile:focus-visible img { transform: scale(1.045); }
.post-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgb(12 14 18 / 0) 38%, rgb(12 14 18 / 0.85) 100%);
}
.post-tile .tile-meta {
  position: absolute; inset: auto 0 0 0; z-index: 1;
  padding: 1.4rem 1.5rem;
}
.post-tile .tile-date {
  display: block; font-family: var(--font-display); font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; margin-bottom: 0.35rem;
}
.post-tile h3 {
  color: #fff; margin: 0; font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.15;
}
.post-tile .tile-chip {
  position: absolute; top: 1rem; left: 1rem; z-index: 1;
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgb(255 255 255 / 0.92); color: var(--ink);
  border-radius: 999px; padding: 0.3rem 0.75rem;
}

/* ---------- case-study split hero: text panel left, feature image right ---------- */
.cs-hero {
  display: grid;
  background: linear-gradient(135deg, var(--accent-soft), var(--bg-sunken) 55%, var(--bg));
  border-bottom: 1px solid var(--line);
}
.cs-hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter);
}
.cs-hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 20ch;
}
.cs-hero-lede {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  max-width: 52ch;
  margin: 0.5rem 0 0;
}
.cs-hero-media { position: relative; min-height: 16rem; }
.cs-hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
@media (min-width: 56rem) {
  .cs-hero { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); min-height: clamp(24rem, 42vw, 32rem); }
  .cs-hero-text { padding-left: max(var(--gutter), calc((100vw - 72rem) / 2 + var(--gutter))); padding-right: clamp(2rem, 4vw, 4rem); }
  .cs-hero-media { min-height: 0; }
}

/* ---------- article hero & editorial touches ---------- */
.article-hero { padding-top: clamp(2.5rem, 5vw, 4rem); }
.article-hero h1 { max-width: 20ch; }
.article-standfirst {
  font-size: clamp(1.1rem, 1.9vw, 1.3rem); line-height: 1.55; color: var(--ink-soft);
  max-width: 52ch; border-left: 3px solid var(--accent); padding-left: 1.1rem; margin-top: 1.25rem;
}
.article-meta {
  display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap;
  margin-top: 1.75rem; color: var(--ink-faint); font-size: 0.92rem;
}
.article-meta img { width: 2.4rem; height: 2.4rem; border-radius: 50%; object-fit: cover; }
.article-meta b { color: var(--ink); font-family: var(--font-display); font-weight: 600; }
.article-meta .sep { opacity: 0.5; }
.article-hero-frame { position: relative; margin-top: 2.5rem; }
.article-hero-frame::before {
  content: '';
  position: absolute; inset: 1.1rem -1.1rem -1.1rem 1.1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent-soft), var(--green-soft));
}
.article-hero-frame img {
  position: relative; width: 100%; border-radius: var(--radius); box-shadow: var(--shadow);
}

/* Editorial prose touches — deliberate, not decorative */
.prose--article > p:first-of-type::first-letter {
  font-family: var(--font-display); font-weight: 700;
  font-size: 3.4em; line-height: 0.82;
  float: left; padding-right: 0.12em; padding-top: 0.06em;
  color: var(--accent);
}
.prose--article h2 { position: relative; padding-left: 1.15rem; }
.prose--article h2::before {
  content: '';
  position: absolute; left: 0; top: 0.42em;
  width: 0.45rem; height: 0.45rem; border-radius: 50%;
  background: var(--accent);
}
.prose--article blockquote {
  border-left: 0; padding: 0;
  margin: 2.25rem 0;
  font-family: var(--font-display); font-size: 1.25rem; line-height: 1.4;
  color: var(--ink);
}
.prose--article blockquote p { max-width: 46ch; }
.prose--article blockquote p::before { content: '“'; color: var(--accent); }
.prose--article blockquote p::after { content: '”'; color: var(--accent); }

.keep-reading { margin-top: 4rem; }
.keep-reading h2 { font-size: 1.5rem; }

/* ---------- photo gallery ---------- */
.gallery { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(min(15rem, 100%), 1fr)); margin-block: 2rem; }
.gallery figure { margin: 0; }
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
.gallery figcaption { font-size: 0.82rem; color: var(--ink-faint); margin-top: 0.45rem; line-height: 1.4; }

/* ---------- Instagram-style minimal grid: square, 3 across, no captions ---------- */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.4rem, 1vw, 0.75rem);
  max-width: 44rem;
  margin-block: 2rem;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-sunken);
}
.ig-tile img, .ig-tile video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.play-badge {
  position: absolute; inset: 0; z-index: 1;
  display: grid; place-items: center;
  background: rgb(10 12 16 / 0.18);
  border: 0; cursor: pointer; padding: 0;
}
.play-badge span {
  display: grid; place-items: center;
  width: 3.4rem; height: 3.4rem;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.92);
  box-shadow: 0 6px 18px rgb(10 12 16 / 0.3);
  transition: transform 0.15s ease;
}
.play-badge:hover span { transform: scale(1.08); }
.play-badge svg { width: 1.2rem; height: 1.2rem; fill: var(--ink); margin-left: 3px; }
.ig-tile video { pointer-events: none; }

/* Reel lightbox: video pops up at its native (portrait) dimensions */
.reel-dialog {
  border: 0; padding: 0; background: transparent;
  max-width: min(92vw, 28rem); width: auto;
}
.reel-dialog::backdrop { background: rgb(10 12 16 / 0.82); }
.reel-dialog video {
  display: block; width: 100%; max-height: 84vh;
  border-radius: var(--radius);
  background: #000;
}
.reel-close {
  position: absolute; top: -0.6rem; right: -0.6rem; z-index: 1;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  border: 0; cursor: pointer; font-size: 1rem;
  background: #fff; color: var(--ink);
  box-shadow: 0 4px 14px rgb(10 12 16 / 0.4);
}

/* ---------- prose (articles / case studies) ---------- */
.prose { max-width: var(--measure); }
.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.8em; }
.prose img { border-radius: var(--radius); box-shadow: var(--shadow); margin-block: 1.5rem; }
.prose blockquote { border-left: 3px solid var(--accent); margin: 1.5rem 0; padding: 0.25rem 0 0.25rem 1.25rem; color: var(--ink-soft); }
.prose table { border-collapse: collapse; width: 100%; font-size: 0.95rem; display: block; overflow-x: auto; }
.prose th, .prose td { border: 1px solid var(--line); padding: 0.55rem 0.8rem; text-align: left; }
.prose th { background: var(--bg-sunken); font-family: var(--font-display); font-weight: 600; }
.prose code { background: var(--bg-sunken); border-radius: 4px; padding: 0.1em 0.35em; font-size: 0.92em; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

.meta-line { color: var(--ink-faint); font-size: 0.92rem; margin-bottom: 2rem; }
.draft-banner {
  background: #fff3cd; color: #664d03; border: 1px solid #ffe69c; border-radius: var(--radius-sm);
  padding: 0.75rem 1.1rem; font-size: 0.95rem; margin-bottom: 2rem; max-width: var(--measure);
}

/* ---------- author box ---------- */
.author-box {
  display: flex; gap: 1.25rem; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem;
  background: var(--bg-raised); margin-top: 3rem; max-width: var(--measure);
}
.author-box img { width: 4.5rem; height: 4.5rem; border-radius: 50%; object-fit: cover; }
.author-box p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }
.author-box b { font-family: var(--font-display); }

/* ---------- process / numbered ---------- */
.steps { counter-reset: step; display: grid; gap: 1rem; padding: 0; margin: 0; list-style: none; }
@media (min-width: 48rem) { .steps { grid-template-columns: repeat(5, 1fr); } }
.steps li { counter-increment: step; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--font-display); font-weight: 700; color: var(--accent);
  font-size: 0.95rem; margin-bottom: 0.3rem;
}
.steps b { font-family: var(--font-display); display: block; margin-bottom: 0.2rem; }
.steps p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ---------- FAQ ---------- */
.faq details { border-bottom: 1px solid var(--line); padding-block: 1rem; max-width: var(--measure); }
.faq summary { font-family: var(--font-display); font-weight: 600; cursor: pointer; font-size: 1.05rem; }
.faq details p { margin-top: 0.75rem; color: var(--ink-soft); }

/* ---------- forms ---------- */
.form-grid { display: grid; gap: 1rem; max-width: 38rem; }
label { font-weight: 600; font-size: 0.95rem; display: block; margin-bottom: 0.35rem; font-family: var(--font-display); }
input, textarea, select {
  width: 100%; font: inherit; color: var(--ink); background: var(--bg-raised);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 0.7rem 0.9rem;
}
input:focus, textarea:focus { border-color: var(--accent); outline: none; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: 3rem; margin-top: var(--section); font-size: 0.92rem; color: var(--ink-soft); }
.site-footer .wrap { display: grid; gap: 2rem; }
@media (min-width: 48rem) { .site-footer .wrap { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer a { color: var(--ink-soft); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.site-footer .brand { font-size: 1rem; }

/* ---------- cta band ---------- */
.cta-band { background: var(--green); color: #f2f5f3; border-radius: var(--radius); padding: clamp(2rem, 5vw, 3.5rem); }
.cta-band .btn--ghost { border-color: color-mix(in srgb, #ffffff 45%, transparent); color: #f2f5f3; }
.cta-band .btn--ghost:hover { border-color: #ffffff; }
.cta-band h2 { color: inherit; }
.cta-band p { color: color-mix(in srgb, currentColor 75%, transparent); }

.breadcrumbs { font-size: 0.88rem; color: var(--ink-faint); margin-bottom: 1.5rem; }
.breadcrumbs a { color: var(--ink-faint); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff; padding: 0.5rem 1rem; z-index: 100; }
.skip-link:focus { left: 0.5rem; top: 0.5rem; }
