/* ═══════════════════════════════════════════════════
   VEMURA STUDIO — styles.css
   ═══════════════════════════════════════════════════ */

/* ═══════════ LOADER ═══════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 16px);
  transition: transform 0.75s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: all;
}
#loader.is-leaving {
  transform: translateY(-100%);
}
.loader__count {
  font-family: var(--font);
  font-size: clamp(100px, 24vw, 300px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

/* ═══════════ AUDIO BUTTON ═══════════ */
.audio-btn {
  position: fixed;
  bottom: clamp(20px, 3vw, 32px);
  right: clamp(20px, 3vw, 32px);
  z-index: 998;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(11, 11, 11, 0.15);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  padding: 0;
}
.audio-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.audio-btn:active { transform: scale(0.95); }
.audio-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
/* Show play, hide pause by default */
.audio-btn .audio-btn__pause { display: none; }
.audio-btn[data-playing="true"] .audio-btn__play  { display: none; }
.audio-btn[data-playing="true"] .audio-btn__pause { display: block; }

/* Subtle pulse ring when playing */
.audio-btn[data-playing="true"]::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid rgba(11, 11, 11, 0.12);
  animation: audio-pulse 2s ease-in-out infinite;
}
@keyframes audio-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 0;   transform: scale(1.25); }
}

/* ═══════════ AEONIK FONT ═══════════ */
@font-face {
  font-family: 'Aeonik';
  src: url('fonts/Aeonik-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Aeonik';
  src: url('fonts/Aeonik-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}

/* ═══════════ CUSTOM PROPERTIES ═══════════ */
:root {
  --white:  #FFFFFF;
  --dark:   #0B0B0B;
  --yellow: #FED116;
  --green:  #1FB53A;
  --blue:   #00A3DE;

  --font:       'Aeonik', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;

  --edge: clamp(20px, 2.1vw, 35px);
  --nav-h: 72px;

  --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.76, 0, 0.24, 1);
}

/* ═══════════ RESET ═══════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .word { opacity: 1 !important; transform: none !important; }
  .reveal-scroll .word { opacity: 1 !important; }
}

/* ═══════════ TRIGGER-BASED WORD REVEAL ═══════════ */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
  padding-bottom: 0.22em;  /* room for g, y, p, q descenders */
  margin-bottom: -0.22em;  /* cancel the layout shift */
}
.word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
  will-change: transform, opacity;
}
.word.in  { opacity: 1; transform: translateY(0); }
.word.out {
  opacity: 0; transform: translateY(-110%);
  transition: opacity 0.35s ease-in, transform 0.35s ease-in;
}

/* ═══════════ SCROLL-LINKED WORD REVEAL ═══════════ */
.reveal-scroll .word {
  opacity: 0.15;
  transform: none;         /* no slide — pure opacity */
  transition: opacity 0.05s linear;
  will-change: opacity;
}

/* ═══════════ SECTION BAR ═══════════ */
.secbar {
  display: flex;
  align-items: center;
  width: 100%;
  color: var(--dark);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.secbar--light { color: #FFFFFF; }
.secbar__dot { display: block; width: 6px; height: 6px; background: currentColor; flex-shrink: 0; }
.secbar__num, .secbar__title {
  font-family: var(--font);
  font-size: 16px;
  letter-spacing: -0.025em;
  padding: 0 16px;
  white-space: nowrap;
}
.secbar__line { flex: 1; height: 1px; background: currentColor; opacity: 0.25; }

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 var(--edge);
  background: var(--white);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 1px 0 rgba(0,0,0,0.08); }

.nav__time {
  font-family: var(--font);
  font-size: clamp(12px, 1.3vw, 20px);
  letter-spacing: -0.025em;
  color: var(--dark);
  flex-shrink: 0;
}

/* Logo — centre */
.nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(48px, 5vw, 72px);
  color: var(--dark);
  cursor: pointer;
}
.nav__logo-svg     { width: 100%; height: auto; display: block; }
.nav__logo-svg--alt {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
}

/* ── Text-swap transition (Transitions.dev) ── */
:root {
  --text-swap-dur:         150ms;
  --text-swap-translate-y: 4px;
  --text-swap-blur:        2px;
  --text-swap-ease:        ease-in-out;
}
.t-text-swap {
  display: inline-block;
  transform: translateY(0);
  filter: blur(0);
  opacity: 1;
  transition:
    transform var(--text-swap-dur) var(--text-swap-ease),
    filter    var(--text-swap-dur) var(--text-swap-ease),
    opacity   var(--text-swap-dur) var(--text-swap-ease);
  will-change: transform, filter, opacity;
}
.t-text-swap.is-exit {
  transform: translateY(calc(var(--text-swap-translate-y) * -1));
  filter: blur(var(--text-swap-blur));
  opacity: 0;
}
.t-text-swap.is-enter-start {
  transform: translateY(var(--text-swap-translate-y));
  filter: blur(var(--text-swap-blur));
  opacity: 0;
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .t-text-swap { transition: none !important; }
}

/* Hamburger — always visible, double-dash style */
.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: clamp(28px, 3vw, 36px);
  height: 18px;
  flex-shrink: 0;
  z-index: 210;
  position: relative;
}
.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  transition: transform 0.35s var(--ease-expo), opacity 0.25s ease;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-8px) rotate(-45deg); }

/* Full-screen overlay nav — hidden by default on ALL screen sizes */
.nav__links {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vh, 32px);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.55s var(--ease-expo), opacity 0.45s ease;
  z-index: 190;
  pointer-events: none;
}
.nav__links.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav__link {
  font-family: var(--font);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--dark);
  transition: opacity 0.2s ease;
}
.nav__link:hover, .nav__link:focus-visible { opacity: 0.4; }
.nav__link:focus-visible { outline: 2px solid var(--dark); outline-offset: 4px; }

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100svh;
  background: var(--white);
  padding: clamp(90px, 12vw, 160px) var(--edge) clamp(60px, 7vw, 90px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(28px, 4vw, 48px);
}

/* V+oval mark inline within the h1 headline */
.hero__mark-inline {
  display: inline-block;
  vertical-align: middle;
  width: 2.5em;
  line-height: 0;
  margin: 0 0.14em 0 0;
  position: relative;
  top: 0.12em;
  color: var(--dark);
}
.hero__mark-inline svg { width: 100%; height: auto; display: block; }

.hero__headline {
  font-family: var(--font);
  font-size: clamp(44px, 8.5vw, 130px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--dark);
  max-width: clamp(300px, 54vw, 940px);
}

.hero__v-right {
  position: absolute;
  right: -2%;
  top: 10%;
  width: clamp(260px, 42vw, 640px);
  color: var(--dark);
  pointer-events: none;
  opacity: 1;
}
.hero__v-right svg { width: 100%; height: auto; display: block; }

.hero__subhead {
  font-family: var(--font);
  font-size: clamp(18px, 2.8vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--dark);
  max-width: clamp(260px, 46vw, 788px);
  margin-left: auto;
  margin-top: clamp(32px, 6vw, 90px);
}

/* ═══════════ ABOUT ═══════════ */
.about {
  background: var(--white);
  padding: clamp(60px, 8vw, 130px) var(--edge);
  position: relative;
}

/* V+oval logo — centred at top of section */
.about__mark {
  width: clamp(70px, 9vw, 130px);
  margin: 0 auto clamp(32px, 5vw, 60px);
  color: var(--dark);
}
.about__mark-svg { width: 100%; height: auto; display: block; }

.about__statement {
  font-family: var(--font);
  font-size: clamp(26px, 4.5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--dark);
  text-align: center;
  max-width: clamp(280px, 60vw, 1014px);
  margin: 0 auto clamp(60px, 8vw, 120px);
}

/* Dark card */
.about__card {
  background: var(--dark);
  padding: clamp(28px, 3.5vw, 60px) var(--edge);
  position: relative;
  overflow: hidden;
  min-height: clamp(260px, 28vw, 492px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.about__circles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.about__circle {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-width: 3px;
}
/* Arcs sweep up from bottom-right, each rotating at a different speed */
.about__circle--y {
  border-color: var(--yellow) var(--yellow) var(--yellow) transparent;
  width: clamp(480px, 96vw, 1540px);
  height: clamp(480px, 96vw, 1540px);
  right: -8%;
  bottom: -44%;
  animation: ring-cw 26s linear infinite;
}
.about__circle--g {
  border-color: transparent var(--green) var(--green) var(--green);
  width: clamp(350px, 70vw, 1120px);
  height: clamp(350px, 70vw, 1120px);
  right: -6%;
  bottom: -30%;
  animation: ring-ccw 36s linear infinite;
}
.about__circle--b {
  border-color: var(--blue) var(--blue) transparent var(--blue);
  width: clamp(230px, 46vw, 740px);
  height: clamp(230px, 46vw, 740px);
  right: -4%;
  bottom: -16%;
  animation: ring-cw 18s linear infinite;
}

.about__card-head {
  font-family: var(--font);
  font-size: clamp(20px, 2.5vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  max-width: clamp(200px, 42vw, 663px);
  position: relative; z-index: 1;
}
.about__color-line {
  font-family: var(--font);
  font-size: clamp(20px, 2.5vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--blue);
  position: relative; z-index: 1;
}
.color-cycle {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  position: relative;
}
.color-cycle__inner {
  display: inline-block;
  will-change: transform, opacity, clip-path;
}

/* ═══════════ ABOUT — local origin ═══════════ */
.about__local {
  padding: clamp(60px, 9vw, 130px) var(--edge);
  background: var(--white);
  text-align: center;
}
.about__local-stamp {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: clamp(15px, 1.7vw, 21px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(11, 11, 11, 0.68);
  line-height: 2;
  margin-bottom: clamp(32px, 5vw, 70px);
}
.about__local-quote {
  font-family: var(--font);
  font-size: clamp(20px, 3.2vw, 52px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.38;
  letter-spacing: -0.04em;
  color: var(--dark);
  max-width: min(860px, 90vw);
  margin: 0 auto clamp(40px, 6vw, 80px);
}
.about__local-logos {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__local-combined {
  width: clamp(140px, 22vw, 280px);
  height: auto;
  display: block;
}

/* ═══════════ FADE-UP — section entrance animation ═══════════ */
.fade-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ═══════════ SERVICES ═══════════ */
.services {
  background: var(--dark);
  padding: clamp(60px, 8vw, 130px) var(--edge);
  position: relative;
  overflow: hidden;
}

/* V+oval logo — top-left of section */
.services__mark {
  width: clamp(70px, 9vw, 130px);
  color: #FFFFFF;
  margin-bottom: clamp(24px, 4vw, 48px);
}
.services__mark-svg { width: 100%; height: auto; display: block; }

.services__headline {
  font-family: var(--font);
  font-size: clamp(40px, 10vw, 150px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: right;
  margin-bottom: clamp(50px, 7vw, 100px);
}

.services__list { display: flex; flex-direction: column; }
.services__item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: clamp(14px, 2vw, 26px) 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  opacity: 0.25;
  transition: opacity 300ms ease;
  cursor: pointer;
  outline: none;
}
.services__item:focus-visible { outline: 2px solid #FFFFFF; outline-offset: 6px; }
.services__item.is-lit        { opacity: 1; }

.services__name {
  font-family: var(--font);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #FFFFFF;
}
.services__num {
  font-family: var(--font);
  font-size: 16px;
  letter-spacing: -0.025em;
  color: #FFFFFF;
}

/* ═══════════ CASE STUDIES ═══════════ */
.casestudies {
  background: var(--dark);
  padding: clamp(60px, 8vw, 130px) var(--edge) 0;
}

.casestudies__quote {
  font-family: var(--font);
  font-size: clamp(24px, 4vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  text-align: right;
  max-width: clamp(280px, 60vw, 1014px);
  margin: 0 0 clamp(50px, 7vw, 80px) auto;
}

/* ── Card stacking ── */
.cs-stack {
  position: relative;
  padding-bottom: clamp(60px, 8vw, 120px);
}

/* Each "pin" is a sticky container that holds one card */
.cs-pin {
  position: sticky;
  top: var(--nav-h);
  padding-bottom: 20px; /* scroll headroom before next card stacks */
}

.cs-card {
  width: 100%;
  overflow: hidden;
  transform-origin: 50% 0;
  will-change: transform, filter;
  background: var(--dark);
}

/* White stroke on both cards */
.cs-card--stroked { border: 1px solid rgba(255,255,255,0.25); }

.cs-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 30px;
  background: #FFFFFF;
}
.cs-card__client,
.cs-card__type {
  font-family: var(--font);
  font-size: clamp(16px, 2vw, 32px);
  letter-spacing: -0.025em;
  color: var(--dark);
}

.cs-card__img {
  position: relative;
  height: clamp(200px, 32vw, 580px);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}
.cs-card__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(10px);
  transform: scale(1.06); /* hides blur edge artefacts */
  display: block;
}
.cs-card__img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cs-card__placeholder {
  font-family: var(--font);
  font-size: clamp(14px, 2.2vw, 40px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
}
.cs-card__num {
  position: absolute;
  bottom: 30px; left: 30px;
  font-family: var(--font);
  font-size: clamp(16px, 2vw, 32px);
  letter-spacing: -0.025em;
  color: #FFFFFF;
}
.cs-card__status {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font);
  font-size: clamp(14px, 2.2vw, 40px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  white-space: nowrap;
  pointer-events: none;
}

/* Card 2 hover effect */
.cs-pin:last-child .cs-card {
  transition: transform 0.45s var(--ease-expo), border-color 0.3s ease;
}
.cs-pin:last-child .cs-card:hover {
  transform: scale(1.012);
  border-color: rgba(255,255,255,0.7) !important;
}
.cs-pin:last-child .cs-card__header {
  transition: background 0.35s ease;
}
.cs-pin:last-child .cs-card:hover .cs-card__header {
  background: var(--dark);
}
.cs-pin:last-child .cs-card__client,
.cs-pin:last-child .cs-card__type {
  transition: color 0.35s ease;
}
.cs-pin:last-child .cs-card:hover .cs-card__client,
.cs-pin:last-child .cs-card:hover .cs-card__type {
  color: var(--white);
}

/* ═══════════ BUILT FOR ═══════════ */
.builtfor {
  background: var(--dark);
  padding: clamp(60px, 8vw, 130px) var(--edge);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.builtfor__intro {
  font-family: var(--font);
  font-size: clamp(18px, 2.6vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  text-align: center;
  max-width: clamp(260px, 58vw, 986px);
  margin: 0 auto clamp(50px, 7vw, 100px);
}
.builtfor__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(50px, 7vw, 100px);
}
.builtfor__item {
  font-family: var(--font);
  font-size: clamp(44px, 11.5vw, 200px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  opacity: 0.12;
  text-align: center;
  outline: none;
  transition: opacity 0.15s ease;
  will-change: opacity;
}
.builtfor__item:focus-visible { outline: 2px solid #FFFFFF; outline-offset: 6px; }
.builtfor__cta {
  font-family: var(--font);
  font-size: clamp(26px, 4.5vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  text-align: center;
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  background: var(--white);
  color: var(--dark);
  padding: clamp(60px, 8vw, 120px) var(--edge) clamp(30px, 4vw, 50px);
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* ── Top row ── */
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: clamp(50px, 8vw, 120px);
}
.footer__contact { display: flex; flex-direction: column; gap: 0; }
.footer__connect {
  font-family: var(--font);
  font-size: clamp(20px, 4vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--dark);
  margin-bottom: 0.08em;
}
.footer__email {
  font-family: var(--font);
  font-size: clamp(20px, 4vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--dark);
  display: block;
  transition: opacity 0.2s ease;
}
.footer__email:hover { opacity: 0.45; }
.footer__wordmark {
  font-family: var(--font);
  font-size: clamp(20px, 4vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--dark);
  white-space: nowrap;
  text-align: right;
}

/* ── Mid row: V logo left, nav right ── */
.footer__mid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.footer__mark {
  width: clamp(180px, 30vw, 460px);
  color: var(--dark);
  pointer-events: none;
  flex-shrink: 0;
}
.footer__mark-svg { width: 100%; height: auto; display: block; }

.footer__nav-wrap {
  display: flex;
  gap: clamp(24px, 4vw, 70px);
  align-items: flex-start;
  flex-shrink: 0;
}
.footer__nav,
.footer__social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.footer__nav-link,
.footer__social-link {
  font-family: var(--font);
  font-size: clamp(16px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--dark);
  transition: opacity 0.2s ease;
}
.footer__nav-link:hover,
.footer__social-link:hover  { opacity: 0.4; }
.footer__nav-link:focus-visible,
.footer__social-link:focus-visible { outline: 2px solid var(--dark); outline-offset: 4px; }

/* ── Bottom legal row ── */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 18px;
}
.footer__legal,
.footer__credit {
  font-family: var(--font);
  font-size: clamp(12px, 1.3vw, 20px);
  letter-spacing: -0.01em;
  color: rgba(11,11,11,0.5);
}
.footer__privacy {
  font-family: var(--font);
  font-size: clamp(12px, 1.3vw, 20px);
  letter-spacing: -0.01em;
  color: rgba(11,11,11,0.5);
  transition: opacity 0.2s ease;
}
.footer__privacy:hover { opacity: 1; color: var(--dark); }
.footer__up {
  font-family: var(--font);
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 700;
  color: var(--dark);
  transition: opacity 0.2s ease;
}
.footer__up:hover { opacity: 0.45; }

/* ═══════════ ABOUT — rotating arc decoration (inside dark card) ═══════════ */
@keyframes ring-cw  { to { transform: rotate(360deg);  } }
@keyframes ring-ccw { to { transform: rotate(-360deg); } }

/* ═══════════ MOBILE ( ≤ 768px ) ═══════════ */
@media (max-width: 768px) {
  /* Hero */
  .hero__mark-inline { width: 1.8em; }
  .hero__headline { max-width: 100%; }
  .hero__subhead  { margin-left: 0; max-width: 100%; }

  /* About */
  .about__statement { font-size: clamp(22px, 6vw, 40px); }

  /* Services */
  .services__headline { font-size: clamp(36px, 11vw, 80px); text-align: left; }
  .services__name     { font-size: clamp(28px, 7vw, 48px); }

  /* Built For */
  .builtfor__item { font-size: clamp(36px, 10vw, 80px); }

  /* About local */
  .about__local-quote { font-size: clamp(18px, 5vw, 32px); }

  /* Footer */
  .footer__top    { flex-direction: column; gap: 24px; }
  .footer__wordmark { text-align: left; }
  .footer__mid    { flex-direction: column; align-items: flex-start; gap: 40px; }
  .footer__mark   { width: clamp(140px, 50vw, 260px); }
  .footer__nav-wrap { gap: 32px; }
  .footer__nav, .footer__social { align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
