/* =========================================================
   Dunamis Media — redesign stylesheet
   Brand palette: Dunamis gold (#f2a900) + ink (#0e0e10) + warm paper
   One face, Hanken Grotesk, one accent — kept deliberately quiet.
   ========================================================= */

:root {
  --ink:      #0e0e10;   /* true-black ink */
  --ink-soft: #17181b;
  --ink-line: #2b2c30;
  --paper:    #f7f4ef;
  --paper-2:  #efeae0;
  --line:     #e6e0d2;   /* hairline on paper */
  --text:     #0e0e10;
  --muted:    #56534f;
  --muted-d:  #9aa0a4;
  --accent:      #f2a900; /* Dunamis brand gold */
  --accent-d:    #c98700;
  --accent-text: #8a6100; /* gold dark enough for small text on paper */
  --focus:    #0f7d92;
  --error:    #c0392b;

  --maxw: 1140px;
  --pad: clamp(1.25rem, 4vw, 2.75rem);
  --radius: 14px;
  --radius-lg: 20px;

  --f-display: "Hanken Grotesk", "Segoe UI", system-ui, sans-serif;
  --f-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- dark theme (toggle, persisted) ---------- */
:root[data-theme="dark"] {
  --paper:       #0e0e10;
  --paper-2:     #1a1b1e;
  --line:        #2c2d31;
  --text:        #f6f3ed;
  --muted:       #a9a6a0;
  --accent-text: #ffcc4d; /* lighter gold — #8a6100 has no contrast on a dark surface */
}
:root[data-theme="dark"] .brand-logo,
:root[data-theme="dark"] .footer-wordmark { filter: brightness(1.05); }

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 5rem; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: clamp(1rem, .97rem + .15vw, 1.06rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.08; letter-spacing: -.02em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }

.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;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 3px; }

.wrap { width: min(100% - 2 * var(--pad), var(--maxw)); margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--ink); --fg: #fff;
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--bg); color: var(--fg);
  padding: .8em 1.4em; border-radius: 100px; border: 1.5px solid var(--bg);
  font-family: var(--f-display); font-weight: 500; font-size: .95rem; letter-spacing: -.01em;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.btn-lg { padding: .95em 1.7em; font-size: 1rem; }
.btn-sm { padding: .55em 1.05em; font-size: .85rem; }
.btn-ghost { --bg: transparent; --fg: var(--text); border-color: var(--line); }
.btn-ghost:hover { color: var(--ink); }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
/* Over the dark hero video, before the header sticks: light out the nav */
.site-header:not(.is-stuck) .brand { color: #fff; }
.site-header:not(.is-stuck) .nav-menu a:not(.btn) { color: rgba(255, 255, 255, .82); }
.site-header:not(.is-stuck) .nav-menu a:not(.btn):hover { color: #fff; }
.site-header:not(.is-stuck) .nav-toggle span:not(.sr-only) { background: #fff; }
.site-header:not(.is-stuck) .btn-sm { background: #fff; border-color: #fff; color: var(--ink); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--f-display); font-weight: 600; font-size: 1.2rem; }
.brand-logo { width: 2.9rem; height: 2.9rem; object-fit: contain; }
.nav { display: flex; align-items: center; gap: .5rem; }
.nav-menu { display: flex; align-items: center; gap: clamp(1.1rem, 2.5vw, 2.1rem); }
.nav-menu a:not(.btn) { font-family: var(--f-display); font-weight: 400; font-size: .95rem; color: var(--muted); transition: color .2s var(--ease); }
.nav-menu a:not(.btn):hover { color: var(--text); }

.theme-toggle {
  display: grid; place-items: center; width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: transparent; border: 1px solid var(--line); color: var(--text);
  font-size: .95rem; line-height: 1; transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent-text); }
:root[data-theme="dark"] .theme-toggle-icon { transform: scaleX(-1); } /* moon flips to a waning crescent */
.site-header:not(.is-stuck) .theme-toggle { border-color: rgba(255,255,255,.45); color: #fff; }
.site-header:not(.is-stuck) .theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: .4rem; z-index: 120;
}
.nav-toggle span:not(.sr-only) { width: 24px; height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 800px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(76vw, 300px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.4rem;
    background: var(--ink); padding: 2rem var(--pad);
    transform: translateX(100%); transition: transform .35s var(--ease);
  }
  .nav-menu a:not(.btn) { color: #fff; font-size: 1.1rem; }
  .nav-menu.is-open { transform: translateX(0); }
  body.nav-open { overflow: hidden; }
}

/* ---------- hero (cinematic, full-bleed video) ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -1; background: var(--ink); }
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(1.35) contrast(1.03) saturate(1.08); }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(27,36,41,.42) 0%, rgba(27,36,41,.14) 38%, rgba(27,36,41,.68) 100%),
    linear-gradient(90deg, rgba(27,36,41,.36), transparent 60%);
}
.hero-content { position: relative; padding-block: clamp(7rem, 20vh, 12rem); }

.hero-eyebrow {
  font-family: var(--f-display); font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  font-size: .76rem; color: #fff; margin-bottom: 1.5rem;
  display: inline-flex; align-items: center; gap: .6rem;
}
.hero-eyebrow::before { content: ""; width: 1.9rem; height: 2px; background: var(--accent); }
.hero-title {
  font-size: clamp(2.6rem, 1.3rem + 5.4vw, 5.4rem);
  max-width: 15ch; font-weight: 600; color: #fff;
}
.hero-title .accent-word { color: var(--accent); }
.typing-caret {
  display: inline-block; width: 3px; height: .8em; margin-left: .12em;
  background: var(--accent); vertical-align: -0.05em;
  animation: caret-blink .9s step-end infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }
.hero-lede { max-width: 46ch; margin-top: 1.6rem; font-size: clamp(1.04rem, 1rem + .4vw, 1.25rem); color: rgba(255,255,255,.85); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.3rem; }
.hero .btn-ghost { --fg: #fff; border-color: rgba(255,255,255,.45); }
.hero .btn-ghost:hover { color: var(--ink); }

.hero-mute {
  position: absolute; z-index: 2; right: clamp(1rem, 4vw, 2.5rem); bottom: clamp(1.25rem, 4vw, 2.5rem);
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.45); background: rgba(27,36,41,.35);
  color: #fff; display: grid; place-items: center; font-size: 1rem;
  backdrop-filter: blur(4px); transition: background .2s var(--ease);
}
.hero-mute:hover { background: rgba(27,36,41,.65); }

.hero-explore {
  position: absolute; z-index: 2; left: 50%; transform: translateX(-50%);
  bottom: clamp(1.25rem, 4vw, 2.25rem);
  display: inline-flex; align-items: center; gap: .6rem; color: #fff;
  font-family: var(--f-display); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
}
.hero-explore-arrow { display: inline-block; animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@media (max-width: 560px) { .hero-explore span:not(.hero-explore-arrow) { display: none; } }

/* ---------- logos: horizontal scroll, full colour ---------- */
.logos {
  padding-block: clamp(3rem, 7vw, 4.5rem); border-top: 1px solid var(--line); overflow: hidden;
  background:
    radial-gradient(ellipse 60% 120% at 50% 50%, rgba(242,169,0,.05), transparent 70%),
    radial-gradient(color-mix(in srgb, var(--text) 6%, transparent) 1px, transparent 1px) 0 0 / 22px 22px,
    var(--paper);
}
.logos-label { text-align: center; font-family: var(--f-display); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2rem; }
.logos-mask {
  overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logos-track {
  display: flex; align-items: center; width: max-content;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  animation: logos-scroll 28s linear infinite;
}
.logos-mask:hover .logos-track { animation-play-state: paused; }
.logo-img { height: clamp(1.9rem, 1.6rem + 1.4vw, 2.6rem); width: auto; object-fit: contain; flex: none; }
@keyframes logos-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logos-track { animation: none; } }

/* ---------- generic section ---------- */
.section { padding-block: clamp(4.5rem, 11vw, 8.5rem); }
.section + .section,
.logos + .section { border-top: 1px solid var(--line); }
.section-head { max-width: 44ch; margin-bottom: clamp(2.75rem, 6vw, 4.5rem); }
.section-kicker { font-family: var(--f-display); font-weight: 500; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 1.1rem; }
.section-title { font-size: clamp(1.9rem, 1.3rem + 3vw, 3.2rem); font-weight: 600; }
.section-intro { margin-top: 1.3rem; color: var(--muted); font-size: 1.08rem; max-width: 46ch; }

/* ---------- services (interactive gallery: list + live preview) ---------- */
.section.services {
  background:
    radial-gradient(ellipse 60% 55% at 12% 0%, rgba(242,169,0,.16), transparent 60%),
    radial-gradient(ellipse 50% 45% at 100% 100%, rgba(242,169,0,.09), transparent 55%),
    var(--ink);
  color: #fff; border-top: none;
}
.services .section-kicker { color: var(--accent); }
.services .section-title { color: #fff; }
.services .section-intro { color: rgba(255,255,255,.68); }

.service-gallery {
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.3fr);
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: stretch;
}
.service-list { display: flex; flex-direction: column; border-top: 1px solid var(--ink-line); }
.service-item {
  display: flex; align-items: center; gap: 1rem;
  padding: clamp(.85rem, 2vw, 1.15rem) .35rem;
  border-bottom: 1px solid var(--ink-line);
  cursor: pointer; transition: background .2s var(--ease);
}
.service-item:hover, .service-item:focus-visible { background: rgba(255,255,255,.05); }
.service-item-no {
  flex: none; width: 2.1rem; font-family: var(--f-display); font-weight: 500;
  font-size: .78rem; letter-spacing: .04em; color: rgba(255,255,255,.35);
  transition: color .2s var(--ease);
}
.service-item-name {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(1.05rem, .92rem + .7vw, 1.4rem); line-height: 1.2;
  color: rgba(255,255,255,.6); transition: color .2s var(--ease);
}
.service-item-arrow {
  margin-left: auto; flex: none; color: var(--accent);
  opacity: 0; transform: translateX(-6px);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.service-item:hover .service-item-arrow { opacity: 1; transform: none; }
.service-item.is-active .service-item-no { color: var(--accent); }
.service-item.is-active .service-item-name { color: #fff; font-weight: 600; }
.service-item.is-active .service-item-arrow { opacity: 1; transform: none; }

.service-preview {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  aspect-ratio: 5 / 4; background: var(--ink-soft); min-height: 18rem;
  box-shadow: 0 25px 60px -20px rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.08);
}
.service-slide {
  position: absolute; inset: 0; margin: 0;
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease);
}
.service-slide.is-active { opacity: 1; visibility: visible; }
.service-slide img {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.service-slide::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,14,16,.05) 40%, rgba(14,14,16,.82) 100%);
}
/* branded gradients for slides without a photo */
.service-slide[data-tint="a"] { background: linear-gradient(150deg, #f7c846, #c98700); }
.service-slide[data-tint="b"] { background: linear-gradient(150deg, #26282c, #0e0e10); }
.service-slide[data-tint="c"] { background: linear-gradient(150deg, #e0a100, #8a6100); }
.service-slide[data-tint="d"] { background: linear-gradient(150deg, #2b2c30, #17181b); }
.service-slide[data-tint="e"] { background: linear-gradient(150deg, #f7c846, #c98700); }
.service-slide figcaption {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  padding: clamp(1.25rem, 3vw, 2.1rem); color: #fff;
}
.service-slide-no {
  font-family: var(--f-display); font-weight: 500; font-size: .74rem;
  letter-spacing: .16em; color: rgba(255,255,255,.65);
}
.service-slide figcaption h3 {
  margin-top: .45rem; font-size: clamp(1.15rem, 1rem + .8vw, 1.55rem);
  font-weight: 600;
}
.service-slide figcaption p {
  margin-top: .5rem; max-width: 36ch; font-size: .92rem; line-height: 1.55;
  color: rgba(255,255,255,.88);
}
@media (max-width: 860px) {
  .service-gallery { grid-template-columns: 1fr; }
  .service-preview { order: -1; aspect-ratio: 4 / 3; }
}

/* ---------- process (how we work) ---------- */
.process {
  background:
    radial-gradient(ellipse 55% 65% at 100% 0%, rgba(242,169,0,.08), transparent 60%),
    repeating-linear-gradient(135deg, color-mix(in srgb, var(--text) 4%, transparent) 0 1px, transparent 1px 15px),
    var(--paper);
}
.process-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.process-step {
  display: grid; grid-template-columns: 4.5rem 1fr; gap: 1.5rem; align-items: start;
  padding-block: clamp(1.5rem, 3vw, 2.1rem); border-bottom: 1px solid var(--line);
}
.process-no { font-family: var(--f-display); font-weight: 600; font-size: 1.4rem; color: var(--accent-d); }
.process-title { font-size: 1.15rem; font-weight: 600; }
.process-desc { margin-top: .4rem; color: var(--muted); font-size: .96rem; max-width: 52ch; }
@media (max-width: 560px) { .process-step { grid-template-columns: 3rem 1fr; gap: 1rem; } }

/* ---------- work ---------- */
.section.work {
  background:
    radial-gradient(ellipse 55% 50% at 88% 0%, rgba(242,169,0,.12), transparent 58%),
    radial-gradient(ellipse 60% 60% at 0% 100%, rgba(255,255,255,.05), transparent 55%),
    var(--ink);
  color: #fff; border-top: none;
}
.work .section-kicker { color: var(--accent); }
.work .section-title { color: #fff; }

.work-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); gap: clamp(1.25rem, 3vw, 2rem); }
.work-card { transition: transform .3s var(--ease); }
.work-card:hover { transform: translateY(-4px); }
.work-visual {
  aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden;
  display: grid; place-items: center; position: relative; background: var(--paper-2);
  box-shadow: 0 20px 45px -18px rgba(0,0,0,.6); border: 1px solid rgba(255,255,255,.08);
}
.work-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.work-card:hover .work-img { transform: scale(1.05); }
.work-initial { font-family: var(--f-display); font-weight: 600; font-size: clamp(2.6rem, 7vw, 4rem); color: rgba(27,36,41,.16); }
.work-card[data-tint="a"] .work-visual { background: #f6d999; }
.work-card[data-tint="b"] .work-visual { background: #fbe7c2; }
.work-card[data-tint="c"] .work-visual { background: #e9edef; }
.work-card[data-tint="d"] .work-visual { background: #efeae0; }
.work-card[data-tint="e"] .work-visual { background: var(--ink-soft); border-color: rgba(255,255,255,.14); }
.work-card[data-tint="e"] .work-initial { color: rgba(255,255,255,.18); }
.work-card[data-tint="f"] .work-visual { background: #f6d999; }
.work-meta { padding: 1.1rem .25rem 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.work-title { font-size: 1.15rem; font-weight: 600; color: #fff; }
.work-kind { color: rgba(255,255,255,.6); font-size: .88rem; margin-top: .2rem; }
.work-arrow {
  font-size: 1.1rem; color: var(--accent); flex: none; margin-top: .1rem;
  opacity: 0; transform: translate(-4px, 4px); transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.work-card:hover .work-arrow { opacity: 1; transform: none; }

/* ---------- studio ---------- */
.studio {
  background:
    radial-gradient(ellipse 50% 55% at 0% 100%, rgba(242,169,0,.07), transparent 55%),
    linear-gradient(155deg, var(--paper) 55%, var(--paper-2) 130%);
}
.studio-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2.5rem, 7vw, 5.5rem); align-items: start; }

.stat-list { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 3rem); }
.stat { border-top: 1px solid var(--line); padding-top: 1rem; }
.stat-value { font-family: var(--f-display); font-weight: 600; font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem); color: var(--text); }
.stat-suffix { font-family: var(--f-display); font-weight: 600; font-size: 1.4rem; color: var(--accent-d); }
.stat-label { display: block; margin-top: .5rem; color: var(--muted); font-size: .88rem; line-height: 1.45; }

.team-block, .values-block { margin-top: clamp(3.5rem, 8vw, 6rem); }
.team-heading { font-size: clamp(1.25rem, 1.05rem + 1vw, 1.6rem); font-weight: 600; margin-bottom: 2rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: clamp(1.75rem, 4vw, 2.75rem); }
.team-photo {
  width: clamp(112px, 9vw + 4rem, 168px); height: clamp(112px, 9vw + 4rem, 168px);
  object-fit: cover; object-position: center top;
  border-radius: 50%; margin-bottom: 1.15rem; filter: grayscale(1);
  transition: filter .3s var(--ease);
}
.team-card:hover .team-photo { filter: grayscale(0); }
.team-avatar {
  display: grid; place-items: center;
  width: clamp(112px, 9vw + 4rem, 168px); height: clamp(112px, 9vw + 4rem, 168px);
  border-radius: 50%; background: var(--accent); color: var(--ink);
  font-family: var(--f-display); font-weight: 600; font-size: clamp(1.8rem, 1.2rem + 1.5vw, 2.4rem);
  margin-bottom: 1.15rem;
}
.team-name { font-size: 1.1rem; font-weight: 600; }
.team-role { color: var(--accent-text); font-size: .82rem; font-family: var(--f-display); margin-top: .25rem; }
.team-bio { color: var(--muted); font-size: .9rem; margin-top: .7rem; }

.values-list { display: grid; gap: 1.4rem; max-width: 560px; }
.value-row { display: grid; grid-template-columns: 7.5rem 1fr 2.25rem; align-items: center; gap: 1rem; }
.value-label { font-family: var(--f-display); font-weight: 400; }
.value-bar { height: 4px; border-radius: 100px; background: var(--paper-2); overflow: hidden; }
.value-fill { display: block; height: 100%; width: 0; border-radius: inherit; background: var(--accent); transition: width 1s var(--ease); }
.value-row.is-visible .value-fill { width: var(--to); }
.value-score { font-family: var(--f-display); font-weight: 500; color: var(--muted); text-align: right; font-size: .9rem; }

/* ---------- testimonials ---------- */
.testimonials {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 55% 60% at 100% 100%, rgba(242,169,0,.06), transparent 55%),
    var(--paper);
}
.testimonials::before {
  content: "\201C"; position: absolute; top: -3.5rem; left: 50%; z-index: 0;
  transform: translateX(-50%); pointer-events: none; user-select: none;
  font-family: var(--f-display); font-weight: 700; line-height: 1;
  font-size: clamp(16rem, 32vw, 28rem); color: var(--paper-2);
}
.testimonials > .wrap { position: relative; z-index: 1; }
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(1.25rem, 3vw, 2rem); }
.quote-card { position: relative; border-top: 2px solid var(--ink); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 1.1rem; }
.quote-mark {
  position: absolute; top: -.15em; right: 0; font-family: var(--f-display); font-weight: 700;
  font-size: 3.5rem; line-height: 1; color: var(--paper-2); z-index: -1; user-select: none;
}
.quote-card blockquote { margin: 0; font-family: var(--f-display); font-weight: 400; font-size: 1.1rem; line-height: 1.5; letter-spacing: -.01em; }
.quote-stars { color: var(--accent-text); letter-spacing: .12em; font-size: .9rem; }
.quote-by { margin-top: auto; display: flex; align-items: center; gap: .7rem; color: var(--muted); font-size: .88rem; }
.quote-by strong { color: var(--text); font-weight: 600; }
.quote-avatar {
  display: grid; place-items: center; flex: none; width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: var(--paper-2); color: var(--accent-text); font-family: var(--f-display); font-weight: 600; font-size: .85rem;
}

/* ---------- events ---------- */
.events {
  background:
    radial-gradient(ellipse 50% 55% at 0% 0%, rgba(242,169,0,.07), transparent 55%),
    radial-gradient(color-mix(in srgb, var(--text) 6%, transparent) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--paper);
}
.event-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.event-row {
  display: grid; grid-template-columns: 5rem 1fr auto; gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center; padding-block: clamp(1.5rem, 3vw, 2.1rem); border-bottom: 1px solid var(--line);
  transition: background .2s var(--ease);
}
.event-row:hover { background: var(--paper-2); }
.event-date {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; line-height: 1;
}
.event-day { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.6rem, 1.3rem + 1vw, 2rem); color: var(--text); }
.event-month {
  margin-top: .3rem; font-family: var(--f-display); font-weight: 500; font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent-text);
}
.event-tag {
  display: inline-block; font-family: var(--f-display); font-weight: 500; font-size: .72rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--accent-text);
  background: var(--paper-2); padding: .25em .7em; border-radius: 100px; margin-bottom: .6rem;
}
.event-title { font-size: 1.15rem; font-weight: 600; }
.event-meta { margin-top: .3rem; color: var(--muted); font-size: .88rem; }
.event-desc { margin-top: .5rem; color: var(--muted); font-size: .92rem; max-width: 52ch; }
.event-link {
  display: inline-flex; align-items: center; gap: .4em; white-space: nowrap;
  font-family: var(--f-display); font-weight: 500; font-size: .92rem; color: var(--accent-text);
  transition: gap .2s var(--ease);
}
.event-row:hover .event-link { gap: .6em; }
@media (max-width: 640px) {
  .event-row { grid-template-columns: 3.25rem 1fr; }
  .event-link { grid-column: 1 / -1; margin-top: .5rem; }
}

.events-empty {
  border: 1px dashed var(--line); border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem); text-align: center;
}
.events-empty-title { font-family: var(--f-display); font-weight: 600; font-size: 1.25rem; }
.events-empty-text { margin-top: .7rem; color: var(--muted); font-size: .98rem; max-width: 46ch; margin-inline: auto; }
.events-empty .btn { margin-top: 1.6rem; }

/* ---------- contact (light, underline form — matches brand reference) ---------- */
.contact {
  background:
    radial-gradient(ellipse 55% 60% at 100% 0%, rgba(242,169,0,.08), transparent 55%),
    var(--paper);
}
.contact-intro { max-width: 46ch; margin-bottom: clamp(2.75rem, 6vw, 4rem); }
.contact-bar { display: block; width: 56px; height: 4px; background: var(--accent); margin-bottom: 1.4rem; border-radius: 2px; }
.contact-title { font-size: clamp(1.9rem, 1.2rem + 3.4vw, 3.4rem); font-weight: 800; letter-spacing: -.02em; }
.contact .section-intro { margin-top: 1.1rem; }

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

.contact-form { display: grid; gap: 1.4rem; }
.field { display: grid; gap: .5rem; }
.field label { font-family: var(--f-display); font-weight: 700; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--text); }
.field input, .field textarea {
  font: inherit; font-size: 1rem; color: var(--text); background: transparent;
  border: 0; border-bottom: 1.5px solid var(--line); border-radius: 0;
  padding: .65rem .1rem; width: 100%;
  transition: border-color .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--accent); }
.field textarea { resize: vertical; min-height: 96px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-form .btn { justify-self: start; margin-top: .4rem; background: var(--ink); border-color: var(--ink); }
.contact-form .btn:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.form-status { font-size: .9rem; min-height: 1.2em; }
.form-status.is-ok { color: var(--accent-text); }
.form-status.is-err { color: var(--error); }
.contact-form.is-sending { opacity: .6; pointer-events: none; }

.contact-details { display: grid; gap: 1.9rem; }
.contact-row span {
  display: block; font-family: var(--f-display); font-weight: 500; font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem;
}
.contact-row p, .contact-row a { font-size: 1.05rem; line-height: 1.6; color: var(--text); }
.contact-row a:hover { color: var(--accent-text); }
.contact-socials { display: flex; gap: 1.1rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #fff; padding-block: clamp(3rem, 7vw, 4.5rem) 2rem; border-top: 1px solid var(--ink-line); }
.footer-top { display: flex; flex-wrap: wrap; align-items: baseline; gap: .75rem 2rem; padding-bottom: 2.5rem; }
.footer-wordmark { font-family: var(--f-display); font-weight: 600; font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -.03em; }
.footer-tag { color: var(--muted-d); font-size: .95rem; }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); gap: 2rem; padding-block: 2.5rem; border-top: 1px solid var(--ink-line); }
.footer-col h4 { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-d); margin-bottom: 1rem; font-weight: 500; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: #d7dbdd; font-size: .92rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; color: var(--muted-d); font-size: .82rem; padding-top: 2rem; border-top: 1px solid var(--ink-line); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .studio-grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .stat-list { grid-template-columns: 1fr; }
  .value-row { grid-template-columns: 6rem 1fr 2rem; gap: .75rem; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}
