/* ==========================================================================
   Dare Tale Communications — Master Stylesheet
   Author: build for daretalecommunications.com
   Sections: 1. Tokens  2. Reset  3. Typography  4. Buttons & Badges
             5. Header / Nav  6. Hero  7. Marquee  8. Service cards
             9. Case cards  10. Feed  11. Manifesto  12. Journal
             13. CTA  14. Footer  15. Contact  16. Motion  17. Responsive
   ========================================================================== */

/* ------------------------------ 1. TOKENS ------------------------------- */
:root {
  --red: #d0120f;
  --red-dark: #a30d0b;
  --red-soft: #f7d3d2;
  --cream: #fcf4ea;
  --cream-2: #fffaf3;
  --white: #ffffff;
  --ink: #131313;
  --ink-2: #2a2a2a;
  --dark: #262626;
  --dark-2: #1c1c1c;
  --black: #0d0d0d;
  --muted: #6d6d6d;
  --muted-light: #9a9a9a;
  --line: rgba(19, 19, 19, .14);

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow-hard: 7px 7px 0 0 var(--ink);
  --shadow-hard-red: 7px 7px 0 0 var(--red);
  --shadow-soft: 0 18px 40px -22px rgba(0, 0, 0, .45);

  --container: 1240px;
  --gutter: 24px;
  --section-y: clamp(64px, 8vw, 118px);
}

/* ------------------------------- 2. RESET ------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section--dark { background: var(--dark); color: var(--cream-2); }
.section--red  { background: var(--red);  color: var(--white); }
.section--flush-top { padding-top: 0; }

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

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}
.section--red :focus-visible,
.section--dark :focus-visible { outline-color: var(--cream); }

/* ---------------------------- 3. TYPOGRAPHY ----------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.025em;
  margin: 0;
}

.h-xl { font-size: clamp(2.5rem, 6.2vw, 4.6rem); }
.h-lg { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.h-md { font-size: clamp(1.5rem, 2.6vw, 2.15rem); }
.h-sm { font-size: clamp(1.15rem, 1.7vw, 1.45rem); }

/* the italic serif accent used across every headline */
.accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--red);
  letter-spacing: -.01em;
}
.section--dark .accent,
.section--red .accent { color: var(--red); }
.section--red .accent--white { color: var(--white); }
.section--dark .accent--white { color: var(--cream-2); }

.lead {
  font-size: clamp(.95rem, 1.05vw, 1.02rem);
  color: var(--muted);
  max-width: 46ch;
  margin: 0;
}
.section--dark .lead { color: #c9c9c9; }
.section--red .lead { color: rgba(255, 255, 255, .92); }

.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* hand-drawn underline that sits below the hero headings */
.squiggle { width: clamp(150px, 20vw, 250px); margin-top: 18px; color: var(--red); }
.squiggle path { fill: none; stroke: currentColor; stroke-width: 9; stroke-linecap: round; }

/* red ink splatter used top-right on inner pages */
.blob {
  position: absolute;
  top: clamp(60px, 9vw, 130px);
  right: clamp(-40px, -2vw, 0px);
  width: clamp(180px, 24vw, 330px);
  color: var(--red);
  z-index: 0;
  pointer-events: none;
}

/* ------------------------ 4. BUTTONS & BADGES --------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn__icon {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  font-size: .8rem;
  flex: none;
}

.btn--dark  { background: var(--ink-2); color: var(--white); box-shadow: var(--shadow-soft); }
.btn--dark .btn__icon { background: var(--white); color: var(--red); }
.btn--red   { background: var(--red); color: var(--white); box-shadow: 4px 4px 0 0 var(--ink); }
.btn--white { background: var(--cream-2); color: var(--ink); box-shadow: 4px 4px 0 0 rgba(0, 0, 0, .35); }
.btn--white .btn__icon { background: var(--red); color: var(--white); }
.btn--outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--outline .btn__icon { background: var(--red); color: var(--white); }
.btn--ghost-light { background: transparent; border-color: rgba(19, 19, 19, .3); color: var(--ink); }

/* small pill label: ★ The Archive / Chapter 01 — What we do */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--red);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: -.01em;
  box-shadow: 3px 3px 0 0 rgba(0, 0, 0, .55);
}
.badge--outline {
  background: var(--cream-2);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  box-shadow: 3px 3px 0 0 var(--ink);
}
.badge--dark { background: var(--ink); color: var(--white); }
.badge__star { color: #ffd7d7; }

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: .78rem;
  color: var(--ink);
  background: var(--white);
}
.tag--stat {
  border-color: var(--red);
  color: var(--red);
  font-family: var(--font-serif);
  font-style: italic;
}

/* ------------------------- 5. HEADER / NAVBAR --------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(252, 244, 234, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -26px rgba(0, 0, 0, .8);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.brand__mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  color: var(--red);
}
.brand__text { display: grid; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--ink); }
.brand__sub  { font-size: .55rem; letter-spacing: .06em; color: var(--red); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 42px); }
.nav__link {
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding-block: 4px;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .25s ease;
}
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--red); }

.nav-toggle {
  display: none;
  width: 46px; height: 40px;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  background: transparent;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  position: relative;
  transition: background .2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: var(--ink);
  transition: transform .25s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* -------------------------------- 6. HERO ------------------------------- */
.hero { position: relative; padding-block: clamp(38px, 5vw, 64px) clamp(40px, 5vw, 70px); overflow: hidden; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.hero__title { margin-top: 20px; }
.hero__title .accent { display: block; }
.hero__copy { margin-top: 26px; max-width: 42ch; font-size: .95rem; color: var(--muted); }
.hero__copy strong { color: var(--ink); font-weight: 700; }
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 16px;
  font-size: .74rem;
  color: var(--muted-light);
}
.hero__stats li { display: inline-flex; align-items: center; gap: 8px; }
.hero__stats li + li::before { content: "◆"; color: var(--red); font-size: .55rem; }
.hero__art { position: relative; }
.hero__cta {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* page hero used on Work / Services / Culture / Contact */
.page-hero { position: relative; padding-block: clamp(40px, 5vw, 70px) clamp(44px, 5vw, 72px); overflow: hidden; }
.page-hero__title { margin-top: 18px; }
.page-hero__title .accent { display: block; }
.page-hero__copy { margin-top: 34px; max-width: 52ch; font-size: .93rem; color: var(--muted); }

/* ------------------------------ 7. MARQUEE ------------------------------ */
.marquee {
  background: var(--ink);
  color: var(--cream-2);
  overflow: hidden;
  padding-block: 14px;
  border-block: 1px solid rgba(255, 255, 255, .08);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  font-size: .95rem;
  white-space: nowrap;
}
.marquee__group span { display: inline-flex; align-items: center; gap: 34px; }
.marquee__item--red { color: var(--red); }
.marquee__item--serif { font-family: var(--font-serif); font-style: italic; }
.marquee__sep { color: var(--red); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------- 8. SERVICE CARDS --------------------------- */
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .8fr);
  gap: clamp(20px, 3vw, 56px);
  align-items: end;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.section-head__title { margin-top: 18px; }
.section-head--center { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.section-head__aside { display: flex; justify-content: flex-end; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 22px);
}
.card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.svc-card {
  position: relative;
  padding: clamp(20px, 2vw, 28px);
  border-radius: var(--radius);
  border: 1.5px solid var(--ink);
  background: var(--cream-2);
  box-shadow: var(--shadow-hard);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-card:hover { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 0 var(--ink); }
.svc-card--red { background: var(--red); color: var(--white); border-color: var(--red-dark); }
.svc-card--red .svc-card__num,
.svc-card--red .svc-card__title { color: var(--white); }
.svc-card--red .svc-card__tagline { color: #ffdada; }
.svc-card--red .svc-card__body,
.svc-card--red .svc-card__list { color: rgba(255, 255, 255, .93); }
.svc-card--red .svc-card__icon { color: var(--white); }

.svc-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.svc-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  line-height: 1;
  color: var(--ink);
}
.svc-card__icon { width: 30px; height: 30px; color: var(--red); flex: none; }
.svc-card__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.15rem, 1.6vw, 1.5rem); color: var(--red); letter-spacing: -.02em; line-height: 1.1; }
.svc-card__tagline { font-family: var(--font-serif); font-style: italic; font-size: .92rem; color: var(--red); }
.svc-card__body { font-size: .86rem; color: var(--ink-2); margin: 0; }
.svc-card__list { font-size: .82rem; color: var(--ink-2); display: grid; gap: 4px; margin-top: 2px; }
.svc-card__list li { padding-left: 14px; position: relative; }
.svc-card__list li::before { content: "•"; position: absolute; left: 0; }

/* staggered 2-column layout on the Services page */
.stagger-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  align-items: start;
}
.stagger-grid > *:nth-child(even) { margin-top: clamp(28px, 3.5vw, 56px); }

/* ---------------------------- 9. CASE CARDS ----------------------------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 40px);
}
.case-card {
  background: var(--cream-2);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 14px 14px 22px;
  box-shadow: 9px 9px 0 0 var(--red);
  transition: transform .25s ease, box-shadow .25s ease;
  color: var(--ink);
  display: block;
}
.case-card--tilt-l { transform: rotate(-1.6deg); }
.case-card--tilt-r { transform: rotate(1.4deg); }
.case-card:hover { transform: rotate(0) translateY(-6px); box-shadow: 14px 14px 0 0 var(--red); }

.case-card__media {
  position: relative;
  border-radius: var(--radius);
  background: var(--red);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 18px;
}
.case-card__media img,
.case-card__media svg { width: 58%; height: auto; }
.case-card__flag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 5px 13px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--white);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.case-card__arrow {
  position: absolute;
  right: 12px; bottom: 12px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-size: .85rem;
}
.case-card__body { padding-inline: 8px; }
.case-card__meta { font-size: .72rem; font-weight: 600; color: var(--red); font-family: var(--font-serif); font-style: italic; }
.case-card__title { margin-top: 8px; font-size: clamp(1.05rem, 1.8vw, 1.5rem); letter-spacing: -.02em; }
.case-card__client { margin: 8px 0 0; font-size: .82rem; color: var(--muted); }
.case-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.case-card__stats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.case-card__link { display: inline-block; margin-top: 16px; font-size: .84rem; font-weight: 700; color: var(--red); }
.case-card__link:hover { text-decoration: underline; }

/* confidential / NDA cards */
.conf-card {
  background: var(--cream-2);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 7px 7px 0 0 rgba(0, 0, 0, .55);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  transition: transform .2s ease;
}
.conf-card:hover { transform: translateY(-5px); }
.conf-card--red { background: var(--red); border-color: var(--red-dark); color: var(--white); }
.conf-card__top { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.conf-card__flag {
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: var(--red);
  color: var(--white);
  font-size: .74rem;
  font-weight: 600;
}
.conf-card--red .conf-card__flag { background: var(--ink); }
.conf-card__icon { width: 30px; height: 30px; color: var(--ink); }
.conf-card--red .conf-card__icon { color: var(--white); }
.conf-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; }
.conf-card__desc { font-size: .82rem; color: var(--muted); margin: 0; }
.conf-card--red .conf-card__desc { color: rgba(255, 255, 255, .9); }
.conf-card__stat {
  align-self: flex-start;
  margin-top: auto;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--red);
  color: var(--white);
  font-size: .74rem;
}
.conf-card--red .conf-card__stat { background: var(--cream-2); color: var(--ink); }

/* --------------------------- 10. FEED SECTION --------------------------- */
.social-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
  transition: border-color .2s ease, transform .2s ease;
}
.social-card:hover { border-color: var(--red); transform: translateY(-3px); }
.social-card__icon { width: 34px; height: 34px; flex: none; }
.social-card__name { font-family: var(--font-display); font-weight: 700; font-size: .92rem; }
.social-card__handle { font-family: var(--font-serif); font-style: italic; font-size: .78rem; color: var(--red); }

.subhead { display: flex; align-items: center; gap: 10px; margin: clamp(30px, 3.4vw, 46px) 0 18px; }
.subhead__dot { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: var(--white); font-size: .7rem; }
.subhead__text { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }

.video-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--red);
  display: grid;
  place-items: center;
}
.video-card__thumb--yellow { background: #f5c518; }
.video-card__flag {
  position: absolute; top: 10px; left: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, .35);
  color: var(--white);
  font-size: .6rem;
  letter-spacing: .05em;
}
.video-card__play { width: 44px; height: 44px; color: rgba(255, 255, 255, .95); }
.video-card__title { padding: 16px 18px 20px; font-size: .86rem; font-weight: 600; }

.post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.post-card {
  border: 1.5px solid var(--red-soft);
  border-radius: var(--radius);
  background: var(--cream-2);
  padding: 16px 18px;
  display: grid;
  gap: 14px;
}
.post-card__top { display: flex; align-items: center; justify-content: space-between; }
.post-card__src { font-size: .68rem; color: var(--muted-light); }
.post-card__flag { font-size: .62rem; padding: 3px 9px; border: 1px solid var(--line); border-radius: var(--radius-pill); }
.post-card__text { font-size: .88rem; margin: 0; }
.post-card__foot { display: flex; align-items: center; justify-content: space-between; color: var(--red); font-size: .8rem; }

.preach {
  margin-top: clamp(26px, 3vw, 40px);
  border: 1.5px solid var(--red-soft);
  border-radius: var(--radius);
  background: var(--cream-2);
  padding: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.preach__quote { font-size: 1.6rem; color: var(--red); line-height: 1; font-family: var(--font-serif); }
.preach__title { font-family: var(--font-display); font-weight: 700; color: var(--red); font-size: 1.05rem; }
.preach__copy { font-size: .84rem; color: var(--muted); margin: 4px 0 0; }
.preach__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 600;
  color: var(--white);
  background: var(--ink);
  transition: transform .18s ease;
}
.pill-btn:hover { transform: translateY(-2px); }
.pill-btn--ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.pill-btn--yt { background: #ff0000; }
.pill-btn--li { background: #0a66c2; }

/* --------------------------- 11. MANIFESTO ------------------------------ */
.manifesto { text-align: center; position: relative; }
.manifesto__quote {
  max-width: 20ch;
  margin: 26px auto 0;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  line-height: 1.22;
  letter-spacing: -.02em;
}
.manifesto__squiggle { margin: 26px auto 0; }
.manifesto__deco { position: absolute; opacity: .5; width: clamp(70px, 8vw, 120px); color: var(--ink); }
.manifesto__deco--l { left: 2%;  top: 16%; }
.manifesto__deco--r { right: 2%; top: 14%; }

.pledge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  margin-top: clamp(34px, 4vw, 54px);
  align-items: start;
}
.pledge-grid > *:nth-child(2) { margin-top: clamp(26px, 3vw, 44px); }
.pledge {
  background: var(--cream-2);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px;
  text-align: left;
  box-shadow: 7px 7px 0 0 rgba(0, 0, 0, .55);
  color: var(--ink);
}
.pledge__title { font-family: var(--font-serif); font-style: italic; font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 2rem); color: var(--red); }
.pledge__copy { margin: 10px 0 0; font-size: .86rem; }

/* ------------------------- 12. JOURNAL / INKWELL ------------------------ */
.journal-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
  padding: 18px;
  display: grid;
  gap: 16px;
  transition: transform .2s ease, border-color .2s ease;
}
.journal-card:hover { transform: translateY(-4px); border-color: var(--red); }
.journal-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.journal-card__kind { padding: 4px 12px; border: 1px solid var(--line); border-radius: var(--radius-pill); font-size: .7rem; }
.journal-card__read { font-size: .7rem; color: var(--red); }
.journal-card__title { font-size: .95rem; font-weight: 600; margin: 0; line-height: 1.45; }
.journal-card__foot { display: flex; align-items: center; justify-content: space-between; }
.journal-card__cta { font-size: .8rem; font-weight: 600; }
.round-arrow {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  color: var(--red);
  font-size: .8rem;
}

/* ------------------------------ 13. CTA --------------------------------- */
.cta { text-align: center; position: relative; overflow: hidden; }
.cta__badge { margin-bottom: 22px; }
.cta__title { font-size: clamp(2.1rem, 5.4vw, 4rem); }
.cta__title .accent { display: block; }
.cta__copy { margin: 22px auto 0; max-width: 46ch; font-size: .95rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
.cta__note { margin-top: 26px; font-family: var(--font-serif); font-style: italic; font-size: .88rem; opacity: .85; }
.cta__deco {
  position: absolute;
  width: clamp(90px, 10vw, 150px);
  color: rgba(255, 255, 255, .9);
  left: 4%;
  top: 42%;
}
.cta-blob { position: absolute; color: rgba(0, 0, 0, .09); width: clamp(160px, 22vw, 300px); pointer-events: none; }
.cta-blob--l { left: -6%; top: 8%; }
.cta-blob--r { right: -5%; bottom: 4%; }

.mail-pill {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 14px 12px 24px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
  font-size: .9rem;
  transition: background .2s ease, color .2s ease;
}
.mail-pill:hover { background: var(--white); color: var(--red); }
.mail-pill .btn__icon { background: var(--white); color: var(--red); }
.mail-pill:hover .btn__icon { background: var(--red); color: var(--white); }

/* ----------------------------- 14. FOOTER ------------------------------- */
.site-footer { background: var(--black); color: var(--cream-2); padding-top: clamp(46px, 5vw, 72px); }
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, .8fr) minmax(0, 1.1fr);
  gap: clamp(26px, 3vw, 48px);
  padding-bottom: clamp(36px, 4vw, 56px);
}
.site-footer__brand { display: flex; align-items: center; gap: 12px; }
.site-footer__name { font-family: var(--font-serif); font-style: italic; font-weight: 700; font-size: clamp(1.2rem, 2vw, 1.7rem); }
.site-footer__about { margin: 18px 0 0; font-size: .86rem; color: #bdbdbd; max-width: 40ch; }
.site-footer__rule { width: 78px; height: 3px; background: var(--red); margin-top: 20px; border-radius: 2px; }
.site-footer__heading { color: var(--muted-light); font-size: .84rem; margin-bottom: 16px; }
.site-footer__list { display: grid; gap: 12px; font-size: .88rem; color: #d7d7d7; }
.site-footer__list a:hover { color: var(--red); }
.site-footer__contact { display: grid; gap: 16px; font-size: .88rem; color: #d7d7d7; }
.site-footer__contact a { text-decoration: underline; text-underline-offset: 3px; }
.site-footer__contact a:hover { color: var(--red); }
.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: .8rem;
  color: #c6c6c6;
}
.site-footer__stamp { display: inline-flex; align-items: center; gap: 10px; }
.site-footer__stamp span { color: var(--red); }

/* ----------------------------- 15. CONTACT ------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: start;
}
.info-card {
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--cream-2);
  padding: clamp(24px, 2.6vw, 36px);
  box-shadow: 9px 9px 0 0 var(--ink);
}
.info-card__name { font-family: var(--font-serif); font-style: italic; font-weight: 700; font-size: 1.35rem; }
.info-card__city { margin-top: 14px; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--red); }
.info-card__copy { margin: 18px 0 0; font-size: .9rem; }
.info-card__block { margin-top: 24px; }
.info-card__label { font-weight: 700; font-size: .92rem; }
.info-card__value { margin: 6px 0 0; font-size: .9rem; color: var(--ink-2); }
.info-card__value a { text-decoration: underline; text-underline-offset: 3px; }
.info-card__value a:hover { color: var(--red); }

.form-card {
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--cream-2);
  padding: clamp(24px, 2.8vw, 40px);
  box-shadow: 9px 9px 0 0 var(--red);
}
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2vw, 26px); }
.field { display: grid; gap: 10px; margin-bottom: 22px; }
.field__label { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.field__input,
.field__textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--red);
  border-radius: 12px;
  background: var(--cream-2);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--ink);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.field__textarea { min-height: 150px; resize: vertical; border-color: var(--line); border-radius: var(--radius); }
.field__input:focus,
.field__textarea:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(208, 18, 15, .16); }
.field__input[aria-invalid="true"],
.field__textarea[aria-invalid="true"] { border-color: var(--red-dark); background: #fff3f2; }
.field__error { font-size: .76rem; color: var(--red-dark); min-height: 1em; }

.chip-group { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 26px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-flex;
  padding: 9px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: .84rem;
  background: var(--cream-2);
  transition: all .18s ease;
  cursor: pointer;
}
.chip input:checked + span { background: var(--red); border-color: var(--red); color: var(--white); }
.chip input:focus-visible + span { outline: 3px solid var(--red); outline-offset: 3px; }
.form-legend { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--red); margin-bottom: 14px; }
.form-note { font-size: .74rem; color: var(--muted); margin: 0 0 22px; }
.form-status { margin-top: 18px; font-size: .88rem; font-weight: 600; }
.form-status.is-ok { color: #1a7f37; }
.form-status.is-error { color: var(--red-dark); }

.contact-art { margin-top: 40px; width: clamp(180px, 22vw, 300px); }

/* founder cards on Culture */
.people-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(20px, 2.6vw, 40px); align-items: start; }
.people-grid > *:nth-child(2) { margin-top: clamp(30px, 4vw, 64px); }
.person-card {
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--cream-2);
  padding: 18px;
  box-shadow: 9px 9px 0 0 var(--ink);
}
.person-card__photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 4.3;
  background: #f6d6d6;
  display: grid;
  place-items: center;
}
.person-card__photo--amber { background: #f2b33d; }
.person-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.person-card__name { margin-top: 22px; font-size: clamp(1.3rem, 2.2vw, 1.75rem); color: var(--red); }
.person-card__role { margin-top: 8px; font-family: var(--font-serif); font-style: italic; color: var(--red); font-size: .95rem; }
.person-card__bio { margin: 16px 0 0; font-size: .88rem; }
.person-card__skills { margin-top: 18px; font-size: .82rem; font-weight: 600; color: var(--red); }

/* process steps on Services */
.step-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 1.6vw, 22px); align-items: start; }
.step-grid > *:nth-child(even) { margin-top: clamp(20px, 2.4vw, 38px); }
.step {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  padding: 22px;
}
.step__num { font-family: var(--font-serif); font-style: italic; font-size: 1.9rem; color: var(--red); line-height: 1; }
.step__title { margin-top: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; }
.step__copy { margin: 10px 0 0; font-size: .84rem; color: #c4c4c4; }

/* ------------------------------ 16. MOTION ------------------------------ */
[data-reveal] { opacity: 0; transform: translateY(22px); }
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .7s cubic-bezier(.16, .84, .44, 1), transform .7s cubic-bezier(.16, .84, .44, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

/* ---------------------------- 17. RESPONSIVE ---------------------------- */
@media (max-width: 1080px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr) minmax(0, 1fr); }
}

@media (max-width: 960px) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed;
    inset: 78px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 28px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -30px rgba(0, 0, 0, .8);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__link { padding-block: 14px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav__link::after { display: none; }
  .nav .btn { margin-top: 18px; justify-content: center; }

  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .hero__cta { position: static; transform: none; margin: 18px auto 0; display: flex; }

  .section-head { grid-template-columns: 1fr; align-items: start; }
  .section-head__aside { justify-content: flex-start; }

  .case-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr; }
  .people-grid > *:nth-child(2) { margin-top: 0; }
  .step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brandcol { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --gutter: 18px; }
  .card-grid,
  .card-grid--2,
  .stagger-grid,
  .social-row,
  .post-grid,
  .pledge-grid { grid-template-columns: 1fr; }
  .stagger-grid > *:nth-child(even),
  .pledge-grid > *:nth-child(2) { margin-top: 0; }
  .case-card--tilt-l,
  .case-card--tilt-r { transform: none; }
  .form-row { grid-template-columns: 1fr; }
  .manifesto__deco { display: none; }
  .preach { flex-direction: column; align-items: flex-start; }
  .site-footer__bar { flex-direction: column; text-align: center; }
  .cta__deco { display: none; }
  .hero__stats { font-size: .7rem; }
}

@media (max-width: 520px) {
  .step-grid { grid-template-columns: 1fr; }
  .step-grid > *:nth-child(even) { margin-top: 0; }
  .btn { width: 100%; justify-content: center; }
  .cta__actions .btn { width: auto; }
  .site-footer__grid { grid-template-columns: 1fr; }
}
