/* ==========================================================================
   Will Siscar | Good design sells.
   Newsreader + Inter editorial layout
   ========================================================================== */

:root {
  --black: #0b0a09;
  --ink: #151311;
  --paper: #fbfaf8;
  --white: #ffffff;
  --stone: #f3f0eb;
  --stone-2: #ebe6df;
  --muted: #67625c;
  --muted-2: #726c66;
  --line: #e4dfd8;
  --line-dark: rgba(255, 255, 255, 0.2);
  --accent: #D64716;
  --accent-dark: #b33a10;
  --accent-deep: #9c320d;
  --accent-light: #f2683a;
  /* --bronze e a cor de hover de link e o anel de foco. Em fundo claro usa o tom escuro
     (5.95:1). As secoes escuras redefinem o token abaixo para o tom claro (6.42:1). */
  --bronze: var(--accent-dark);

  --serif: "Newsreader", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap: 1240px;
  --gutter: clamp(20px, 4.5vw, 56px);
  --section: clamp(64px, 8vw, 112px);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
[hidden] { display: none !important; }
svg { flex-shrink: 0; }
:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }
.hero, .band, .cta, .further, .on-dark, .dual__card, .exp-split__card,
.to-identity__card, .location, .family--dark, .crumbs {
  --bronze: var(--accent-light);
  --muted-2: #9c968f;   /* o cinza secundario clareia em fundo escuro: 6.76:1 sobre o preto */
}
/* .crumbs--light fica em fundo claro, entao volta aos valores escuros. */
.crumbs--light { --bronze: var(--accent-dark); --muted-2: #726c66; }

.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--stone { background: var(--stone); }
.section--white { background: var(--white); }
.section--dark { background: var(--black); color: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Typography ------------------------------------------------------------ */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 14px;
}
h1, h2, h3, h4, .serif, .h1, .h2, .h3, .h4 {
  font-family: var(--serif);
  font-weight: 350;
  letter-spacing: -0.012em;
  margin: 0;
  font-optical-sizing: auto;
}
.h1 { font-size: clamp(40px, 5.3vw, 70px); line-height: 1.02; }
.h2 { font-size: clamp(32px, 3.7vw, 48px); line-height: 1.06; }
.h3 { font-size: clamp(24px, 2.3vw, 30px); line-height: 1.12; }
.h4 { font-size: 21px; line-height: 1.2; }
.lead { font-size: clamp(16px, 1.35vw, 18px); line-height: 1.6; font-weight: 300; }
.muted { color: var(--muted); }
.body-light { font-weight: 300; color: var(--muted); }
.section--dark .body-light, .on-dark .body-light { color: rgba(255,255,255,.78); }
.small { font-size: 13px; line-height: 1.55; }
.italic { font-style: italic; }

/* Buttons & links ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 24px; border: 1px solid transparent; border-radius: 2px;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
  white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; transition: transform .25s; }
.btn:hover svg { transform: translateX(3px); }
.btn--light { background: var(--accent-dark); color: var(--white); }
.btn--light:hover { background: var(--accent-deep); }
.btn--dark { background: var(--accent-dark); color: var(--white); }
.btn--dark:hover { background: var(--accent-deep); }
.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--outline-light { border-color: rgba(255,255,255,.7); color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  white-space: nowrap;
}
.link-arrow svg { width: 14px; height: 14px; transition: transform .25s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* Header ---------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; height: var(--header-h); gap: 24px; }
.logo { display: block; margin-right: auto; line-height: 0; flex-shrink: 0; }
.logo img { height: 38px; width: auto; }
.logo--footer { margin-right: 0; }
.logo--footer img { height: 44px; }
.nav { display: flex; align-items: center; gap: clamp(18px, 2.6vw, 40px); margin-right: auto; }
.nav > li { position: relative; }
.nav > li > a, .nav > li > button {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: #3b3733;
  padding: 26px 0; position: relative;
}
.nav > li > a::after, .nav > li > button::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 20px; height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav > li > a:hover::after, .nav > li > button:hover::after, .nav a[aria-current="page"]::after, .nav .is-active::after { transform: scaleX(1); }
.nav a[aria-current="page"], .nav .is-active { color: var(--ink); font-weight: 600; }
.nav .chev { width: 12px; height: 12px; }

.menu {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  background: var(--white); border: 1px solid var(--line); box-shadow: 0 24px 60px rgba(20, 16, 12, .12);
  padding: 28px 32px; display: grid; grid-template-columns: repeat(2, minmax(210px, 1fr)); gap: 8px 40px;
  opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s;
  width: max-content;
}
.has-menu:hover .menu, .has-menu:focus-within .menu, .has-menu.is-open .menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.menu .eyebrow { color: var(--muted-2); margin-bottom: 8px; font-size: 10px; }
.menu a { display: block; padding: 6px 0; font-family: var(--serif); font-size: 18px; color: var(--ink); }
.menu a:hover { color: var(--bronze); }
.menu__col + .menu__col { border-left: 1px solid var(--line); padding-left: 40px; }

.header-right { display: flex; align-items: center; gap: 28px; padding-left: 12px; }
.tagline { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); white-space: nowrap; }
.header-right .btn { padding: 13px 20px; }
.burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; margin-right: -10px; }
.burger svg { width: 24px; height: 24px; }

.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; background: var(--white); z-index: 49;
  padding: 24px var(--gutter) 40px; overflow-y: auto;
  transform: translateY(-8px); opacity: 0; visibility: hidden; transition: .25s;
}
.mobile-nav.is-open { transform: none; opacity: 1; visibility: visible; }
.mobile-nav > a, .mobile-nav details summary {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--serif); font-size: 28px; padding: 14px 0; border-bottom: 1px solid var(--line); cursor: pointer; list-style: none;
}
.mobile-nav details summary::-webkit-details-marker { display: none; }
.mobile-nav details .sub { padding: 10px 0 18px; display: grid; gap: 4px; }
.mobile-nav details .sub a { font-size: 16px; color: var(--muted); padding: 6px 0; }
.mobile-nav details .sub .eyebrow { margin: 12px 0 4px; color: var(--muted-2); font-size: 10px; }
.mobile-nav .btn { margin-top: 28px; justify-content: center; width: 100%; }

@media (max-width: 1100px) { .tagline { display: none; } }
@media (max-width: 960px) {
  .nav, .header-right .btn { display: none; }
  .burger { display: inline-flex; }
  .logo img { height: 30px; }
}
body.nav-open { overflow: hidden; }

/* Hero ------------------------------------------------------------------ */
.hero {
  position: relative; background: var(--black); color: var(--white); overflow: hidden;
  min-height: clamp(480px, 42vw, 620px); display: flex; align-items: center;
}
.hero__media { position: absolute; top: 0; right: 0; bottom: 0; width: 64%; }
.hero__media img, .hero__media .slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
}
.hero__media .slide { opacity: 0; transition: opacity 1.1s ease; }
.hero__media .slide.is-active { opacity: 1; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,10,9,.35), transparent 40%); pointer-events: none; }
.hero .wrap { position: relative; z-index: 2; }
.hero__content { max-width: 600px; padding-block: 80px; }
.hero__content .h1 { margin-bottom: 22px; }
.hero__content .lead { color: rgba(255,255,255,.9); max-width: 470px; }
.hero__content .lead + .lead { margin-top: 14px; }
.hero__side {
  position: absolute; z-index: 3; right: var(--gutter); top: 64px;
  border-left: 1px solid rgba(255,255,255,.45); padding: 2px 0 2px 18px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; line-height: 2.05;
}
.hero__quote { position: absolute; z-index: 3; right: calc(var(--gutter) + 10px); top: 26%; font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.3vw, 32px); line-height: 1.15; max-width: 240px; }
.hero__quote::after { content: ""; display: block; width: 40px; height: 1px; background: rgba(255,255,255,.7); margin-top: 22px; }
.hero__tags { margin-top: 40px; font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.85); display: flex; flex-wrap: wrap; gap: 8px 12px; }
.hero__tags span + span::before { content: "/"; margin-right: 12px; color: rgba(255,255,255,.5); }
.hero__pager { position: absolute; z-index: 3; right: var(--gutter); top: 50%; transform: translateY(-50%); display: grid; justify-items: center; gap: 8px; font-size: 10px; font-weight: 600; letter-spacing: .1em; }
.hero__pager i { width: 1px; height: 22px; background: rgba(255,255,255,.5); }
.hero__arrows { position: absolute; z-index: 3; right: var(--gutter); bottom: 26px; display: flex; gap: 14px; }
.hero__arrows button { width: 30px; height: 30px; display: grid; place-items: center; color: #fff; opacity: .85; }
.hero__arrows button:hover { opacity: 1; }
.hero__arrows svg { width: 16px; height: 16px; }
/* Controle de pausa do carrossel (WCAG 2.2.2). O icone segue o estado real do timer. */
.hero__arrows [data-playtoggle] .i-play { display: none; }
.hero.is-paused .hero__arrows [data-playtoggle] .i-pause { display: none; }
.hero.is-paused .hero__arrows [data-playtoggle] .i-play { display: block; }
.hero__arrows [data-playtoggle] { margin-right: 4px; }

@media (max-width: 860px) {
  .hero { flex-direction: column; align-items: stretch; min-height: 0; }
  .hero__content { padding-block: 56px 8px; }
  .hero__media { position: relative; width: 100%; height: clamp(260px, 62vw, 420px); order: 2; }
  .hero__media img, .hero__media .slide {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 30%);
  }
  .hero__media::after { display: none; }
  .hero__side, .hero__quote, .hero__pager { display: none; }
  .hero__arrows { bottom: 18px; }
}

/* Stats ----------------------------------------------------------------- */
.stats { background: var(--white); border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { text-align: center; padding: 26px 12px 24px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { display: block; font-family: var(--serif); font-weight: 350; font-size: clamp(28px, 2.6vw, 36px); line-height: 1.1; }
.stat span { display: block; margin-top: 6px; font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #45403b; }
@media (max-width: 640px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: 0; grid-column: 1 / -1; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* Section head ---------------------------------------------------------- */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px 40px; margin-bottom: clamp(28px, 3.5vw, 44px); flex-wrap: wrap; }
.section-head .h2 { max-width: 760px; }
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 6vw, 96px); align-items: start; }
.split--center { align-items: center; }
.split__aside { padding-top: 6px; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* Feature (icon) grids -------------------------------------------------- */
.icon { width: 34px; height: 34px; stroke: currentColor; fill: none; stroke-width: 1.25; stroke-linecap: round; stroke-linejoin: round; }
.features { display: grid; margin-top: clamp(40px, 5vw, 64px); }
.features--4 { grid-template-columns: repeat(4, 1fr); }
.features--5 { grid-template-columns: repeat(5, 1fr); }
.feature { padding: 4px clamp(14px, 2vw, 28px); }
.feature + .feature { border-left: 1px solid var(--line); }
.features--center .feature { text-align: center; }
.features--center .icon { margin-inline: auto; }
.feature .icon { margin-bottom: 16px; }
.feature h3 { font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0; margin-bottom: 8px; }
.feature--caps h3 { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; line-height: 1.5; }
.feature p { font-size: 13px; line-height: 1.55; color: var(--muted); font-weight: 300; }
.features--flush .feature:first-child { padding-left: 0; }
@media (max-width: 960px) {
  .features--5 { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .features--5 .feature:nth-child(3n+1) { border-left: 0; }
}
@media (max-width: 760px) {
  .features--4 { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .features--4 .feature:nth-child(odd) { border-left: 0; }
  .features--5 { grid-template-columns: 1fr 1fr; }
  .features--5 .feature { border-left: 0 !important; }
  .features--5 .feature:nth-child(even) { border-left: 1px solid var(--line) !important; }
  .features--flush .feature:nth-child(odd) { padding-left: 0; }
}

/* Side features: 2x2 / 3x2 / 4 col grid next to intro text */
.fgrid { display: grid; gap: 0; }
.fgrid--2 { grid-template-columns: 1fr 1fr; }
.fgrid--3 { grid-template-columns: repeat(3, 1fr); }
.fgrid--4 { grid-template-columns: repeat(4, 1fr); }
.fgrid .feature { border-left: 1px solid var(--line); padding: 8px 22px 26px 28px; }
.fgrid .feature .icon { width: 30px; height: 30px; margin-bottom: 12px; }
.fgrid--2 .feature:nth-child(n+3) { padding-top: 26px; }
.fgrid--3 .feature:nth-child(n+4) { padding-top: 26px; }
.fgrid.features--center .feature { padding-inline: 18px; }
@media (max-width: 1000px) {
  .fgrid--4 { grid-template-columns: 1fr 1fr; }
  .fgrid--4 .feature:nth-child(n+3) { padding-top: 26px; }
}
@media (max-width: 560px) {
  .fgrid--2, .fgrid--3, .fgrid--4 { grid-template-columns: 1fr 1fr; }
  .fgrid .feature { padding: 14px 12px 20px 16px !important; }
}

/* Dark split band (image right) ----------------------------------------- */
.band { position: relative; background: var(--black); color: var(--white); overflow: hidden; }
.band__media { position: absolute; top: 0; right: 0; bottom: 0; width: 60%; }
.band__media img { width: 100%; height: 100%; object-fit: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%); mask-image: linear-gradient(90deg, transparent 0%, #000 30%); }
.band .wrap { position: relative; z-index: 2; }
.band__content { max-width: 520px; padding-block: clamp(56px, 6vw, 80px); }
.band__content .h2 { margin-bottom: 22px; }
.band__side { position: absolute; z-index: 3; right: var(--gutter); top: 50%; transform: translateY(-50%); border-left: 1px solid rgba(255,255,255,.4); padding-left: 20px; font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; line-height: 2.5; background: linear-gradient(90deg, rgba(11,10,9,.55), rgba(11,10,9,0)); }
.band--short .band__content { padding-block: clamp(44px, 5vw, 64px); }
.checklist { display: grid; gap: 10px; }
.checklist li { display: flex; gap: 12px; align-items: center; font-size: 14px; font-weight: 300; }
.checklist svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.on-dark .checklist li, .band .checklist li { color: rgba(255,255,255,.92); }
@media (max-width: 860px) {
  .band { display: flex; flex-direction: column; }
  .band__media { position: relative; width: 100%; height: clamp(240px, 60vw, 380px); order: 2; }
  .band__media img { -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%); mask-image: linear-gradient(180deg, transparent 0%, #000 30%); }
  .band__content { padding-bottom: 12px; }
  .band__side { display: none; }
}

/* Included (checklist + image) ------------------------------------------ */
.included { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.included__text { padding: var(--section) clamp(24px, 5vw, 72px) var(--section) 0; }
.included__text .h2 { margin-bottom: 14px; }
.included__text .body-light { margin-bottom: 24px; }
.included__media { position: relative; min-height: 420px; }
.included__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.included .checklist li { color: #3b3632; }
.included-wrap { display: grid; grid-template-columns: minmax(var(--gutter), 1fr) minmax(0, calc(var(--wrap) / 2)) minmax(0, calc(var(--wrap) / 2)) minmax(0, 1fr); }
.included-wrap .included__text { grid-column: 2; }
.included-wrap .included__media { grid-column: 3 / 5; }
@media (max-width: 860px) {
  .included-wrap { display: block; }
  .included-wrap .included__text { padding: var(--section) var(--gutter) 40px; }
  .included-wrap .included__media { min-height: 0; aspect-ratio: 4 / 3; }
}

/* Cards: work ----------------------------------------------------------- */
.cards { display: grid; gap: clamp(16px, 1.8vw, 24px); }
.cards--2 { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.cards--6 { grid-template-columns: repeat(6, 1fr); gap: 16px; }
.card { display: block; }
.card__img { position: relative; overflow: hidden; background: var(--stone-2); aspect-ratio: 4 / 3; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.card:hover .card__img img { transform: scale(1.04); }
.card__body { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding-top: 14px; }
.card__title { font-size: 13.5px; font-weight: 600; line-height: 1.35; }
.card__meta { font-size: 12.5px; color: var(--muted); font-weight: 300; line-height: 1.45; }
.card__meta + .card__meta { color: var(--muted-2); }
.card__arrow { width: 20px; height: 20px; margin-top: 2px; transition: transform .3s; }
.card:hover .card__arrow { transform: translateX(4px); }
.cards--6 .card__img { aspect-ratio: 1 / .86; }
.ratio-wide .card__img { aspect-ratio: 16 / 9; }
.ratio-tall .card__img { aspect-ratio: 3 / 4; }
.ratio-square .card__img { aspect-ratio: 1 / 1; }
@media (max-width: 1000px) {
  .cards--6 { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .cards--4 { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
}
@media (max-width: 760px) { .cards--3 { grid-template-columns: 1fr; row-gap: 32px; } }
@media (max-width: 560px) {
  .cards--2 { grid-template-columns: 1fr; }
  .cards--6 { grid-template-columns: repeat(2, 1fr); }
}

/* Process --------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(var(--cols, 4), 1fr); }
.step { padding: 4px clamp(14px, 2vw, 26px) 4px clamp(16px, 2vw, 22px); border-left: 1px solid var(--line); }
.step__num { font-size: 11px; font-weight: 700; letter-spacing: .06em; margin-bottom: 6px; display: block; }
.step h3 { font-size: 22px; margin-bottom: 10px; }
.step p { font-size: 13px; line-height: 1.55; color: var(--muted); font-weight: 300; }
.step .icon { width: 28px; height: 28px; margin: 10px 0 10px; }
.step--caps h3 { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; row-gap: 32px; }
}
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* Testimonial ----------------------------------------------------------- */
.quote-band { position: relative; background: var(--black); color: var(--white); overflow: hidden; }
.quote-band__media { position: absolute; top: 0; right: 0; bottom: 0; width: 56%; }
.quote-band__media img { width: 100%; height: 100%; object-fit: cover; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 35%); mask-image: linear-gradient(90deg, transparent 0%, #000 35%); }
.quote-band .wrap { position: relative; z-index: 2; }
.quote-band__content { max-width: 600px; padding-block: clamp(52px, 6vw, 76px); }
blockquote { margin: 0; }
.quote { font-family: var(--serif); font-weight: 350; font-size: clamp(24px, 2.5vw, 33px); line-height: 1.18; text-indent: -.42em; }
.quote--italic { font-style: italic; }
.cite { margin-top: 20px; display: block; font-style: normal; }
.cite strong { display: block; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.cite span { font-size: 13px; font-weight: 300; opacity: .85; }
.quote-arrows { position: absolute; right: var(--gutter); bottom: 24px; z-index: 3; display: flex; gap: 16px; }
.quote-arrows button { color: inherit; opacity: .8; }
.quote-arrows button:hover { opacity: 1; }
.quote-arrows svg { width: 18px; height: 18px; }
.quote-slide { display: none; }
.quote-slide.is-active { display: block; animation: fadeIn .6s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (max-width: 860px) {
  .quote-band { display: flex; flex-direction: column; }
  .quote-band__media { position: relative; width: 100%; height: 260px; order: 2; }
  .quote-band__media img { -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 40%); mask-image: linear-gradient(180deg, transparent 0%, #000 40%); }
}
.quote-light { display: grid; grid-template-columns: 1.3fr .8fr auto; gap: 40px; align-items: center; }
.quote-light .quote { font-size: clamp(24px, 2.4vw, 32px); }
.quote-light__img { aspect-ratio: 4 / 3; overflow: hidden; }
.quote-light__img img { width: 100%; height: 100%; object-fit: cover; }
.quote-light .quote-arrows { position: static; align-self: end; }
@media (max-width: 860px) { .quote-light { grid-template-columns: 1fr; } }

/* FAQ ------------------------------------------------------------------- */
.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(28px, 4vw, 56px); }
.faq__col + .faq__col { border-left: 1px solid var(--line); padding-left: clamp(28px, 4vw, 56px); }
.faq--side { grid-template-columns: .8fr 1fr 1fr; }
.faq--side .faq__col { border-left: 0 !important; padding-left: 0 !important; }
details.qa { border-bottom: 1px solid var(--line); }
details.qa summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 15px 0; font-size: 14px; cursor: pointer; list-style: none; }
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary svg { width: 14px; height: 14px; transition: transform .3s; }
details.qa[open] summary svg { transform: rotate(45deg); }
details.qa .qa__a { padding: 0 32px 18px 0; font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.6; }
.faq--boxed details.qa { border: 1px solid var(--line); background: var(--white); margin-bottom: 10px; padding-inline: 16px; }
@media (max-width: 860px) {
  .faq, .faq--side { grid-template-columns: 1fr; }
  .faq__col + .faq__col { border-left: 0; padding-left: 0; }
}

/* CTA ------------------------------------------------------------------- */
.cta { position: relative; background: var(--black); color: var(--white); overflow: hidden; }
.cta__media { position: absolute; inset: 0; }
.cta__media img { position: absolute; top: 0; right: 0; height: 100%; width: 72%; object-fit: cover; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 45%); mask-image: linear-gradient(90deg, transparent 0%, #000 45%); }
.cta .wrap { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; padding-block: clamp(52px, 6vw, 76px); }
.cta .h2 { max-width: 640px; }
.cta p { margin-top: 16px; font-weight: 300; color: rgba(255,255,255,.88); max-width: 480px; }
.cta__side { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; max-width: 360px; }
.cta__side p { margin: 0; font-size: 13px; }
@media (max-width: 760px) {
  .cta__media img { width: 100%; -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.25), #000); mask-image: linear-gradient(180deg, rgba(0,0,0,.25), #000); opacity: .7; }
}
.cta-light .wrap { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 32px 48px; }
.cta-light .divider { border-left: 1px solid var(--line); padding-left: 40px; }
@media (max-width: 900px) { .cta-light .wrap { grid-template-columns: 1fr; } .cta-light .divider { border: 0; padding: 0; } }

/* Footer ---------------------------------------------------------------- */
.site-footer { background: var(--white); border-top: 1px solid var(--line); padding-block: 36px 28px; }
.footer__top { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px 40px; }
.footer__brand { display: flex; align-items: center; gap: 28px; }
.footer__meta { font-size: 11.5px; line-height: 1.55; color: var(--muted); border-left: 1px solid var(--line); padding-left: 24px; font-weight: 300; }
.footer__nav { display: flex; gap: clamp(16px, 2.4vw, 34px); justify-content: flex-end; flex-wrap: wrap; }
.footer__nav a { font-size: 10.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: #3b3733; }
.footer__nav a:hover { color: var(--bronze); }
.social { display: flex; gap: 16px; align-items: center; border-left: 1px solid var(--line); padding-left: 32px; }
.social a { display: grid; place-items: center; width: 28px; height: 28px; }
.social svg { width: 22px; height: 22px; }
.footer__tag { text-align: right; font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
@media (max-width: 960px) {
  .footer__top { grid-template-columns: 1fr; justify-items: start; }
  .footer__nav { justify-content: flex-start; }
  .social { border-left: 0; padding-left: 0; }
  .footer__tag { text-align: left; }
}
@media (max-width: 480px) { .footer__brand { flex-direction: column; align-items: flex-start; gap: 12px; } .footer__meta { border-left: 0; padding-left: 0; } }

/* ---------- Page specific components ---------------------------------- */

/* Home: dual cards */
.dual { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: var(--white); }
.dual__card { position: relative; background: var(--black); color: var(--white); overflow: hidden; min-height: 330px; display: flex; align-items: center; }
.dual__card img { position: absolute; top: 0; right: 0; height: 100%; width: 62%; object-fit: cover; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 42%); mask-image: linear-gradient(90deg, transparent 0%, #000 42%); transition: transform 1s ease; }
.dual__card:hover img { transform: scale(1.03); }
.dual__text { position: relative; z-index: 2; padding: clamp(28px, 4vw, 44px); max-width: 360px; }
.dual__text .h3 { margin-bottom: 18px; }
.dual__text p { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,.85); margin-bottom: 26px; }
@media (max-width: 860px) { .dual { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .dual__card img, .duo-dark .dual__card img, .to-identity__card img { width: 100%; opacity: .4; -webkit-mask-image: none; mask-image: none; } }

/* Service cards */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 4.8vw, 68px); }
.svc { padding: 0; position: relative; }
.svc + .svc::before { content: ""; position: absolute; top: 0; bottom: 0; left: calc(clamp(32px, 4.8vw, 68px) / -2); border-left: 1px solid var(--line); }
.svc__img { aspect-ratio: 16 / 10; overflow: hidden; margin: 12px 0 20px; background: var(--stone-2); }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.svc:hover .svc__img img { transform: scale(1.04); }
.svc .h3 { margin-bottom: 12px; }
.svc > p { font-size: 14px; font-weight: 300; color: var(--muted); margin-bottom: 20px; }
.svc .checklist { margin-bottom: 26px; }
.svc .checklist li { font-size: 13px; color: #4a4540; }
.svc .checklist svg { width: 16px; height: 16px; }
.svc--top .svc__img { order: -1; }
@media (max-width: 860px) {
  .svc-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc { padding: 0 !important; border: 0 !important; }
  .svc + .svc::before { display: none; }
}

/* Experience (home) */
.experience { display: grid; grid-template-columns: 1fr 1fr; background: var(--paper); }
.experience__img { min-height: 460px; position: relative; }
.experience__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 40% 30%; }
.experience__text { padding: clamp(48px, 6vw, 80px) var(--gutter); display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start; max-width: 680px; }
.experience__text .h2 { margin-bottom: 20px; }
.vlist { border-left: 1px solid var(--line); padding-left: 20px; font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; line-height: 2.6; color: #3b3632; }
@media (max-width: 860px) { .experience { grid-template-columns: 1fr; } .experience__img { min-height: 0; aspect-ratio: 4 / 3; } .experience__text { grid-template-columns: 1fr; } .vlist { display: none; } }

/* Further band (home) */
.further { background: var(--black); color: var(--white); }
.further .wrap { padding-block: clamp(48px, 5vw, 64px); display: grid; grid-template-columns: 1fr 1fr; gap: 28px 64px; align-items: start; }
.further__links { display: grid; grid-template-columns: repeat(4, auto); justify-content: start; gap: 20px 36px; margin-top: 30px; }
@media (max-width: 560px) { .further__links { grid-template-columns: 1fr 1fr; } }
.further__links a { display: grid; justify-items: start; gap: 10px; font-size: 13px; font-weight: 300; color: rgba(255,255,255,.9); }
.further__links a:hover { color: #fff; }
.further__links .icon { width: 30px; height: 30px; }
.further__right { display: grid; gap: 24px; justify-items: end; align-self: center; }
.further__right p { color: rgba(255,255,255,.85); font-weight: 300; font-size: 14px; max-width: 460px; justify-self: start; }
@media (max-width: 860px) { .further .wrap { grid-template-columns: 1fr; } .further__right { justify-items: start; } }

/* Insight cards */
.insight-card .card__img { aspect-ratio: 16 / 7; }
.insight-card .eyebrow { font-size: 9.5px; color: var(--muted-2); margin: 16px 0 6px; }
.insight-card h3 { font-size: 19px; line-height: 1.2; margin-bottom: 8px; }
.insight-card p { font-size: 13px; color: var(--muted); font-weight: 300; margin-bottom: 14px; }
.insight-card .link-arrow { font-size: 10px; }

/* Filters */
.filters { display: flex; align-items: center; gap: 6px 4px; flex-wrap: wrap; padding-block: 22px; }
.filters__label { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; margin-right: 12px; color: #3b3632; }
.filter-btn { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 9px 13px; color: #56514b; border-radius: 2px; transition: .2s; }
.filter-btn:hover { color: var(--ink); }
.filter-btn.is-active { background: var(--accent-dark); color: var(--white); }
.filters--boxed { border-bottom: 1px solid var(--line); }
.filters--boxed .filter-btn + .filter-btn { border-left: 1px solid var(--line); border-radius: 0; }
.filters--boxed .filter-btn.is-active + .filter-btn { border-left-color: transparent; }
.is-hidden { display: none !important; }

/* Featured case (light) */
.feature-case { position: relative; background: #ece8e2; overflow: hidden; }
.feature-case__media { position: absolute; top: 0; right: 0; bottom: 0; width: 48%; }
.feature-case__media img { width: 100%; height: 100%; object-fit: cover; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%); mask-image: linear-gradient(90deg, transparent 0%, #000 30%); }
.feature-case .wrap { position: relative; z-index: 2; }
.feature-case__content { max-width: 560px; padding-block: clamp(48px, 5vw, 72px); }
.feature-case__content .h2 { margin-bottom: 16px; }
@media (max-width: 860px) { .feature-case { display: flex; flex-direction: column; } .feature-case__media { position: relative; width: 100%; height: 280px; order: 2; } .feature-case__media img { -webkit-mask-image: none; mask-image: none; } }

/* Mini category cards */
.mini .card__img { aspect-ratio: 5 / 4; }
.mini .card__title { font-size: 12.5px; }
.mini .card__meta { font-size: 11px; display: inline-flex; gap: 8px; align-items: center; }
.mini .card__meta svg { width: 14px; height: 14px; }

/* Logo tiles */
.logo-tiles .card__img { aspect-ratio: 1 / .9; }
.logo-tiles .card__title { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; }

/* Logo effectiveness */
.effective { display: grid; grid-template-columns: 1.15fr 2fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .effective { grid-template-columns: 1fr; } }

/* Two dark cards (logo) */
.duo-dark { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: var(--white); }
.duo-dark .dual__card { min-height: 290px; }
.duo-dark .dual__card img { width: 60%; }
.duo-dark .dual__text { max-width: 300px; }
@media (max-width: 860px) { .duo-dark { grid-template-columns: 1fr; } }

/* Logo system row */
.logo-system { display: grid; grid-template-columns: 2.1fr repeat(6, 1fr); align-items: stretch; }
.logo-system__intro { padding-right: 32px; }
.ls-item { border-left: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; padding: 0 10px; text-align: center; }
.ls-item .eyebrow { font-size: 9px; margin-bottom: 18px; }
.ls-mark { flex: 1; display: grid; place-items: center; min-height: 110px; color: #5a3e26; font-family: var(--serif); }
.ls-mark .big { font-size: 64px; line-height: .9; font-weight: 350; }
.ls-mark .word { font-size: 19px; letter-spacing: .18em; line-height: 1; }
.ls-mark .sub { font-family: var(--sans); font-size: 7px; letter-spacing: .3em; text-transform: uppercase; margin-top: 6px; display: block; }
.ls-seal { width: 72px; height: 72px; border: 1px solid #5a3e26; border-radius: 50%; display: grid; place-items: center; line-height: 1; }
.ls-seal .big { font-size: 30px; }
.ls-responsive { display: grid; grid-template-columns: auto auto; align-items: center; gap: 6px 12px; }
.ls-responsive .dark { background: var(--black); color: #fff; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 4px; font-size: 24px; }
@media (max-width: 1000px) {
  .logo-system { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .logo-system__intro { grid-column: 1 / -1; }
  .ls-item:nth-child(3n+2) { border-left: 0; }
}

/* Typography & colour row */
.typecolor { display: grid; grid-template-columns: 1.2fr 1fr 1.1fr 1.1fr; align-items: stretch; background: var(--stone); }
.typecolor > div { padding: 40px 32px; }
.typecolor > div + div { border-left: 1px solid var(--line); }
.typecolor .specimen { font-family: var(--serif); font-size: 30px; line-height: 1.1; }
.typecolor .glyphs { font-family: var(--serif); font-size: 11px; letter-spacing: .08em; color: var(--muted); margin-top: 10px; word-break: break-all; }
.swatches { display: flex; gap: 10px; margin-bottom: 18px; }
.swatches span { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(0,0,0,.06); }
.typecolor__img { padding: 0 !important; position: relative; min-height: 220px; }
.typecolor__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1000px) { .typecolor { grid-template-columns: 1fr 1fr; } .typecolor > div:nth-child(3) { border-left: 0; } }
@media (max-width: 560px) { .typecolor { grid-template-columns: 1fr; } .typecolor > div + div { border-left: 0; border-top: 1px solid var(--line); } }

/* Logo → identity + process */
.to-identity { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); }
.to-identity__card { position: relative; background: var(--black); color: #fff; overflow: hidden; min-height: 300px; display: flex; align-items: center; }
.to-identity__card img { position: absolute; right: 0; top: 0; height: 100%; width: 52%; object-fit: cover; -webkit-mask-image: linear-gradient(90deg, transparent, #000 40%); mask-image: linear-gradient(90deg, transparent, #000 40%); }
.to-identity__process { padding: 40px var(--gutter) 40px clamp(28px, 4vw, 48px); }
.to-identity__process .steps { --cols: 5; margin-top: 24px; }
.to-identity__process .step { padding-inline: 12px; }
.to-identity__process .step h3 { font-family: var(--sans); font-size: 13px; font-weight: 600; }
.to-identity__process .step p { font-size: 11.5px; }
@media (max-width: 1000px) { .to-identity { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .to-identity__process .steps { --cols: 2; } }

/* Retail industries */
.industries { display: grid; grid-template-columns: .9fr 1.4fr; gap: 40px; align-items: center; }
.ind-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.ind-cols .card__img { aspect-ratio: 2 / 3; }
.ind-cols .card__body { padding-top: 14px; align-items: center; }
.ind-cols .card__title { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 860px) { .industries { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .ind-cols { grid-template-columns: 1fr 1fr; row-gap: 20px; } }

/* Food category cards */
.cat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.cat-card { background: var(--white); display: block; }
.cat-card .card__img { aspect-ratio: 1 / .82; }
.cat-card .card__body { padding: 16px 18px 18px; align-items: center; }
.cat-card .card__title { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; }
@media (max-width: 900px) { .cat-cards { grid-template-columns: 1fr 1fr; } }

/* Food process */
.proc-side { display: grid; grid-template-columns: .9fr 3fr; gap: 32px; align-items: center; }
.proc-side .steps { --cols: 5; }
@media (max-width: 1000px) { .proc-side { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .proc-side .steps { --cols: 2; } }

/* SKU family band */
.family { position: relative; background: linear-gradient(90deg, #efe9e2 0%, #e9e1d8 40%, #1a1511 100%); overflow: hidden; }
.family__media { position: absolute; top: 0; right: 0; bottom: 0; width: 68%; }
.family__media img { width: 100%; height: 100%; object-fit: cover; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 25%); mask-image: linear-gradient(90deg, transparent 0%, #000 25%); }
.family .wrap { position: relative; z-index: 2; }
.family__content { max-width: 330px; padding-block: clamp(56px, 6vw, 84px); }
.family__content .h2 { margin-bottom: 18px; }
@media (max-width: 860px) { .family { display: flex; flex-direction: column; background: #efe9e2; } .family__content { max-width: none; padding-bottom: 20px; } .family__media { position: relative; width: 100%; height: 300px; order: 2; } .family__media img { -webkit-mask-image: none; mask-image: none; } }

/* Results row (SKU) */
.results { display: grid; grid-template-columns: .9fr 3fr; gap: 32px; align-items: start; }
@media (max-width: 900px) { .results { grid-template-columns: 1fr; } }

/* Expansion split */
.exp-split { display: grid; grid-template-columns: 1fr 1fr; }
.exp-split__card { position: relative; background: var(--black); color: #fff; overflow: hidden; min-height: 440px; display: flex; align-items: center; }
.exp-split__card img { position: absolute; right: 0; top: 0; height: 100%; width: 60%; object-fit: cover; -webkit-mask-image: linear-gradient(90deg, transparent, #000 30%); mask-image: linear-gradient(90deg, transparent, #000 30%); }
.exp-split__card .dual__text { max-width: 280px; }
.exp-split__list { padding: clamp(40px, 5vw, 64px) var(--gutter) clamp(40px, 5vw, 64px) clamp(28px, 4vw, 48px); }
.opp { display: grid; grid-template-columns: 110px 1fr; gap: 20px; align-items: center; margin-top: 14px; }
.opp img { width: 110px; aspect-ratio: 16 / 10; object-fit: cover; }
.opp h3 { font-family: var(--sans); font-size: 14.5px; font-weight: 500; margin-bottom: 2px; }
.opp p { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.45; }
@media (max-width: 900px) { .exp-split { grid-template-columns: 1fr; } .exp-split__card img { width: 100%; opacity: .5; -webkit-mask-image: none; mask-image: none; } }

/* Process detail rows */
.prow { display: grid; grid-template-columns: 190px 1fr 1.05fr; gap: 32px; align-items: center; border-top: 1px solid var(--line); padding: 10px 0; }
.prow:last-child { border-bottom: 1px solid var(--line); }
.prow__head .num { font-size: 15px; font-weight: 500; }
.prow__head h3 { font-size: 30px; line-height: 1.1; margin: 6px 0 8px; }
.prow__head .eyebrow { font-size: 9.5px; margin: 0; color: #3b3632; }
.prow__text { border-left: 1px solid var(--line); padding-left: 24px; font-size: 14px; color: var(--muted); font-weight: 300; }
.prow__img { aspect-ratio: 5 / 2; overflow: hidden; }
.prow__img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .prow { grid-template-columns: 1fr; gap: 16px; padding: 28px 0; } .prow__text { border: 0; padding: 0; } }

/* Article */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(32px, 4vw, 56px); padding-block: 32px 72px; }
.article__hero { position: relative; aspect-ratio: 13 / 6; overflow: hidden; background: var(--black); }
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.article__hero .hero__side { top: auto; bottom: 44px; left: 40px; right: auto; color: #fff; }
.article__meta { font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin: 28px 0 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.article__meta span + span::before { content: "•"; margin-right: 10px; }
.article h1 { font-size: clamp(36px, 4.3vw, 56px); line-height: 1.04; margin-bottom: 18px; max-width: 700px; }
.article .dek { font-size: clamp(17px, 1.6vw, 21px); font-weight: 300; line-height: 1.45; color: #3b3632; max-width: 700px; }
.byline { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding: 24px 0; border-bottom: 1px solid var(--line); margin-top: 20px; }
.byline__author { display: flex; gap: 14px; align-items: center; font-size: 12.5px; line-height: 1.4; }
.byline__author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.byline__author span { color: var(--muted); font-weight: 300; }
.share { display: grid; gap: 8px; }
.share .eyebrow { font-size: 9.5px; margin: 0; }
.share div { display: flex; gap: 16px; }
.share svg { width: 18px; height: 18px; }
.a-section { padding-top: 32px; }
.a-section .num { font-size: 11px; font-weight: 700; }
.a-section h2 { font-size: clamp(28px, 2.8vw, 36px); margin: 4px 0 18px; }
.a-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 32px; align-items: start; }
.a-split p { color: var(--muted); font-weight: 300; font-size: 15px; }
.a-split figure { margin: 0; }
.a-split figcaption { font-size: 9.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin-top: 10px; }
.pullquote { display: grid; grid-template-columns: 1fr 1fr; background: var(--stone); margin: 36px 0 0; }
.pullquote blockquote { padding: 40px 44px; border-left: 1px solid #cfc8bf; margin: 36px 0 36px 44px; padding: 0 0 0 24px; font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.1vw, 28px); line-height: 1.25; }
.pullquote cite { display: block; font-family: var(--sans); font-style: normal; font-size: 10px; font-weight: 600; letter-spacing: .16em; margin-top: 18px; }
.pullquote img { width: 100%; height: 100%; object-fit: cover; }
.key-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 28px; }
.key-grid .feature { padding: 0 16px; }
.key-grid .feature:first-child { padding-left: 0; }
.key-grid .feature .top { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.key-grid .feature .icon { width: 30px; height: 30px; margin: 0; }
.key-grid .feature h3 { margin: 0; font-weight: 500; }
.sidebar { display: grid; gap: 28px; align-content: start; }
.sidebar .side-cta { position: sticky; top: calc(var(--header-h) + 24px); }
.toc { border-top: 2px solid var(--black); padding-top: 18px; }
.toc ol { list-style: none; counter-reset: toc; display: grid; gap: 9px; margin: 0; padding: 0; }
.toc li { counter-increment: toc; display: flex; gap: 10px; font-size: 13.5px; line-height: 1.35; }
.toc li::before { content: counter(toc, decimal-leading-zero); color: var(--accent-dark); font-weight: 600; font-size: 10.5px; letter-spacing: .1em; padding-top: 3px; }
.toc a { color: var(--muted); font-weight: 300; }
.toc a:hover { color: var(--accent-dark); }
.prose h2 { scroll-margin-top: calc(var(--header-h) + 20px); }
@media (max-width: 1000px) { .toc { display: none; } .sidebar .side-cta { position: static; } }
.sidebar .topics a { display: block; font-family: var(--serif); font-size: 19px; padding: 3px 0; }
.sidebar .topics a:hover { color: var(--bronze); }
.subscribe { background: var(--stone); padding: 32px 24px; }
.subscribe h3 { font-size: 24px; margin-bottom: 10px; line-height: 1.15; }
.subscribe p { font-size: 13px; color: var(--muted); font-weight: 300; }
.subscribe input { width: 100%; margin: 18px 0 10px; padding: 14px; border: 1px solid #d9d2c9; background: #fff; font: inherit; font-size: 13px; }
.subscribe .btn { width: 100%; justify-content: center; }
.related a { display: grid; grid-template-columns: 104px 1fr; gap: 14px; margin-bottom: 18px; align-items: start; }
.related img { width: 104px; aspect-ratio: 5 / 4; object-fit: cover; }
.related h4 { font-size: 16px; line-height: 1.2; margin-bottom: 6px; }
.related small { display: block; font-size: 9.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); line-height: 1.7; }
.side-cta { background: var(--black); color: #fff; padding: 36px 26px; position: relative; }
.side-cta::before { content: ""; position: absolute; inset: 0; background: rgba(11,10,9,.82); }
.side-cta > * { position: relative; }
.side-cta h3 { font-size: 30px; line-height: 1.08; margin-bottom: 14px; }
.side-cta p { font-size: 13px; color: rgba(255,255,255,.85); font-weight: 300; margin-bottom: 22px; }
@media (max-width: 1000px) { .article-layout { grid-template-columns: 1fr; } .key-grid { grid-template-columns: 1fr 1fr; row-gap: 28px; } .key-grid .feature:nth-child(odd) { padding-left: 0; border-left: 0; } }
@media (max-width: 640px) { .a-split, .pullquote { grid-template-columns: 1fr; } .pullquote blockquote { margin: 28px; } .article__hero .hero__side { display: none; } }

/* Insights index */
.featured-article { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.featured-article__img { aspect-ratio: 3 / 2; overflow: hidden; }
.featured-article__img img { width: 100%; height: 100%; object-fit: cover; }
.featured-article .h2 { margin-bottom: 18px; }
@media (max-width: 860px) { .featured-article { grid-template-columns: 1fr; } }
.post .card__img { aspect-ratio: 1 / .82; }
.post .eyebrow { font-size: 9.5px; margin: 16px 0 8px; display: flex; gap: 12px; }
.post .eyebrow em { font-style: normal; color: var(--muted-2); font-weight: 500; }
.post h3 { font-size: 19px; line-height: 1.2; margin-bottom: 8px; }
.post p { font-size: 13px; color: var(--muted); font-weight: 300; margin-bottom: 14px; }
.post .link-arrow { font-size: 10px; }
.topic-card { background: var(--white); display: block; }
.topic-card .card__img { aspect-ratio: 1 / .7; }
.topic-card .card__body { padding: 16px; }
.topic-card .card__title { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; }
.quote-stone { position: relative; background: linear-gradient(90deg, #f1ece5, #e6ddd2); overflow: hidden; }
.quote-stone__media { position: absolute; top: 0; right: 0; bottom: 0; width: 42%; }
.quote-stone__media img { width: 100%; height: 100%; object-fit: cover; -webkit-mask-image: linear-gradient(90deg, transparent, #000 40%); mask-image: linear-gradient(90deg, transparent, #000 40%); }
.quote-stone .wrap { position: relative; z-index: 2; padding-block: clamp(52px, 6vw, 76px); }
.quote-stone blockquote { max-width: 620px; }
@media (max-width: 760px) { .quote-stone__media { opacity: .25; width: 100%; } }

/* About */
.story { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.story .h2 { margin-bottom: 22px; }
.story p { color: var(--muted); font-weight: 300; }
.story__images { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.story__images .main { grid-column: 1 / -1; aspect-ratio: 16 / 9; overflow: hidden; }
.story__images img { width: 100%; height: 100%; object-fit: cover; }
.city { aspect-ratio: 16 / 10; display: grid; place-items: end start; padding: 16px; color: #fff; font-family: var(--serif); font-size: 22px; line-height: 1; position: relative; overflow: hidden; }
.city--orlando { background: linear-gradient(160deg, #c9a27a 0%, #6d7f8a 55%, #22303a 100%); }
.city--saopaulo { background: linear-gradient(160deg, #cfcfcf 0%, #7d7d7d 55%, #2b2b2b 100%); }
.city small { position: absolute; top: 12px; left: 16px; font-family: var(--sans); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; opacity: .8; }
.story__caption { font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin-top: 8px; }
@media (max-width: 860px) { .story { grid-template-columns: 1fr; } }
.awards { display: grid; grid-template-columns: repeat(3, minmax(0, 150px)); gap: 16px; justify-content: end; align-items: end; }
.award { aspect-ratio: 2 / 3; background: linear-gradient(160deg, #8e8a84, #3d3a36 60%, #22201d); border: 1px solid rgba(255,255,255,.12); display: grid; align-content: space-between; padding: 22px 14px; text-align: center; color: #efebe6; box-shadow: 0 30px 60px rgba(0,0,0,.45); }
.award--gold { background: linear-gradient(160deg, #d8b878, #9c7a3e 60%, #5b4420); transform: translateY(-18px); color: #1a1612; }
.award strong { font-family: var(--sans); font-size: 15px; font-weight: 800; line-height: 1.05; letter-spacing: -.01em; text-transform: uppercase; }
.award span { font-size: 8.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.award--gold strong { text-transform: none; font-size: 17px; font-weight: 600; }
.awards-band .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding-block: clamp(56px, 6vw, 80px); }
@media (max-width: 860px) { .awards-band .wrap { grid-template-columns: 1fr; } .awards { justify-content: start; } }
@media (max-width: 480px) { .awards { grid-template-columns: repeat(3, 1fr); } .award strong { font-size: 11px; } .award--gold strong { font-size: 13px; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 0; }
.contact-grid > div:first-child { padding-right: clamp(28px, 4vw, 56px); border-right: 1px solid var(--line); }
.contact-grid > div:last-child { padding-left: clamp(28px, 4vw, 56px); }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.form .full { grid-column: 1 / -1; }
.form input, .form select, .form textarea { width: 100%; font: inherit; font-size: 13.5px; padding: 15px 14px; border: 1px solid #d9d3cb; background: var(--white); color: var(--ink); border-radius: 0; appearance: none; -webkit-appearance: none; }
.form select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23151311' stroke-width='1.5' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; color: var(--muted); }
.form textarea { min-height: 120px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--ink); }
.form__foot { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.form__foot small { display: flex; gap: 8px; align-items: center; font-size: 11px; color: var(--muted); }
.form__foot small svg { width: 14px; height: 14px; }
.form__status { grid-column: 1 / -1; font-size: 13px; color: var(--bronze); min-height: 1em; }
.direct { display: grid; gap: 22px; margin-top: 28px; }
.direct > a, .direct > div { display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: center; }
.direct svg { width: 30px; height: 30px; }
.direct strong { display: block; font-size: 14px; font-weight: 600; }
.direct span { font-size: 14.5px; color: var(--muted); font-weight: 300; line-height: 1.45; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } .contact-grid > div:first-child { padding: 0 0 48px; border: 0; border-bottom: 1px solid var(--line); } .contact-grid > div:last-child { padding: 48px 0 0; } }
@media (max-width: 520px) { .form { grid-template-columns: 1fr; } }
.location { display: grid; grid-template-columns: 1fr 1.3fr; background: var(--black); color: #fff; }
.location__text { padding: clamp(44px, 5vw, 64px) var(--gutter); max-width: 560px; margin-left: auto; width: 100%; }
.location__text .h2 { margin-bottom: 16px; }
.location__map { position: relative; min-height: 320px; background: #e8e6e2; }
.location__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(.95) brightness(1.02); }
@media (max-width: 860px) { .location { grid-template-columns: 1fr; } .location__text { margin: 0; } }
.hero__line { display: flex; align-items: center; gap: 18px; margin-top: 34px; font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.hero__line::before { content: ""; width: 44px; height: 1px; background: rgba(255,255,255,.7); }

/* Reveal on scroll */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .9s ease, transform .9s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* Related insights row (logo page) */
.related-row { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 3fr); gap: 32px; }
@media (max-width: 860px) { .related-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Additions for the full site architecture (same visual language)
   ========================================================================== */

/* Utilities */
.skip { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--black); color: var(--white); padding: 12px 16px; font-size: 13px; }
.skip:focus { top: 12px; }
.mb-12 { margin-bottom: 12px !important; } .mb-14 { margin-bottom: 14px !important; } .mb-16 { margin-bottom: 16px !important; } .mb-18 { margin-bottom: 18px !important; } .mb-22 { margin-bottom: 22px !important; } .mb-40 { margin-bottom: 40px !important; }
.mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-28 { margin-top: 28px; }
.section--rule { border-top: 1px solid var(--line); }
p a:not(.btn):not(.link-arrow), .qa__a a, .checklist a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.split__aside p a:hover, .qa__a a:hover, .checklist a:hover { color: var(--bronze); }

/* Header: crawlable Services link + toggle */
.nav > li.has-menu { display: flex; align-items: center; }
.nav > li > .has-menu__toggle { padding: 26px 0 26px 4px; }
.nav > li > .has-menu__toggle::after { display: none; }
.has-menu__toggle .chev { transition: transform .25s; }
.has-menu.is-open .chev { transform: rotate(180deg); }
.nav .is-active::after { transform: scaleX(1); }
.menu { grid-template-columns: repeat(3, minmax(190px, 1fr)); }
.menu .eyebrow { margin: 0 0 8px; }
.menu a { white-space: nowrap; }
.has-menu::before { content: ""; position: absolute; left: -20px; right: -20px; top: 100%; height: 10px; }

/* Breadcrumbs */
.crumbs ol { display: flex; flex-wrap: wrap; gap: 2px 8px; margin: 0 0 18px; font-size: 11px; letter-spacing: .04em; color: rgba(255,255,255,.62); }
.crumbs li { display: inline-flex; align-items: center; gap: 8px; }
.crumbs li + li::before { content: "/"; color: rgba(255,255,255,.35); }
.crumbs a:hover { color: #fff; }
.crumbs [aria-current] { color: rgba(255,255,255,.9); }
.crumbs--light ol { color: var(--muted-2); }
.crumbs--light li + li::before { color: var(--line); }
.crumbs--light a:hover, .crumbs--light [aria-current] { color: var(--ink); }

/* Hero extras */
.hero__dim { color: rgba(255,255,255,.62); }
.hero--long .h1 { font-size: clamp(34px, 3.6vw, 50px); line-height: 1.06; }
.hero--long .hero__content { max-width: 560px; }
.hero__sub { font-size: clamp(22px, 2vw, 28px); line-height: 1.15; color: rgba(255,255,255,.78); margin: -6px 0 22px; }
.hero__tags { margin-top: 32px; }
.btn-row + .hero__tags { margin-top: 36px; }

/* Section head intro */
.section-head__intro { margin-top: 14px; max-width: 620px; font-size: 14.5px; }
.section-head .h3 { max-width: 640px; }

/* Features */
.features--below { margin-top: clamp(40px, 5vw, 64px); }
.features--flat { margin-top: 0; }
.fgrid--3.features--center .feature { padding-inline: 18px; }
.fgrid--rows { margin-top: 48px; row-gap: 40px; }
.fgrid--rows .feature:nth-child(n+5) { padding-top: 8px; }
.fgrid--links .feature h3 { font-size: 15px; }
.fgrid--links .feature { padding-bottom: 30px; }
.feature__link { margin-top: 14px; }
.fgrid--3 .feature:nth-child(n+4) { padding-top: 26px; }
@media (max-width: 760px) { .fgrid--3 { grid-template-columns: 1fr 1fr; } .fgrid--3 .feature:nth-child(n+3) { padding-top: 22px; } }

/* Inline link lists */
.inline-links { display: flex; flex-wrap: wrap; gap: 12px 30px; margin-top: 24px; }
.inline-links--light { color: var(--white); }
.band__lead { color: rgba(255,255,255,.88); }
.band__content .checklist { margin-top: 24px; }
.band__content .lead + .lead { margin-top: 14px; }
.split__aside .checklist { margin-top: 4px; }
.split__aside .btn-row { margin-top: 26px; }
.checklist li { align-items: flex-start; }
.checklist li svg { margin-top: 1px; }
.checklist--cols { grid-template-columns: 1fr 1fr; column-gap: 32px; }
.two-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px; }
@media (max-width: 560px) { .checklist--cols, .two-lists { grid-template-columns: 1fr; } }

/* Included (reverse) */
.included__text .checklist { margin-top: 18px; }
.included__text .body-light + .body-light { margin-top: -8px; }
.included-wrap.section--stone .included .checklist li, .included-wrap .checklist li { color: #3b3632; }
.included-wrap--rev .included__text { grid-column: 3; padding: var(--section) 0 var(--section) clamp(24px, 5vw, 72px); }
.included-wrap--rev .included__media { grid-column: 1 / 3; grid-row: 1; }
@media (max-width: 860px) { .included-wrap--rev .included__text { padding: var(--section) var(--gutter) 40px; } }

/* Family band with list */
.family__content { max-width: 400px; }
.family .checklist { margin-top: 18px; }
.family .checklist li { color: #3b3632; font-size: 13.5px; }

/* Text columns */
.tcols { display: grid; row-gap: 44px; }
.tcols--2 { grid-template-columns: 1fr 1fr; }
.tcols--3 { grid-template-columns: repeat(3, 1fr); }
.tcol { padding: 2px clamp(16px, 2.4vw, 34px); border-left: 1px solid var(--line); }
.tcols--2 .tcol:nth-child(odd), .tcols--3 .tcol:nth-child(3n+1) { padding-left: 0; border-left: 0; }
.tcol .h4 { margin-bottom: 12px; }
.tcol p { font-size: 14px; color: var(--muted); font-weight: 300; }
.tcol__link { margin-top: 16px; }
@media (max-width: 860px) {
  .tcols--3 { grid-template-columns: 1fr 1fr; }
  .tcols--3 .tcol { padding-left: clamp(16px, 2.4vw, 34px); border-left: 1px solid var(--line); }
  .tcols--3 .tcol:nth-child(odd) { padding-left: 0; border-left: 0; }
}
@media (max-width: 640px) { .tcols--2, .tcols--3 { grid-template-columns: 1fr; } .tcol { padding: 0 !important; border: 0 !important; } }

/* Cards */
.card__title { font-family: var(--sans); letter-spacing: 0; margin: 0; }
.card__meta { margin: 0; }
.cards--2 .card__img img, .cards--3 .card__img img { will-change: transform; }
.work-grid { row-gap: 40px; }
@media (max-width: 760px) { .work-grid { grid-template-columns: 1fr 1fr; gap: 28px 14px; } }
.cat-cards--3 { grid-template-columns: repeat(3, 1fr); }
.cat-cards--5 { grid-template-columns: repeat(5, 1fr); }
.cat-card .card__meta { margin-top: 4px; }
.cat-card .card__title { line-height: 1.5; }
.section--white .cat-card { background: var(--stone); }
@media (max-width: 1000px) { .cat-cards--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .cat-cards--3, .cat-cards--5 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .cat-cards--3, .cat-cards--5, .cat-cards--4 { grid-template-columns: 1fr; } }
.mini .card__meta { color: var(--ink); font-weight: 500; }

/* Service cards */
.svc-grid--4 { grid-template-columns: repeat(4, 1fr); }
.svc--top { display: flex; flex-direction: column; }
.svc h2.h3 a:hover, .svc h3.h3 a:hover, .featured-article h2 a:hover, .featured-article h3 a:hover { color: var(--bronze); }
.svc__img { display: block; }
.svc__link { margin-top: auto; }
@media (max-width: 1100px) { .svc-grid--4 { grid-template-columns: 1fr 1fr; row-gap: 48px; } .svc-grid--4 .svc:nth-child(3)::before { display: none; } }
@media (max-width: 860px) { .svc-grid--4 { grid-template-columns: 1fr; } }

/* Dual / duo cards */
.dual__text .eyebrow { font-size: 11px; margin-bottom: 14px; }
.dual__text p.h3 { font-size: clamp(24px, 2.3vw, 30px); margin-bottom: 18px; color: #fff; font-weight: 350; }
.duo-dark .dual__text h2.h3 { margin-bottom: 16px; }
.dual__text--wide { max-width: 400px; }
.to-identity__h { margin-bottom: 14px; font-size: clamp(28px, 2.8vw, 38px); }
.to-identity__card .btn { margin-top: 4px; }
.ls-word-gap { display: block; margin-top: 6px; }
.ls-sub-tiny { font-size: 6px !important; margin-top: 2px !important; }
.ls-big-s { font-size: 24px !important; }
.ls-big-xs { font-size: 20px !important; }
.typecolor .specimen { margin-top: 4px; }
@media (max-width: 520px) { .dual__card, .duo-dark .dual__card { min-height: 300px; } }

/* Capabilities strip */
.cap-strip { background: var(--white); border-bottom: 1px solid var(--line); padding-block: 26px 28px; }
.cap-strip .eyebrow { text-align: center; color: var(--muted-2); font-size: 10px; margin-bottom: 20px; }
.cap-strip__list { display: grid; grid-template-columns: repeat(var(--n, 7), 1fr); }
.cap-strip__list li { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; padding: 2px 12px; font-size: 10.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; line-height: 1.5; color: #3b3632; }
.cap-strip__list li + li { border-left: 1px solid var(--line); }
.cap-strip .icon { width: 30px; height: 30px; }
@media (max-width: 1000px) { .cap-strip__list { grid-template-columns: repeat(4, 1fr); row-gap: 24px; } .cap-strip__list li:nth-child(4n+1) { border-left: 0; } }
@media (max-width: 560px) { .cap-strip__list { grid-template-columns: 1fr 1fr; } .cap-strip__list li { border-left: 0 !important; } }

/* Industries (3 columns variant) */
.ind-cols--3 { grid-template-columns: repeat(3, 1fr); row-gap: 18px; }
.ind-cols--3 .card__img { aspect-ratio: 4 / 3; }
.ind-cols--3 .card__body { align-items: flex-start; padding-top: 10px; }
.ind-cols--3 .card__meta { font-size: 12px; }
@media (max-width: 520px) { .ind-cols--3 { grid-template-columns: 1fr 1fr; } }

/* Retail intro (text + flush image) */
.retail-intro { display: grid; grid-template-columns: minmax(0, .62fr) minmax(0, 1fr); align-items: center; padding-block: 24px; }
.retail-intro__text { padding: 48px clamp(24px, 4vw, 56px) 48px max(var(--gutter), calc((100vw - var(--wrap)) / 2)); }
.retail-intro__media { aspect-ratio: 2 / 1.1; overflow: hidden; }
.retail-intro__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .retail-intro { grid-template-columns: 1fr; padding-block: 0; } .retail-intro__text { padding: 56px var(--gutter) 32px; } }

/* Expansion split */
.exp-split__card .btn { margin-top: 4px; }
.exp-split__card .dual__text { max-width: 340px; }
.opp { margin-top: 18px; }
.opp img { height: auto; }

/* FAQ with headings inside summary */
details.qa summary .qa__q { font-family: var(--sans); font-size: 14px; font-weight: 400; letter-spacing: 0; line-height: 1.45; margin: 0; }
details.qa summary:hover .qa__q { color: var(--bronze); }
.qa__a p { margin: 0; }
.faq--side h2 { margin-bottom: 20px; }

/* CTA light */
.cta-light { border-top: 1px solid var(--line); }

/* Related links bar */
.related-bar { padding-block: 26px; }
.related-bar .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 40px; }
.related-bar .eyebrow { margin: 0; color: var(--muted-2); }
.related-bar__list { display: flex; flex-wrap: wrap; gap: 10px 32px; }
.section--stone + .related-bar.section--stone, .section--white + .related-bar.section--white { border-top: 1px solid var(--line); }

/* Insights */
.featured-article__img { display: block; }
.filter-btn--static { cursor: default; color: #56514b; }
.filter-btn--static:hover { color: #56514b; }
.filters--boxed .filter-btn--static + .filter-btn--static { border-left: 1px solid var(--line); border-radius: 0; }

/* About */
.story__images .city { aspect-ratio: 16 / 10; padding: 0; display: block; background: var(--stone-2); }
.story__images .city img { width: 100%; height: 100%; object-fit: cover; }
.story__caption { display: block; }

/* Contact form with visible labels */
.form { gap: 16px 14px; }
.field label { display: block; font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #3b3733; margin-bottom: 7px; }
.field .req { color: var(--bronze); }
.field.full { grid-column: 1 / -1; }
.form select { color: var(--ink); }
.form textarea { min-height: 140px; }
.form [aria-invalid="true"] { border-color: #8c3a32; }
.field__error { margin: 6px 0 0; font-size: 12px; color: #8c3a32; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form__foot small { max-width: 420px; line-height: 1.5; }
.form__foot small a { text-decoration: underline; text-underline-offset: 2px; }
.form__status.is-error { color: #8c3a32; }
.form__status.is-success { color: #315b45; }
.direct > a:hover strong { color: var(--bronze); }
.location__map img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Article */
.article .crumbs ol { margin-bottom: 14px; }
.article__meta > * + *::before { content: "•"; margin-right: 10px; }
.article__meta a:hover { color: var(--bronze); }
.byline__author a:hover { color: var(--bronze); }
.share a { display: grid; place-items: center; }
.prose { padding-top: 12px; }
.prose p, .prose li { color: var(--muted); font-weight: 300; font-size: 15.5px; line-height: 1.7; }
.prose p { margin: 0 0 1em; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose h2 { font-size: clamp(26px, 2.6vw, 34px); line-height: 1.1; margin: 44px 0 16px; }
.prose ul { list-style: disc; padding-left: 1.2em; margin: 0 0 1.2em; }
.prose li + li { margin-top: 6px; }
.prose figure { margin: 32px 0; }
.prose figure img { width: 100%; }
.prose figcaption { font-size: 9.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin-top: 10px; color: var(--ink); }
.prose .answer { background: var(--stone); padding: 26px 28px; margin: 24px 0 8px; }
.prose .answer p { color: #3b3632; }
.prose .answer p:first-child { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); margin-bottom: 10px; }
.prose .answer p:last-child { margin-bottom: 0; }
.prose .pullquote { margin: 36px 0; }
.prose .pullquote blockquote { color: var(--ink); }
.prose .pullquote img { min-height: 220px; }
.h3-side { font-family: var(--serif); font-weight: 350; font-size: 24px; line-height: 1.15; margin: 0 0 10px; }
.side-cta .h3-side { font-size: 28px; }
.subscribe .link-arrow { margin-top: 14px; }
.related-side .card__img { aspect-ratio: 4 / 3; }

/* Legal */
.legal .prose { max-width: 760px; padding-top: 0; }
.legal h1.h1 { font-size: clamp(36px, 4vw, 52px); margin: 6px 0 10px; }
.legal__date { font-size: 12px !important; color: var(--muted-2) !important; margin-bottom: 28px !important; }
.legal .prose h2 { font-size: clamp(22px, 2vw, 26px); margin-top: 36px; }

/* Footer additions */
.footer__links { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 24px clamp(40px, 7vw, 110px); margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.footer__links .eyebrow { font-size: 10px; color: var(--muted-2); margin-bottom: 8px; }
.footer__links a { display: block; font-size: 12.5px; line-height: 1.5; color: var(--muted); font-weight: 300; padding: 3px 0; }
.footer__links a:hover, .footer__bottom a:hover { color: var(--bronze); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px 24px; margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--line); }
.footer__bottom p { margin: 0; }
.footer__bottom p a { font-size: 11px; color: var(--muted); margin-right: 22px; text-decoration: none !important; }
.footer__bottom .footer__tag { margin: 0; }
@media (max-width: 760px) { .footer__links { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__links { grid-template-columns: 1fr; } }

.location .body-light, .band .body-light, .exp-split__card .body-light { color: rgba(255,255,255,.78); }
.mobile-nav summary svg { width: 20px; height: 20px; transition: transform .25s; }
.mobile-nav details[open] summary svg { transform: rotate(45deg); }

/* Case study figures */
.case-figs { display: grid; gap: clamp(18px, 2.4vw, 34px); }
.case-fig { margin: 0; }
.case-fig img { display: block; width: 100%; height: auto; background: var(--stone-2); }
.case-fig figcaption { font-size: 12.5px; font-weight: 300; line-height: 1.6; color: var(--muted); margin-top: 12px; max-width: 720px; }
.case-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px clamp(24px, 3vw, 48px); }
.case-meta > div { border-top: 1px solid var(--line); padding-top: 14px; }
.case-meta .eyebrow { font-size: 10px; color: var(--muted-2); margin-bottom: 8px; }
.case-meta p { margin: 0; font-size: 13.5px; font-weight: 300; line-height: 1.55; color: var(--ink); }
@media (max-width: 860px) { .case-meta { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .case-meta { grid-template-columns: 1fr; } }

/* Long link labels must wrap on narrow screens */
.related-bar__list .link-arrow { white-space: normal; }
@media (max-width: 700px) {
  .link-arrow { white-space: normal; }
  .link-arrow svg { flex: none; }
}


/* Brand accent ---------------------------------------------------------- */
.eyebrow { color: var(--accent-dark); }
.hero .eyebrow, .band .eyebrow, .cta .eyebrow, .dual__card .eyebrow, .exp-split__card .eyebrow,
.to-identity__card .eyebrow, .location .eyebrow, .on-dark .eyebrow,
.further .eyebrow { color: var(--accent-light); }
.footer__links .eyebrow, .related-bar .eyebrow, .case-meta .eyebrow, .card__meta, .hero__tags { color: var(--muted-2); }
.link-arrow svg { stroke: var(--accent); }
.btn--outline-light:hover svg, .btn--light svg, .btn--dark svg { stroke: currentColor; }
.footer__tag span { color: var(--accent-dark); }
.stat strong { color: var(--ink); }

/* Project pages --------------------------------------------------------- */
.project-head { padding-bottom: clamp(28px, 3vw, 40px) !important; }
.project-head__inner { max-width: 860px; }
.project-head .h1 { font-size: clamp(34px, 4.2vw, 58px); line-height: 1.04; margin: 4px 0 0; }
.project-head__lead { margin-top: 18px; max-width: 720px; color: var(--muted); }
.project-head .eyebrow { margin-bottom: 10px; }
.project-body { padding-top: 0 !important; }
.project-figs { max-width: 1080px; margin-inline: auto; }
.project-note { max-width: 740px; margin: clamp(6px, 1vw, 14px) auto; text-align: center; }
.project-note p { margin: 0 0 12px; color: var(--muted); font-weight: 300; font-size: 15px; line-height: 1.8; }
.project-note p:last-child { margin-bottom: 0; }
@media (max-width: 700px) { .project-note { text-align: left; } }
.fig-pair { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 1.6vw, 26px); }
@media (max-width: 700px) { .fig-pair { grid-template-columns: 1fr; gap: clamp(18px, 2.4vw, 34px); } }

/* About: reach proof line under My Story */
.reach { display: flex; flex-wrap: wrap; align-items: center; margin: 26px 0 30px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-dark); line-height: 1.6; }
.reach span + span::before { content: "\00B7"; color: var(--accent-dark); opacity: .45; margin: 0 12px; font-size: 15px; font-weight: 700; }
.story .reach { color: var(--accent-dark); font-weight: 600; }
@media (max-width: 560px) { .reach { display: grid; gap: 7px; justify-items: start; } .reach span + span::before { display: none; } }

/* About: story with a single image */
.story__images--single .main { aspect-ratio: 5 / 4; }
@media (max-width: 860px) { .story__images--single .main { aspect-ratio: 16 / 10; } }

/* Family band, dark variant */
.family--dark { background: linear-gradient(90deg, var(--black) 0%, #14110e 42%, #0b0a09 100%); color: var(--white); }
.family--dark .h2 { color: var(--white); }
.family--dark .body-light { color: rgba(255,255,255,.78); }
.family--dark .checklist li { color: rgba(255,255,255,.9); }
.family--dark .checklist svg { stroke: var(--accent-light); }
.family--dark .link-arrow { color: var(--white); }
@media (max-width: 860px) { .family--dark { background: var(--black); } }
