/* ============================================================
   Aureus Words — light minimal design system
   ============================================================ */

:root {
  --ink: #1c1a17;
  --ink-soft: #55524c;
  --ink-faint: #8a867e;
  --cream: #faf8f4;
  --cream-deep: #f3efe7;
  --gold: #b08d2e;
  --gold-soft: #d4b96a;
  --line: rgba(28, 26, 23, 0.1);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-duration: 1s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* visually hidden but available to screen readers and crawlers */
.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;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- typography ---------- */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.display {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
}

.heading-xl {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.heading-lg {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 42em;
}

.text-gold {
  color: var(--gold);
  font-style: italic;
}

/* ---------- layout ---------- */

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section--tinted {
  background: var(--cream-deep);
}

.section-head {
  max-width: 46em;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head h2 {
  margin: 1rem 0;
}

/* ---------- header / nav ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}

/* blur lives on a pseudo-element: backdrop-filter on the header itself
   breaks position:fixed descendants (the mobile menu) in iOS Safari */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(250, 248, 244, 0.92);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 0;
}

.brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.brand em {
  color: var(--gold);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.nav-links a {
  position: relative;
  padding-bottom: 0.3rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  position: relative;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  right: 0.25rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle::before { top: 0.55rem; }
.nav-toggle span    { top: 0.95rem; }
.nav-toggle::after  { top: 1.35rem; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 0.35s, color 0.35s, border-color 0.35s, transform 0.35s;
}

.btn:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.btn--gold:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.btn .arrow {
  transition: transform 0.35s var(--ease-out);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 7rem;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 54rem;
}

/* keep headline clear of the floating hero images:
   cap the text blocks, not the container (capping the container re-centers it) */
@media (min-width: 1081px) {
  .hero-content {
    max-width: none;
  }

  .hero-content h1,
  .hero-content .lede,
  .hero-content .hero-trust {
    max-width: calc(100vw - min(38vw, 560px) - (100vw - min(1180px, 92vw)) / 2 - 3rem);
  }
}

.hero .lede {
  margin: 1.8rem 0 2.6rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* animated headline: each line slides up from a clipped mask */
/* extra bottom padding (pulled back with negative margin) keeps
   descenders of g/y/f from being clipped by the mask */
.line-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
}

.line-mask > span {
  display: block;
  transform: translateY(140%);
  animation: line-rise 1.1s var(--ease-out) forwards;
}

.line-mask:nth-child(2) > span { animation-delay: 0.15s; }
.line-mask:nth-child(3) > span { animation-delay: 0.3s; }
.line-mask:nth-child(4) > span { animation-delay: 0.45s; }

@keyframes line-rise {
  to { transform: translateY(0); }
}

.hero-fade {
  opacity: 0;
  animation: fade-up 1s var(--ease-out) 0.65s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* floating gold orbs — ambient motion */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  animation: drift 14s ease-in-out infinite alternate;
}

.orb--one {
  width: 32rem;
  height: 32rem;
  right: -8rem;
  top: -6rem;
  background: radial-gradient(circle, var(--gold-soft), transparent 70%);
}

.orb--two {
  width: 22rem;
  height: 22rem;
  left: -6rem;
  bottom: -4rem;
  background: radial-gradient(circle, #e8dcbb, transparent 70%);
  animation-delay: -7s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-3rem, 2.5rem) scale(1.12); }
}

/* rotating word in hero */
.word-rotator {
  display: inline-block;
  position: relative;
  color: var(--gold);
  font-style: italic;
  min-width: 7.5ch;
}

.word-rotator span {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity 0.5s, transform 0.5s var(--ease-out);
  white-space: nowrap;
}

.word-rotator span.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* invisible in-flow copy that gives the rotator its natural height */
.word-rotator .sizer {
  position: static;
  visibility: hidden;
  transform: none;
}

/* ---------- hero trust line ---------- */

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  margin-top: 2.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.hero-trust span::before {
  content: "✦";
  color: var(--gold);
  margin-right: 0.6rem;
  font-size: 0.65rem;
}

/* ---------- editorial statement ---------- */

.statement {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  line-height: 1.35;
  max-width: 24em;
}

.statement em {
  color: var(--gold);
}

/* ---------- value pillars ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}

.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2.4rem 2.2rem;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(28, 26, 23, 0.18);
}

.pillar .glyph {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1.1rem;
}

.pillar h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.pillar p {
  font-size: 0.93rem;
  color: var(--ink-soft);
}

/* ---------- inline service links ---------- */

.more-services {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.more-services .tag {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.more-services .tag:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- imagery ---------- */

.media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1.4s var(--ease-out);
  will-change: transform;
}

.media:hover img {
  transform: scale(1.12);
}

/* wipe reveal: gold curtain slides away when the image scrolls into view */
.img-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--gold), var(--gold-soft));
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1s var(--ease-out) 0.15s;
  z-index: 2;
}

.img-reveal.is-inview::after {
  transform: scaleX(0);
}

.img-reveal img {
  opacity: 0;
  transition: opacity 0.01s 0.5s, transform 1.4s var(--ease-out);
}

.img-reveal.is-inview img {
  opacity: 1;
}

/* split layout: text + image */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.split .media {
  aspect-ratio: 4 / 5;
  max-height: 34rem;
}

/* full-width parallax band */
.parallax-band {
  position: relative;
  height: clamp(16rem, 40vw, 26rem);
  overflow: hidden;
}

.parallax-band img {
  position: absolute;
  inset: -20% 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  will-change: transform;
}

.parallax-band .band-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: rgba(28, 26, 23, 0.35);
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-style: italic;
  text-align: center;
  padding: 0 8vw;
}

/* full-height hero image column with a slow Ken Burns drift */
.hero-visual {
  position: absolute;
  inset: 5.5rem 0 0 auto;
  width: min(38vw, 560px);
  overflow: hidden;
  border-radius: 0 0 0 24px;
  z-index: 1;
  opacity: 0;
  animation: fade-up 1.2s var(--ease-out) 0.7s forwards;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 20s ease-in-out infinite alternate;
}

/* soft cream fade so the image blends into the page on its left edge */
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream), transparent 35%);
}

@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.1) translateX(-2%); }
}

@media (max-width: 1080px) {
  .hero-visual { display: none; }
}

@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
}

/* ---------- client logos ---------- */

.clients {
  text-align: center;
}

.clients .eyebrow {
  justify-content: center;
  margin-bottom: 2.6rem;
}

/* edge fade so logos glide in/out softly */
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  display: inline-flex;
  gap: 1.6rem;
  animation: logo-scroll 36s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  flex: 0 0 auto;
  width: 280px;
  text-align: center;
}

.logo-tile {
  height: 170px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 2.2rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.logo-tile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: filter 0.4s, opacity 0.4s;
}

.logo-item:hover .logo-tile {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -18px rgba(28, 26, 23, 0.2);
}

.logo-item:hover .logo-tile img {
  filter: none;
  opacity: 1;
}

.logo-name {
  display: block;
  margin-top: 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

@keyframes logo-scroll {
  to { transform: translateX(calc(-50% - 0.8rem)); }
}

/* ---------- scroll reveal system ---------- */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--reveal-duration) var(--ease-out),
              transform var(--reveal-duration) var(--ease-out);
}

.reveal.is-inview {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal[data-delay="4"] { transition-delay: 0.48s; }

/* ---------- cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.4rem;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(var(--gold), var(--gold-soft));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease-out);
  z-index: 3;
}

/* full-bleed image at the top of a card */
.card-media {
  margin: -2.2rem -2.2rem 1.6rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1s var(--ease-out), filter 0.6s;
  filter: saturate(0.85);
}

.card:hover .card-media img {
  transform: scale(1.12);
  filter: saturate(1.05);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(28, 26, 23, 0.18);
}

.card:hover::before {
  transform: scaleY(1);
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
}

.card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.card .num {
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 1.1rem;
}

.card ul {
  list-style: none;
  margin-top: 1.2rem;
  columns: 2;
  column-gap: 1.5rem;
}

.card ul li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 0.28rem 0 0.28rem 1.1rem;
  position: relative;
  break-inside: avoid;
}

.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
}

/* ---------- marquee ---------- */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 1.6rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 3.5rem;
  animation: marquee-scroll 30s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}

.marquee-track span::after {
  content: "✦";
  font-size: 0.8rem;
  color: var(--gold);
}

@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

/* ---------- stats / counters ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-value {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--gold);
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- approach steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.5rem;
  counter-reset: step;
}

.step {
  counter-increment: step;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}

.step::before {
  content: "0" counter(step);
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 0.8rem;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.93rem;
  color: var(--ink-soft);
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band .orb--one {
  opacity: 0.18;
}

.cta-band h2 {
  margin-bottom: 1.2rem;
}

.cta-band p {
  color: rgba(250, 248, 244, 0.65);
  max-width: 36em;
  margin: 0 auto 2.4rem;
}

.cta-band .btn {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.cta-band .btn:hover {
  background: transparent;
  color: var(--gold);
}

/* ---------- page hero (inner pages) ---------- */

.page-hero {
  padding: clamp(9rem, 16vw, 12rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.page-hero .lede {
  margin-top: 1.6rem;
}

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-item {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
}

.contact-item .label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.35rem;
}

.contact-item a {
  font-family: var(--serif);
  font-size: 1.5rem;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-form {
  display: grid;
  gap: 1.4rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.5rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 46, 0.14);
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-faint);
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.footer-inner p {
  font-size: 0.82rem;
  color: var(--ink-faint);
}

.footer-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--gold);
}

/* ---------- founders ---------- */

.founder {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.founder + .founder {
  margin-top: clamp(4rem, 8vw, 7rem);
}

.founder--flip .founder-photo {
  order: 2;
}

.founder-photo {
  max-width: 26rem;
  margin-inline: auto;
}

.founder-photo .media {
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -25px rgba(28, 26, 23, 0.25);
}

.founder-bio h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0.9rem 0 0.2rem;
}

.founder-bio .role {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.founder-bio p:not(.role) {
  color: var(--ink-soft);
  font-size: 0.97rem;
  margin-bottom: 1rem;
}

@media (max-width: 860px) {
  .founder {
    grid-template-columns: 1fr;
  }

  .founder--flip .founder-photo {
    order: 0;
  }
}

/* ---------- interactivity ---------- */

/* 3D tilt targets: JS drives transform; keep transitions smooth on leave */
[data-tilt] {
  transform-style: preserve-3d;
}

[data-tilt] > * {
  transform: translateZ(0);
}

.contact-media {
  aspect-ratio: 4 / 3;
  margin-bottom: 2rem;
}

/* ---------- responsive ---------- */

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
    z-index: 110;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.2rem;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-toggle span { opacity: 0; }
  body.nav-open .nav-toggle::before { transform: translateY(0.4rem) rotate(45deg); }
  body.nav-open .nav-toggle::after  { transform: translateY(-0.4rem) rotate(-45deg); }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .card ul {
    columns: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
