/* ============================================================
   ATMOSFERA AUDIO — minimal, black, hairline-white identity
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #000000;
  --bg-soft: #050505;
  --fg: #f5f5f7;
  --muted: rgba(245, 245, 247, 0.56);
  --faint: rgba(245, 245, 247, 0.34);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --warm: #e9b486; /* echo of golden hour — used sparingly */

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 80px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);

  --f-display: clamp(2.6rem, 8vw, 7.5rem);
  --f-h2: clamp(1.9rem, 4.2vw, 3.4rem);
  --f-h3: clamp(1.3rem, 2.2vw, 1.9rem);
  --f-lead: clamp(1.15rem, 1.9vw, 1.6rem);
  --f-body: clamp(1rem, 1.1vw, 1.075rem);
  --f-small: 0.82rem;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
/* Lenis disables native smooth-scroll once active */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: var(--f-body);
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(233, 180, 134, 0.28); color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.eyebrow {
  font-size: var(--f-small);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}
.hr { height: 1px; background: var(--line); border: 0; width: 100%; }

section { position: relative; }

/* ---------- Scroll progress (thin white line) ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, rgba(255,255,255,0.4), #fff);
  z-index: 200; transition: width 0.1s linear;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.62);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  backdrop-filter: saturate(150%) blur(18px);
  border-bottom: 1px solid var(--line);
  padding-top: 13px; padding-bottom: 13px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 400; letter-spacing: 0.04em; }
.brand .ring-mark { width: 26px; height: 26px; flex: none; }
.brand span { font-size: 1.02rem; }

.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 40px); }
.nav-links a {
  font-size: 0.9rem; color: var(--muted); font-weight: 400; letter-spacing: 0.02em;
  position: relative; transition: color 0.35s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: var(--fg); transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--fg); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--line-strong); border-radius: 100px;
  padding: 8px 18px; color: var(--fg) !important;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--fg); color: #000 !important; border-color: var(--fg); }

/* Language toggle */
.lang { display: inline-flex; align-items: center; gap: 7px; color: var(--faint); font-size: 0.82rem; letter-spacing: 0.06em; }
.lang button {
  background: none; border: 0; color: var(--faint); cursor: pointer; padding: 2px 1px;
  font: inherit; letter-spacing: inherit; transition: color 0.3s var(--ease);
}
.lang button:hover { color: var(--fg); }
.lang button.active { color: var(--fg); }
.lang span { opacity: 0.4; }
.lang-mobile { margin-top: 34px; font-size: 1.1rem; gap: 12px; }

.menu-btn { display: none; background: none; border: 0; color: var(--fg); cursor: pointer; width: 30px; height: 22px; position: relative; }
.menu-btn span { position: absolute; left: 0; height: 1px; width: 100%; background: var(--fg); transition: transform 0.4s var(--ease), opacity 0.3s; }
.menu-btn span:nth-child(1) { top: 3px; }
.menu-btn span:nth-child(2) { top: 11px; }
.menu-btn span:nth-child(3) { top: 19px; }
body.menu-open .menu-btn span:nth-child(1) { top: 11px; transform: rotate(45deg); }
body.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,0.96);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--pad);
  opacity: 0; pointer-events: none; transition: opacity 0.5s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-size: clamp(2rem, 9vw, 3.4rem); font-weight: 200; letter-spacing: -0.02em;
  padding: 10px 0; color: var(--fg);
  opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
body.menu-open .mobile-menu a { opacity: 1; transform: none; }
body.menu-open .mobile-menu a:nth-child(1) { transition-delay: 0.08s; }
body.menu-open .mobile-menu a:nth-child(2) { transition-delay: 0.14s; }
body.menu-open .mobile-menu a:nth-child(3) { transition-delay: 0.20s; }
body.menu-open .mobile-menu a:nth-child(4) { transition-delay: 0.26s; }
body.menu-open .mobile-menu a:nth-child(5) { transition-delay: 0.32s; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  align-items: center; text-align: center; position: relative; overflow: hidden;
  padding: 120px var(--pad) 80px;
}
.hero-rings {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -54%);
  width: min(115vh, 1080px); aspect-ratio: 1; pointer-events: none; z-index: 0;
  opacity: 0.62;
}
.hero-rings svg { width: 100%; height: 100%; }
.hero-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,180,134,0.10), rgba(233,180,134,0.03) 38%, transparent 66%);
  pointer-events: none; z-index: 0; filter: blur(8px);
}
.hero-inner { position: relative; z-index: 2; }
.hero .eyebrow { margin-bottom: 30px; }
.hero h1 {
  font-size: clamp(1.5rem, 3.6vw, 3.4rem);
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 26px;
}
.hero .lead {
  font-size: clamp(0.95rem, 1.35vw, 1.18rem); font-weight: 300; color: var(--muted);
  letter-spacing: 0.04em; max-width: 52ch; margin-inline: auto;
}
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--faint); z-index: 2;
}
.scroll-cue .bar { width: 1px; height: 46px; background: linear-gradient(to bottom, var(--line-strong), transparent); position: relative; overflow: hidden; }
.scroll-cue .bar::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: #fff; animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0% { top: -50%; } 60%, 100% { top: 100%; } }

/* spinning concentric ring marks */
.ring-mark .r-out { animation: spin 60s linear infinite; transform-origin: center; }
.ring-mark .r-mid { animation: spin 40s linear infinite reverse; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-rings .pulse { animation: pulse 6s ease-in-out infinite backwards; transform-origin: center; }
@keyframes pulse {
  0%          { opacity: 0.16; transform: scale(1);     animation-timing-function: ease-in; }
  10%         { opacity: 1;    transform: scale(1.014); animation-timing-function: ease-out; }
  52%, 100%   { opacity: 0.16; transform: scale(1); }
}

/* ---------- Generic section rhythm ---------- */
.section-pad { padding-block: clamp(90px, 13vh, 180px); }
.section-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: clamp(40px, 6vw, 80px); }
.section-head .idx { font-size: 0.8rem; color: var(--faint); letter-spacing: 0.1em; }
.section-head h2 { font-size: var(--f-h2); font-weight: 200; letter-spacing: -0.025em; line-height: 1.05; }

/* ---------- Manifesto ---------- */
.manifesto { text-align: center; }
.manifesto p.big {
  font-size: clamp(1.45rem, 3.3vw, 2.65rem); font-weight: 200; line-height: 1.22;
  letter-spacing: -0.015em; max-width: 24ch; margin: 0 auto 34px;
}
.manifesto p.big em { font-style: normal; color: var(--warm); }
.manifesto .sub { color: var(--muted); font-size: var(--f-lead); max-width: 42ch; margin-inline: auto; }

/* ---------- Cinematic full-bleed quote ---------- */
.cinema {
  min-height: 92svh; display: flex; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
.cinema .bg {
  position: absolute; inset: -12% 0; background-size: cover; background-position: center;
  will-change: transform; z-index: 0;
}
.cinema::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(circle at 50% 40%, rgba(0,0,0,0.35), rgba(0,0,0,0.78) 70%, #000 100%);
}
.cinema .q { position: relative; z-index: 2; padding: var(--pad); }
.cinema .q blockquote {
  font-size: clamp(1.7rem, 4.2vw, 3.4rem); font-weight: 200; font-style: normal;
  letter-spacing: -0.02em; line-height: 1.12; max-width: 16ch; margin: 0 auto;
}
.cinema .q cite { display: block; margin-top: 26px; font-style: normal; letter-spacing: 0.3em; text-transform: uppercase; font-size: 0.78rem; color: var(--muted); }
/* Hilo Musical — expanded cinematic section */
.cinema.ambiance { min-height: 88svh; }
.cinema.ambiance::after { background: radial-gradient(circle at 50% 48%, rgba(0,0,0,0.24), rgba(0,0,0,0.60) 70%, #000 100%); }
.cinema.ambiance blockquote { font-style: normal; font-size: clamp(1.5rem, 3.6vw, 2.8rem); max-width: 50ch; }
.amb-desc {
  font-size: var(--f-lead); color: rgba(245,245,247,0.65);
  max-width: 60ch; margin: 28px auto 0;
  font-weight: 300; line-height: 1.7;
}

/* ---------- Services ---------- */
.services .wrap { border-top: 1px solid var(--line); }
.service {
  display: grid; grid-template-columns: 0.42fr 1fr; gap: clamp(24px, 5vw, 90px);
  padding-block: clamp(46px, 6vw, 80px); border-bottom: 1px solid var(--line);
  position: relative;
}
.service .num { font-size: 0.85rem; color: var(--faint); letter-spacing: 0.12em; }
.service h3 { font-size: var(--f-h3); font-weight: 300; letter-spacing: -0.02em; margin: 14px 0 0; }
.service .svc-desc { color: var(--muted); margin-bottom: 26px; max-width: 46ch; font-size: var(--f-lead); font-weight: 300; }
.service ul { list-style: none; display: grid; gap: 14px; }
.service li {
  display: flex; gap: 14px; align-items: baseline; color: var(--fg);
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
  font-weight: 300;
}
.service li:last-child { border-bottom: 0; }
.service li::before { content: ""; flex: none; width: 6px; height: 6px; border: 1px solid var(--line-strong); border-radius: 50%; transform: translateY(7px); transition: background 0.4s var(--ease), border-color 0.4s; }
.service:hover li::before { border-color: var(--warm); }
.service .svc-left { position: sticky; top: 110px; align-self: start; }

/* ---------- Method / Timeline ---------- */
.tl {
  position: relative;
  --tl-pad: 52px;
  padding-left: var(--tl-pad);
}
.tl-rail {
  position: absolute;
  left: 0; top: 10px; bottom: 10px;
  width: 1px; background: var(--line);
  overflow: hidden;
}
.tl-fill {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 0%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.62), rgba(255,255,255,0.2));
  will-change: height;
}
.tl-step {
  position: relative;
  padding: 0 0 clamp(46px, 6.5vw, 72px) clamp(18px, 3vw, 34px);
}
.tl-step:last-child { padding-bottom: 0; }
.tl-node {
  position: absolute;
  left: calc(-1 * var(--tl-pad) - 4px);
  top: 6px;
  width: 9px; height: 9px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg);
  transition: border-color 0.8s var(--ease), box-shadow 0.8s var(--ease);
}
.tl-step.in .tl-node {
  border-color: rgba(255,255,255,0.46);
  box-shadow: 0 0 10px rgba(255,255,255,0.08);
}
.tl-step .n {
  display: block;
  font-size: 0.82rem; color: var(--faint); letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.tl-step h3 { font-size: var(--f-h3); font-weight: 300; letter-spacing: -0.015em; margin-bottom: 14px; }
.tl-step p { color: var(--muted); max-width: 48ch; font-weight: 300; }

/* Animated ambient glow — 5 orbs, linear (no decel pauses), always in motion */
.ambient-glow { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.ambient-glow span {
  position: absolute; border-radius: 50%;
  filter: blur(46px); mix-blend-mode: screen; will-change: transform, opacity;
}
/* Orb 1 — top-left, large clockwise sweep */
.ambient-glow span:nth-child(1) {
  width: 56vmax; height: 56vmax; left: -14%; top: -18%;
  background: radial-gradient(circle, rgba(233,180,134,0.42), transparent 64%);
  animation: glow1 15s linear infinite;
}
/* Orb 2 — top-right, counter-clockwise */
.ambient-glow span:nth-child(2) {
  width: 48vmax; height: 48vmax; right: -12%; top: -10%;
  background: radial-gradient(circle, rgba(214,155,95,0.40), transparent 64%);
  animation: glow2 19s linear infinite;
  animation-delay: -7s;
}
/* Orb 3 — bottom-left, diagonal arc */
.ambient-glow span:nth-child(3) {
  width: 42vmax; height: 42vmax; left: -8%; bottom: -10%;
  background: radial-gradient(circle, rgba(252,205,160,0.38), transparent 64%);
  animation: glow3 16s linear infinite;
  animation-delay: -10s;
}
/* Orb 4 — bottom-right, upward sweep */
.ambient-glow span:nth-child(4) {
  width: 36vmax; height: 36vmax; right: -6%; bottom: -8%;
  background: radial-gradient(circle, rgba(233,180,134,0.34), transparent 64%);
  animation: glow4 13s linear infinite;
  animation-delay: -4s;
}
/* Orb 5 — center, tight circular orbit always behind text */
.ambient-glow span:nth-child(5) {
  width: 32vmax; height: 32vmax; left: 24%; top: 16%;
  background: radial-gradient(circle, rgba(240,182,128,0.38), transparent 62%);
  animation: glow5 9s linear infinite;
  animation-delay: -3s;
}
/* Orb 1: passes through center at 20%, then sweeps wide */
@keyframes glow1 {
  0%   { transform: translate(0vw,   0vh)   scale(1);    opacity: 0.50; }
  20%  { transform: translate(28vw,  24vh)  scale(1.12); opacity: 0.62; }
  40%  { transform: translate(52vw,  12vh)  scale(1);    opacity: 0.46; }
  60%  { transform: translate(48vw,  50vh)  scale(1.08); opacity: 0.56; }
  80%  { transform: translate(-28vw, 32vh)  scale(0.92); opacity: 0.48; }
  100% { transform: translate(0vw,   0vh)   scale(1);    opacity: 0.50; }
}
/* Orb 2: passes through center at 40% */
@keyframes glow2 {
  0%   { transform: translate(0vw,    0vh)   scale(1.08); opacity: 0.44; }
  20%  { transform: translate(-12vw,  46vh)  scale(1);    opacity: 0.54; }
  40%  { transform: translate(-30vw,  26vh)  scale(1.10); opacity: 0.42; }
  60%  { transform: translate(-56vw,  6vh)   scale(0.94); opacity: 0.50; }
  80%  { transform: translate(-18vw, -28vh)  scale(1.05); opacity: 0.44; }
  100% { transform: translate(0vw,    0vh)   scale(1.08); opacity: 0.44; }
}
/* Orb 3: bottom-left → center-right → top-right → center → back */
@keyframes glow3 {
  0%   { transform: translate(0vw,    0vh)   scale(1);    opacity: 0.42; }
  25%  { transform: translate(50vw,  -28vh)  scale(1.14); opacity: 0.54; }
  50%  { transform: translate(60vw,  -56vh)  scale(0.92); opacity: 0.38; }
  75%  { transform: translate(22vw,  -20vh)  scale(1.10); opacity: 0.50; }
  100% { transform: translate(0vw,    0vh)   scale(1);    opacity: 0.42; }
}
/* Orb 4: bottom-right → center → upper-left → top-center → back */
@keyframes glow4 {
  0%   { transform: translate(0vw,    0vh)   scale(1);    opacity: 0.40; }
  25%  { transform: translate(-30vw, -22vh)  scale(1.15); opacity: 0.52; }
  50%  { transform: translate(-26vw, -54vh)  scale(0.90); opacity: 0.36; }
  75%  { transform: translate(-56vw, -36vh)  scale(1.12); opacity: 0.48; }
  100% { transform: translate(0vw,    0vh)   scale(1);    opacity: 0.40; }
}
/* Orb 5: wide circular orbit around center text area */
@keyframes glow5 {
  0%   { transform: translate(0vw,    0vh)   scale(1);    opacity: 0.48; }
  25%  { transform: translate(26vw,  18vh)   scale(1.14); opacity: 0.62; }
  50%  { transform: translate(18vw,  44vh)   scale(0.92); opacity: 0.44; }
  75%  { transform: translate(-20vw, 26vh)   scale(1.10); opacity: 0.56; }
  100% { transform: translate(0vw,    0vh)   scale(1);    opacity: 0.48; }
}
.cinema.ambiance .q { z-index: 3; }

/* ---------- Studio / About ---------- */
.studio { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.studio .portrait { position: relative; overflow: hidden; }
.studio .portrait img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: center 12%; filter: grayscale(100%) contrast(1.02); }
.studio .portrait::after { content: ""; position: absolute; inset: 0; border: 1px solid var(--line); pointer-events: none; }
.studio h2 { font-size: var(--f-h2); font-weight: 200; letter-spacing: -0.025em; line-height: 1.08; margin: 18px 0 24px; }
.studio .role { color: var(--warm); letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 26px; }
.studio p { color: var(--muted); margin-bottom: 18px; max-width: 50ch; font-weight: 300; }
.studio p strong { color: var(--fg); font-weight: 400; }
.stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 56px); margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--line); }
.stats .stat .v { font-size: clamp(1.8rem, 3.4vw, 2.8rem); font-weight: 200; letter-spacing: -0.02em; }
.stats .stat .l { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.06em; }

/* ---------- Sectors strip ---------- */
.sectors { display: flex; flex-wrap: wrap; gap: 14px 14px; justify-content: center; }
.sectors .chip {
  border: 1px solid var(--line); border-radius: 100px; padding: 10px 22px;
  font-size: 0.92rem; color: var(--muted); letter-spacing: 0.04em;
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.sectors .chip:hover { border-color: var(--line-strong); color: var(--fg); }

/* ---------- Contact ---------- */
.contact { text-align: center; position: relative; overflow: hidden; }
.contact .rings-faint { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(80vw, 700px); aspect-ratio: 1; opacity: 0.5; pointer-events: none; }
.contact-inner { position: relative; z-index: 2; }
.contact h2 { font-size: clamp(1.55rem, 3.2vw, 2.6rem); font-weight: 200; letter-spacing: -0.03em; line-height: 1; margin-bottom: 28px; }
.contact .lead { color: rgba(245,245,247,0.84); font-size: var(--f-lead); max-width: 40ch; margin: 0 auto 50px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px; border-radius: 100px;
  padding: 15px 30px; font-size: 1rem; letter-spacing: 0.01em; border: 1px solid var(--line-strong);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--fg); color: #000; border-color: var(--fg); }
.btn-primary:hover { background: #fff; }
.btn-ghost:hover { border-color: var(--fg); background: rgba(255,255,255,0.04); }
.contact .meta { margin-top: 46px; display: flex; flex-wrap: wrap; gap: 8px 28px; justify-content: center; color: var(--muted); font-size: 0.95rem; }
.contact .meta a { color: var(--muted); transition: color 0.3s; }
.contact .meta a:hover { color: var(--fg); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-block: 44px; }
.footer .row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.footer .brand span { font-size: 0.95rem; }
.footer .links { display: flex; gap: 24px; }
.footer .links a { font-size: 0.85rem; color: var(--muted); transition: color 0.3s; }
.footer .links a:hover { color: var(--fg); }
.footer .copy { color: var(--faint); font-size: 0.8rem; width: 100%; margin-top: 14px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .service { grid-template-columns: 1fr; gap: 22px; }
  .service .svc-left { position: static; }
  .studio { grid-template-columns: 1fr; }
  .studio .portrait { max-width: 440px; }
  .tl { --tl-pad: 30px; }
}
@media (max-width: 560px) {
  .footer .row { flex-direction: column; align-items: flex-start; }
}

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