/* Matt Young - evidence-based redesign
   Palette rationale (from the ScienceSays insight bank):
   - INDIGO/BLUE as the anchor: blue signals competence & trustworthiness - the
     single most important read for a coach and for corporate buyers.
   - A touch of purple in the indigo: purple/black signals sophistication.
   - WARM ROSE as the energy accent: warm colours drive emotion for B2C
     (performers); rose reads warm + a little sophisticated, and is clearly NOT
     the competitor's orange.
   - TEAL as a fresh third colour: cool tones suit B2B, and using a RICH VARIETY
     of colours (not one or two) lifts positive engagement.
   - GOLD used sparingly to make numbers/ratings pop.
   Rounded, soft type + curved buttons + an upward "smile" line all test well
   for fun/hedonic brands. */

:root {
  --cream: #FAF6EF;
  --cream-2: #F3ECE0;
  --card: #FFFFFF;

  --ink: #211E3B;          /* deep indigo-charcoal */
  --ink-soft: #565274;

  --indigo: #433D9E;       /* competent / trustworthy anchor */
  --indigo-dark: #322C86;
  --indigo-tintbg: #ECEBFA;

  --rose: #E24A6E;         /* warm energy accent (B2C) */
  --rose-dark: #C6395B;
  --rose-tintbg: #FCE6EC;

  --teal: #14998A;         /* fresh third colour (B2B/variety) */
  --teal-dark: #0E7F73;
  --teal-tintbg: #E1F3F0;

  --gold: #F2B23E;         /* highlight numbers / stars only */

  --line: #E7DECF;
  --shadow: 0 14px 34px rgba(43, 33, 74, 0.12);
  --shadow-sm: 0 5px 16px rgba(43, 33, 74, 0.09);
  --radius: 20px;
  --radius-lg: 32px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1.1em; }

a { color: var(--indigo-dark); text-underline-offset: 3px; }
a:hover { color: var(--indigo); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* handwritten accent - used sparingly for a human touch */
.hand { font-family: "Caveat", cursive; font-weight: 600; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 239, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand {
  font-family: "Fraunces", serif; font-weight: 600; font-size: 1.32rem;
  color: var(--ink); text-decoration: none; display: inline-flex; flex-direction: column; line-height: 1;
}
/* upward "smile" line under the wordmark (tests well for fun brands) */
.brand .smile {
  display: block; height: 8px; margin-top: 3px;
  background: no-repeat center/contain
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12'><path d='M2 4 C 40 14, 80 14, 118 4' fill='none' stroke='%23E24A6E' stroke-width='3.5' stroke-linecap='round'/></svg>");
}
.nav-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.nav-links a {
  color: var(--ink-soft); text-decoration: none; font-weight: 700; font-size: 0.98rem;
  padding: 8px 12px; border-radius: 12px;
}
.nav-links a:hover { background: var(--cream-2); color: var(--ink); }
.nav-links a.active { color: var(--indigo); }
.nav-toggle { display: none; }

/* ---------- Buttons (curved corners → more clicks) ---------- */
.btn {
  display: inline-block; font-family: "Nunito", sans-serif; font-weight: 800;
  font-size: 1rem; padding: 14px 26px; border-radius: 999px; text-decoration: none;
  cursor: pointer; border: 2px solid transparent; transition: transform .12s ease, box-shadow .12s ease;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--rose); color: #fff; box-shadow: var(--shadow-sm); }      /* warm = action / B2C */
.btn-primary:hover { background: var(--rose-dark); color: #fff; }
.btn-indigo { background: var(--indigo); color: #fff; box-shadow: var(--shadow-sm); }      /* competent = trust / B2B */
.btn-indigo:hover { background: var(--indigo-dark); color: #fff; }
.btn-teal { background: var(--teal); color: #fff; box-shadow: var(--shadow-sm); }
.btn-teal:hover { background: var(--teal-dark); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.eyebrow {
  display: inline-block; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 0.8rem; color: var(--indigo); background: var(--indigo-tintbg); padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.rose, .eyebrow.coral { color: var(--rose-dark); background: var(--rose-tintbg); }
.eyebrow.teal { color: var(--teal-dark); background: var(--teal-tintbg); }
.lead { font-size: 1.22rem; color: var(--ink-soft); max-width: 640px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 60px; position: relative; overflow: hidden; }
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { max-width: 16ch; }
.hero .lead { margin-top: 8px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; align-items: center; }
.hero-note { font-size: 0.98rem; color: var(--ink-soft); margin-top: 14px; }
.blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: 0.5; z-index: 1; }
.blob-1 { width: 340px; height: 340px; background: #DCD8FA; top: -80px; right: -60px; }
.blob-2 { width: 240px; height: 240px; background: #CFEDE7; bottom: -70px; left: -50px; }

/* ---------- Credibility stat bar (numbers in LARGE font) ---------- */
.statbar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 20px; box-shadow: var(--shadow-sm); margin-top: 8px;
}
.stat { text-align: center; padding: 4px 8px; }
.stat .n { font-family: "Fraunces", serif; font-weight: 700; font-size: 2.3rem; line-height: 1; color: var(--indigo); }
.stat .n .u { color: var(--rose); }
.stat .l { font-size: 0.9rem; color: var(--ink-soft); margin-top: 8px; display: block; line-height: 1.35; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }

/* ---------- Path cards ---------- */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.path-card {
  background: var(--card); border-radius: var(--radius-lg); padding: 38px 34px;
  box-shadow: var(--shadow); border: 1px solid var(--line); display: flex; flex-direction: column;
}
.path-card .emoji { font-size: 2.4rem; margin-bottom: 6px; }
.path-card h3 { font-size: 1.7rem; }
.path-card p { color: var(--ink-soft); }
.path-card .btn { margin-top: auto; align-self: flex-start; }
.path-card.perf { border-top: 6px solid var(--rose); }
.path-card.corp { border-top: 6px solid var(--teal); }

/* ---------- Feature grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.feature .ic { font-size: 1.8rem; margin-bottom: 8px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 6px; }
.feature p { color: var(--ink-soft); font-size: 0.98rem; margin: 0; }

/* ---------- Testimonials ---------- */
.tsection { background: var(--cream-2); }
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.quote-grid.one { grid-template-columns: 1fr; max-width: 780px; margin: 0 auto; }
blockquote.quote {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 30px; margin: 0; box-shadow: var(--shadow-sm); position: relative;
}
blockquote.quote::before {
  content: "\201C"; font-family: "Fraunces", serif; font-size: 3.4rem; color: var(--rose);
  position: absolute; top: 6px; left: 18px; line-height: 1; opacity: 0.32;
}
blockquote.quote p { font-size: 1.05rem; margin: 8px 0 14px; position: relative; }
blockquote.quote .cite { font-weight: 800; color: var(--ink); font-size: 0.95rem; }
blockquote.quote .cite span { color: var(--ink-soft); font-weight: 600; }
.quote-featured p { font-size: 1.2rem; line-height: 1.55; }

/* expert-endorsement badge (expert voices help for hard-to-judge services) */
.expert-badge {
  display: inline-flex; align-items: center; gap: 7px; font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--indigo);
  background: var(--indigo-tintbg); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
blockquote.quote.expert { border-color: #CFccF3; }

/* Testimonials page groups */
.tgroup { margin-bottom: 8px; }
.tgroup > h2 { text-align: center; margin-bottom: 6px; }
.tgroup > .sub { text-align: center; color: var(--ink-soft); margin-bottom: 30px; }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split .media {
  background: linear-gradient(135deg, #DCD8FA, #CFEDE7);
  border-radius: var(--radius-lg); min-height: 300px; display: flex; align-items: center;
  justify-content: center; color: var(--ink); font-family: "Fraunces", serif; font-size: 1.2rem;
  box-shadow: var(--shadow); text-align: center; padding: 30px;
}

/* photo placeholder - sized/placed per the "smiling photo near CTA" insight */
.photo-ph {
  border-radius: var(--radius-lg); min-height: 320px; box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--indigo-tintbg), var(--rose-tintbg));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--ink-soft); padding: 24px; border: 2px dashed #C9C2E8;
}
.photo-ph .big { font-size: 2.4rem; margin-bottom: 8px; }

/* ---------- List with ticks ---------- */
.ticks { list-style: none; padding: 0; margin: 0 0 1.4em; }
.ticks li { position: relative; padding-left: 34px; margin-bottom: 12px; color: var(--ink-soft); }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: #fff; background: var(--teal);
  width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 0.8rem; font-weight: 900;
}
.ticks.rose li::before, .ticks.coral li::before { background: var(--rose); }
.ticks.indigo li::before { background: var(--indigo); }

/* ---------- Reassurance row (reassure, don't pressure) ---------- */
.reassure { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 18px; padding: 0; list-style: none; }
.reassure li { font-weight: 700; color: var(--ink-soft); font-size: 0.95rem; }
.reassure li::before { content: "✓ "; color: var(--teal-dark); font-weight: 900; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--indigo); color: #fff; border-radius: var(--radius-lg); padding: 54px 44px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #D9D6F4; max-width: 580px; margin: 0 auto 26px; }
.cta-band .btn-ghost { color: #fff; border-color: #fff; }
.cta-band .btn-ghost:hover { background: #fff; color: var(--indigo); }

/* personalised booking card ("Chat with [Name]" + photo lifts conversion) */
.book-with { display: flex; align-items: center; gap: 16px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.book-with .avatar {
  width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg,var(--indigo),var(--rose));
  color: #fff; display: flex; align-items: center; justify-content: center; font-family: "Fraunces",serif;
  font-size: 1.5rem; font-weight: 700; flex-shrink: 0; box-shadow: var(--shadow-sm);
}
.book-with .who { text-align: left; }
.book-with .who strong { display: block; font-size: 1.05rem; }
.book-with .who span { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.step .num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--rose); color: #fff;
  font-family: "Fraunces", serif; font-weight: 700; font-size: 1.2rem; display: flex;
  align-items: center; justify-content: center; margin-bottom: 14px;
}
.step:nth-child(2) .num { background: var(--indigo); }
.step:nth-child(3) .num { background: var(--teal); }

/* ---------- Calendly embed ---------- */
.calendly-inline-widget { min-width: 320px; height: 720px; border-radius: var(--radius); overflow: hidden; }

/* ---------- Contact form ---------- */
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 800; margin-bottom: 6px; font-size: 0.95rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 2px solid var(--line); border-radius: 14px;
  font-family: inherit; font-size: 1rem; background: var(--cream); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--indigo); background: #fff; }
.field textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -5000px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #D9D4EC; padding: 52px 0 32px; }
.site-footer a { color: #F4B9C7; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
.site-footer h4 { color: #fff; font-family: "Nunito"; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer .flinks { list-style: none; padding: 0; margin: 0; }
.site-footer .flinks li { margin-bottom: 8px; }
.site-footer .flinks a { text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 36px; padding-top: 20px; font-size: 0.85rem; color: #A69FC4; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.stack > * + * { margin-top: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .paths, .grid-3, .quote-grid, .split, .steps, .footer-grid { grid-template-columns: 1fr; }
  .statbar { grid-template-columns: 1fr 1fr; }
  .split .media, .photo-ph { min-height: 240px; order: -1; }
  .nav-links { display: none; position: absolute; top: 74px; left: 0; right: 0; background: var(--cream);
    flex-direction: column; align-items: stretch; padding: 12px 24px 20px; border-bottom: 1px solid var(--line); gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; border-radius: 12px; }
  .nav-toggle { display: inline-flex; background: none; border: 2px solid var(--line); border-radius: 12px;
    padding: 8px 12px; font-size: 1.2rem; cursor: pointer; color: var(--ink); }
  section { padding: 56px 0; }
}

/* ---------- Additions: awards, photo slots, socials (v2) ---------- */
.award-row { display:flex; flex-wrap:wrap; gap:12px; margin-top:22px; }
.award {
  display:inline-flex; align-items:center; gap:8px; font-weight:800; font-size:0.9rem;
  color:var(--indigo-dark); background:#fff; border:1px solid var(--line);
  box-shadow:var(--shadow-sm); padding:9px 16px; border-radius:999px;
}
.award .t { font-size:1.05rem; }

/* Image slot with graceful fallback: if the <img> file is missing it removes
   itself (onerror) and the styled placeholder underneath shows instead. */
.imgwrap { position:relative; border-radius:var(--radius-lg); overflow:hidden; min-height:320px; box-shadow:var(--shadow); }
.imgwrap > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:2; display:block; }
.imgwrap > .photo-ph { position:absolute; inset:0; border-radius:0; margin:0; }

/* round avatar image in the "book with Matt" card */
.book-with .avatar { overflow:hidden; }
.book-with .avatar img { width:100%; height:100%; object-fit:cover; }

/* Meet Matt block */
.meet-credentials { list-style:none; padding:0; margin:14px 0 0; display:flex; flex-wrap:wrap; gap:8px; }
.meet-credentials li { font-size:0.86rem; font-weight:700; color:var(--ink-soft); background:var(--cream-2); border-radius:999px; padding:6px 13px; }

/* Guarantee callout */
.guarantee {
  display:flex; align-items:flex-start; gap:14px; background:var(--teal-tintbg);
  border:1px solid #BFE6DE; border-radius:var(--radius); padding:20px 24px; margin-top:22px;
}
.guarantee .g-ic { font-size:1.6rem; line-height:1; }
.guarantee p { margin:0; color:var(--ink); font-size:1rem; }
.guarantee strong { color:var(--teal-dark); }

/* Featured corporate testimonial */
blockquote.quote.corp-featured { border-top:6px solid var(--teal); }

/* Fix: centre the H1 in centred heroes (max-width was left-aligning it). */
.center h1 { margin-left: auto; margin-right: auto; }

/* About page bio layout */
.bio p { font-size: 1.08rem; }
.bio h2 { margin-top: 1.4em; }
.about-hero-photo { max-width: 320px; }

/* Natural-aspect images (no cropping) - show the whole photo */
.photo { display:block; width:100%; height:auto; border-radius:var(--radius-lg); box-shadow:var(--shadow); }
.photo-portrait { max-width:360px; margin-left:auto; margin-right:auto; }

/* ---------- FAQ (native <details> accordion) ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 24px; margin-bottom: 14px; box-shadow: var(--shadow-sm);
}
.faq summary {
  list-style: none; cursor: pointer; font-family: "Fraunces", serif; font-weight: 600;
  font-size: 1.15rem; padding: 18px 30px 18px 0; position: relative; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: "Nunito", sans-serif; font-weight: 800; font-size: 1.5rem; color: var(--rose);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "-"; }
.faq details[open] summary { color: var(--indigo); }
.faq .a { color: var(--ink-soft); padding: 0 0 20px; margin: 0; font-size: 1.02rem; }
.faq .a a { font-weight: 700; }

/* ---------- Pricing cards ---------- */
.pricing { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:40px; text-align:left; }
.price-card {
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:30px 28px; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; position:relative;
}
.price-card.featured { border:2px solid var(--rose); box-shadow:var(--shadow); }
.price-card .badge {
  position:absolute; top:-13px; left:28px; background:var(--rose); color:#fff; font-weight:800;
  font-size:0.75rem; letter-spacing:0.04em; text-transform:uppercase; padding:6px 14px; border-radius:999px;
}
.price-card h3 { font-size:1.25rem; margin-bottom:6px; }
.price-card .price { font-family:"Fraunces",serif; font-weight:700; font-size:2.6rem; color:var(--indigo); line-height:1; }
.price-card .per { color:var(--ink-soft); font-size:0.95rem; margin:8px 0 18px; }
.price-card .btn { margin-top:auto; align-self:flex-start; }
@media (max-width:860px){ .pricing { grid-template-columns:1fr; } }

/* ---------- Contact: photo fills to bottom of form, cropped from the top ---------- */
.contact-split { align-items: stretch; }
.contact-right { display: flex; flex-direction: column; }
.contact-photo {
  flex: 1 1 auto; min-height: 240px; width: 100%; object-fit: cover; object-position: top center;
  border-radius: var(--radius-lg); box-shadow: var(--shadow); display: block; margin-top: 4px;
}
@media (max-width: 860px){
  .contact-split { align-items: start; }
  .contact-photo { flex: none; height: 340px; }
}

/* ---------- Articles ---------- */
.article-list { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.article-card {
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:30px 30px; box-shadow:var(--shadow-sm); display:flex; flex-direction:column;
}
.article-card .tag { font-size:0.74rem; font-weight:800; text-transform:uppercase; letter-spacing:0.06em;
  color:var(--teal-dark); background:var(--teal-tintbg); align-self:flex-start; padding:5px 12px; border-radius:999px; margin-bottom:14px; }
.article-card h3 { font-size:1.4rem; margin-bottom:8px; }
.article-card p { color:var(--ink-soft); }
.article-card a.more { margin-top:auto; font-weight:800; text-decoration:none; }
@media (max-width:860px){ .article-list { grid-template-columns:1fr; } }

/* Long-form article body */
.article { max-width:720px; margin:0 auto; }
.article p { font-size:1.1rem; }
.article h2 { margin-top:1.6em; }
.article h3 { margin-top:1.3em; font-size:1.25rem; }
.article ul, .article ol { padding-left:1.2em; margin:0 0 1.2em; }
.article li { margin-bottom:0.5em; color:var(--ink); }
.article .meta { color:var(--ink-soft); font-size:0.95rem; margin-bottom:26px; }
.article blockquote {
  border-left:4px solid var(--teal); background:var(--teal-tintbg); margin:1.4em 0;
  padding:16px 22px; border-radius:0 14px 14px 0; font-size:1.08rem;
}
.callout {
  background:var(--indigo-tintbg); border:1px solid #D6D3F3; border-radius:var(--radius);
  padding:20px 24px; margin:1.6em 0;
}
.callout p { margin:0; font-size:1rem; }
.article-cta {
  background:var(--ink); color:#fff; border-radius:var(--radius-lg); padding:34px 32px; margin-top:40px; text-align:center;
}
.article-cta h3 { color:#fff; }
.article-cta p { color:#D9D6F4; max-width:52ch; margin:0 auto 20px; }

/* ---------- Nav fit fix (v2) ---------- */
.nav { gap: 14px; }
.nav-links { flex-wrap: nowrap; gap: 2px; }
.nav-links a { padding: 8px 9px; font-size: 0.92rem; }
.nav-links a.btn { font-size: 0.9rem; }
@media (max-width: 992px){
  .nav-links{ display:none; position:absolute; top:74px; left:0; right:0; background:var(--cream);
    flex-direction:column; align-items:stretch; padding:12px 24px 20px; border-bottom:1px solid var(--line); gap:4px; }
  .nav-links.open{ display:flex; }
  .nav-links a{ padding:12px; border-radius:12px; font-size:1rem; }
  .nav-toggle{ display:inline-flex; background:none; border:2px solid var(--line); border-radius:12px;
    padding:8px 12px; font-size:1.2rem; cursor:pointer; color:var(--ink); }
}

/* ---------- Client logos ---------- */
.logos { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:24px; margin-top:20px; }
.logo-card { background:#fff; border:1px solid var(--line); border-radius:14px; padding:12px 20px; box-shadow:var(--shadow-sm); display:inline-flex; align-items:center; }
.logo-card img { height:34px; width:auto; display:block; }
.logo-card:hover { transform:translateY(-2px); transition:transform .12s ease; }
