@font-face {
  font-family: 'Frank Ruhl Libre';
  src: url('../fonts/frank-ruhl-libre-v23-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Frank Ruhl Libre';
  src: url('../fonts/frank-ruhl-libre-v23-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato-v25-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato-v25-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =============================================
   VARIABLES
   Edit these to restyle the entire site.
   ============================================= */
:root {
  --red:        #D73A3B;
  --dark:       #333333;
  --white:      #ffffff;
  --offwhite:   #fbfbfb;
  --border:     #d6d6d6;
  --border-sec: #e8e8e8;
  --font-serif: 'Frank Ruhl Libre', serif;
  --font-sans:  'Lato', sans-serif;
  --nav-h:       6rem;
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base font size stays at browser default (16px).
   All font-size values use rem so user font
   preferences are respected. */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1.125rem;   /* 18px */
  color: var(--dark);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul  { list-style: disc; padding-left: 1.25rem; }

.page-wrap {
  max-width: 1280px;
  margin: 0 auto;
  overflow: clip;
}

/* =============================================
   ACCESSIBILITY UTILITIES
   ============================================= */

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--dark);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus rings — :focus as fallback for browsers that
   don't support :focus-visible (Safari < 15.4) */
:focus {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
/* For browsers that do support :focus-visible,
   suppress the outline on mouse clicks only */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

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

/* =============================================
   NAVIGATION
   ============================================= */
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9;
  background: var(--white);
}

header.is-scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

   .nav {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: stretch;
  background: var(--white);
  transition: background 0.3s;
  border-bottom: 1px solid var(--border-sec);
}

.nav__logo {
  background: var(--red);
  width: var(--nav-h);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-left: 2.5em;
  align-self: flex-start;
}
.nav__logo img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Inner: links + CTA */
.nav__inner {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 2.5rem 0 0;
}

.nav__links {
  display: flex;
  list-style: none;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  display: block;
  padding: 1rem 2rem;
  position: relative;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  transition: opacity 0.2s;
  letter-spacing: 0.05em;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  right: 50%;
  height: 2px;
  background-color: var(--red);
  opacity: 0;
  transition: left 0.2s linear, right 0.2s linear, opacity 0.2s linear;
}

.nav__links a:hover::after {
  left: 4px;
  right: 4px;
  opacity: 1;
}

.nav__links a:hover { opacity: 0.75; }

.nav__links a.is-active::after {
  left: 4px;
  right: 4px;
  opacity: 1;
}

/* Contact Us button */
.nav__cta { margin-left: auto; }
.nav__cta a {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 1.0625rem;
  font-weight: 600;
  padding: 0.65rem 1.75rem;
  border: 2px solid var(--red);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav__cta a:hover,
.nav__cta a:focus-visible {
  background: var(--white);
  border-color: var(--red);
  color: var(--dark);
  opacity: 1;
}

/* Hamburger — hidden on desktop */
.nav__hamburger {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 0.90rem;
  cursor: pointer;
  margin-left: auto;
  margin-right: 1.25rem;
  padding: 0.5rem 0.75rem;
  background: none;
  border: none;
  min-height: 2.75rem;
}
.nav__hamburger-icon span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}
.nav__hamburger-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  width: auto;
  height: auto;
  background: none;
}

.nav__hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

/* Mobile menu — slides in from right */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--red);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 2rem 2rem 2rem;
  transition: right 0.25s ease;
}
.mobile-menu.is-open {
  right: 0;
}
.mobile-menu a {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
  padding: 0.75rem 0;
  text-align: right;
}

.mobile-menu__close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  align-self: flex-end;
  margin-bottom: 1rem;
}


/* =============================================
   SHARED LAYOUT
   ============================================= */

/* Offset anchor scroll for sticky header */
  section[id],
  div[id] {
  scroll-margin-top: var(--nav-h);
}

.container {
  max-width: 80rem;   /* 1280px — constrains content on wide screens */
  padding: 0 2.5rem;
  margin: 0 auto;
}

/* Two-column wrappers */
.columns-wrap--top-border { border-top: 1px solid var(--border-sec); }

.columns {
  display: flex;
}
.columns__col {
  flex: 0 0 50%;
  width: 50%;
}
.columns__col--bordered {
  border-left: 1px solid var(--border-sec);
}

/* Section eyebrow label */
.subtitle {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

/* Branded heading with trailing red dot */
h2.branded {
  font-family: var(--font-serif);
  font-size: 2.375rem;   /* 38px */
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
h2.branded .dot { color: var(--red); }

/* Outline button */
.btn {
  display: inline-block;
  border: 1px solid var(--red);
  background: var(--white);
  color: var(--dark);
  font-size: 1.125rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s, color 0.2s;
}
.btn:hover,
.btn:focus-visible {
  background: var(--red);
  color: var(--white);
}

.btn--red {
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
}
.btn--red:hover,
.btn--red:focus-visible {
  background: var(--white);
  border-color: var(--red);
  color: var(--dark);
  opacity: 1;
}

.btn + .btn {
  margin-left: 1rem;
}

.center { text-align: center; }

/* Top-level section padding */
main > section {
  padding: 2.5rem 0;
}

/* =============================================
   HERO
   ============================================= */
#hero {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  overflow: visible;
  position: relative;
  border-bottom: 1px solid var(--border-sec);
}

.hero__text {
  padding: 2rem 2.5rem 1rem;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.hero__h1 {
  font-family: var(--font-serif);
  font-size: 3.25rem;   /* 52px */
  font-weight: 600;
  line-height: 1.25;    /* unitless — scales with font size */
  color: var(--dark);
  margin-bottom: 2rem;
}
.hero__h1 .dot { color: var(--red); }

.hero__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
/* Spacing via margin instead of gap for
   broader browser compatibility */
.hero__btns .btn {
  margin: 0.5rem 0.5rem 0;
}

.hero__illustration {
  display: block; 
  width: 100%;
  position: relative; 
}

.hero__illustration::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: linear-gradient(
    to right,
    var(--white) 0%,
    transparent 8%,
    transparent 92%,
    var(--white) 100%
  );
}

.hero__illustration > img {
  width: 100%;
  max-height: 22.5rem;
  object-fit: cover;
  object-position: top;
}

.hero__flourish {
  position: absolute;
  pointer-events: none;
}
.hero__flourish--1 { top: 13rem;  left: 6rem;  }
.hero__flourish--2 { top: 14.8rem; right: 6rem; }
.hero__flourish--3 { top: 13rem;  right: 4rem;  }

.hero__flourish img { width: auto; height: auto; }
.hero__flourish--1 img { width: 71px; }
.hero__flourish--2 img { width: 63px; }
.hero__flourish--3 img { width: 25px; }

/* =============================================
   ABOUT + TESTIMONIAL
   ============================================= */
#about-wrap {
  border-bottom: 1px solid var(--border-sec);
  padding-top: 0;
}

.about__inner { padding: 2.5rem; }

.about__body {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* Testimonial */
.testimonial__inner { padding: 2.5rem; }

.testimonial__quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--red);
  font-family: Georgia, serif;
  margin-bottom: 0.25rem;
}

.testimonial__text {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.testimonial__author { font-size: 1.125rem; font-style: italic; font-weight: 700; }
.testimonial__role   { font-size: 1.125rem; font-style: italic; color: #767676; }

/* =============================================
   SERVICES
   ============================================= */
#services { 
  background: var(--offwhite); 
  border-top: 1px solid var(--border-sec);
  border-bottom: 1px solid var(--border-sec);
}

.services__text {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.services__grid {
  max-width: 80rem;
  /* auto centering — replaces the fixed 60px left margin */
  margin: 0 auto;
  padding: 0.75rem 2.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.service {
  flex: 0 1 50%;
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

.service__icon {
  position: static;
  margin-bottom: 1rem;
  width: 3.125rem;
  height: 3.125rem;
}
.service__icon img { width: 100%; height: auto; }

.service__title {
  font-family: var(--font-sans);
  font-size: 1.375rem;   /* 22px */
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.service ul { padding-left: 1.25rem; }
.service ul li { font-size: 1.0625rem; padding: 0.35rem 0; }  /* 17px */

.service ul li::marker { color: var(--red); }

.services__footer {
  text-align: center;
  padding: 0.5rem 2rem 0;
}

/* =============================================
   CLIENTS
   ============================================= */
.clients__text {
  max-width: 53.75rem;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 2rem;
}

.clients__text p {
  max-width: 38rem;
  margin: 0 auto 1rem;
}

.clients__grid {
  margin: 0 auto 2rem;
  padding: 0 2.5rem;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.client {
  flex: 0 1 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 6.875rem;
  border-right: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
}

.client:nth-child(4n) {
  border-right: none;
}

.client:nth-last-child(-n+4) {
  border-bottom: none;
}

.client img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.clients__cta { text-align: center; padding-top: 0.5rem; }

/* =============================================
   CONTACT + FORM
   ============================================= */
.contact__inner { padding: 2.5rem; }

.contact__inner p + p {
  margin-top: 1rem;
}

.contact__person {
  display: flex;
  align-items: center;
  margin-top: 1.75rem;
}
.contact__person img {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  /* Margin replaces gap for cross-browser support */
  margin-right: 1.5rem;
}
.contact__person-info {
  font-size: 1.125rem;
  line-height: 1.65;
}
.contact__person-info strong { display: block; font-size: 1.5rem; }
.contact__person-info a { color: var(--red); font-weight: 400; }
.contact__person-info a.linkedin-link { color: #0A66C2; }
.contact__person-info a:hover { text-decoration: underline; }

.pullquote {
  margin-top: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--red);
}
.pullquote p {
  font-size: 1.125rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.375rem;
}
.pullquote cite {
  font-size: 0.9375rem;
  font-style: normal;
  color: #767676;
}

/* Form */
.form__inner { padding: 2.5rem; }

.form__group { margin-bottom: 1.25rem; }
.form__group label {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}
.form__group input,
.form__group textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--offwhite);
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--dark);
  /* Don't suppress outline entirely — instead
     let the global :focus rule handle it */
  outline-offset: 0;
  transition: border-color 0.2s;
}
.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--dark);
  /* Use outline instead of none so keyboard
     users always have a visible focus indicator */
  outline: 3px solid var(--red);
  outline-offset: 2px;
}
.form__group textarea {
  min-height: 8.125rem;
  resize: vertical;
}

/* Error message */
.form__error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  border-radius: 2px;
}
.form__error[hidden] { display: none; }

.field__error {
  display: block;
  color: #991b1b;
  font-size: 0.9375rem;
  margin-top: 0.375rem;
}
.field__error[hidden] { display: none; }

.form__group--error input,
.form__group--error textarea {
  border-color: #991b1b;
  outline: 3px solid #fca5a5;
  outline-offset: 2px;
}

.honeypot { display: none; }

/* Submit button */
.btn--submit {
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn--submit:hover,
.btn--submit:focus-visible {
  opacity: 0.82;
}

/* Success state */
.form__success[hidden] { display: none; }
.form__success { padding-top: 1rem; border: none; }
.form__success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.form__success > p { margin-bottom: 1rem; }
.form__success ol { padding-left: 1.25rem; }
.form__success ol li { margin-bottom: 0.625rem; line-height: 1.5; }

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: none;                           /* was var(--red) */
  border-top: 1px solid var(--border-sec);    /* new */
  padding: 2rem 0 1rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5rem;
}

.footer__copy {
   color: #767676;
  font-size: 1rem;
}

.footer__privacy {
  color: #767676;
  text-decoration: none;
}
.footer__privacy:hover { color: var(--dark); }

/* =============================================
   COOKIE NOTICE
   ============================================= */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  z-index: 100;
  gap: 1.5rem;
}
.cookie-notice[hidden] { display: none; }

.cookie-notice__text {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
}
.cookie-notice__text a {
  color: var(--white);
  text-decoration: underline;
}
.cookie-notice__text a:hover { opacity: 0.8; }

.cookie-notice__btn {
  background: var(--white);
  color: var(--dark);
  border: none;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.cookie-notice__btn:hover { opacity: 0.85; }

@media (max-width: 42.5rem) {
  .cookie-notice {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
    gap: 0.75rem;
  }
}

/* =============================================
   RESPONSIVE — TABLET  (≤ 900px)
   ============================================= */
@media (max-width: 56.25rem) {
  .columns { flex-direction: column; }
  .columns__col { flex: 0 0 100%; width: 100%; }
  .columns__col--bordered { border-left: none; border-top: 1px solid var(--border-sec); }

  .services__grid { padding: 0.75rem 1.5rem 2rem; }
  .clients__grid  { padding: 0 1.5rem; }
  .work__grid { padding: 0 0.75rem; }

  .project--40,
  .project--30,
  .project--20 { flex: 0 1 50%; }
}

/* =============================================
   RESPONSIVE — LARGE PHONE  (≤ 768px)
   New breakpoint covering tablets in portrait
   and phones in landscape
   ============================================= */
@media (max-width: 48rem) {
  .work__grid { padding: 0 0.5rem; }

  /* Project images slightly shorter on mid-size screens */
  .project__image { padding-bottom: 65%; }
}

/* =============================================
   RESPONSIVE — MOBILE  (≤ 680px)
   ============================================= */
@media (max-width: 42.5rem) {
  :root { --nav-h: 5rem; }

  header { min-height: var(--nav-h); }

  .hero__flourish { display: none; }

  /* Hide desktop nav, show hamburger */
  .nav__inner { display: none; }
  .nav__hamburger { display: flex; }

  /* Logo */
  .nav__logo { width: var(--nav-h); margin-left: 2rem; }

  /* Layout */
  .container { padding: 0 1.25rem; }
  .hero__text { padding: 3.75rem 1.25rem 1rem; }
  .hero__h1 { font-size: 2.25rem; }
  h2.branded { font-size: 1.75rem; }

  .about__inner,
  .testimonial__inner,
  .contact__inner,
  .form__inner { padding: 1.75rem 1.25rem; }

  .services__grid { padding: 0.75rem 1.25rem 2rem; }
  .service { flex: 0 1 100%; }

  .clients__grid { padding: 0 1.25rem; }
  .client { flex: 0 1 50%; }

  .project--40,
  .project--30,
  .project--20 { flex: 0 1 100%; }
  .work__grid { padding: 0; }
  .project__image { padding-bottom: 70%; }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1.25rem;
  }
  .footer__copy { margin-bottom: 1rem; }
}

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

.about-page {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3rem 2.5rem 5rem;
  }

  /* Header */
  .about-page__header {
    padding-bottom: 0.5rem;
    border-bottom: none;
    margin-bottom: 0;
  }

  .about-page__header .subtitle { display: block; margin-bottom: 0.5rem; }

  .about-page__headline {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
  }

  .about-page__headline .dot { color: var(--red); }

  .about-page__identity {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .about-page__identity img {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .about-page__identity-info { font-size: 1.125rem; line-height: 1.6; }
  .about-page__identity-info strong { display: block; font-size: 1.5rem; }
  .about-page__identity-info span { display: block; color: #767676; font-size: 1.125rem; }

  .about-page__linkedin,
  .linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 1.0625rem;
    color: #0A66C2;
    font-weight: 400;
    margin-top: 0.25rem;
  }
  .about-page__linkedin:hover,
  .linkedin-link:hover { text-decoration: underline; color: #0A66C2;}
  .about-page__linkedin svg,
  .linkedin-link svg { width: 1rem; height: 1rem; fill: #0A66C2; flex-shrink: 0; }

  /* Body */
  .about-page__body {
    display: flex;
    border-top: 1px solid var(--border-sec);
    gap: 5rem;
    align-items: flex-start;
    padding-top: 2.5rem;
  }

  .about-page__left { flex: 0 0 58%; }

  .about-page__right {
    flex: 1;
    border-left: 1px solid var(--border-sec);
    padding-left: 3rem;
    margin-top: -2.5rem;
    padding-top: 2.5rem;
  }

  /* Narrative */
  .about-page__intro {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark);
    margin-bottom: 1.75rem;
  }

  .about-page__body-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 1rem;
  }

  /* Articles block */
  .about-page__articles {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-sec);
  }

  .about-page__articles-heading {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .about-page__articles-more {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--dark);
    text-transform: none;
    letter-spacing: 0;
  }

  .about-page__articles-more:hover { text-decoration: underline; }

  .article-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

.article-card {
  display: flex;
  gap: 1rem;
  padding: 1rem 1rem 1rem 1.25rem;
  background: var(--offwhite);
  text-decoration: none;
  color: var(--dark);
  transition: background 0.2s;
  overflow: hidden;
  border-left: 3px solid var(--red);
}

  .article-card:hover { background: #f0f0f0; }

  .article-card__image {
    width: 14rem;
    height: 5.625rem;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--border-sec);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .article-card__placeholder {
    width: 14rem;
    align-self: stretch;
    background: #d6d6d6;
    flex-shrink: 0;
  }

  .article-card__content {
    flex: 1;
    padding: 1rem;
  }

  .article-card__label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
  }

  .article-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
    line-height: 1.3;
  }

  .article-card__summary {
    font-size: 0.9975rem;
    color: #767676;
    line-height: 1.5;
  }

  .about-page__articles-cta {
    font-size: 1rem;
    font-weight: 600;
    color: var(--red);
  }
  .about-page__articles-cta:hover { text-decoration: underline; }

  .article-card__date {
    font-size: 0.875rem;
    color: #767676;
    margin-top: 0.375rem;
  }

  /* CTA */
  .about-page__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 0;
    border-top: none;
  }

  .about-page__cta .btn + .btn {
    margin-left: 0.5rem;
  }

  /* Right column */
  .about-page__section { margin-bottom: 2.5rem; }
  .about-page__section:last-child { margin-bottom: 0; }

  .about-page__section-title {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
  }

  .about-page__section--cta {
  display: none;
  }

  .skills-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .skills-list__item { font-size: 0.9375rem; background: var(--offwhite); border: 1px solid var(--border-sec); padding: 0.375rem 0.875rem; color: var(--dark); }

  .role-list { list-style: none; padding: 0; margin: 0; }
  .role-list__item { padding: 1rem 0; border-bottom: 1px solid var(--border-sec); }
  .role-list__item:first-child { padding-top: 0; }
  .role-list__item:last-child { border-bottom: none; padding-bottom: 0; }
  .role-list__title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.125rem; }
  .role-list__org { font-size: 0.9375rem; color: var(--dark); margin-bottom: 0.125rem; }
  .role-list__period { font-size: 0.875rem; color: #767676; }

  /* Responsive */
  @media (max-width: 56.25rem) {
    .about-page__body { flex-direction: column; gap: 3rem; }
    .about-page__left { flex: none; width: 100%; }
    .about-page__right { border-left: none; border-top: 1px solid var(--border-sec); padding-left: 0; padding-top: 2.5rem; width: 100%; }
    .article-cards { gap: 0.75rem; }
  }

  @media (max-width: 56.25rem) {
    .about-page__section--cta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      }
  }

  @media (max-width: 42.5rem) {
    .about-page { padding: 2rem 1.25rem 4rem; }
    .about-page__headline { font-size: 2.25rem; }
    .about-page__intro { font-size: 1.50rem; font-weight: 400; }
    .about-page__body-text { margin-bottom: 1.25rem; }
    .about-page__linkedin svg { width: 1rem; height: 1rem; }

    .btn {
      display: block;
      text-align: center;
      width: 100%;
      box-sizing: border-box;
      margin-left: 0 !important;
    }

    .btn + .btn {
      margin-left: 0 !important;
      margin-top: 0;
      margin-bottom: 0;
    }

    /* Button groups — stack vertically with gap */
    .hero__btns,
    .about__inner,
    .services__footer,
    .clients__cta,
    .about-page__cta,
    .about-page__section--cta {
      display: flex;
      flex-direction: column;
      margin-bottom: 1rem;
      gap: 0.75rem;
    }

    .clients__cta {
      padding: 0.5rem 1.25rem 0;
    }

    .btn--submit {
      width: 100%;
    }
  }

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

.services-page {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 2.5rem 5rem;
}

/* ── Header — same two-column grid as service rows ── */
.services-page__header {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-sec);
}

.services-page__header-label {
  flex: 0 0 16rem;
}

.services-page__header-intro {
  flex: 1;
  padding-top: 0.25rem;
}

.services-page__headline {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 0;
}

.services-page__headline .dot { color: var(--red); }

.services-page__intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--dark);
}

/* ── Service rows ── */
.services-page__body {
  margin-top: 0;
}

.service-section {
  display: flex;
  gap: 4rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-sec);
  align-items: flex-start;
}

.service-section__label {
  flex: 0 0 16rem;
  padding-top: 0.25rem;
}

.service-section__icon {
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  margin-bottom: 1rem;
}

.service-section__title {
  font-family: var(--font-sans);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.service-section__content {
  flex: 1;
}

.service-section__body {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.service-section__list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.service-section__list li {
  font-size: 1.0625rem;
  line-height: 1.6;
  padding: 0.4rem 0;
  color: var(--dark);
}

.service-section__list li::marker {
  color: var(--red);
}

/* ── CTA footer ── */
.services-page__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 3rem;
}

/* ── Responsive — tablet (≤ 900px) ── */
@media (max-width: 56.25rem) {
  .services-page__header {
    flex-direction: column;
    gap: 1.25rem;
    padding-bottom: 2rem;
  }

  .services-page__header-label {
    flex: none;
    width: 100%;
  }

  .service-section {
    flex-direction: column;
    gap: 1.5rem;
  }

  .service-section__label {
    flex: none;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .service-section__icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/* ── Responsive — mobile (≤ 680px) ── */
@media (max-width: 42.5rem) {
  .services-page {
    padding: 2rem 1.25rem 4rem;
  }

  .services-page__headline {
    font-size: 2.25rem;
  }

  .service-section {
    padding: 2rem 0;
  }

  .services-page__cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .services-page__cta .btn {
    display: block;
    text-align: center;
    width: 100%;
    margin-left: 0 !important;
  }
}