/* Coaching Across Borders — modern static rebuild
   Preserves original identity: Raleway, brand red #991B1E,
   uppercase letter-spaced headings, light minimal layout. */

:root {
  --red: #991b1e;
  --red-dark: #7d1518;
  --ink: #2d2d2d;
  --gray: #818181;
  --gray-light: #aaaaaa;
  --line: #ececec;
  --bg-soft: #f7f7f7;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.14);
  --radius: 10px;
  --transition: 0.3s cubic-bezier(0.25, 0.6, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Raleway", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { color: var(--ink); font-weight: 500; }

.kicker {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.25;
}

.section-sub { margin-top: 16px; font-size: 17px; color: var(--gray); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }

.accent-bar {
  width: 46px; height: 3px; background: var(--red);
  margin: 22px auto 0; border-radius: 2px;
}
.accent-bar.left { margin-left: 0; }

section { padding: 90px 0; }
section.tight { padding: 64px 0; }
section.soft { background: var(--bg-soft); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 84px; gap: 24px;
}

.brand img { height: 52px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 34px; }

.site-nav a {
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink); position: relative; padding: 6px 0;
}

.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--red);
  transition: width var(--transition);
}

.site-nav a:hover::after, .site-nav a.active::after { width: 100%; }
.site-nav a.active { color: var(--red); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 8px; width: 26px; height: 2px;
  background: var(--ink); transition: var(--transition);
}
.nav-toggle span { top: 20px; }
.nav-toggle span::before { top: -8px; left: 0; }
.nav-toggle span::after { top: 8px; left: 0; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 72vh; padding: 120px 0; text-align: center; overflow: hidden;
  background-color: #6c8fae;
  background-size: cover; background-position: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(20, 28, 38, 0.45), rgba(20, 28, 38, 0.6));
}
.hero > .container { position: relative; }

.hero .kicker { color: rgba(255, 255, 255, 0.75); }

.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 300; letter-spacing: 6px; text-transform: uppercase;
  line-height: 1.15;
}

.hero-features {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 18px; margin-top: 44px;
}

.hero-feature {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white); border-radius: 999px;
  padding: 12px 24px; font-size: 15px; backdrop-filter: blur(4px);
}
.hero-feature svg { width: 20px; height: 20px; stroke: #fff; flex: none; }

.btn {
  display: inline-block; margin-top: 44px;
  background: var(--red); color: var(--white) !important;
  font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 40px; border-radius: 999px; border: 0; cursor: pointer;
  font-family: inherit;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn.ghost { background: transparent; border: 1.5px solid var(--red); color: var(--red) !important; }
.btn.ghost:hover { background: var(--red); color: var(--white) !important; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--bg-soft); border-bottom: 1px solid var(--line);
  padding: 76px 0; text-align: center;
}
.page-hero h1 {
  font-size: clamp(30px, 5vw, 44px); font-weight: 400;
  letter-spacing: 4px; text-transform: uppercase;
}
.page-hero p { margin-top: 12px; font-size: 17px; }
.breadcrumbs { margin-top: 18px; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-light); }
.breadcrumbs a { color: var(--gray); }
.breadcrumbs a:hover { color: var(--red); }

/* ---------- Stats ---------- */
.stats { background: var(--red); color: var(--white); padding: 70px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center;
}
.stat-number { font-size: clamp(34px, 4.5vw, 52px); font-weight: 300; letter-spacing: 2px; }
.stat-label {
  margin-top: 8px; font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255, 255, 255, 0.8);
}
.stats-note { text-align: center; margin-top: 34px; font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 1px; }

/* ---------- Cards / project grid ---------- */
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px;
}

.project-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 6 / 5.5; display: block;
}
.project-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover img { transform: scale(1.07); }
.project-card .card-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 26px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.72));
}
.project-card h3 {
  color: var(--white); font-size: 19px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.project-card .card-tag {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.8); margin-top: 6px;
  opacity: 0; transform: translateY(8px); transition: var(--transition);
}
.project-card:hover .card-tag { opacity: 1; transform: none; }

/* ---------- Feature / service cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; }

.info-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: var(--transition);
}
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.info-card h3 { font-size: 16px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.info-card p { font-size: 15px; }

.num-card { text-align: left; }
.num-card .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--red); color: var(--red);
  font-size: 18px; font-weight: 600; margin-bottom: 18px;
}

/* ---------- Split sections (About) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split + .split { margin-top: 90px; }
.split h2 { font-size: 24px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500; margin-bottom: 18px; }
.split p + p { margin-top: 14px; }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-img img { width: 100%; height: 100%; object-fit: cover; }

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 40px; }
.gallery figure { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 8/5.8; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery figure:hover img { transform: scale(1.06); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg-soft); }
.quote-slider { position: relative; max-width: 820px; margin: 0 auto; text-align: center; min-height: 220px; }
.quote {
  position: absolute; inset: 0; opacity: 0; transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease; pointer-events: none;
}
.quote.active { opacity: 1; transform: none; position: relative; pointer-events: auto; }
.quote blockquote {
  font-size: clamp(18px, 2.4vw, 23px); font-weight: 300; line-height: 1.6;
  color: var(--ink); font-style: italic;
}
.quote blockquote::before { content: "“"; color: var(--red); font-size: 54px; display: block; line-height: 0.6; margin-bottom: 18px; font-style: normal; }
.quote cite {
  display: block; margin-top: 22px; font-style: normal;
  font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--red);
}
.quote-dots { display: flex; justify-content: center; gap: 8px; margin-top: 36px; }
.quote-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; cursor: pointer;
  background: #d4d4d4; transition: var(--transition); padding: 0;
}
.quote-dots button.active { background: var(--red); transform: scale(1.25); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); text-align: center; padding: 80px 0; }
.cta-band h2 { color: var(--white); font-size: clamp(24px, 3.5vw, 34px); font-weight: 300; letter-spacing: 3px; text-transform: uppercase; }
.cta-band p { color: rgba(255,255,255,0.65); margin-top: 12px; }

/* ---------- Project detail ---------- */
.project-hero { height: 46vh; min-height: 320px; background-size: cover; background-position: center; position: relative; }
.project-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.35)); }

.project-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: start; }
.project-body h2 { font-size: 22px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; margin-bottom: 20px; }
.project-body p + p, .project-body ul + p, .project-body p + ul { margin-top: 14px; }
.project-body ul { list-style: none; }
.project-body li { padding-left: 26px; position: relative; margin-top: 10px; }
.project-body li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 12px; height: 2px; background: var(--red);
}

.project-info {
  background: var(--bg-soft); border-radius: var(--radius); padding: 32px;
  position: sticky; top: 110px;
}
.project-info h3 { font-size: 14px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.project-info .block + .block { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--line); }
.project-info p { font-size: 14px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--red); border: 1px solid var(--red); border-radius: 999px; padding: 5px 14px;
}

.project-nav { display: flex; justify-content: space-between; gap: 20px; margin-top: 70px; padding-top: 34px; border-top: 1px solid var(--line); }
.project-nav a { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink); }
.project-nav a span { display: block; font-weight: 400; color: var(--gray-light); font-size: 11px; letter-spacing: 2px; margin-bottom: 4px; }
.project-nav a:hover { color: var(--red); }

/* ---------- Contact ---------- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-card { background: var(--bg-soft); border-radius: var(--radius); padding: 40px; }
.contact-card h3 { font-size: 16px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.contact-card .email { font-size: 20px; font-weight: 500; word-break: break-all; }
.contact-card p + h3 { margin-top: 30px; }

.form-grid { display: grid; gap: 18px; }
.form-grid label { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink); display: block; margin-bottom: 6px; }
.form-grid input, .form-grid textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  border: 1px solid #ddd; border-radius: 8px; padding: 13px 16px; background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-grid input:focus, .form-grid textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(153, 27, 30, 0.12);
}
.form-grid textarea { min-height: 150px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .btn { margin-top: 6px; justify-self: start; }
.form-hint { font-size: 12px; color: var(--gray-light); }

/* ---------- Footer ---------- */
.site-footer { background: #1f1f1f; color: #9a9a9a; padding: 44px 0; font-size: 13px; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.site-footer a { color: #cfcfcf; }
.site-footer a:hover { color: var(--white); }
.footer-nav { display: flex; gap: 22px; letter-spacing: 1.5px; text-transform: uppercase; font-size: 11px; font-weight: 600; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split, .project-layout, .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .split-img { order: -1; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .project-info { position: static; }
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 84px 0 auto 0; z-index: 99;
    flex-direction: column; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .4s ease;
  }
  .nav-open .site-nav { max-height: 400px; box-shadow: var(--shadow-lg); }
  .site-nav a { padding: 16px 6%; width: 100%; border-top: 1px solid var(--line); }
  .site-nav a::after { display: none; }
  section { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================
   Home — 2026 editorial direction
   Brand palette and Raleway are intentionally unchanged.
   ========================================================== */

.home {
  --paper: #efebe6;
  --charcoal: #242424;
  --hairline: rgba(35, 35, 35, 0.24);
  background: var(--white);
  color: #454545;
}

.home .container { width: min(1320px, calc(100% - 96px)); }

.home section { padding: 0; }

.home .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: transparent;
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}

.home .site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--hairline);
}

.home .header-inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
}

.home .brand img { height: 42px; }

.home .site-nav { justify-content: center; gap: clamp(22px, 2.5vw, 42px); }

.home .site-nav a {
  font-size: 12px;
  letter-spacing: 1.8px;
  font-weight: 600;
}

.home .site-nav a::after { height: 1px; }

.header-cta {
  justify-self: end;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--red);
  padding: 8px 0;
}

.header-cta span { color: var(--red); margin-left: 8px; }
.header-cta:hover { color: var(--red); }

.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.4px;
  line-height: 1.4;
  text-transform: uppercase;
}

.home h2 {
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.09;
}

.home-hero {
  min-height: 92svh;
  padding: 126px 0 70px !important;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  display: none;
}

.home-hero-grid {
  display: block;
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.home-hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
}

.home-hero-copy .eyebrow span + span {
  color: #9b9b9b;
  padding-left: 20px;
  border-left: 1px solid var(--hairline);
}

.home-hero h1 {
  color: var(--charcoal);
  max-width: 640px;
  font-size: clamp(58px, 6.1vw, 94px);
  font-weight: 300;
  line-height: .96;
  letter-spacing: -.052em;
}

.hero-lede {
  max-width: 580px;
  margin-top: 36px;
  color: #484848;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }

.btn-square {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 250px;
  border-radius: 14px;
  margin-top: 0;
  padding: 17px 20px;
  box-shadow: none;
}

.btn-square span { font-size: 16px; margin-left: 28px; transition: transform var(--transition); }
.btn-square:hover span { transform: translate(3px, -3px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--hairline);
  padding: 7px 0;
}

.text-link span { color: var(--red); transition: transform var(--transition); }
.text-link:hover span { transform: translateX(4px); }

.home-hero-visual {
  position: absolute;
  z-index: 0;
  inset: 80px -8% 0 30%;
  min-height: 0;
  pointer-events: none;
}

.home-hero-visual::before {
  display: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 17%, rgba(255,255,255,.58) 40%, rgba(255,255,255,.12) 67%, rgba(255,255,255,.02) 100%),
    linear-gradient(180deg, rgba(255,255,255,.9) 0%, transparent 15%, transparent 86%, rgba(255,255,255,.2) 100%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% center;
  opacity: .84;
  filter: saturate(.9) brightness(1.02) contrast(.96);
}

.hero-stamp {
  position: absolute;
  z-index: 2;
  left: 24px;
  top: 24px;
  width: auto;
  aspect-ratio: auto;
  transform: none;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 15px;
  align-items: center;
  justify-content: start;
  padding: 15px 18px;
  text-transform: uppercase;
  box-shadow: 0 18px 50px rgba(36, 54, 70, .16);
  backdrop-filter: blur(18px);
}

.hero-stamp strong {
  grid-column: 1;
  grid-row: 1 / 3;
  color: var(--red);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  margin: 0;
  padding-right: 15px;
  border-right: 1px solid rgba(45,45,45,.16);
}

.hero-stamp span {
  grid-column: 2;
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.3;
}

.hero-stamp span:first-child { grid-row: 1; align-self: end; }
.hero-stamp span:last-child { grid-row: 2; align-self: start; }

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  width: 300px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: .4px;
  box-shadow: 0 18px 60px rgba(36, 54, 70, .16);
  backdrop-filter: blur(18px);
}

.hero-caption span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #5d5d5d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-cue i { width: 50px; height: 1px; background: var(--red); position: relative; overflow: hidden; }
.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  animation: scroll-line 2.4s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}

.home-intro { padding: 112px 0 !important; background: var(--paper); }

.intro-heading {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 64px;
  padding-bottom: 55px;
  align-items: start;
}

.intro-heading h2 { max-width: 920px; margin-top: -12px; }

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.principle {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 32px 36px 36px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--hairline);
  border-radius: 0;
  box-shadow: none;
}

.principle-number {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .18em;
  padding: 0;
}

.principle > div { margin-top: auto; }

.principle h3 {
  font-size: clamp(27px, 2.2vw, 33px);
  font-weight: 400;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}

.principle p {
  max-width: 360px;
  color: #444;
  font-size: 17px;
  line-height: 1.7;
}

.principle:nth-child(2) {
  background: transparent;
  border-color: var(--hairline);
  box-shadow: none;
}

.principle:nth-child(3) {
  background: transparent;
  border-right: 0;
}

.principle:nth-child(2) .principle-number { color: var(--red); }
.principle:nth-child(2) h3 { color: var(--ink); }

.principle:nth-child(2) p {
  color: #444;
}

.principle:hover {
  transform: none;
  box-shadow: none;
}

.home-impact {
  padding: 96px 0 104px !important;
  background: var(--white);
  color: #454545;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}

.home-impact::after {
  display: none;
}

.impact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8%;
}

.impact-intro h2 { color: var(--ink); margin: 28px 0 25px; font-size: clamp(37px, 4.1vw, 60px); }
.impact-intro > p { max-width: 500px; font-size: 17px; line-height: 1.72; }
.impact-intro .text-link { margin-top: 28px; }

.impact-stats {
  display: grid;
  grid-template-columns: 1.35fr .9fr .78fr .78fr;
  gap: 0;
  align-content: start;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
}

.impact-stat {
  min-height: 198px;
  padding: 34px 26px;
  background: transparent;
  border: 0;
  border-left: 1px solid var(--hairline);
  border-radius: 0;
  box-shadow: none;
}

.impact-stat:first-child { border-left: 0; padding-left: 0; }
.impact-stat:nth-child(even) { border-left: 1px solid var(--hairline); padding-left: 26px; }

.impact-stat strong {
  display: block;
  color: var(--ink);
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.impact-stat-primary:first-child strong { color: var(--red); }
.impact-stat-secondary strong {
  color: #555;
  font-size: clamp(30px, 3vw, 42px);
}

.impact-stat span {
  display: block;
  margin-top: 19px;
  color: #4d4d4d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.impact-note {
  position: absolute;
  right: 0;
  bottom: -32px;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #626262;
}

.home-work { padding: 124px 0 132px !important; }

.work-heading {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 10%;
  align-items: end;
  margin-bottom: 70px;
}

.work-heading h2 { max-width: 790px; margin-top: 24px; }
.work-heading > p { color: #484848; font-size: 17px; line-height: 1.8; max-width: 390px; padding-bottom: 8px; }

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.work-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  grid-column: span 4;
  grid-row: auto;
  position: relative;
  min-height: 510px;
  overflow: hidden;
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgba(35,35,35,.17);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(35,35,35,.07);
  color: var(--ink);
  transition: background var(--transition), transform var(--transition);
}

.work-card-feature,
.work-card-wide {
  grid-column: span 4;
  grid-row: auto;
}

.work-card-feature {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) 300px;
  grid-template-rows: auto 1fr;
  min-height: 330px;
  padding: 36px;
}

.work-card::after {
  display: none;
}

.work-card img {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  justify-self: stretch;
  width: 100%;
  aspect-ratio: 16 / 5;
  height: auto;
  margin-top: 28px;
  object-fit: cover;
  background: #e9e7e3;
  opacity: .78;
  filter: saturate(.64) contrast(1.05);
  transition: opacity .5s ease, filter .5s ease, transform .6s cubic-bezier(.2,.65,.3,1);
}

.work-card-feature img {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  justify-self: end;
  width: 300px;
  aspect-ratio: 4 / 3;
  margin-top: 0;
}

.work-card:nth-child(1) img { object-position: center 54%; }
.work-card:nth-child(2) img { object-position: center 40%; }
.work-card:nth-child(3) img { object-position: center 58%; }
.work-card:nth-child(4) img { object-position: center 50%; }

.work-index {
  position: static;
  grid-column: 1;
  grid-row: 1;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 0;
  border: 0;
}

.work-overlay {
  position: static;
  grid-column: 1;
  grid-row: 2;
  inset: auto;
  min-height: 0;
  padding: 44px 0 0;
  border: 0;
}

.work-overlay p {
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.work-overlay h3 {
  color: var(--ink);
  max-width: 360px;
  font-size: clamp(27px, 2.3vw, 36px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.work-card-feature .work-overlay {
  max-width: 740px;
  padding-top: 50px;
}

.work-card-feature .work-overlay h3 {
  max-width: 620px;
  font-size: clamp(38px, 4.2vw, 58px);
}

.work-card-feature .work-overlay p.work-summary { max-width: 650px; }

.work-overlay p.work-summary {
  max-width: 380px;
  margin: 20px 0 0;
  color: #444;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.72;
  text-transform: none;
}

.work-arrow {
  position: absolute;
  right: 32px;
  top: 28px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: var(--red);
  display: grid;
  place-items: center;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.work-card:hover { background: #efede9; transform: translateY(-3px); }
.work-card:hover img { opacity: 1; filter: saturate(.92); transform: translateY(-3px); }
.work-card:hover .work-arrow { background: var(--red); border-color: var(--red); color: white; transform: translate(3px, -3px); }

.work-all { margin-top: 44px; }

.home-testimonials { padding: 112px 0 !important; background: var(--paper); }

.testimonial-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 11%;
  align-items: start;
}

.testimonial-aside h2 {
  max-width: 500px;
  margin-top: 27px;
  font-size: clamp(34px, 3.8vw, 54px);
}

.quote-controls { display: flex; align-items: center; gap: 18px; margin-top: 52px; }

.quote-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.quote-controls button:hover { border-color: var(--red); color: var(--red); background: white; }

.quote-progress { width: 84px; height: 1px; background: rgba(45,45,45,.15); overflow: hidden; }
.quote-progress i { display: block; width: 25%; height: 100%; background: var(--red); transition: transform .5s ease; }
.quote-count {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-width: 72px;
  color: #686868;
  font-size: 13px;
  letter-spacing: .08em;
}
.quote-count b {
  color: var(--red);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.02em;
}

.home-testimonials .quote-slider {
  max-width: none;
  min-height: 390px;
  margin: 0;
  text-align: left;
  padding-top: 30px;
  border-top: 1px solid var(--hairline);
}

.home-testimonials .quote { inset: 30px 0 auto; }
.home-testimonials .quote.active { inset: auto; }

.home-testimonials .quote blockquote {
  color: var(--ink);
  font-size: clamp(27px, 3vw, 43px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: -.025em;
}

.home-testimonials .quote blockquote::before {
  content: "“";
  color: var(--red);
  font-size: 72px;
  font-weight: 300;
  line-height: .6;
  margin: 12px 0 30px;
}

.home-testimonials .quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 42px;
  padding-left: 24px;
  border-left: 2px solid var(--red);
}

.home-testimonials .quote figcaption strong {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.home-testimonials .quote figcaption span {
  color: #565656;
  font-size: 14px;
}

.home-cta { padding: 110px 0 !important; }

.cta-panel {
  position: relative;
  overflow: hidden;
  background: var(--red);
  border-radius: 28px;
  padding: 90px clamp(40px, 8vw, 120px);
  min-height: 470px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.cta-panel::after {
  display: none;
}

.cta-panel .eyebrow { color: rgba(255,255,255,.58); }

.cta-panel h2 {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 900px;
  margin: 26px 0 20px;
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-bottom: 36px;
  color: rgba(255,255,255,.84);
  font-size: 18px;
  line-height: 1.7;
}

.btn-light { position: relative; z-index: 1; background: white; color: var(--red) !important; }
.btn-light:hover { background: var(--red-dark); color: white !important; }

.cta-location {
  position: absolute;
  z-index: 1;
  right: 42px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cta-location span { width: 32px; height: 1px; background: rgba(255,255,255,.45); }

.home-footer {
  padding: 70px 0 28px;
  background: var(--paper);
  color: #4b4b4b;
  border-top: 1px solid var(--hairline);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 64px;
}

.footer-brand img { width: 210px; height: auto; filter: none; opacity: 1; }
.footer-top > p { color: #4b4b4b; font-size: 16px; line-height: 1.7; }

.footer-email {
  justify-self: end;
  color: var(--ink) !important;
  font-size: 17px;
  border-bottom: 1px solid rgba(45,45,45,.22);
  padding-bottom: 8px;
}

.footer-email span { color: var(--red); margin-left: 12px; }

.home-footer .footer-inner {
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 14px;
}

.home-footer .footer-nav { font-size: 12px; }
.home-footer a { color: var(--ink); }
.home-footer a:hover { color: var(--red); }

.home .reveal { transform: translateY(22px); transition-duration: .85s; }

@media (prefers-reduced-motion: reduce) {
  .home *, .home *::before, .home *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1100px) {
  .home .container { width: min(100% - 56px, 1100px); }
  .home .header-inner { grid-template-columns: 210px 1fr; }
  .home .header-cta { display: none; }
  .home-hero-visual { left: 24%; }
  .home-hero h1 { font-size: clamp(55px, 7.4vw, 82px); }
  .impact-grid { grid-template-columns: 1fr; gap: 58px; }
  .impact-intro { max-width: 760px; }
  .editorial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-card { grid-column: span 1; grid-template-columns: 1fr; min-height: 510px; }
  .work-card img { width: 100%; }
  .work-card-feature {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) 280px;
    grid-template-rows: auto 1fr;
    min-height: 330px;
  }
  .work-card-feature img { grid-column: 2; grid-row: 1 / 3; width: 280px; margin-top: 0; }
  .work-card-wide { grid-column: 1 / -1; min-height: 440px; }
  .work-overlay { padding-right: 22px; }
}

@media (max-width: 860px) {
  .home .site-header { background: rgba(255,255,255,.97); border-bottom-color: var(--hairline); }
  .home .header-inner { display: flex; min-height: 72px; }
  .home .brand img { height: 40px; }
  .home .nav-toggle { display: block; margin-left: auto; }
  .home .site-nav { inset: 72px 0 auto; align-items: flex-start; }
  .home-hero { min-height: auto; padding: 118px 0 72px !important; }
  .home-hero-copy { max-width: 680px; }
  .home-hero-visual { inset: 72px -20% 0 18%; margin: 0; }
  .scroll-cue { display: none; }
  .intro-heading, .impact-grid, .testimonial-layout { grid-template-columns: 1fr; }
  .intro-heading { gap: 34px; padding-bottom: 55px; }
  .intro-heading h2 { margin-top: 0; }
  .principles { grid-template-columns: 1fr; margin: 0; }
  .principle { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--hairline); }
  .principle:last-child { border-bottom: 0; }
  .impact-grid { gap: 58px; }
  .work-heading { grid-template-columns: 1fr; gap: 30px; }
  .editorial-grid { grid-template-columns: 1fr; gap: 24px; }
  .work-card,
  .work-card-wide { grid-column: auto; grid-template-columns: 1fr; min-height: 440px; padding: 28px; }
  .work-card img { width: 100%; }
  .work-card-feature { grid-column: auto; grid-template-columns: minmax(0, 1fr) 180px; min-height: 330px; padding: 28px; }
  .work-card-feature img { grid-column: 2; grid-row: 1 / 3; width: 180px; margin-top: 0; }
  .work-card-feature .work-overlay h3 { font-size: clamp(32px, 6vw, 46px); }
  .testimonial-layout { gap: 70px; }
  .testimonial-aside { display: grid; grid-template-columns: 1fr auto; gap: 20px; }
  .testimonial-aside .eyebrow { grid-column: 1 / -1; }
  .testimonial-aside h2 { margin-top: 0; }
  .quote-controls { margin: 10px 0 0; align-self: end; }
}

@media (max-width: 640px) {
  .home .container { width: calc(100% - 36px); }
  .home .brand img { width: 190px; height: auto; }
  .home-hero { padding: 108px 0 62px !important; }
  .home-hero h1 { font-size: clamp(48px, 15vw, 68px); line-height: .98; }
  .home-hero-copy .eyebrow { flex-wrap: wrap; gap: 10px 14px; margin-bottom: 26px; }
  .home-hero-copy .eyebrow span + span { padding-left: 14px; }
  .hero-lede { margin-top: 28px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .home-hero-visual { inset: 72px -55% 0 14%; margin: 0; }
  .hero-image { inset: 0; border-radius: 0; }
  .hero-image::after {
    background:
      linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 24%, rgba(255,255,255,.6) 54%, rgba(255,255,255,.14) 100%),
      linear-gradient(180deg, rgba(255,255,255,.9) 0%, transparent 18%, transparent 78%, rgba(255,255,255,.28) 100%);
  }
  .hero-image img { opacity: .68; object-position: 12% center; }
  .home-intro, .home-work { padding: 82px 0 !important; }
  .home-impact, .home-testimonials { padding: 78px 0 84px !important; }
  .principle { min-height: 176px; padding: 27px 0 30px; }
  .principle-number { font-size: 12px; }
  .principle h3 { font-size: 28px; }
  .principle p { font-size: 16px; }
  .impact-stats { grid-template-columns: 1fr 1fr; }
  .impact-stat { min-height: 148px; padding: 24px 16px 22px; border-bottom: 1px solid var(--hairline); }
  .impact-stat:first-child { padding-left: 0; }
  .impact-stat:nth-child(even) { padding-left: 16px; }
  .impact-stat:nth-child(3) { border-left: 0; padding-left: 0; border-bottom: 0; }
  .impact-stat:nth-child(4) { border-bottom: 0; }
  .impact-stat strong { font-size: clamp(28px, 9vw, 42px); }
  .impact-stat-secondary strong { font-size: clamp(27px, 8vw, 36px); }
  .impact-stat span { font-size: 12px; letter-spacing: 1.3px; }
  .work-heading { margin-bottom: 44px; }
  .editorial-grid { gap: 20px; }
  .work-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
    padding: 25px 22px 22px;
    border-radius: 22px;
  }
  .work-card-feature { min-height: 0; }
  .work-card img {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    aspect-ratio: 3 / 1;
    margin-top: 28px;
  }
  .work-card-feature img { width: 100%; }
  .work-overlay,
  .work-card-feature .work-overlay { grid-column: 1; grid-row: 2; padding: 42px 0 0; }
  .work-overlay h3 { max-width: calc(100% - 54px); }
  .work-card-feature .work-overlay h3 { max-width: calc(100% - 54px); font-size: 34px; }
  .work-arrow { right: 22px; top: 21px; width: 38px; height: 38px; }
  .testimonial-aside { display: block; }
  .quote-controls { margin-top: 34px; }
  .home-testimonials .quote-slider { min-height: 460px; }
  .home-testimonials .quote blockquote { font-size: clamp(25px, 8vw, 34px); }
  .home-cta { padding: 64px 0 !important; }
  .cta-panel { min-height: 470px; padding: 58px 28px 110px; border-radius: 24px; }
  .cta-location { left: 28px; right: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 44px; }
  .footer-email { justify-self: start; }
}

/* ==========================================================
   Inner pages — editorial system shared with the home page
   ========================================================== */

.inner {
  --paper: #efebe6;
  --hairline: rgba(35, 35, 35, .24);
  --soft-shadow: 0 18px 48px rgba(35, 35, 35, .07);
  background: var(--white);
  color: #454545;
}

.inner .container { width: min(1320px, calc(100% - 96px)); }

.inner .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--hairline);
  backdrop-filter: blur(18px);
}

.inner .header-inner {
  min-height: 80px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 28px;
}

.inner .brand img { height: 42px; width: auto; }
.inner .site-nav { justify-content: center; gap: clamp(22px, 2.5vw, 42px); }

.inner .site-nav a {
  font-size: 12px;
  letter-spacing: 1.8px;
  font-weight: 600;
}

.inner .site-nav a::after { height: 1px; }

.inner .header-cta {
  display: inline-flex;
  justify-self: end;
  align-items: center;
}

.inner .page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 88px;
  background: var(--white);
  border-bottom: 1px solid var(--hairline);
  text-align: left;
}

.inner .page-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -350px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(153, 27, 30, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 78px rgba(153, 27, 30, .018);
  pointer-events: none;
}

.inner .page-hero .container { position: relative; z-index: 1; }

.inner .page-hero h1 {
  max-width: 1050px;
  color: var(--ink);
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.052em;
  text-transform: none;
}

.inner .page-hero p {
  max-width: 820px;
  margin-top: 28px;
  color: #4b4b4b;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.62;
}

.inner .page-hero .breadcrumbs {
  color: #666;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.7;
}

.inner .breadcrumbs a { color: var(--ink); }

.inner section { padding: 112px 0; }
.inner section.tight { padding: 88px 0; }

.inner section.soft {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.inner .section-head {
  max-width: 980px;
  margin: 0 0 58px;
  text-align: left;
}

.inner .kicker {
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.4px;
  margin-bottom: 24px;
}

.inner .section-title {
  color: var(--ink);
  font-size: clamp(38px, 4.4vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.035em;
  text-transform: none;
}

.inner .section-sub {
  max-width: 620px;
  margin-top: 24px;
  color: #4b4b4b;
  font-size: 18px;
  line-height: 1.7;
}

.inner .accent-bar { display: none; }

.inner .section-copy {
  max-width: 900px;
  margin-left: 27%;
  color: #454545;
  font-size: 17px;
  line-height: 1.78;
}

.inner .section-copy p + p { margin-top: 18px !important; }

.inner .split {
  grid-template-columns: 1.15fr .85fr;
  gap: 9%;
  align-items: center;
}

.inner .split h2 {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-transform: none;
}

.inner .split p {
  color: #454545;
  font-size: 17px;
  line-height: 1.78;
}

.inner .split-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(35, 35, 35, .16);
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
}

.inner .split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.03);
}

.about-page .split-img img {
  object-position: 58% center;
  filter: saturate(.88) contrast(1.02);
}

.inner .gallery {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 18px;
  margin-top: 54px;
}

.inner .gallery figure {
  grid-column: span 3;
  aspect-ratio: auto;
  border: 0;
  border-radius: 18px;
  box-shadow: none;
}

.inner .gallery figure:first-child {
  grid-column: span 4;
  grid-row: span 2;
}

.inner .gallery img {
  filter: saturate(.68) contrast(1.04);
}

.inner .gallery figure:hover img { transform: none; }

.inner .cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 48px;
  border-top: 1px solid var(--hairline);
}

.inner .info-card {
  min-height: 190px;
  padding: 32px 0 34px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  box-shadow: none;
}

.inner .info-card:hover {
  transform: none;
  border-color: var(--hairline);
  box-shadow: none;
}

.inner .info-card h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.02em;
  text-transform: none;
}

.inner .info-card p {
  max-width: 560px;
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.72;
}

.inner .info-card:not(.num-card)::before {
  --icon-line: rgba(153, 27, 30, .82);
  --icon-soft: rgba(153, 27, 30, .22);
  content: "";
  display: block;
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  border: 1px solid rgba(153, 27, 30, .16);
  border-radius: 16px;
  background-color: rgba(153, 27, 30, .035);
}

.inner .cards-grid .info-card:not(.num-card):nth-child(8n + 1)::before {
  background:
    radial-gradient(circle at 50% 38%, transparent 0 6px, var(--icon-line) 6.5px 8px, transparent 8.5px),
    radial-gradient(ellipse at 50% 74%, transparent 0 11px, var(--icon-line) 11.5px 13px, transparent 13.5px),
    rgba(153, 27, 30, .035);
}

.inner .cards-grid .info-card:not(.num-card):nth-child(8n + 2)::before {
  background:
    radial-gradient(circle at 31% 48%, var(--icon-line) 0 4px, transparent 4.5px),
    radial-gradient(circle at 69% 48%, var(--icon-line) 0 4px, transparent 4.5px),
    linear-gradient(var(--icon-line), var(--icon-line)) center 48% / 21px 1px no-repeat,
    radial-gradient(circle at 50% 48%, transparent 0 18px, var(--icon-soft) 18.5px 19.5px, transparent 20px),
    rgba(153, 27, 30, .035);
}

.inner .cards-grid .info-card:not(.num-card):nth-child(8n + 3)::before {
  background:
    radial-gradient(circle at 50% 27%, var(--icon-line) 0 3.5px, transparent 4px),
    radial-gradient(circle at 28% 68%, var(--icon-line) 0 3.5px, transparent 4px),
    radial-gradient(circle at 72% 68%, var(--icon-line) 0 3.5px, transparent 4px),
    linear-gradient(62deg, transparent 48.5%, var(--icon-soft) 49% 51%, transparent 51.5%) center / 35px 33px no-repeat,
    linear-gradient(-62deg, transparent 48.5%, var(--icon-soft) 49% 51%, transparent 51.5%) center / 35px 33px no-repeat,
    rgba(153, 27, 30, .035);
}

.inner .cards-grid .info-card:not(.num-card):nth-child(8n + 4)::before {
  background:
    radial-gradient(circle at 50% 24%, var(--icon-line) 0 3px, transparent 3.5px),
    radial-gradient(circle at 76% 50%, var(--icon-line) 0 3px, transparent 3.5px),
    radial-gradient(circle at 50% 76%, var(--icon-line) 0 3px, transparent 3.5px),
    radial-gradient(circle at 24% 50%, var(--icon-line) 0 3px, transparent 3.5px),
    radial-gradient(circle at 50% 50%, transparent 0 16px, var(--icon-soft) 16.5px 18px, transparent 18.5px),
    rgba(153, 27, 30, .035);
}

.inner .cards-grid .info-card:not(.num-card):nth-child(8n + 5)::before {
  background:
    radial-gradient(circle at 34% 38%, transparent 0 9px, var(--icon-line) 9.5px 11px, transparent 11.5px),
    radial-gradient(circle at 68% 64%, transparent 0 9px, var(--icon-soft) 9.5px 11px, transparent 11.5px),
    linear-gradient(135deg, transparent 48%, var(--icon-line) 48.5% 50%, transparent 50.5%) center / 31px 31px no-repeat,
    rgba(153, 27, 30, .035);
}

.inner .cards-grid .info-card:not(.num-card):nth-child(8n + 6)::before {
  background:
    linear-gradient(var(--icon-line), var(--icon-line)) 20px 20px / 7px 7px no-repeat,
    linear-gradient(var(--icon-soft), var(--icon-soft)) 35px 20px / 7px 7px no-repeat,
    linear-gradient(var(--icon-soft), var(--icon-soft)) 20px 35px / 7px 7px no-repeat,
    linear-gradient(var(--icon-line), var(--icon-line)) 35px 35px / 7px 7px no-repeat,
    linear-gradient(90deg, var(--icon-soft), var(--icon-soft)) center / 29px 1px no-repeat,
    linear-gradient(var(--icon-soft), var(--icon-soft)) center / 1px 29px no-repeat,
    rgba(153, 27, 30, .035);
}

.inner .cards-grid .info-card:not(.num-card):nth-child(8n + 7)::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 7px, var(--icon-line) 7.5px 9px, transparent 9.5px 14px, var(--icon-soft) 14.5px 16px, transparent 16.5px 21px, var(--icon-soft) 21.5px 23px, transparent 23.5px),
    rgba(153, 27, 30, .035);
}

.inner .cards-grid .info-card:not(.num-card):nth-child(8n)::before {
  background:
    linear-gradient(var(--icon-line), var(--icon-line)) 18px 39px / 9px 7px no-repeat,
    linear-gradient(var(--icon-line), var(--icon-line)) 27px 31px / 9px 15px no-repeat,
    linear-gradient(var(--icon-line), var(--icon-line)) 36px 22px / 9px 24px no-repeat,
    linear-gradient(135deg, transparent 45%, var(--icon-soft) 46% 49%, transparent 50%) center / 35px 35px no-repeat,
    rgba(153, 27, 30, .035);
}

.solutions-page > section:first-of-type,
.clients-page > section:first-of-type { padding: 88px 0 104px; }

.inner .editorial-visual {
  position: relative;
  height: clamp(360px, 36vw, 520px);
  margin: 0 0 46px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(35, 35, 35, .16);
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(35, 35, 35, .09);
}

.inner .editorial-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent 70%, rgba(35,35,35,.05));
  pointer-events: none;
}

.inner .editorial-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.88) contrast(1.02);
}

.solutions-page .editorial-visual img { object-position: center 58%; }
.clients-page .editorial-visual img { object-position: center 62%; }

.solutions-page > section:first-of-type .cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0;
  border-bottom: 1px solid var(--hairline);
}

.clients-page > section:first-of-type .cards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0;
  border-bottom: 1px solid var(--hairline);
}

.inner .num-card {
  min-height: 238px;
  padding: 34px 32px 36px;
  border-bottom: 0;
  border-right: 1px solid var(--hairline);
}

.inner .num-card:last-child { border-right: 0; }

.inner .num-card .num {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 56px;
  border: 0;
  border-radius: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
}

.inner .projects-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px;
}

.inner .project-card {
  display: grid;
  grid-template-rows: 178px 1fr;
  min-height: 342px;
  aspect-ratio: auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(35, 35, 35, .17);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  color: var(--ink);
}

.inner .project-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  opacity: .82;
  filter: saturate(.66) contrast(1.04);
  transition: opacity .4s ease, filter .4s ease;
}

.inner .project-card .card-overlay {
  position: static;
  inset: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 25px 24px 28px;
  background: transparent;
}

.inner .project-card h3 {
  color: var(--ink);
  font-size: clamp(21px, 1.8vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.02em;
  text-transform: none;
}

.inner .project-card .card-tag {
  order: -1;
  margin: 0 0 12px;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1.5px;
  opacity: 1;
  transform: none;
}

.inner .project-card:hover img {
  opacity: 1;
  filter: saturate(.86) contrast(1.04);
  transform: none;
}

.clients-page .testimonials {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.clients-page .testimonials .section-head { margin-bottom: 30px; }

.clients-page .quote-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 30px;
}

.clients-page .quote-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.clients-page .quote-slider {
  max-width: 980px;
  min-height: 320px;
  margin: 0;
  padding-top: 38px;
  border-top: 1px solid var(--hairline);
  text-align: left;
}

.clients-page .quote blockquote {
  color: var(--ink);
  font-size: clamp(27px, 3.1vw, 42px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: -.025em;
}

.clients-page .quote blockquote::before {
  margin: 8px 0 24px;
  color: var(--red);
  font-size: 68px;
}

.clients-page .quote cite {
  margin-top: 34px;
  color: var(--red);
  font-size: 12px;
}

.clients-page .quote-dots { display: none; }

.inner .cta-band {
  padding: 88px 0;
  background: var(--white);
  text-align: left;
}

.inner .cta-band > .container {
  min-height: 420px;
  padding: 78px clamp(36px, 8vw, 112px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--red);
  border-radius: 28px;
}

.inner .cta-band h2 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-transform: none;
}

.inner .cta-band p {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.7;
}

.inner .cta-band .btn {
  margin-top: 34px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: 12px;
  color: var(--red) !important;
  box-shadow: none;
}

.inner .cta-band .btn:hover {
  background: var(--red-dark);
  color: var(--white) !important;
}

.inner .site-footer {
  padding: 38px 0;
  background: var(--paper);
  color: #595959;
  border-top: 1px solid var(--hairline);
}

.inner .site-footer a { color: var(--ink); }
.inner .site-footer a:hover { color: var(--red); }

.inner .footer-inner {
  padding-top: 0;
  border-top: 0;
  font-size: 13px;
}

.inner .footer-nav { font-size: 11px; }

.contact-page section { padding: 104px 0 120px; }

.contact-page .contact-layout {
  grid-template-columns: .72fr 1.28fr;
  gap: 9%;
}

.contact-page .contact-side {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 22px;
}

.contact-page .contact-visual {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(35, 35, 35, .16);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.contact-page .contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(.86) contrast(1.02);
}

.contact-page .contact-card {
  padding: 42px;
  background: var(--paper);
  border: 1px solid rgba(35, 35, 35, .17);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.contact-page .contact-card h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .06em;
}

.contact-page .contact-card p { color: #4a4a4a; }
.contact-page .contact-card .email { font-size: 19px; }

.contact-page .contact-layout .section-title {
  margin-bottom: 34px !important;
  font-size: clamp(38px, 4vw, 54px) !important;
}

.contact-page .form-grid { gap: 22px; }

.contact-page .form-grid label {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 1.5px;
}

.contact-page .form-grid input,
.contact-page .form-grid textarea {
  padding: 15px 16px;
  background: #f8f6f3;
  border: 1px solid rgba(35, 35, 35, .18);
  border-radius: 10px;
  font-size: 16px;
}

.contact-page .form-grid .btn {
  padding: 16px 24px;
  border-radius: 12px;
}

.case-page .page-hero { padding-bottom: 74px; }

.case-page .project-hero {
  width: min(1320px, calc(100% - 96px));
  height: min(52vw, 590px);
  min-height: 420px;
  margin: 42px auto 0;
  overflow: hidden;
  background-position: center;
  border: 1px solid rgba(35, 35, 35, .16);
  border-radius: 30px;
  box-shadow: 0 28px 72px rgba(35, 35, 35, .1);
  filter: saturate(.76) contrast(1.03);
}

.case-page .project-hero::before {
  background: linear-gradient(180deg, transparent 55%, rgba(20, 20, 20, .14));
}

.case-page .project-layout {
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, .58fr);
  gap: 8%;
}

.case-page .project-body { max-width: 820px; }

.case-page .project-body h2 {
  margin-bottom: 30px;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.035em;
  text-transform: none;
}

.case-page .project-body p,
.case-page .project-body li {
  color: #454545;
  font-size: 17px;
  line-height: 1.78;
}

.case-page .project-body p + p,
.case-page .project-body ul + p,
.case-page .project-body p + ul { margin-top: 20px; }

.case-page .project-body li { margin-top: 12px; padding-left: 28px; }
.case-page .project-body li::before { top: 14px; width: 14px; height: 1px; }

.case-page .project-info {
  top: 106px;
  padding: 34px;
  background: var(--paper);
  border: 1px solid rgba(35, 35, 35, .17);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

.case-page .project-info h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
}

.case-page .project-info p {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.72;
}

.case-page .project-info .block + .block {
  margin-top: 28px;
  padding-top: 28px;
  border-top-color: var(--hairline);
}

.case-page .tags { gap: 8px; }

.case-page .tag {
  padding: 6px 11px;
  border-color: rgba(153, 27, 30, .45);
  border-radius: 8px;
  font-size: 10px;
}

.case-page .project-info .btn {
  width: 100%;
  margin-top: 0;
  padding: 14px 16px;
  border-radius: 10px;
  text-align: center;
}

.case-page .project-nav {
  margin-top: 82px;
  padding-top: 30px;
  border-top-color: var(--hairline);
}

.case-page .project-nav a {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: .08em;
}

.case-page .project-nav a span {
  margin-bottom: 8px;
  color: var(--red);
}

.case-page section.soft .section-title {
  font-size: clamp(34px, 3.4vw, 46px) !important;
}

.case-page section.soft .projects-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

@media (max-width: 1100px) {
  .inner .container { width: min(100% - 56px, 1100px); }
  .inner .header-inner { grid-template-columns: 205px 1fr; }
  .inner .header-cta { display: none; }
  .clients-page > section:first-of-type .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .clients-page > section:first-of-type .num-card:nth-child(2) { border-right: 0; }
  .clients-page > section:first-of-type .num-card:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
  .inner .projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .case-page .project-hero { width: calc(100% - 56px); }
}

@media (max-width: 860px) {
  .inner .header-inner { display: flex; min-height: 72px; }
  .inner .brand img { height: 40px; }
  .inner .nav-toggle { display: block; margin-left: auto; }
  .inner .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    z-index: 99;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    max-height: 0;
    overflow: hidden;
    background: var(--white);
    border-bottom: 1px solid var(--hairline);
    transition: max-height .4s ease;
  }
  .inner.nav-open .site-nav { max-height: 420px; box-shadow: var(--soft-shadow); }
  .inner .site-nav a {
    width: 100%;
    padding: 16px 28px;
    border-top: 1px solid var(--hairline);
  }
  .inner .site-nav a::after { display: none; }
  .inner .page-hero { padding: 82px 0 64px; }
  .inner .page-hero h1 { font-size: clamp(52px, 10vw, 76px); }
  .inner section { padding: 88px 0; }
  .inner section.tight { padding: 74px 0; }
  .inner .split,
  .contact-page .contact-layout,
  .case-page .project-layout { grid-template-columns: 1fr; gap: 50px; }
  .contact-page .contact-side { position: static; }
  .inner .section-copy { max-width: 760px; margin-left: 0; }
  .inner .cards-grid { gap: 0 32px; }
  .solutions-page > section:first-of-type .cards-grid {
    grid-template-columns: 1fr !important;
  }
  .solutions-page > section:first-of-type .num-card {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }
  .solutions-page > section:first-of-type .num-card:last-child { border-bottom: 0; }
  .inner .num-card .num { margin-bottom: 34px; }
  .case-page .project-hero {
    width: calc(100% - 56px);
    height: 54vw;
    min-height: 360px;
    margin-top: 30px;
    border-radius: 24px;
  }
  .case-page .project-info { position: static; }
}

@media (max-width: 640px) {
  .inner .container { width: calc(100% - 36px); }
  .inner .brand img { width: 190px; height: auto; }
  .inner .page-hero { padding: 68px 0 54px; }
  .inner .page-hero h1 { font-size: clamp(46px, 14vw, 64px); }
  .inner .page-hero p { margin-top: 22px; font-size: 16px; }
  .inner section,
  .contact-page section { padding: 74px 0; }
  .inner .section-head { margin-bottom: 42px; }
  .inner .section-title { font-size: clamp(34px, 10vw, 46px); }
  .inner .split { gap: 36px; }
  .inner .split h2 { font-size: 38px; }
  .inner .split-img { border-radius: 20px; }
  .inner .editorial-visual {
    height: 58vw;
    min-height: 270px;
    margin-bottom: 34px;
    border-radius: 20px;
  }
  .inner .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
    gap: 12px;
  }
  .inner .gallery figure,
  .inner .gallery figure:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }
  .inner .gallery figure:first-child { grid-column: 1 / -1; }
  .inner .cards-grid,
  .clients-page > section:first-of-type .cards-grid {
    grid-template-columns: 1fr !important;
    gap: 0;
  }
  .inner .info-card { min-height: 0; padding: 28px 0 30px; }
  .inner .info-card:not(.num-card)::before {
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    border-radius: 14px;
  }
  .inner .num-card {
    min-height: 178px;
    padding: 28px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }
  .clients-page > section:first-of-type .num-card:nth-child(-n+3) { border-bottom: 1px solid var(--hairline); }
  .clients-page > section:first-of-type .num-card:last-child { border-bottom: 0; }
  .inner .projects-grid,
  .case-page section.soft .projects-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }
  .inner .project-card {
    grid-template-rows: 150px auto;
    min-height: 300px;
  }
  .inner .project-card img { height: 150px; }
  .clients-page .quote-slider { min-height: 390px; }
  .clients-page .quote blockquote { font-size: clamp(25px, 8vw, 34px); }
  .inner .cta-band { padding: 64px 0; }
  .inner .cta-band > .container {
    min-height: 440px;
    padding: 56px 28px;
    border-radius: 24px;
  }
  .inner .cta-band h2 { font-size: 40px; }
  .contact-page .contact-card { padding: 30px 26px; }
  .contact-page .form-row { grid-template-columns: 1fr; }
  .case-page .project-hero {
    width: calc(100% - 36px);
    height: 62vw;
    min-height: 270px;
    border-radius: 20px;
  }
  .case-page .project-body h2 { font-size: 38px; }
  .case-page .project-body p,
  .case-page .project-body li { font-size: 16px; }
  .case-page .project-info { padding: 28px 24px; }
  .case-page .project-nav { gap: 26px; }
  .case-page .project-nav a { max-width: 46%; font-size: 12px; }
  .inner .footer-inner { align-items: flex-start; flex-direction: column; }
}

/* Primary reading copy uses the same near-black as the headings.
   Grey remains reserved for metadata, captions and utility notes. */
.home .hero-lede,
.home .impact-intro > p:not(.eyebrow),
.home .principle p,
.home .work-heading > p,
.home .work-overlay p.work-summary,
.home .footer-top > p,
.inner .page-hero p:not(.breadcrumbs),
.inner .section-sub,
.inner .section-copy,
.inner .split p,
.inner .info-card p,
.inner .contact-card p,
.inner .project-body p,
.inner .project-body li,
.inner .project-info p {
  color: var(--ink);
}

/* Testimonials: unmistakable quotation treatment and visible attribution. */
.home-testimonials .quote-slider,
.clients-page .quote-slider {
  min-height: 420px;
  padding-top: 0;
  border-top: 0;
}

.home-testimonials .quote,
.clients-page .quote {
  inset: 0;
  min-height: 360px;
  padding: 44px 48px 42px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(35, 35, 35, .15);
  border-radius: 24px;
  box-shadow: 0 20px 52px rgba(35, 35, 35, .07);
}

.home-testimonials .quote.active,
.clients-page .quote.active { inset: auto; }

.home-testimonials .quote blockquote,
.clients-page .quote blockquote {
  position: relative;
  padding-left: 58px;
}

.home-testimonials .quote blockquote::before,
.clients-page .quote blockquote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: 2px;
  margin: 0;
  color: var(--red);
  font-size: 82px;
  font-weight: 300;
  font-style: normal;
  line-height: .72;
}

.home-testimonials .quote blockquote::after,
.clients-page .quote blockquote::after {
  content: "”";
  display: inline;
  margin-left: .1em;
  color: var(--red);
  font-size: .8em;
  font-weight: 400;
  line-height: 0;
}

.home-testimonials .quote figcaption {
  margin: 34px 0 0 58px;
  padding: 22px 0 0;
  border-top: 1px solid var(--hairline);
  border-left: 0;
}

.home-testimonials .quote figcaption strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.home-testimonials .quote figcaption strong::before {
  content: "—";
  margin-right: 11px;
  color: var(--red);
}

.home-testimonials .quote figcaption span {
  margin-top: 5px;
  color: var(--ink);
  font-size: 15px;
}

.clients-page .quote cite {
  margin: 34px 0 0 58px;
  padding: 22px 0 0;
  border-top: 1px solid var(--hairline);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.clients-page .quote cite::before {
  content: "—";
  margin-right: 11px;
  color: var(--red);
}

@media (max-width: 640px) {
  .home-testimonials .quote-slider,
  .clients-page .quote-slider { min-height: 470px; }

  .home-testimonials .quote,
  .clients-page .quote {
    min-height: 420px;
    padding: 32px 26px 30px;
    border-radius: 20px;
  }

  .home-testimonials .quote blockquote,
  .clients-page .quote blockquote { padding-left: 40px; }

  .home-testimonials .quote blockquote::before,
  .clients-page .quote blockquote::before { font-size: 64px; }

  .home-testimonials .quote figcaption,
  .clients-page .quote cite { margin-left: 40px; }
}

/* Clients intro: the generated image supports the categories instead of
   behaving like a second hero banner. */
.clients-page > section:first-of-type .container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(480px, .85fr);
  gap: 34px;
  align-items: stretch;
}

.clients-page > section:first-of-type .editorial-visual {
  height: auto;
  min-height: 510px;
  margin: 0;
}

.clients-page > section:first-of-type .cards-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-self: stretch;
}

.clients-page > section:first-of-type .num-card {
  min-height: 0;
  padding: 30px 28px 32px;
}

.clients-page > section:first-of-type .num-card:nth-child(2) { border-right: 0; }
.clients-page > section:first-of-type .num-card:nth-child(-n + 2) { border-bottom: 1px solid var(--hairline); }

@media (max-width: 860px) {
  .clients-page > section:first-of-type .container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .clients-page > section:first-of-type .editorial-visual {
    height: 330px;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .clients-page > section:first-of-type .editorial-visual { height: 260px; }
}

/* Solutions intro mirrors the Clients rhythm, but keeps its three service
   directions as a calm vertical sequence. */
.solutions-page > section:first-of-type .container {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(440px, .85fr);
  gap: 34px;
  align-items: stretch;
}

.solutions-page > section:first-of-type .editorial-visual {
  height: auto;
  min-height: 510px;
  margin: 0;
}

.solutions-page > section:first-of-type .cards-grid {
  grid-template-columns: 1fr !important;
  align-self: stretch;
}

.solutions-page > section:first-of-type .num-card {
  min-height: 0;
  padding: 28px 30px 30px;
  border-right: 0;
  border-bottom: 1px solid var(--hairline);
}

.solutions-page > section:first-of-type .num-card:last-child { border-bottom: 0; }
.solutions-page > section:first-of-type .num-card .num { margin-bottom: 28px; }

@media (max-width: 860px) {
  .solutions-page > section:first-of-type .container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .solutions-page > section:first-of-type .editorial-visual {
    height: 330px;
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .solutions-page > section:first-of-type .editorial-visual { height: 260px; }
}
