/* ============================================================
   Jubilee Digital Studio — Site Stylesheet
   ============================================================ */

:root {
  --bg: #222222;
  --bg-elev: #1A1A1A;
  --text: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.50);
  --text-soft: rgba(255, 255, 255, 0.78);
  --accent: #EFFF00;
  --accent-soft: #FFFFFF;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.20);

  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --pad-x: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 11vw, 160px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  letter-spacing: -0.005em;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(34, 34, 34, 0.78);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad-x);
  max-width: 1440px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.01em;
}
.logo .dot { color: var(--accent); font-style: italic; }
.logo img {
  display: block;
  height: 38px;
  width: auto;
  transition: opacity 0.2s ease;
}
.logo:hover img { opacity: 0.85; }
.footer-brand .logo img {
  height: 56px;
  margin-bottom: 4px;
}
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  font-size: 15px;
  font-weight: 400;
}
.nav-links a {
  color: var(--text-soft);
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  font-size: 14px;
  padding: 10px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.nav-cta .arrow { transition: transform 0.25s ease; }
.nav-cta:hover .arrow { transform: translateX(3px); }
@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ========== EDITORIAL / HERO ========== */
.editorial {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}
.editorial.hero-lead {
  padding: clamp(80px, 12vw, 180px) 0 clamp(100px, 14vw, 200px);
  border-top: none;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.section-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.editorial-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  max-width: 1200px;
  font-weight: 400;
}
.editorial-headline .it { font-style: italic; color: var(--accent-soft); }
.editorial-headline .accent { color: var(--accent); font-style: italic; }

.editorial-sub {
  margin-top: 48px;
  max-width: 720px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-soft);
  line-height: 1.6;
}
.editorial-sub + .editorial-sub { margin-top: 20px; }

.editorial-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 4px;
  transition: all 0.25s ease;
}
.editorial-cta:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.editorial-cta .arrow { transition: transform 0.25s ease; }
.editorial-cta:hover .arrow { transform: translateX(4px); }

/* CTA buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.25s ease;
}
.btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}
.btn-primary .arrow { transition: transform 0.25s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

/* ========== WHY (HOMEPAGE) ========== */
.why { padding: var(--section-y) 0; border-top: 1px solid var(--border); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
}
.why-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.why-headline .it { font-style: italic; color: var(--accent-soft); }
.why-body {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 540px;
}
.why-body p + p { margin-top: 18px; }
.confusion-clarity {
  margin-top: 64px;
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--text-muted);
}
.confusion-clarity .arrow-long {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--text-muted), var(--accent));
  position: relative;
}
.confusion-clarity .arrow-long::after {
  content: '→';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 18px;
}
.confusion-clarity .clarity {
  color: var(--accent);
  font-style: italic;
}

/* ========== SERVICES LIST ========== */
.services { padding: var(--section-y) 0; border-top: 1px solid var(--border); }
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 64px;
  gap: 32px;
  flex-wrap: wrap;
}
.services-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.services-list { list-style: none; border-top: 1px solid var(--border); }
.service-item {
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: center;
  transition: padding 0.4s ease, background 0.4s ease;
  cursor: pointer;
}
.service-item a {
  display: contents;
}
.service-item:hover {
  padding-left: 16px;
  padding-right: 16px;
  background: linear-gradient(to right, transparent, rgba(239, 255, 0, 0.06), transparent);
}
.service-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-size: 22px;
}
.service-name {
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.35em;
  flex-wrap: wrap;
}
.service-name .bold {
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--text);
}
.service-name .it {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--text);
}
.service-arrow {
  color: var(--text-muted);
  font-size: 22px;
  transition: all 0.3s ease;
}
.service-item:hover .service-arrow {
  color: var(--accent);
  transform: translateX(6px) rotate(-45deg);
}
.service-item:hover .service-name .it { color: var(--accent); }
@media (max-width: 720px) {
  .service-item {
    grid-template-columns: 50px 1fr auto;
    gap: 18px;
    padding: 22px 0;
  }
}

/* ========== PILLARS / WHY US ========== */
.pillars { padding: var(--section-y) 0; border-top: 1px solid var(--border); }
.pillars-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 880px;
  margin-bottom: 64px;
  font-weight: 400;
}
.pillars-head h2 .it { font-style: italic; color: var(--accent-soft); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; }
}
.pillar {
  background: var(--bg);
  padding: 48px 40px;
  transition: background 0.3s ease;
  position: relative;
}
.pillar:hover { background: var(--bg-elev); }
.pillar-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 24px;
  display: block;
}
.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(239, 255, 0, 0.10);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--accent);
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  font-weight: 400;
}
.pillar p {
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ========== TEAM ========== */
.team { padding: var(--section-y) 0; border-top: 1px solid var(--border); }
.team-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 36px 0 80px;
  max-width: 1000px;
  font-weight: 400;
}
.team-headline .it { font-style: italic; color: var(--accent-soft); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
}
@media (max-width: 800px) { .team-grid { grid-template-columns: 1fr; gap: 72px; } }
.team-member { display: flex; flex-direction: column; }
.team-photo {
  aspect-ratio: 4 / 5;
  background: var(--accent);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.team-member:hover .team-photo { transform: translateY(-6px); }
.team-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.team-photo::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 10px; height: 10px;
  border-top: 1px solid var(--bg);
  border-left: 1px solid var(--bg);
  opacity: 0.4;
}
.team-role {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.team-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  font-weight: 400;
}
.team-bio {
  color: var(--text-soft);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.7;
  max-width: 460px;
}
.team-bio + .team-bio { margin-top: 14px; }

/* ========== MISSION / VERSE ========== */
.mission { padding: var(--section-y) 0; border-top: 1px solid var(--border); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) { .mission-grid { grid-template-columns: 1fr; } }
.mission-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.verse {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 36px;
}
.verse-cite {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  color: var(--accent);
  font-family: var(--font-sans);
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.mission-body p {
  color: var(--text-soft);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
}
.mission-body p + p { margin-top: 20px; }

/* ========== CONTACT ========== */
.contact {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.contact-eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.025em;
  max-width: 1100px;
  margin: 0 auto 48px;
  font-weight: 400;
}
.contact-headline .it { font-style: italic; color: var(--accent-soft); }
.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.25s ease;
}
.contact-cta:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
}
.contact-cta .arrow { transition: transform 0.25s ease; }
.contact-cta:hover .arrow { transform: translateX(4px); }
.contact-meta {
  margin-top: 64px;
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-muted);
}
.contact-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.contact-meta-item .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-meta-item .value {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
}
.contact-meta-item .value.mono {
  font-family: var(--font-sans);
  font-style: normal;
  font-variant-numeric: tabular-nums;
  font-size: 18px;
  letter-spacing: 0.04em;
}

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid var(--border);
  padding: clamp(48px, 6vw, 80px) 0 32px;
  background: var(--bg-elev);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
.footer-brand .logo { font-size: 36px; margin-bottom: 24px; }
.footer-tagline {
  color: var(--text-muted);
  font-size: 14.5px;
  max-width: 280px;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: var(--text-soft);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--accent); }
.footer-col a .arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
}
.footer-col a:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom .links { display: flex; gap: 24px; }

/* ========== ARTICLE / BLOG / LANDING PAGES ========== */
.article {
  padding: clamp(60px, 9vw, 120px) 0 var(--section-y);
}
.article-meta {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.article-meta .pill {
  background: rgba(239, 255, 0, 0.10);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.16em;
}
.article-meta time { color: var(--text-soft); }
.article h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
  font-weight: 400;
  max-width: 1100px;
}
.article h1 .it { font-style: italic; color: var(--accent-soft); }
.article-lede {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 720px;
  margin-bottom: 56px;
  font-family: var(--font-display);
  font-style: italic;
}

.article-body {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-soft);
}
.article-body p {
  margin-bottom: 24px;
}
.article-body p strong {
  color: var(--text);
  font-weight: 600;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 56px 0 20px;
  font-weight: 400;
}
.article-body h2 .it { font-style: italic; color: var(--accent-soft); }
.article-body h3 {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 36px 0 14px;
}
.article-body ul, .article-body ol {
  margin: 0 0 24px 24px;
  padding: 0;
}
.article-body li {
  margin-bottom: 10px;
  padding-left: 6px;
}
.article-body li::marker { color: var(--accent); }
.article-body a {
  color: var(--accent);
  border-bottom: 1px solid rgba(239, 255, 0, 0.4);
  transition: border-color 0.2s ease;
}
.article-body a:hover { border-bottom-color: var(--accent); }
.article-body blockquote {
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 28px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--text);
  line-height: 1.4;
}

/* Inline CTA card inside article body */
.inline-cta {
  margin: 48px 0;
  padding: 36px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.inline-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  margin-bottom: 12px;
  font-weight: 400;
  color: var(--text);
}
.inline-cta h3 .it { font-style: italic; color: var(--accent-soft); }
.inline-cta p {
  color: var(--text-soft);
  margin-bottom: 20px;
  font-size: 15.5px;
}

/* ========== BLOG INDEX GRID ========== */
.blog-index { padding: clamp(60px, 9vw, 120px) 0 var(--section-y); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}
.blog-card {
  background: var(--bg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
  text-decoration: none;
  min-height: 320px;
}
.blog-card:hover { background: var(--bg-elev); }
.blog-card-tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 400;
  margin-bottom: 16px;
}
.blog-card h3 .it { font-style: italic; color: var(--accent-soft); }
.blog-card p {
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.blog-card-meta .arrow {
  color: var(--accent);
  transition: transform 0.25s ease;
}
.blog-card:hover .blog-card-meta .arrow { transform: translateX(4px); }

/* ========== LANDING PAGE STAT/FEATURE BLOCKS ========== */
.feature-row {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}
.feature-row-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 900px) {
  .feature-row-grid { grid-template-columns: 1fr; gap: 32px; }
}
.feature-row h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.feature-row h2 .it { font-style: italic; color: var(--accent-soft); }
.feature-row .body p {
  color: var(--text-soft);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.65;
}
.feature-row .body p + p { margin-top: 18px; }
.feature-row .body ul {
  list-style: none;
  margin-top: 24px;
}
.feature-row .body ul li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: var(--text);
  font-size: 16px;
}
.feature-row .body ul li::before {
  content: '→';
  color: var(--accent);
  font-family: var(--font-display);
  font-style: italic;
}

/* ========== FAQ ========== */
.faq { padding: var(--section-y) 0; border-top: 1px solid var(--border); }
.faq h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  font-weight: 400;
  max-width: 800px;
}
.faq h2 .it { font-style: italic; color: var(--accent-soft); }
.faq-list { border-top: 1px solid var(--border); }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--accent);
  font-size: 28px;
  font-family: var(--font-display);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* selection */
::selection { background: var(--accent); color: var(--bg); }

/* scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.10); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.20); }

/* ============================================================
   MOTION + INTERACTION LAYER
   Henry Yin–inspired: bold, playful, lots of motion.
   ============================================================ */

/* Hide native cursor on devices that get the custom one */
@media (hover: hover) and (pointer: fine) {
  html, body, a, button { cursor: none; }
}

/* ===== CUSTOM CURSOR ===== */
.jb-cursor-dot, .jb-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  mix-blend-mode: difference;
  transform: translate3d(-100px, -100px, 0);
}
.jb-cursor-dot {
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--accent);
  transition: transform 0.05s linear, background-color 0.2s ease;
}
.jb-cursor-ring {
  width: 36px; height: 36px;
  margin: -18px 0 0 -18px;
  border: 1px solid var(--accent);
  transition: width 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
              height 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
              margin 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
              background-color 0.3s ease,
              border-color 0.3s ease;
}
.jb-cursor-ring.expand {
  width: 72px; height: 72px;
  margin: -36px 0 0 -36px;
  background: rgba(239, 255, 0, 0.10);
  border-color: var(--accent);
}
@media (hover: none) {
  .jb-cursor-dot, .jb-cursor-ring { display: none; }
}

/* ===== WORD-BY-WORD STAGGER ===== */
.word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: inherit;
}
.word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}
.word-inner.in {
  transform: translateY(0);
}

/* ===== ENHANCED REVEAL TYPES ===== */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
              filter 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform, filter;
}
[data-reveal="fade-up"] { transform: translateY(40px); }
[data-reveal="fade-down"] { transform: translateY(-40px); }
[data-reveal="fade-left"] { transform: translateX(-60px); }
[data-reveal="fade-right"] { transform: translateX(60px); }
[data-reveal="scale-in"] { transform: scale(0.92); }
[data-reveal="blur-in"] { filter: blur(20px); }
[data-reveal="rotate-in"] { transform: rotate(-3deg) translateY(40px); }
[data-reveal].in {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1) rotate(0);
  filter: blur(0);
}
[data-reveal-delay="100"] { transition-delay: 0.1s; }
[data-reveal-delay="200"] { transition-delay: 0.2s; }
[data-reveal-delay="300"] { transition-delay: 0.3s; }
[data-reveal-delay="400"] { transition-delay: 0.4s; }
[data-reveal-delay="500"] { transition-delay: 0.5s; }
[data-reveal-delay="600"] { transition-delay: 0.6s; }

/* ===== MAGNETIC ELEMENTS ===== */
.magnetic {
  display: inline-flex;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}
/* But the contents inside should snap back fast — counter-translate */
.magnetic > * {
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ===== TILT ===== */
.tilt {
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  transform-style: preserve-3d;
  will-change: transform;
}

/* ===== MARQUEE ===== */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(28px, 4vw, 56px) 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: clamp(40px, 6vw, 96px);
  white-space: nowrap;
  animation: marquee-scroll 40s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  font-weight: 400;
}
.marquee-item .it {
  font-style: italic;
  color: var(--accent);
}
.marquee-item .star {
  display: inline-block;
  width: clamp(28px, 4vw, 56px);
  height: clamp(28px, 4vw, 56px);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}
.marquee.reverse .marquee-track { animation-direction: reverse; }

/* ===== PHOTO MOSAIC SECTION ===== */
.photo-mosaic {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}
.photo-mosaic-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 768px) {
  .photo-mosaic-head { grid-template-columns: 1fr; }
}
.photo-mosaic-head h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.photo-mosaic-head h2 .it { font-style: italic; color: var(--accent-soft); }
.photo-mosaic-head h2 .accent { color: var(--accent); font-style: italic; }
.photo-mosaic-head .lede {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 500px;
}

.photo-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: clamp(8px, 1.2vw, 16px);
}
@media (max-width: 768px) {
  .photo-mosaic-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.photo-mosaic-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-elev);
  border-radius: 2px;
  cursor: none;
}
.photo-mosaic-item img,
.photo-mosaic-item .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.photo-mosaic-item:hover img,
.photo-mosaic-item:hover .placeholder {
  transform: scale(1.06);
}
.photo-mosaic-item .placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
  position: relative;
}
.photo-mosaic-item .placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, rgba(239,255,0,0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(239,255,0,0.08) 25%, transparent 25%);
  background-size: 16px 16px;
  opacity: 0.5;
}
.photo-mosaic-item .placeholder span {
  position: relative;
  z-index: 2;
  display: block;
}
.photo-mosaic-item .placeholder .label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--accent);
  margin-top: 8px;
}

/* Caption overlay on photo cards */
.photo-mosaic-item .caption {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--bg);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.photo-mosaic-item .caption .accent {
  color: var(--accent);
}
.photo-mosaic-item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

/* Specific grid placements — desktop */
@media (min-width: 769px) {
  .pm-1  { grid-column: span 6; grid-row: span 4; }   /* big hero photo */
  .pm-2  { grid-column: span 3; grid-row: span 2; }
  .pm-3  { grid-column: span 3; grid-row: span 3; }   /* tall portrait */
  .pm-4  { grid-column: span 3; grid-row: span 2; }
  .pm-5  { grid-column: span 3; grid-row: span 3; }
  .pm-6  { grid-column: span 6; grid-row: span 3; }   /* wide horizontal */
}
@media (max-width: 768px) {
  .pm-1, .pm-6 { grid-column: span 6; grid-row: span 3; }
  .pm-2, .pm-3, .pm-4, .pm-5 { grid-column: span 3; grid-row: span 2; }
}

/* ===== FULL-BLEED PHOTO BREAK ===== */
.photo-break {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  height: clamp(400px, 60vh, 720px);
}
.photo-break .photo-break-img,
.photo-break .placeholder {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}
.photo-break .placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
}
.photo-break::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(34,34,34,0.4) 0%,
    rgba(34,34,34,0) 30%,
    rgba(34,34,34,0) 70%,
    rgba(34,34,34,0.6) 100%);
  pointer-events: none;
}
.photo-break-caption {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
}
.photo-break-caption .tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.photo-break-caption .quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.2;
  color: var(--text);
  max-width: 680px;
}

/* ===== STATS / NUMBERS STRIP ===== */
.stats {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.stat {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.4s ease;
  position: relative;
  overflow: hidden;
}
.stat:hover { background: var(--bg-elev); }
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 2px;
  background: var(--accent);
  transition: left 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.stat:hover::before { left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
  display: block;
  margin-bottom: 16px;
}
.stat-label {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.stat-text {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ===== ENHANCED LINK / BUTTON HOVER ===== */
.editorial-cta {
  position: relative;
  overflow: hidden;
}
.editorial-cta::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.editorial-cta:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Enhance pillar hover */
.pillar {
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1) !important;
}
.pillar:hover {
  transform: translateY(-4px);
}
.pillar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pillar:hover::after { transform: scaleX(1); }

/* ===== BLOG CARD POLISH ===== */
.blog-card {
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1) !important;
  position: relative;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.blog-card:hover::after { transform: scaleX(1); }

/* ===== BTN-PRIMARY ARROW PUSH ===== */
.btn-primary, .contact-cta, .nav-cta {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .contact-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: -1;
}
.btn-primary:hover::after, .contact-cta:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ===== TEAM PHOTO ENHANCEMENT ===== */
.team-photo {
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) !important;
}
.team-photo img {
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
}
.team-member:hover .team-photo img {
  transform: scale(1.04);
}

/* ===== SERVICE ITEM MOTION ===== */
.service-item {
  transition: padding 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
              background 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) !important;
  position: relative;
}
.service-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  transform: translateY(-50%);
}
.service-item:hover::before { width: 80%; }

/* ===== PROCESS / SCROLL DOWN INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-bounce 2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
@keyframes scroll-bounce {
  0% { transform: translateY(-100%); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* ===== HERO MARK / BIG ROTATING TYPE ===== */
.hero-mark {
  position: absolute;
  pointer-events: none;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  opacity: 0.06;
  font-size: clamp(220px, 32vw, 480px);
  line-height: 0.85;
  top: -10%;
  right: -8%;
  font-weight: 400;
  letter-spacing: -0.04em;
  user-select: none;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .word-inner { transform: translateY(0); }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .marquee-track { animation: none !important; }
  html, body, a, button { cursor: auto !important; }
  .jb-cursor-dot, .jb-cursor-ring { display: none !important; }
}

/* ============================================================
   MOTION & INTERACTION ADDITIONS — non-conflicting layer
   (extends existing motion CSS without overriding)
   ============================================================ */

/* Hide native cursor for fine-pointer devices; custom cursor takes over */
@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
  html, body { cursor: none; }
  a, button, [data-cursor], .magnetic, .service-item, .team-photo, details summary, .blog-card, .gallery-item { cursor: none; }
}

/* Custom cursor: dot (tight) + ring (loose) */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(239, 255, 0, 0.5);
  border-radius: 50%;
  transition: width 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
              height 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
              border-color 0.4s ease,
              background 0.4s ease,
              opacity 0.3s ease;
}
.cursor-ring.is-hovering {
  width: 64px; height: 64px;
  background: rgba(239, 255, 0, 0.10);
  border-color: rgba(239, 255, 0, 0.95);
}
.cursor-dot.is-hovering { width: 4px; height: 4px; }
.cursor-ring.is-text {
  width: 4px; height: 4px;
  background: var(--accent);
  border-color: transparent;
}
.cursor-dot.is-hidden, .cursor-ring.is-hidden { opacity: 0; }
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* Service-list image preview that follows cursor */
.service-preview {
  position: fixed;
  pointer-events: none;
  z-index: 50;
  width: clamp(220px, 22vw, 320px);
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.85);
  transition: opacity 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.5s cubic-bezier(0.2, 0.85, 0.25, 1);
  will-change: transform, opacity;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  background: var(--bg-elev);
}
.service-preview.is-active {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}
.service-preview img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@media (pointer: coarse), (max-width: 900px) {
  .service-preview { display: none; }
}

/* Service item: enhance with text shift on hover (additive) */
.service-item .service-name { transition: transform 0.4s cubic-bezier(0.2, 0.85, 0.25, 1); }
.service-item:hover .service-name { transform: translateX(10px); }

/* Behind-the-scenes section */
.behind {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.behind-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 900px) { .behind-grid { grid-template-columns: 1fr; } }
.behind-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
}
.behind-image img {
  width: 100%; height: 110%; object-fit: cover; display: block;
  will-change: transform;
}
.behind-image::after {
  content: '★';
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--accent);
  text-shadow: 0 0 24px rgba(239, 255, 0, 0.7);
  animation: spin-star 14s linear infinite;
  z-index: 2;
}
@keyframes spin-star { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.behind-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  font-weight: 400;
}
.behind-copy h2 .it { font-style: italic; color: var(--accent-soft); }
.behind-copy h2 .accent { color: var(--accent); font-style: italic; }
.behind-copy p {
  color: var(--text-soft);
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
}
.behind-copy p + p { margin-top: 18px; }

/* Clip-path image reveal on scroll */
.clip-reveal {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.4s cubic-bezier(0.7, 0, 0.2, 1);
}
.clip-reveal.in { clip-path: inset(0 0 0 0); }

/* Letter-shake hover (for accent words) */
.shake-on-hover { display: inline-block; transition: transform 0.3s ease; }
.shake-on-hover:hover {
  animation: shake 0.55s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-3px) rotate(-2deg); }
  40% { transform: translateX(3px) rotate(2deg); }
  60% { transform: translateX(-2px) rotate(-1deg); }
  80% { transform: translateX(2px) rotate(1deg); }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .cursor-dot, .cursor-ring { display: none !important; }
  html, body { cursor: auto !important; }
}

/* Nav scrolled state (subtle background sharpening) */
.nav.is-scrolled {
  background: rgba(34, 34, 34, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

/* Photo-mosaic items: support real images by hiding placeholder when img is direct child */
.photo-mosaic-item:has(> img) .placeholder { display: none; }
.photo-mosaic-item > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}
.photo-mosaic-item:hover > img { transform: scale(1.04); }

/* Photo-break: support real image */
.photo-break img.photo-break-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  display: block;
  will-change: transform;
}
.photo-break:has(img.photo-break-img) .placeholder { display: none; }
