/* Sports Media Ireland — shared stylesheet
   Type: Archivo (display + body), IBM Plex Mono (scoreboard/data)
   Accent is set per page via body class: .page-home .page-claims .page-racing .page-recruit */

:root {
  --ink: #16211b;
  --muted: #5c6a61;
  --faint: #8a958d;
  --paper: #ffffff;
  --field: #f2f5f1;
  --line: #dde3dd;
  --brand: #0b4f3c;
  --brand-deep: #073527;
  --brand-tint: #ddeee4;
  --accent: var(--brand);
  --accent-tint: var(--brand-tint);
  --radius: 10px;
  --radius-lg: 14px;
  --maxw: 1080px;
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

.page-claims  { --accent: #15568f; --accent-tint: #e3eef8; }
.page-recruit { --accent: #4f44a3; --accent-tint: #e9e6f8; }
.page-racing  { --accent: #0b4f3c; --accent-tint: #ddeee4; }
.page-equus   { --accent: #854f0b; --accent-tint: #faeeda; }

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(34px, 5vw, 52px); }
h2 { font-size: clamp(26px, 3.4vw, 34px); }
h3 { font-size: 19px; font-weight: 600; }

.lede { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 56ch; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; background: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 13px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.btn-solid { background: var(--accent); color: #fff; }
.btn-solid:hover { background: var(--brand-deep); }
.page-claims .btn-solid:hover { background: #0e3f6b; }
.page-recruit .btn-solid:hover { background: #3b3380; }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); }
.btn:focus-visible, a:focus-visible, input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Scoreboard logo mark ---------- */
.smi-board {
  display: inline-flex;
  border: 2px solid var(--brand);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.smi-tile {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-right: 2px solid var(--brand);
  font-size: 11px; font-weight: 800;
  font-family: var(--font-mono);
  letter-spacing: .06em;
  line-height: 1;
  flex-shrink: 0;
}
.smi-tile:last-child { border-right: none; }
.smi-tile-dark { background: var(--brand); color: #fff; }
.smi-tile-mint { background: #9FE1CB; color: var(--brand); }

.smi-nav-divider {
  width: 1px; height: 26px;
  background: var(--line);
  flex-shrink: 0;
}
.smi-nav-text {
  display: flex; flex-direction: column; gap: 1px;
  white-space: nowrap;
}
.smi-nav-name {
  font-size: 12.5px; font-weight: 600;
  color: var(--ink); letter-spacing: -.01em; line-height: 1.1;
  white-space: nowrap;
}
.smi-nav-est {
  font-size: 8.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand); font-family: var(--font-mono); line-height: 1;
  white-space: nowrap;
}
.smi-nav-services {
  font-size: 8px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--faint); font-family: var(--font-mono); line-height: 1;
  white-space: nowrap;
}
.nav-logo-product {
  font-size: 15px; font-weight: 600; color: var(--ink);
  white-space: nowrap;
}

/* ---------- Nav ---------- */
.nav {
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  z-index: 50;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.nav-logo-smi { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
}
.nav-sub { font-family: var(--font-mono); font-size: 11.5px; color: var(--faint); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 15px; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.nav-links .btn { padding: 9px 18px; font-size: 14.5px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px; font-size: 14px; cursor: pointer; }

/* ---------- Hero GIF frame ---------- */
.hero-gif-wrap { display: flex; align-items: center; justify-content: center; }
.hero-gif-frame {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(22, 33, 27, 0.14), 0 2px 8px rgba(22, 33, 27, 0.08);
  border: 1px solid var(--line);
  background: var(--paper);
}
.hero-gif-bar {
  display: flex; gap: 6px; padding: 10px 14px;
  background: var(--field);
  border-bottom: 1px solid var(--line);
}
.hero-gif-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line);
}
.hero-gif-bar span:nth-child(1) { background: #f09595; }
.hero-gif-bar span:nth-child(2) { background: #fac775; }
.hero-gif-bar span:nth-child(3) { background: #97c459; }
.hero-gif-frame img { display: block; width: 100%; height: auto; }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { margin: 0 0 18px; }
.hero .lede { margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-family: var(--font-mono); font-size: 13px; color: var(--faint); }
.hero-clients {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 6px 18px; margin-top: 28px; padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13.5px; color: var(--muted);
}
.hero-clients span:first-child { font-family: var(--font-mono); font-size: 12px; color: var(--faint); width: 100%; text-align: center; margin-bottom: 4px; }
.hero-center { text-align: center; }
.hero-center .lede { margin: 0 auto 28px; }
.hero-center .hero-actions { justify-content: center; }
.hero-center { text-align: center; }
.hero-center .lede, .hero-center .hero-actions { margin-left: auto; margin-right: auto; }
.hero-center .hero-actions { justify-content: center; }

/* ---------- Scoreboard strip (signature) ---------- */
.board {
  border-top: 3px solid var(--ink);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.board-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.board-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.board-cell { padding: 22px 18px; border-left: 1px solid var(--line); }
.board-cell:first-child { border-left: 0; }
.board-num { font-family: var(--font-mono); font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; font-variant-numeric: tabular-nums; }
.board-label { font-size: 13.5px; color: var(--muted); margin-top: 2px; }

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section-field { background: var(--field); }
.section-head { max-width: 60ch; margin-bottom: 40px; }
.section-head p { color: var(--muted); margin-top: 10px; }

/* ---------- Card grids ---------- */
.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.card h3 { margin: 12px 0 6px; }
.card p { font-size: 15px; color: var(--muted); flex: 1; }
.card-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--accent-tint); color: var(--accent);
  display: grid; place-items: center; font-size: 22px;
}
.card-icon i { font-size: 22px; line-height: 1; color: inherit; }
.card-link { margin-top: 16px; font-weight: 600; font-size: 15px; text-decoration: none; color: var(--accent); }
.card-link:hover { text-decoration: underline; }
.card-featured { border: 2px solid var(--accent); position: relative; }
.badge {
  position: absolute; top: -12px; left: 20px;
  background: var(--accent); color: #fff;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em;
  padding: 4px 12px; border-radius: 20px;
}
.pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.pill {
  font-family: var(--font-mono); font-size: 12px;
  background: var(--accent-tint); color: var(--accent);
  padding: 4px 11px; border-radius: 20px;
}

/* ---------- Work / portfolio ---------- */
.work-card { text-decoration: none; color: inherit; overflow: hidden; padding: 0; }
.work-thumb { aspect-ratio: 16 / 10; background: var(--accent-tint); display: grid; place-items: center; font-size: 42px; color: var(--accent); }
.work-body { padding: 16px 20px 20px; }
.work-body h3 { margin: 0 0 4px; font-size: 17px; }
.work-body p { font-size: 14px; }

/* ---------- App frame (screenshot placeholder) ---------- */
.frame {
  background: var(--field);
  border-radius: var(--radius-lg);
  padding: 16px;
}
.frame-window { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.frame-bar { display: flex; gap: 6px; padding: 10px 14px; border-bottom: 1px solid var(--line); }
.frame-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.frame-body { padding: 0; }
.frame-placeholder {
  aspect-ratio: 16 / 9;
  display: grid; place-items: center;
  color: var(--faint);
  font-family: var(--font-mono); font-size: 13px;
  text-align: center; padding: 20px;
}
.frame-phone {
  max-width: 240px; margin: 0 auto;
  background: var(--field); border-radius: 28px; padding: 12px;
}
.frame-phone .frame-window { border-radius: 20px; }
.frame-phone .frame-placeholder { aspect-ratio: 9 / 16; }

/* ---------- Quote ---------- */
.quote {
  background: var(--field);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  display: flex; gap: 18px; align-items: flex-start;
}
.section-field .quote { background: var(--paper); border: 1px solid var(--line); }
.quote-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent-tint); color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 14px;
}
.quote blockquote { font-size: 18px; line-height: 1.6; font-style: italic; }
.quote cite { display: block; margin-top: 10px; font-style: normal; font-size: 14px; color: var(--faint); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.step { border-top: 3px solid var(--accent); padding-top: 14px; }
.step-num { font-family: var(--font-mono); font-size: 13px; color: var(--accent); }
.step h3 { font-size: 16px; margin: 4px 0 4px; }
.step p { font-size: 14px; color: var(--muted); }

/* ---------- CTA ---------- */
.cta { background: var(--brand-deep); color: #fff; }
.page-claims .cta { background: #0e3a61; }
.page-recruit .cta { background: #322b6b; }
.cta-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, 0.78); margin-top: 10px; }
.cta-contacts { margin-top: 20px; font-family: var(--font-mono); font-size: 14px; line-height: 2; color: rgba(255, 255, 255, 0.85); }
.cta-contacts a { color: #fff; }
.cta-form { display: flex; flex-direction: column; gap: 10px; }
.cta-form input {
  font-family: var(--font-body); font-size: 15.5px;
  padding: 13px 16px; border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08); color: #fff;
}
.cta-form input::placeholder { color: rgba(255, 255, 255, 0.55); }
.cta-form .btn { background: #fff; color: var(--ink); border: none; }
.cta-form .btn:hover { background: #e8ece8; }
.cta-form-status { font-size: 14px; padding: 11px 14px; border-radius: var(--radius); }
.cta-form-ok { background: rgba(151, 196, 89, 0.18); color: #d6efb8; }
.cta-form-err { background: rgba(240, 149, 149, 0.18); color: #f5c6c6; }
.cta-fineprint { font-size: 12.5px; color: rgba(255, 255, 255, 0.55); }

/* ---------- Utilities / content ---------- */
.smi-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.entry-content p, .entry-content ul, .entry-content ol { margin-bottom: 1.2em; }
.entry-content ul, .entry-content ol { padding-left: 1.4em; }
.entry-content h2, .entry-content h3 { margin: 1.6em 0 0.5em; }
.entry-content a { color: var(--accent); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 36px 0; }
.footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer p { font-size: 13.5px; color: var(--faint); }
.footer-links { display: flex; gap: 20px; list-style: none; }
.footer-links a { font-size: 13.5px; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .board-grid, .board-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .board-cell:nth-child(odd) { border-left: 0; }
  .board-cell { border-top: 1px solid var(--line); }
  .board-cell:nth-child(-n+2) { border-top: 0; }
}

/* ============================================================
   MOBILE — full redesign below 640px
   No cursor here, so energy comes from layout and motion.
   ============================================================ */
@media (max-width: 640px) {

  /* --- Global --- */
  .hero { padding: 0; }
  .section { padding: 48px 0; }
  .wrap { padding: 0 18px; }
  .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
  .quote { flex-direction: column; }

  /* --- Nav: tighter, mark only on left --- */
  .nav .wrap { height: 58px; }
  .smi-nav-services { display: none; }
  .nav-toggle {
    display: flex; align-items: center; gap: 7px;
    background: var(--brand); color: #fff;
    border: none; border-radius: 8px;
    padding: 8px 14px; font-size: 13px; font-weight: 600;
    font-family: var(--font-display); cursor: pointer;
  }
  .nav-links {
    display: none;
    position: fixed; inset: 58px 0 0 0;
    background: var(--ink);
    flex-direction: column; align-items: stretch;
    padding: 0; gap: 0; z-index: 49;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-links a {
    display: block; padding: 20px 24px;
    font-size: 22px; font-weight: 700;
    color: #fff; text-decoration: none;
    letter-spacing: -.01em;
  }
  .nav-links a:hover { color: #9FE1CB; }
  .nav-links .btn {
    margin: 24px 24px 32px;
    display: block; text-align: center;
    padding: 16px 24px; font-size: 17px;
    background: var(--brand); color: #fff;
    border-radius: 12px;
  }

  /* --- Hero: mobile-first big statement --- */
  .hero-grid { display: flex; flex-direction: column; gap: 0; }
  .hero-gif-wrap { display: none; }

  .hero > .wrap > .hero-grid > div:first-child {
    padding: 40px 18px 36px;
  }
  .hero .eyebrow { display: none; }
  .hero h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.08;
    letter-spacing: -.03em;
  }
  .hero .lede { font-size: 16px; margin-top: 14px; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; text-align: center; padding: 15px 20px; font-size: 16px; border-radius: 12px; }
  .hero-note { margin-top: 20px; }

  /* Mobile hero: big SMI mark above the headline */
  .hero-grid > div:first-child::before {
    content: '';
    display: block;
    width: 72px; height: 72px;
    background: var(--brand);
    border-radius: 14px;
    margin-bottom: 20px;
    background-image:
      linear-gradient(rgba(255,255,255,.18) 0%, rgba(255,255,255,.18) 100%);
  }

  /* --- Scoreboard strip: horizontal scroll on mobile --- */
  .board { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .board-grid {
    grid-template-columns: repeat(4, minmax(130px, 1fr));
    width: max-content; min-width: 100%;
  }
  .board-cell { border-top: 0 !important; border-left: 1px solid var(--line); }
  .board-cell:first-child { border-left: 0; }
  .board-num { font-size: 22px; }

  /* --- Software cards: horizontal scroll strip --- */
  #software .grid-2 {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 16px;
    margin: 0 -18px;
    padding-left: 18px;
    padding-right: 18px;
  }
  #software .card {
    min-width: 78vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  /* --- Work cards: full bleed images, big tap targets --- */
  .work-card { flex-direction: column; }
  .work-thumb { aspect-ratio: 16 / 9 !important; }
  .work-body { padding: 14px 16px 18px; }
  .work-body h3 { font-size: 18px; }

  /* --- Services: stacked with left accent bar --- */
  #services .card {
    border-left: 4px solid var(--accent);
    border-top: none; border-right: none; border-bottom: none;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 18px 20px;
  }
  #services .card-featured {
    border-left: 4px solid var(--accent);
    border-top: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    border-radius: var(--radius-lg);
  }

  /* --- Process steps: numbered timeline --- */
  .steps { display: flex; flex-direction: column; gap: 0; position: relative; }
  .steps::before {
    content: '';
    position: absolute;
    left: 18px; top: 24px; bottom: 24px;
    width: 2px; background: var(--line);
  }
  .step {
    border-top: none; padding: 0 0 28px 52px;
    position: relative;
  }
  .step::before {
    content: attr(data-step);
    position: absolute; left: 0; top: 0;
    width: 36px; height: 36px;
    background: var(--brand); color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: 13px; font-weight: 600;
    z-index: 1;
  }
  .step-num { display: none; }
  .step h3 { font-size: 17px; margin-bottom: 4px; }
  .step p { font-size: 14px; }

  /* --- Quote: full-width, bigger text --- */
  .quote { border-radius: 0; margin: 0 -18px; padding: 28px 24px; }
  .quote blockquote { font-size: 19px; }

  /* --- CTA: stacked, full-width form --- */
  .cta-grid { gap: 28px; }
  .cta-form input, .cta-form .btn { border-radius: 12px; padding: 15px 16px; font-size: 16px; }
  .cta-contacts { font-size: 15px; }

  /* --- Footer: stacked centered --- */
  .footer .wrap { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-links { flex-wrap: wrap; gap: 12px 16px; }

  /* --- Mobile floating action: sticky CTA bar at bottom --- */
  .mobile-sticky-cta {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 48;
    background: var(--ink);
    padding: 12px 18px 20px;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 -4px 24px rgba(22,33,27,.18);
  }
  .mobile-sticky-cta a {
    flex: 1; text-align: center;
    padding: 13px 16px; border-radius: 10px;
    font-size: 14px; font-weight: 600;
    text-decoration: none;
  }
  .mobile-sticky-cta .mcta-primary { background: var(--brand); color: #fff; }
  .mobile-sticky-cta .mcta-phone  { background: rgba(255,255,255,.1); color: #fff; }

  /* Push page content above the sticky bar */
  body { padding-bottom: 80px; }

  /* --- Section eyebrows: bigger on mobile --- */
  .eyebrow { font-size: 11px; margin-bottom: 10px; }

  /* --- Cards generally --- */
  .card { border-radius: var(--radius); }
  .card h3 { font-size: 17px; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: clamp(24px, 7vw, 30px); }

  /* --- Scroll hint on horizontal carousels --- */
  #software::after {
    content: 'swipe \2192';
    display: block;
    font-family: var(--font-mono); font-size: 11px;
    color: var(--faint); letter-spacing: .1em;
    text-align: right; padding-right: 18px;
    margin-top: -8px;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 28px; }
  #software .card { min-width: 88vw; }
}

/* ---------- Hero trust strip ---------- */
.hero-trust {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 6px 12px; margin-top: 20px;
  font-size: 13.5px; color: var(--muted);
}
.hero-trust-stars { color: #d4a017; font-size: 15px; letter-spacing: 1px; }
.hero-trust-sep { color: var(--faint); }

/* ---------- Work result badge ---------- */
.work-result {
  margin-top: 10px; font-size: 13px; font-weight: 600;
  color: var(--brand); display: flex; align-items: center; gap: 4px;
}
.work-result i { font-size: 14px; }

/* ---------- Testimonial cards ---------- */
.testimonial-card {
  display: flex; flex-direction: column; gap: 10px;
}
.testimonial-stars { color: #d4a017; font-size: 18px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 15.5px; line-height: 1.65; font-style: italic;
  color: var(--ink); flex: 1;
}
.testimonial-card cite {
  font-style: normal; font-size: 13px; color: var(--muted);
  font-family: var(--font-mono);
}

/* ---------- About / personality section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px; align-items: start;
}
.about-avatar {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.about-initials {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 28px; font-weight: 700;
  letter-spacing: .04em;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }

/* ---------- Contact options ---------- */
.contact-options {
  display: flex; flex-direction: column; gap: 10px; margin-top: 20px;
}
.contact-option {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 13px 16px; text-decoration: none;
  color: #fff; transition: background .15s;
}
.contact-option:hover { background: rgba(255,255,255,.14); }
.contact-option i { font-size: 22px; flex-shrink: 0; }
.contact-option strong { display: block; font-size: 14px; }
.contact-option small { font-size: 12.5px; color: rgba(255,255,255,.65); }

/* ---------- About / testimonial mobile ---------- */
@media (max-width: 640px) {
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-avatar { flex-direction: row; align-items: center; }
  .about-initials { width: 72px; height: 72px; font-size: 22px; flex-shrink: 0; }
  .grid-3.testimonials { grid-template-columns: 1fr; }
  .contact-options { gap: 8px; }
}

/* ---------- FAQ accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 2px; max-width: 760px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--accent); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer;
  font-size: 17px; font-weight: 600; color: var(--ink);
  list-style: none; gap: 12px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+'; font-size: 22px; font-weight: 300;
  color: var(--accent); flex-shrink: 0; line-height: 1;
}
.faq-item[open] .faq-q::after { content: '−'; }
.faq-a { padding: 0 22px 18px; }
.faq-a p { font-size: 15.5px; color: var(--muted); line-height: 1.7; margin: 0; }

@media (max-width: 640px) {
  .faq-q { font-size: 15px; padding: 14px 16px; }
  .faq-a { padding: 0 16px 14px; }
}
