/* palette: bg=#F5F5F7 fg=#0B1220 accent=#0066FF */
/* fonts: display="Inter Tight" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #F5F5F7;
  --bg-alt: #FFFFFF;
  --bg-deep: #0B1220;
  --fg: #0B1220;
  --fg-soft: #1D1D1F;
  --muted: #6E6E73;
  --muted-light: #A1A1A6;
  --accent: #0066FF;
  --accent-deep: #0044CC;
  --accent-tint: #E8F0FF;
  --border: rgba(11, 18, 32, 0.10);
  --border-strong: rgba(11, 18, 32, 0.18);
  --serif: 'Inter Tight', ui-sans-serif, system-ui, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 4px 24px -4px rgba(11, 18, 32, 0.08);
  --shadow-hover: 0 12px 40px -8px rgba(11, 18, 32, 0.14);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--accent); color: #fff; }

/* ───── Layout ───── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.section--tight { padding: clamp(60px, 8vw, 100px) 0; }
.section--dark {
  background: var(--bg-deep);
  color: #F5F5F7;
}
.section--dark .muted { color: var(--muted-light); }
.section--alt { background: var(--bg-alt); }

/* ───── Typography ───── */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.section--dark .eyebrow { color: var(--muted-light); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  color: inherit;
}
.h-display {
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 300;
}
.h-section {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.h-manifesto {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 300;
}
.h-card {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 500;
}
em.accent {
  font-style: normal;
  color: var(--accent);
}

p { margin: 0 0 1em; }
p.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.55;
  color: var(--fg-soft);
  max-width: 56ch;
}
.muted { color: var(--muted); }

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.btn--primary {
  background: var(--fg);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
}
.btn--ghost {
  border: 1px solid var(--border-strong);
  color: var(--fg);
}
.btn--ghost:hover {
  background: var(--fg);
  color: var(--bg);
}
.section--dark .btn--ghost {
  border-color: rgba(255,255,255,0.2);
  color: #F5F5F7;
}
.section--dark .btn--ghost:hover {
  background: #F5F5F7;
  color: var(--bg-deep);
}
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.25s var(--ease), gap 0.25s var(--ease);
}
.link-arrow:hover {
  border-bottom-color: var(--accent);
  gap: 12px;
}

/* ───── Header ───── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 245, 247, 0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(11,18,32,0.04);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.brand__mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--fg);
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.brand__mark::before, .brand__mark::after {
  content: '';
  position: absolute;
  background: var(--accent);
}
.brand__mark::before {
  left: 7px; top: 7px;
  width: 2px; height: 14px;
}
.brand__mark::after {
  left: 8px; top: 13px;
  width: 13px; height: 2px;
  transform: rotate(35deg);
  transform-origin: 0 50%;
}
.brand__name { line-height: 1; }
.brand__name .dot { color: var(--accent); }

.nav {
  display: none;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--fg-soft);
  position: relative;
  padding: 4px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: var(--accent);
  transition: right 0.3s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.nav a[aria-current="page"] { color: var(--accent); }

.header__cta {
  display: none;
  gap: 16px;
  align-items: center;
}
@media (min-width: 900px) { .header__cta { display: inline-flex; } }
.header__cta .btn {
  padding: 10px 20px;
  font-size: 13px;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 10px;
  border-radius: 10px;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--fg);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 64px 0 0;
  background: var(--bg);
  z-index: 90;
  padding: 48px 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu[data-open="true"] {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }
@media (min-width: 900px) { .mobile-menu { display: none; } }

/* ───── Hero ───── */
.hero {
  min-height: calc(100vh - 72px);
  padding: clamp(40px, 8vw, 96px) 0 clamp(60px, 10vw, 120px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 102, 255, 0.10), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(0, 102, 255, 0.06), transparent 45%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.15fr 1fr; gap: 80px; }
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(40px, 6vw, 64px);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #19C37D;
  box-shadow: 0 0 0 4px rgba(25, 195, 125, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(25, 195, 125, 0.18); }
  50% { box-shadow: 0 0 0 7px rgba(25, 195, 125, 0.08); }
}
.hero__headline { margin-bottom: 36px; }
.hero__sub {
  max-width: 52ch;
  margin-bottom: 40px;
  color: var(--fg-soft);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.6;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--shadow-hover);
}
.hero__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }

.hero__overlay {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  padding: 18px 22px;
  background: rgba(245, 245, 247, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero__overlay .stat-num {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1;
  font-weight: 500;
}
.hero__overlay .stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ───── Marquee strip (clients/logos) ───── */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  background: var(--bg-alt);
}
.strip__inner {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.strip__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.strip__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 56px;
  align-items: center;
}
.strip__logos span {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--muted);
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
}
.strip__logos span:hover { opacity: 1; color: var(--fg); }

/* ───── Manifesto ───── */
.manifesto {
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--bg-deep);
  color: #F5F5F7;
}
.manifesto__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.manifesto h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 300;
}
.manifesto h2 em {
  font-style: normal;
  color: var(--accent);
  background: linear-gradient(90deg, #0066FF 0%, #4A8BFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.manifesto__sig {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-top: 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.manifesto__sig::before, .manifesto__sig::after {
  content: '';
  width: 24px; height: 1px;
  background: rgba(255,255,255,0.18);
}

/* ───── Section heading row ───── */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(48px, 7vw, 80px);
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 64px; align-items: end; }
}
.section-head__intro p { margin: 0; color: var(--muted); max-width: 48ch; }

/* ───── Capabilities grid ───── */
.cap-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 700px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cap-grid { grid-template-columns: repeat(4, 1fr); } }
.cap {
  background: var(--bg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: background 0.3s var(--ease);
}
.cap:hover { background: var(--bg-alt); }
.cap__icon {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--accent-tint);
  color: var(--accent);
}
.cap__icon svg { width: 22px; height: 22px; }
.cap h3 {
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.cap p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.6; }
.cap__list {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}

/* ───── Work / projects ───── */
.work-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
}
.work {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.work__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 14px;
  background: var(--bg-alt);
}
.work__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.work:hover .work__media img { transform: scale(1.04); }
.work__tag {
  position: absolute;
  top: 18px; left: 18px;
  padding: 6px 12px;
  background: rgba(245, 245, 247, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.work__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.work h3 { font-size: 1.6rem; letter-spacing: -0.015em; font-weight: 500; }
.work p { color: var(--muted); font-size: 15px; line-height: 1.6; max-width: 52ch; margin: 0; }
.work__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.work__stack span {
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ───── Process timeline ───── */
.process {
  display: grid;
  gap: 16px;
}
@media (min-width: 900px) {
  .process { grid-template-columns: repeat(3, 1fr); }
}
.step {
  padding: 36px 28px;
  border-radius: 16px;
  background: var(--bg-alt);
  position: relative;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
}
.step__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.step h3 { font-size: 1.2rem; font-weight: 500; letter-spacing: -0.01em; }
.step p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0; }
.step__time {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
  border-top: 1px dashed var(--border);
}

/* ───── Stack section (dark) ───── */
.stack {
  display: grid;
  gap: 12px;
}
@media (min-width: 700px) { .stack { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stack { grid-template-columns: repeat(4, 1fr); } }
.stack__card {
  padding: 22px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.stack__card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--accent);
}
.stack__card .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.stack__card .name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #F5F5F7;
}

/* ───── Testimonial pull-quote ───── */
.quote-block {
  max-width: 980px;
  margin: 0 auto;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}
.quote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  line-height: 1.28;
  letter-spacing: -0.018em;
  font-weight: 400;
}
.quote__attribution {
  margin-top: 36px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.quote__attribution .who {
  font-size: 15px;
  font-weight: 500;
}
.quote__attribution .role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ───── Testimonial list (testimonials.html) ───── */
.testimonials-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 800px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
.testimonial {
  padding: 36px 32px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial .rating {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.2em;
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.35;
  letter-spacing: -0.012em;
  font-weight: 400;
}
.testimonial .src {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.testimonial .src strong {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg);
}

/* ───── FAQ ───── */
.faq { max-width: 880px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--mono);
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { content: '−'; }
.faq details p {
  color: var(--muted);
  margin: 14px 0 0;
  max-width: 70ch;
}

/* ───── CTA / Contact form ───── */
.cta {
  display: grid;
  gap: 56px;
  padding: clamp(60px, 9vw, 96px) clamp(28px, 5vw, 64px);
  background: var(--bg-alt);
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
@media (min-width: 900px) {
  .cta { grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
}
.cta__info p { color: var(--muted); max-width: 42ch; }
.cta__contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}
.cta__contact a {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  font-weight: 500;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}
.cta__contact a::before {
  content: '↗';
  color: var(--accent);
  font-size: 18px;
}

.form {
  display: grid;
  gap: 20px;
}
.form__row {
  display: grid;
  gap: 20px;
}
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  font-size: 16px;
  color: var(--fg);
  transition: border-color 0.25s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-bottom-color: var(--accent);
}
.field__check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.field__check input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--accent); }
.field__check a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.form__submit { justify-self: start; margin-top: 8px; }

/* ───── Generic page hero ───── */
.page-hero {
  padding: clamp(80px, 12vw, 140px) 0 clamp(40px, 6vw, 72px);
}
.page-hero__title { margin-bottom: 24px; }
.page-hero__lead { font-size: clamp(1.1rem, 1.5vw, 1.4rem); color: var(--fg-soft); max-width: 64ch; line-height: 1.5; }

/* ───── Numbers / stats row ───── */
.numbers {
  display: grid;
  gap: 32px;
  padding: clamp(40px, 6vw, 64px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 700px) { .numbers { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.num__big {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: -0.028em;
  line-height: 1;
  font-weight: 300;
  display: block;
}
.num__big sup { font-size: 0.5em; color: var(--accent); }
.num__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
  display: block;
}

/* ───── Two-column generic ───── */
.two-col {
  display: grid;
  gap: 56px;
  align-items: start;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1.4fr; gap: 96px; }
}
.two-col h2 + p { margin-top: 28px; }
.two-col p { color: var(--fg-soft); max-width: 62ch; }

/* ───── Studio image strip ───── */
.studio {
  display: grid;
  gap: 16px;
}
@media (min-width: 700px) { .studio { grid-template-columns: 1.2fr 1fr 1fr; grid-template-rows: auto auto; } }
.studio__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
}
@media (min-width: 700px) {
  .studio__img:first-child { grid-row: span 2; aspect-ratio: auto; }
}
.studio__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.studio__img:hover img { transform: scale(1.05); }

/* ───── Services page: detailed services ───── */
.svc-list { display: flex; flex-direction: column; }
.svc {
  display: grid;
  gap: 28px;
  padding: 56px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.svc:last-child { border-bottom: 1px solid var(--border); }
@media (min-width: 900px) {
  .svc { grid-template-columns: 100px 1fr 1.6fr; gap: 56px; padding: 72px 0; }
}
.svc__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.svc h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: -0.018em;
  font-weight: 400;
}
.svc__body p { color: var(--muted); max-width: 60ch; margin: 0; }
.svc__body ul { padding: 0; list-style: none; margin: 20px 0 0; display: grid; gap: 10px; }
.svc__body li {
  padding-left: 22px;
  position: relative;
  font-size: 15px;
  color: var(--fg-soft);
}
.svc__body li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--accent);
}

/* ───── Footer ───── */
.footer {
  background: var(--bg-deep);
  color: #E5E5EA;
  padding: clamp(64px, 9vw, 96px) 0 32px;
}
.footer__grid {
  display: grid;
  gap: 48px;
  margin-bottom: 56px;
}
@media (min-width: 700px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }
.footer__brand {
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 16px;
}
.footer__brand .dot { color: var(--accent); }
.footer__tag { color: var(--muted-light); max-width: 38ch; font-size: 15px; line-height: 1.6; }
.footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__col ul { padding: 0; list-style: none; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: #E5E5EA; font-size: 14px; transition: color 0.25s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted-light);
}

/* ───── Scroll reveal ───── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero__visual img { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ───── Cookie popup ───── */
.cookie-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: rgba(11, 18, 32, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
@media (min-width: 700px) {
  .cookie-popup { align-items: flex-end; justify-content: flex-start; padding: 32px; }
}
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card {
  background: var(--bg);
  padding: 28px;
  max-width: 460px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-hover);
}
.cookie-popup__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.cookie-popup__card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: -0.012em;
  font-weight: 500;
  margin: 0 0 10px;
}
.cookie-popup__card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
.cookie-popup__card a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.cookie-popup__actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.cookie-popup__actions button {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: var(--bg);
  color: var(--fg);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.cookie-popup__actions button:hover { background: var(--bg-alt); }
.cookie-popup__actions button:last-child {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); }

/* ───── Legal pages ───── */
.legal { max-width: 820px; margin: 0 auto; padding: 0 0 96px; }
.legal h2 { font-size: 1.6rem; margin: 48px 0 16px; letter-spacing: -0.015em; font-weight: 500; }
.legal h3 { font-size: 1.2rem; margin: 32px 0 12px; font-weight: 500; }
.legal p, .legal li { color: var(--fg-soft); font-size: 16px; line-height: 1.72; }
.legal ul { padding-left: 22px; margin: 16px 0; }
.legal li { margin-bottom: 8px; }
.legal__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

/* ───── Thanks page ───── */
.thanks { text-align: center; padding: clamp(120px, 18vw, 200px) 20px; }
.thanks__check {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  font-size: 32px;
}
.thanks h1 { margin-bottom: 16px; }
.thanks p { color: var(--muted); max-width: 52ch; margin: 0 auto 36px; }
