/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-bg: #0c0c0c;
  --c-surface: #141414;
  --c-surface2: #1c1c1c;
  --c-border: rgba(255,255,255,.07);
  --c-border-strong: rgba(255,255,255,.14);
  --c-text: #f0ede8;
  --c-muted: #888;
  --c-muted-2: #b0b0b0;
  --c-accent: #e8d5b0;
  --c-accent-soft: rgba(232,213,176,.12);
  --r: 12px;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --nav-h: 64px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; }
em { font-family: var(--font-serif); font-style: italic; }
button { font: inherit; color: inherit; }

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-surface2); border-radius: 2px; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 40px;
  font-size: .9rem; font-weight: 500; letter-spacing: .02em;
  transition: all .25s var(--ease); cursor: pointer; border: none;
  white-space: nowrap;
}
.btn--primary { background: var(--c-accent); color: #0c0c0c; }
.btn--primary:hover { background: #f5e8c8; transform: translateY(-1px); }

.btn--ghost { background: transparent; color: var(--c-text); border: 1px solid var(--c-border); }
.btn--ghost:hover { border-color: var(--c-border-strong); background: rgba(255,255,255,.04); }

.btn--outline { background: transparent; color: var(--c-text); border: 1px solid var(--c-border); }
.btn--outline:hover { border-color: var(--c-accent); color: var(--c-accent); }

.btn--large { padding: 14px 30px; font-size: .95rem; }

/* ─── SECTION SHARED ─────────────────────────────────────── */
.section-label {
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--c-accent); font-weight: 500; margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; line-height: 1.15; margin-bottom: 16px;
}
.section-sub { color: var(--c-muted); font-size: 1rem; max-width: 520px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ─── PLACEHOLDER IMAGES ─────────────────────────────────── */
.placeholder-img {
  background: var(--c-surface);
  border: 1px dashed var(--c-border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; width: 100%; height: 100%;
  color: var(--c-muted); transition: background .3s;
}
.placeholder-img:hover { background: var(--c-surface2); }
.placeholder-icon { opacity: .35; }
.placeholder-hint {
  font-size: .78rem; letter-spacing: .06em;
  color: var(--c-muted); opacity: .6;
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(12,12,12,.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-serif); font-size: 1.3rem;
  letter-spacing: .05em; color: var(--c-accent);
  cursor: pointer;
}
.nav__links {
  display: flex; align-items: center; gap: 32px;
  font-size: .88rem; font-weight: 400;
}
.nav__links a { color: var(--c-muted); transition: color .2s; cursor: pointer; }
.nav__links a:hover { color: var(--c-text); }
.nav__cta {
  background: var(--c-accent); color: #0c0c0c;
  padding: 8px 20px; border-radius: 40px;
  font-weight: 500; transition: background .2s; cursor: pointer;
  border: none;
}
.nav__cta:hover { background: #f5e8c8; }
.nav__burger { display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--c-text); transition: .3s; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px; margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) 32px 80px;
  gap: 64px;
  position: relative;
}

.hero__portrait { position: relative; display: flex; justify-content: center; }
.hero__portrait-frame {
  width: min(380px, 100%); aspect-ratio: 3/4;
  border-radius: var(--r); overflow: hidden;
  position: relative; z-index: 1;
}
.hero__portrait-img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.hero:hover .hero__portrait-img { transform: scale(1.02); }
.hero__portrait-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: var(--c-surface);
  border: 1px dashed var(--c-border);
}
.hero__portrait-initials {
  font-family: var(--font-serif); font-size: 4rem;
  color: var(--c-accent); opacity: .5;
}
.hero__portrait-hint {
  font-size: .8rem; color: var(--c-muted); letter-spacing: .06em; opacity: .6;
}
.hero__portrait-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,213,176,.12) 0%, transparent 70%);
  z-index: 0; border-radius: 50%;
}

.hero__eyebrow {
  font-size: .82rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--c-accent); font-weight: 500; margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400; line-height: 1.05;
  margin-bottom: 24px;
}
.hero__sub {
  color: var(--c-muted-2); font-size: 1.05rem;
  max-width: 440px; margin-bottom: 40px;
  line-height: 1.7;
}
.hero__tagline {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 40px;
  font-size: .95rem; letter-spacing: .04em;
  color: var(--c-muted-2);
}
.hero__tagline span {
  position: relative; padding-right: 14px;
}
.hero__tagline span:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%;
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--c-accent); transform: translateY(-50%);
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-muted); opacity: .5;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--c-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: .8; transform: scaleY(1.2); }
}

/* ─── STATS ──────────────────────────────────────────────── */
.stats {
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-surface);
}
.stats__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 48px 32px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center; gap: 24px;
}
.stats__item { padding: 16px; }
.stats__number {
  display: block; font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--c-accent);
  margin-bottom: 8px; letter-spacing: -.01em;
}
.stats__label {
  font-size: .8rem; color: var(--c-muted);
  letter-spacing: .04em; text-transform: uppercase;
}
.stats__link {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 0 32px 32px;
  font-size: .82rem; color: var(--c-muted);
  letter-spacing: .04em;
  transition: color .2s, gap .25s var(--ease);
}
.stats__link:hover { color: var(--c-accent); gap: 10px; }

/* ─── CLIENTS / TRUST BADGES ────────────────────────────── */
.clients {
  padding: 80px 0 60px;
  text-align: center;
  overflow: hidden;
}
.clients__lead {
  font-size: .75rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-muted); opacity: .7;
  margin-bottom: 36px;
  padding: 0 32px;
}
.clients__viewport {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.clients__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.clients__track:hover { animation-play-state: paused; }
.clients__list {
  list-style: none;
  display: flex; align-items: center;
  gap: 64px;
  padding: 0 32px 0 0;  /* spacing before the duplicate */
  margin: 0;
}
.client {
  display: flex; align-items: center; justify-content: center;
  height: 44px; min-width: 80px;
  opacity: .55;
  /* Force any logo (color or B&W) to pure white at rest, original colors on hover */
  filter: brightness(0) invert(1);
  transition: opacity .3s var(--ease), filter .3s var(--ease), transform .3s var(--ease);
  flex-shrink: 0;
}
.client:hover {
  opacity: 1; filter: none;
  transform: translateY(-2px);
}
.client__logo {
  max-height: 44px; max-width: 140px;
  width: auto; height: auto;
  object-fit: contain;
}
.client__text {
  display: none;
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 400;
  letter-spacing: .04em;
  color: var(--c-muted-2);
  white-space: nowrap;
}

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

@media (prefers-reduced-motion: reduce) {
  .clients__track { animation: none; }
  .clients__viewport { -webkit-mask-image: none; mask-image: none; }
  .clients__list { flex-wrap: wrap; justify-content: center; gap: 32px 48px; }
}

/* ─── WORK / GALLERIES ──────────────────────────────────── */
.work { padding: 120px 32px; max-width: 1200px; margin: 0 auto; }

.work-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
}
.work-card {
  position: relative; border-radius: var(--r);
  overflow: hidden; cursor: pointer;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  display: flex; flex-direction: column;
}
.work-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
}
.work-card__img {
  width: 100%; aspect-ratio: 4/3;
  border-radius: 0; border: none;
  border-bottom: 1px solid var(--c-border);
  flex: 1; position: relative; overflow: hidden;
}
.work-card__photo {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.work-card:hover .work-card__photo { transform: scale(1.04); }
.work-card--side .work-card__img { aspect-ratio: 4/3; }
.work-card__content {
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.work-card__content > div:first-child { display: flex; flex-direction: column; gap: 2px; }
.work-card__tag {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-accent); font-weight: 500;
}
.work-card__title {
  font-family: var(--font-serif); font-size: 1.25rem;
  font-weight: 400;
}
.work-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; color: var(--c-muted);
  transition: gap .25s var(--ease), color .2s;
  flex-shrink: 0;
}
.work-card:hover .work-card__link { gap: 12px; color: var(--c-accent); }

/* ─── EVENTS ─────────────────────────────────────────────── */
.events { padding: 100px 32px; }
.events__inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.events__title {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400; margin-bottom: 40px;
}
.events__list {
  list-style: none; display: flex; flex-wrap: wrap;
  justify-content: center; gap: 10px;
}
.events__pill {
  padding: 10px 22px; border: 1px solid var(--c-border);
  border-radius: 40px; font-size: .92rem; color: var(--c-muted-2);
  background: transparent; cursor: pointer;
  transition: all .2s var(--ease);
  font-family: inherit; font-weight: 300;
}
.events__pill:hover {
  border-color: var(--c-accent); color: var(--c-accent);
  background: var(--c-accent-soft);
}
.events__pill.active {
  background: var(--c-accent); color: #0c0c0c;
  border-color: var(--c-accent); font-weight: 500;
}

.events__hint {
  margin-top: 18px;
  font-size: .78rem; color: var(--c-muted);
  letter-spacing: .04em; opacity: .6;
  transition: opacity .3s;
}
.events__hint.dim { opacity: 0; pointer-events: none; }

.events__panels { margin-top: 28px; }
.events__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease);
}
.events__panel > * { overflow: hidden; }
.events__panel.open { grid-template-rows: 1fr; }

.events__photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 4px;
}
.events__photo {
  aspect-ratio: 4/3;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.events__panel.open .events__photo {
  opacity: 1; transform: translateY(0);
}
.events__panel.open .events__photo:nth-child(1) { transition-delay: .05s; }
.events__panel.open .events__photo:nth-child(2) { transition-delay: .12s; }
.events__panel.open .events__photo:nth-child(3) { transition-delay: .19s; }
.events__panel.open .events__photo:nth-child(4) { transition-delay: .26s; }

/* ─── BACKSTAGE ──────────────────────────────────────────── */
.backstage {
  padding: 120px 32px;
  max-width: 1200px; margin: 0 auto;
}
.backstage__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.backstage-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r); padding: 36px 30px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  position: relative; overflow: hidden;
}
.backstage-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(232,213,176,.06) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s;
}
.backstage-card:hover {
  border-color: rgba(232,213,176,.3);
  transform: translateY(-3px);
}
.backstage-card:hover::before { opacity: 1; }
.backstage-card__icon {
  width: 52px; height: 52px; border-radius: 10px;
  background: var(--c-bg); border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: var(--c-accent);
  position: relative; z-index: 1;
}
.backstage-card__title {
  font-family: var(--font-serif); font-size: 1.25rem;
  font-weight: 400; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.backstage-card__desc {
  font-size: .9rem; color: var(--c-muted); line-height: 1.65;
  position: relative; z-index: 1;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about {
  padding: 120px 32px;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
  position: relative;
}

.about__glow {
  position: absolute; pointer-events: none;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  will-change: transform;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.about__glow--warm {
  width: 520px; height: 520px;
  top: -120px; left: -140px;
  background: radial-gradient(circle, rgba(232,213,176,.32) 0%, rgba(232,213,176,.08) 45%, transparent 70%);
}
.about__glow--cool {
  width: 600px; height: 600px;
  bottom: -180px; right: -160px;
  background: radial-gradient(circle, rgba(110,150,200,.22) 0%, rgba(110,150,200,.06) 45%, transparent 70%);
}
.about__media, .about__content { position: relative; z-index: 1; }
.about__photo-wrap { position: relative; max-width: 380px; }
.about__photo {
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--r); overflow: hidden;
  flex-direction: column; gap: 12px;
  position: relative;
  box-shadow:
    0 30px 80px -30px rgba(232,213,176,.18),
    0 0 60px -25px rgba(232,213,176,.10);
}
.about__photo-img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.about:hover .about__photo-img { transform: scale(1.02); }
.about__photo-deco {
  position: absolute; top: 24px; left: -24px;
  width: 100%; height: 100%; border-radius: var(--r);
  border: 1px solid var(--c-border); z-index: -1;
}
.about__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400; line-height: 1.2; margin-bottom: 24px;
}
.about__text {
  color: var(--c-muted-2); font-size: 1rem;
  line-height: 1.75; margin-bottom: 16px; max-width: 460px;
}
.about__nerd {
  margin-top: 16px; font-size: .88rem;
}
.about__nerd a {
  color: var(--c-muted); border-bottom: 1px dashed var(--c-border);
  padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.about__nerd a:hover { color: var(--c-accent); border-color: var(--c-accent); }

.about__links { margin-top: 32px; display: flex; gap: 24px; flex-wrap: wrap; }
.about__social {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--c-muted); font-size: .9rem;
  border-bottom: 1px solid var(--c-border);
  padding-bottom: 4px; transition: color .2s, border-color .2s;
}
.about__social:hover { color: var(--c-accent); border-color: var(--c-accent); }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding: 120px 32px;
  text-align: center;
}
.contact__inner { max-width: 560px; margin: 0 auto; }
.contact__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400;
  margin-bottom: 12px;
}
.contact__sub { color: var(--c-muted-2); margin-bottom: 32px; font-size: 1.02rem; }
.contact__email {
  display: block; margin: 24px auto 32px;
  font-size: 1.05rem;
  color: var(--c-muted-2); letter-spacing: .02em;
  transition: color .2s;
}
.contact__email:hover { color: var(--c-accent); }
.contact__socials { display: flex; justify-content: center; gap: 12px; }
.contact__social-link {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--c-border); display: flex;
  align-items: center; justify-content: center;
  color: var(--c-muted); transition: all .2s;
}
.contact__social-link:hover {
  border-color: var(--c-accent); color: var(--c-accent);
  background: var(--c-accent-soft);
}

/* ─── MODAL ──────────────────────────────────────────────── */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; animation: modalFade .25s var(--ease); }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
}
.modal__panel {
  position: relative; z-index: 1;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  width: 100%; max-width: 580px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px;
  animation: modalSlide .35s var(--ease);
}
@keyframes modalSlide { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-muted); cursor: pointer; transition: all .2s;
}
.modal__close:hover { color: var(--c-text); border-color: var(--c-border-strong); }
.modal__header { margin-bottom: 28px; }
.modal__title {
  font-family: var(--font-serif); font-size: 1.7rem; font-weight: 400;
  margin-bottom: 6px;
}
.modal__sub { color: var(--c-muted); font-size: .9rem; }

/* ─── FORM ───────────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 18px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; border: none; }
.form-field label,
.form-field legend {
  font-size: .78rem; letter-spacing: .04em;
  color: var(--c-muted-2);
  text-transform: uppercase;
}
.form-field input,
.form-field textarea {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: 8px; padding: 12px 14px;
  color: var(--c-text); font-family: inherit; font-size: .95rem;
  transition: border-color .2s;
  font-weight: 300;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #555; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--c-accent);
}
.form-field textarea { resize: vertical; min-height: 90px; font-family: inherit; }
.form-field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.6); cursor: pointer; }

.radio-group { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.radio {
  position: relative; cursor: pointer;
}
.radio input { position: absolute; opacity: 0; pointer-events: none; }
.radio span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--c-border);
  border-radius: 40px;
  font-size: .85rem; color: var(--c-muted-2);
  transition: all .2s;
}
.radio:hover span { border-color: var(--c-border-strong); color: var(--c-text); }
.radio input:checked + span {
  background: var(--c-accent); color: #0c0c0c;
  border-color: var(--c-accent);
}

.form-actions {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  margin-top: 8px;
}
.form-actions .btn { width: 100%; justify-content: center; }
.form-fallback { font-size: .82rem; color: var(--c-muted); text-align: center; }
.form-fallback a { color: var(--c-accent); border-bottom: 1px solid transparent; }
.form-fallback a:hover { border-color: var(--c-accent); }

.form-success {
  display: none;
  background: rgba(92,138,110,.12);
  border: 1px solid rgba(92,138,110,.3);
  color: #a8d3b5;
  padding: 12px 16px; border-radius: 8px;
  font-size: .88rem; text-align: center;
}
.form-success.show { display: block; animation: modalFade .3s var(--ease); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  padding: 28px 32px; text-align: center;
  font-size: .82rem; color: var(--c-muted);
  border-top: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 12px;
}
.footer a { transition: color .2s; }
.footer a:hover { color: var(--c-accent); }
.footer__sep { opacity: .3; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .backstage__grid { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .events__photos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .clients__list { gap: 32px 40px; }
  .client { height: 36px; }
  .client__logo { max-height: 36px; max-width: 100px; }

  .hero {
    grid-template-columns: 1fr;
    text-align: center; padding-top: calc(var(--nav-h) + 60px);
    gap: 40px;
  }
  .hero__portrait { order: -1; }
  .hero__portrait-frame { width: min(260px, 70vw); }
  .hero__sub { margin: 0 auto 32px; }
  .hero__actions { justify-content: center; }
  .hero__scroll-hint { display: none; }

  .about { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .about__photo-deco { display: none; }
  .about__text { margin-left: auto; margin-right: auto; }
  .about__links { justify-content: center; }

  .approach__grid { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }

  .modal__panel { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats__inner { grid-template-columns: 1fr 1fr; }
  .work-card__content { padding: 22px; }
}
