/* ========================================
   TWJ Interior v2 — Bold Minimal Redesign
   Inspired by wearebrand.io aesthetic
   ======================================== */

:root {
  --bg: #0A0908;
  --bg2: #111110;
  --bg3: #181614;
  --border: #222120;
  --border2: #2E2B28;
  --text: #FFFFFF;
  --text2: #E8E2D6;
  --text3: #9B8566;
  --accent: #C8844A;
  --accent2: #E6A96A;
  --green: #25D366;
  --px: clamp(24px, 5vw, 80px);
  --nav-h: 70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ---- TYPOGRAPHY ---- */
.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 20px;
  display: block;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 4.8vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}

/* ---- PILL BADGES ---- */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .06em;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text2);
}
.pill-outline { background: transparent; border-color: var(--accent); color: var(--accent); }

/* ---- BUTTONS ---- */
.btn-main {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px;
  background: var(--text);
  color: var(--bg);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  transition: background .25s, color .25s, box-shadow .4s, transform .3s;
  position: relative; overflow: hidden;
}
.btn-main::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(200,132,74,.5) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.btn-main:hover { background: var(--accent); color: #fff; box-shadow: 0 12px 40px rgba(200,132,74,.35); }
.btn-main:hover::before { transform: translateX(120%); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: 15px;
  color: var(--text2);
  transition: border-color .25s, color .25s, background .25s;
}
.btn-ghost:hover { border-color: var(--text); color: var(--text); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: opacity .2s, transform .2s;
}
.btn-wa:hover { opacity: .9; transform: translateY(-2px); }

/* ---- CURSOR ---- */
@media (hover: hover) { body { cursor: none; } }
.cur-dot, .cur-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); border-radius: 50%;
}
.cur-dot { width: 6px; height: 6px; background: var(--accent); mix-blend-mode: difference; }
.cur-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.3);
  transition: width .3s, height .3s, border-color .3s;
}
.cur-ring.hover { width: 52px; height: 52px; border-color: var(--accent); }
@media (hover: none) { .cur-dot, .cur-ring { display: none; } }

/* ---- SCROLL PROGRESS ---- */
.scroll-line { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 200; }
.scroll-fill { height: 100%; width: 0; background: var(--accent); box-shadow: 0 0 12px rgba(200,132,74,.6); }

/* ---- STICKY WA ---- */
.ig-btn {
  position: fixed; right: 20px; bottom: 84px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
  display: flex !important; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(214,36,159,.35);
  transition: transform .2s;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.ig-btn:hover { transform: scale(1.1); }

.wa-btn {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  transition: transform .2s;
  animation: waPulse 3s infinite;
}
.wa-btn:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.35), 0 0 0 0 rgba(37,211,102,.4); }
  70% { box-shadow: 0 8px 24px rgba(37,211,102,.35), 0 0 0 16px rgba(37,211,102,0); }
}

/* ---- LOADER ---- */
.loader {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .4s;
}
.loader.out { opacity: 0; pointer-events: none; }
.loader-content { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.loader-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -0.04em;
  color: var(--text);
  opacity: 0;
  transform: translateY(12px);
  animation: loaderIn .7s .1s ease forwards;
}
@keyframes loaderIn { to { opacity: 1; transform: none; } }
.loader-progress { width: 160px; height: 1px; background: var(--border2); overflow: hidden; }
.loader-bar { height: 100%; width: 0; background: var(--accent); transition: width .12s ease-out; }
.loader-curtain {
  position: absolute; inset: 0;
  background: var(--bg);
  transform-origin: bottom;
  transform: scaleY(0);
}
.loader-curtain.rise { animation: curtainRise .9s cubic-bezier(.77,0,.18,1) forwards; }
@keyframes curtainRise { to { transform: scaleY(1); transform-origin: top; } }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; inset-x: 0; z-index: 100;
  padding: 0 var(--px);
  height: var(--nav-h);
  display: flex; align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(10,9,8,.5);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, height .3s;
}
.nav.scrolled { background: rgba(10,9,8,.9); border-bottom-color: var(--border); height: 60px; }
.nav-inner {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 18px;
  letter-spacing: -0.01em;
}
.nav-logo-mark { color: var(--accent); font-size: 13px; }
.nav-logo-dim { font-weight: 400; color: rgba(255,255,255,.4); }
.nav-links {
  display: flex; gap: 36px; justify-self: center; margin: 0 auto;
}
.nav-links a {
  font-size: 14px; color: rgba(255,255,255,.55);
  transition: color .2s; position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--text);
  transition: width .25s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  justify-self: end;
  padding: 10px 22px;
  border: 1px solid var(--border2);
  border-radius: 999px;
  font-size: 14px;
  transition: background .2s, border-color .2s, color .2s;
}
.nav-cta:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.nav-burger { display: none; flex-direction: column; gap: 6px; padding: 4px; justify-self: end; }
.nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: transform .3s, opacity .3s; }
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; }
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 6vw, 48px);
  color: rgba(255,255,255,.3);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
  opacity: 0; transform: translateY(16px);
}
.mobile-menu.open .mobile-link {
  animation: mLinkIn .5s ease forwards;
}
.mobile-menu.open .mobile-link:nth-child(1){animation-delay:.05s}
.mobile-menu.open .mobile-link:nth-child(2){animation-delay:.1s}
.mobile-menu.open .mobile-link:nth-child(3){animation-delay:.15s}
.mobile-menu.open .mobile-link:nth-child(4){animation-delay:.2s}
.mobile-menu.open .mobile-link:nth-child(5){animation-delay:.25s}
@keyframes mLinkIn { to { opacity: 1; transform: none; color: var(--text); } }
.mobile-link:hover { color: var(--accent); }
.mobile-cta {
  margin-top: 32px;
  display: inline-flex;
  padding: 16px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  align-self: flex-start;
  opacity: 0;
  transition: opacity .3s .4s;
}
.mobile-menu.open .mobile-cta { opacity: 1; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--delay, 0s);
}
.reveal.in { opacity: 1; transform: none; }

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .9s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: var(--d, 0s);
  animation-play-state: paused;
}
body.loaded .fade-up { animation-play-state: running; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--nav-h) var(--px) 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: brightness(.55) contrast(1.08);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg img { transform: scale(1.0); }
/* ---- Hero video scrubbing styles ---- */
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.55) contrast(1.08);
  display: block;
  pointer-events: none;
  position: absolute; inset: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,.4) 0%, rgba(10,9,8,.1) 35%, rgba(10,9,8,.3) 65%, rgba(10,9,8,.95) 100%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-label { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(44px, 7.5vw, 120px);
  line-height: .96;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  color: var(--text);
}
.hero-line { display: block; overflow: hidden; }
.hero-line em { font-style: italic; font-weight: 700; color: var(--accent); }
.hero-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 32px;
}
.hero-sub { color: rgba(255,255,255,.6); font-size: 16px; line-height: 1.6; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 40px; right: var(--px);
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  font-family: 'JetBrains Mono', monospace;
}
.scroll-indicator { width: 20px; height: 32px; border: 1px solid rgba(255,255,255,.25); border-radius: 10px; display: flex; justify-content: center; padding-top: 4px; }
.scroll-dot { width: 4px; height: 8px; background: var(--accent); border-radius: 2px; animation: scrollBounce 1.8s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100%{transform:translateY(0)}50%{transform:translateY(8px)} }
@media (max-width: 700px) {
  .hero-foot { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-scroll { display: none; }
}

/* ---- MARQUEE ---- */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0;
  background: var(--bg2);
}
.marquee-inner {
  display: flex;
  width: max-content;
  animation: marqueeSlow 60s linear infinite;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}
.marquee-strip:hover .marquee-inner { animation-play-state: paused; }
.marquee-inner span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text2);
}
.marquee-inner .sep { color: var(--accent); font-size: 12px; opacity: .6; }
@keyframes marqueeSlow { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- STATS ---- */
.stats {
  padding: 100px var(--px);
  background: var(--bg);
}
/* stats-grid: 2x2 on mobile, 4-col on desktop */
.stats-grid {
  display: grid;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .stats-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 0;
    max-width: 100%;
  }
  .stat-div { display: none; }
  .stat-num { font-size: clamp(38px, 10vw, 56px); }
  .stat-label { font-size: 11px; margin-top: 6px; }
  .stat { text-align: center; }
}
.stat { text-align: center; }
.stat-div { width: 1px; height: 80px; background: var(--border2); }
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 6.5vw, 96px);
  letter-spacing: -0.05em;
  line-height: 1;
  color: #FFFFFF;
}
.stat-label {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text3);
  line-height: 1.4;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 48px 0; }
  .stat-div { display: none; }
}

/* ---- WORK ---- */
.work { padding: 120px var(--px); }
.work-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 60px;
}
.view-all {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--text3);
  border-bottom: 1px solid var(--text3);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.view-all:hover { color: var(--accent); border-color: var(--accent); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
  max-width: 100%;
  margin: 0;
}
.work-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg3);
  border-radius: 6px;
  grid-column: span 4;
  aspect-ratio: 4/3;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.work-item:hover { transform: translateY(-6px); }
.work-item-top { grid-column: span 6; aspect-ratio: 16/10; }
.work-item-bot { grid-column: span 4; aspect-ratio: 4/3; }
.work-img {
  position: absolute; inset: 0;
  overflow: hidden;
}
.work-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .4s;
  filter: brightness(.8);
}
.work-item:hover .work-img img { transform: scale(1.0); filter: brightness(1); }
.work-info {
  position: absolute; inset-x: 0; bottom: 0;
  padding: 24px 24px 22px;
  background: linear-gradient(0deg, rgba(10,9,8,.9) 0%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
  z-index: 2;
}
.work-meta { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: rgba(255,255,255,.55); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.work-name { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 18px; color: #fff; }
.work-arrow { color: var(--accent); font-size: 20px; opacity: 0; transform: translate(-6px, 6px); transition: opacity .3s, transform .3s; }
.work-item:hover .work-arrow { opacity: 1; transform: none; }
@media (max-width: 860px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-item, .work-item-lg, .work-item-wide { grid-column: 1; aspect-ratio: 4/3; }
}

/* ---- COMPARE ---- */
.compare-sec { padding: 120px var(--px); background: var(--bg2); }
.compare-head { max-width: 700px; margin: 0 auto 60px; text-align: center; }
.compare-sub { color: var(--text3); font-size: 15px; margin-top: 20px; }
.compare-wrap { max-width: 1100px; margin: 0 auto; border-radius: 8px; overflow: hidden; }
.ba {
  position: relative;
  aspect-ratio: 16/9;
  user-select: none;
  cursor: ew-resize;
  background: var(--bg3);
}
.ba-after, .ba-before { position: absolute; inset: 0; overflow: hidden; }
.ba-before { width: 50%; }
.ba img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; display: block; }
.ba-before img { width: calc(1100px); max-width: none; }
.ba-badge {
  position: absolute; top: 16px; left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 12px; background: rgba(10,9,8,.7); backdrop-filter: blur(8px);
  border-radius: 4px; color: #fff; border: 1px solid rgba(255,255,255,.15);
}
.ba-badge-r { left: auto; right: 16px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none; z-index: 3;
}
.ba-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; transform: translateX(-50%); }
.ba-knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}

/* ---- ABOUT ---- */
.about {
  padding: 140px var(--px);
  background: var(--bg);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.about-p { color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.7; margin-bottom: 20px; }
.about-facts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border2);
}
.fact { display: flex; flex-direction: column; gap: 6px; }
.fact-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); }
.fact-val { font-size: 14px; color: var(--text); font-weight: 500; }
@media (max-width: 860px) { .about-inner { grid-template-columns: 1fr; gap: 48px; } }

/* ---- SERVICES ---- */
.services { padding: 120px var(--px); background: var(--bg2); }
.services-head { margin-bottom: 60px; }
.svc-list { list-style: none; border-top: 1px solid var(--border); }
.svc {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .3s cubic-bezier(.2,.8,.2,1);
  cursor: default;
}
.svc:hover { padding-left: 16px; }
.svc-num { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text3); }
.svc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--text);
  transition: color .2s;
}
.svc:hover .svc-title { color: var(--accent); }
.svc-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text3);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: right;
}
@media (max-width: 600px) { .svc { grid-template-columns: 40px 1fr; } .svc-tag { display: none; } }

/* ---- PROCESS ---- */
.process { padding: 120px var(--px); background: var(--bg); }
.process-head { max-width: 600px; margin-bottom: 80px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.step {
  padding: 40px 32px 48px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.step:hover { background: var(--bg2); }
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 52px;
  letter-spacing: -0.04em;
  color: var(--accent);
  opacity: .35;
  line-height: 1;
  margin-bottom: 28px;
}
.step:hover .step-num { opacity: 1; }
.step-day { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text3); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.step-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; color: var(--text); margin-bottom: 16px; }
.step-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; }
@media (max-width: 860px) { .process-steps { grid-template-columns: 1fr; } }

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 120px var(--px); background: var(--bg2); }
.testimonials-head { margin-bottom: 60px; }
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.quote {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  position: relative;
}
.quote:last-child { border-right: 0; }
.quote-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  line-height: .7;
  color: var(--accent);
  opacity: .25;
  margin-bottom: 20px;
}
.quote blockquote { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.75); margin-bottom: 28px; text-wrap: pretty; }
.quote-author { display: flex; flex-direction: column; gap: 4px; border-top: 1px solid var(--border); padding-top: 20px; }
.quote-author strong { font-size: 14px; color: var(--text); font-weight: 600; }
.quote-author span { font-size: 12px; color: var(--text3); font-family: 'JetBrains Mono', monospace; }
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } .quote { border-right: 0; border-bottom: 1px solid var(--border); } }

/* ---- FAQ ---- */
.faq { padding: 120px var(--px); background: var(--bg); }
.faq-head { margin-bottom: 60px; max-width: 600px; }
.faq-list { max-width: 900px; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-ans { padding: 0 0 28px; color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.7; max-width: 700px; }

/* ---- CTA SECTION ---- */
.cta-section {
  position: relative;
  padding: 140px var(--px);
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.35) contrast(1.1); }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,9,8,.85) 0%, rgba(10,9,8,.65) 50%, rgba(10,9,8,.9) 100%); }
.cta-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}
.cta-sub { color: rgba(255,255,255,.55); font-size: 17px; line-height: 1.6; max-width: 500px; }
.cta-form { width: 100%; max-width: 680px; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-form input, .cta-form textarea, .cta-form select {
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  padding: 16px 18px;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
  font-family: 'Inter', sans-serif;
}
.cta-form select { appearance: none; cursor: pointer; color: rgba(255,255,255,.55); }
.cta-form select option { background: #1a1814; color: var(--text); }
.cta-form input:focus, .cta-form textarea:focus, .cta-form select:focus { border-color: var(--accent); background: rgba(255,255,255,.09); }
.cta-form textarea { resize: vertical; min-height: 100px; }
.form-foot { display: flex; gap: 12px; flex-wrap: wrap; }
.form-sent { color: var(--accent); font-size: 14px; text-align: center; padding: 12px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ---- FOOTER ---- */
.footer { padding: 80px var(--px) 32px; background: var(--bg2); border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.035em;
  line-height: .95;
  color: var(--text);
}
.footer-tagline { margin-top: 16px; font-size: 13px; color: var(--text3); line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col-head { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--text3); margin-bottom: 16px; display: block; }
.footer-links a { display: block; font-size: 14px; color: rgba(255,255,255,.5); padding: 4px 0; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 28px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text3); letter-spacing: .06em; flex-wrap: wrap; gap: 8px; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr; } .footer-links { grid-template-columns: repeat(2, 1fr); } }

/* ---- TWEAKS ---- */
.tweaks-panel {
  position: fixed; right: 20px; bottom: 80px;
  width: 260px; background: #111; border: 1px solid var(--border2);
  border-radius: 10px; z-index: 200;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.tweaks-head { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; border-bottom: 1px solid var(--border); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text3); }
#tweaksClose { font-size: 20px; color: var(--text3); }
.tweaks-body { padding: 16px 14px; }
.tw-group { display: flex; flex-direction: column; gap: 10px; }
.tw-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--text3); }
.tw-seg { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; background: #0a0a0a; border: 1px solid var(--border); border-radius: 8px; padding: 4px; }
.tw-seg button { padding: 8px 4px; border-radius: 6px; font-size: 12px; color: var(--text3); transition: all .2s; }
.tw-seg button.active { background: var(--text); color: #000; }

/* ---- MAGNET BUTTONS ---- */
.magnet { transition: transform .3s cubic-bezier(.2,.8,.2,1), background .25s, color .25s, box-shadow .4s; }


/* === CENTERING & SPACING CLEANUP === */
.stats { padding: 72px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg); }
.stats-grid { max-width: 100%; margin: 0; padding: 0 var(--px); }
.work { padding: 100px var(--px) 100px; }
.work-head { margin-bottom: 48px; }
.compare-sec { padding: 100px var(--px); }
.about { padding: 120px var(--px); }
.about-inner { max-width: 100%; }
.services { padding: 100px var(--px); }
.services-head { max-width: 1200px; margin-left: auto; margin-right: auto; }
.svc-list { max-width: 100%; }
.process { padding: 100px var(--px); }
.process-head { max-width: 1200px; margin: 0 auto 64px; }
.process-steps { max-width: 100%; }
.testimonials { padding: 100px var(--px); }
.testimonials-head { max-width: 1200px; margin-left: auto; margin-right: auto; }
.quotes { max-width: 100%; }
.faq { padding: 100px var(--px); }
.faq-head { max-width: 1200px; margin: 0 auto 48px; }
.faq-list { max-width: 100%; }
.footer-top { max-width: 100%; }
.footer-bottom { max-width: 100%; }
.nav-inner { width: 100%; }


/* ===== OVERRIDES v3 ===== */
.stats { padding: 72px var(--px); border-top:1px solid var(--border);border-bottom:1px solid var(--border); }
.stats-grid { max-width:100%;display:grid;align-items:center;gap:0; }
.stat-num { color:#FFFFFF !important; background:none !important; -webkit-text-fill-color:#FFFFFF !important; }
.stat-label { color: var(--text3); }

/* 2+3 work grid */
.work-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:14px; }
.work-item { grid-column:span 4; aspect-ratio:4/3; }
.work-item-top { grid-column:span 6; aspect-ratio:16/10; }
.work-item-bot { grid-column:span 4; aspect-ratio:4/3; }
@media(max-width:860px){
  .work-grid{grid-template-columns:1fr;}
  .work-item,.work-item-top,.work-item-bot{grid-column:1;aspect-ratio:4/3;}
}

/* Hero full width */
.hero-inner { max-width: none; }

/* Section padding reduction on narrow screens */
@media(max-width:600px){
  .stats { padding: 48px var(--px); }
  .work { padding: 64px var(--px); }
  .about { padding: 80px var(--px); }
  .services { padding: 64px var(--px); }
  .process { padding: 64px var(--px); }
  .testimonials { padding: 64px var(--px); }
  .faq { padding: 64px var(--px); }
  .cta-section { padding: 80px var(--px); }
}

/* Tighten hero bottom on mobile */
@media(max-width:700px){
  .hero-foot { grid-template-columns:1fr; gap:24px; }
  .hero-actions { flex-direction:column; align-items:flex-start; }
  .hero-title { font-size: clamp(40px,11vw,80px); }
}

/* Better body text readability */
body { font-size: 16px; line-height: 1.65; }
.about-p { font-size: 16px; }
.step-desc { font-size: 15px; color: rgba(255,255,255,.6); }
.faq-ans { font-size: 15px; }

/* Cursor on hover elements */
a,button,.work-item,.svc,details summary { cursor: pointer; }

/* ===== LEFT-ALIGN SECTION HEADS ===== */
.services-head,
.services-head .section-tag,
.services-head .section-title,
.process-head,
.process-head .section-tag,
.process-head .section-title,
.testimonials-head,
.testimonials-head .section-tag,
.testimonials-head .section-title,
.faq-head,
.faq-head .section-tag,
.faq-head .section-title { text-align: left !important; margin-left: 0 !important; margin-right: 0 !important; }

.services-head { max-width: 100%; margin-bottom: 48px; }
.process-head { max-width: 100%; margin-bottom: 64px; }
.testimonials-head { max-width: 100%; margin-bottom: 48px; }
.faq-head { max-width: 100%; margin-bottom: 48px; }

/* ===== SERVICE EXPAND ON CLICK ===== */
.svc { cursor: pointer; flex-wrap: wrap; }
.svc-desc {
  display: none;
  grid-column: 1 / -1;
  padding: 0 0 16px 60px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 600px;
  animation: svcFadeIn .3s ease;
}
.svc.open .svc-desc { display: block; }
.svc-arrow {
  margin-left: auto;
  color: var(--text3);
  font-size: 18px;
  transition: transform .3s, color .3s;
  line-height: 1;
}
.svc.open .svc-arrow { transform: rotate(45deg); color: var(--accent); }
.svc.open .svc-title { color: var(--accent); }
.svc.open { background: rgba(255,255,255,.02); border-radius: 4px; padding-left: 8px; }
@keyframes svcFadeIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }


/* ===== A: HERO WORD REVEAL ===== */
.hero-title { overflow: visible; }
.hero-line { display: block; overflow: hidden; }
.hw {
  display: inline-block;
  opacity: 0;
  transform: translateY(105%);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * 90ms + 300ms);
  margin-right: .22em;
}
.hw-em { color: var(--accent); font-style: italic; }
body.loaded .hw { opacity: 1; transform: translateY(0); }

/* ===== C: INSTAGRAM STRIP ===== */
.insta {
  padding: 100px var(--px);
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.insta-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.insta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -0.02em;
  color: var(--text);
}
.insta-dim { color: var(--text3); font-weight: 400; }
.insta-follow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--text3);
  border-bottom: 1px solid var(--text3);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.insta-follow:hover { color: var(--accent); border-color: var(--accent); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 6px;
}
.insta-cell {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg3);
}
.insta-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .4s;
  filter: brightness(.85) grayscale(.2);
}
.insta-cell:hover img { transform: scale(1.06); filter: brightness(1) grayscale(0); }
.insta-hover {
  position: absolute; inset: 0;
  background: rgba(200,132,74,.25);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.insta-cell:hover .insta-hover { opacity: 1; }
@media (max-width: 860px) { .insta-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 500px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== D: MOBILE MENU IMPROVED ===== */
.nav-burger span:nth-child(1) { transform-origin: center; }
.nav-burger span:nth-child(2) { transform-origin: center; }
.nav-burger.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* ===== MARQUEE UPGRADE — with flags ===== */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 20px 0;
  background: var(--bg);
  position: relative;
}
.marquee-strip::before, .marquee-strip::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee-strip::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-inner span { font-size: 15px; font-weight: 600; letter-spacing: .04em; }


/* ===== WHY TWJ SECTION ===== */
.why {
  padding: 100px var(--px);
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.why-head { margin-bottom: 56px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.why-card {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background .3s;
}
.why-card:hover { background: var(--bg2); }
.why-icon {
  color: var(--accent);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(200,132,74,.1);
  border-radius: 12px;
  transition: background .3s, transform .4s cubic-bezier(.2,.8,.2,1);
}
.why-card:hover .why-icon {
  background: rgba(200,132,74,.2);
  transform: rotate(6deg) scale(1.1);
}
.why-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.why-desc {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}
@media (max-width: 860px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ===== SECTION REVEAL STAGGER ===== */
.why-card.reveal { transition-delay: var(--delay, 0s); }

/* ===== IMPROVED HERO SCRIM for real photo ===== */
.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(10,9,8,.15) 0%,
    rgba(10,9,8,.05) 30%,
    rgba(10,9,8,.45) 70%,
    rgba(10,9,8,.97) 100%
  );
}

/* ===== QUOTE BLOCK HOVER ===== */
.quote { transition: background .3s; }
.quote:hover { background: rgba(255,255,255,.02); }

/* ===== STEP NUMBER REVEAL ===== */
.step-num {
  transition: opacity .4s, color .3s;
}



/* ========================================
   MOBILE RESPONSIVE v4 - FINAL FIX
   No horizontal scroll, no zoom
   All breakpoints with !important where needed
   ======================================== */

/* ============================
   GLOBAL - ALL SCREEN SIZES
   ============================ */
html {
  overflow-x: hidden !important;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  max-width: 100vw;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden !important;
  overscroll-behavior-x: none;
  touch-action: pan-y;
  max-width: 100vw;
  width: 100%;
}

.hero { overflow: hidden; }
.marquee-strip { overflow: hidden !important; max-width: 100vw; }

/* ============================
   MOBILE MENU (≤860px)
   ============================ */
@media (max-width: 860px) {
  .nav-links,
  .nav-cta { display: none !important; }

  .nav-burger { display: flex !important; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }

  .mobile-menu { padding: 20px; padding-top: 80px; }
  .mobile-link { font-size: clamp(26px, 7vw, 44px); padding: 10px 0; }
  .mobile-cta { padding: 14px 28px; font-size: 15px; margin-top: 28px; }
}

/* ============================
   MOBILE (≤768px)
   ============================ */
@media (max-width: 768px) {
  :root {
    --px: 20px !important;
    --nav-h: 60px !important;
  }

  /* NAV */
  .nav { padding: 0 20px !important; height: 60px !important; }
  .nav-logo-text { font-size: 15px; }
  .nav-logo img { height: 28px; }

  /* SECTION TITLES */
  .section-title {
    font-size: clamp(28px, 7.5vw, 44px) !important;
    line-height: 1.1;
    letter-spacing: -0.02em;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .section-tag { font-size: 11px; margin-bottom: 14px; }

  /* HERO */
  .hero { padding: 60px 20px 48px !important; overflow: hidden; }
  .hero-inner { width: 100%; max-width: 100%; overflow: hidden; }
  .hero-title {
    font-size: clamp(36px, 10vw, 56px) !important;
    line-height: 1.0;
    letter-spacing: -0.025em;
    margin-bottom: 28px;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }
  .hero-label { margin-bottom: 20px; gap: 8px; flex-wrap: wrap; }
  .hero-foot {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
    padding-top: 20px;
    width: 100%;
  }
  .hero-sub { font-size: 15px; line-height: 1.65; max-width: 100%; }
  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px;
    width: 100%;
  }
  .btn-main, .btn-ghost {
    padding: 16px 24px;
    font-size: 15px;
    width: 100% !important;
    justify-content: center;
  }

  /* MARQUEE */
  .marquee-strip { padding: 16px 0; }
  .marquee-inner span { font-size: 13px; }

  /* STATS */
  .stats { padding: 56px 20px !important; overflow: hidden; }
  .stats-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px 0 !important;
    width: 100%;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .stat-div { display: none !important; }
  .stat-num {
    font-size: clamp(40px, 11vw, 64px) !important;
    letter-spacing: -0.04em;
  }
  .stat-label { font-size: 11px; margin-top: 8px; line-height: 1.4; }

  /* WORK */
  .work { padding: 60px 20px !important; overflow: hidden; }
  .work-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
  .work-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px;
    width: 100%;
  }
  .work-item, .work-item-top, .work-item-bot {
    grid-column: 1 !important;
    aspect-ratio: 4/3;
    width: 100% !important;
  }
  .work-name { font-size: 16px; }
  .work-meta { font-size: 10px; }

  /* COMPARE */
  .compare-sec { padding: 60px 20px !important; overflow: hidden; }
  .compare-head { margin: 0 0 32px; text-align: left; }
  .compare-wrap { width: 100% !important; max-width: 100% !important; overflow: hidden; }
  .ba { aspect-ratio: 4/3; width: 100% !important; overflow: hidden; }
  .ba-before img { width: 100vw !important; max-width: none; }
  .ba-after img { width: 100%; max-width: 100%; }

  /* ABOUT */
  .about { padding: 60px 20px !important; overflow: hidden; }
  .about-inner { grid-template-columns: 1fr !important; gap: 36px; }
  .about-p { font-size: 15px; line-height: 1.7; }
  .about-facts { grid-template-columns: 1fr 1fr; gap: 20px 16px; margin-top: 28px; padding-top: 24px; }
  .fact-label { font-size: 9px; }
  .fact-val { font-size: 14px; }

  /* SERVICES */
  .services { padding: 60px 20px !important; overflow: hidden; }
  .svc { grid-template-columns: 36px 1fr !important; gap: 12px 16px; padding: 22px 0; }
  .svc:hover { padding-left: 8px; }
  .svc-num { font-size: 11px; }
  .svc-title { font-size: clamp(16px, 4.5vw, 22px) !important; }
  .svc-tag { display: none !important; }
  .svc-desc { padding: 0 0 12px 52px; font-size: 14px; }

  /* PROCESS */
  .process { padding: 60px 20px !important; overflow: hidden; }
  .process-head { margin-bottom: 40px; max-width: 100%; }
  .process-steps { grid-template-columns: 1fr !important; border-left: none; }
  .step { padding: 28px 0 32px; border-right: none; border-left: none; }
  .step-num { font-size: 44px; margin-bottom: 16px; }
  .step-day { font-size: 11px; margin-bottom: 10px; }
  .step-title { font-size: 20px; margin-bottom: 12px; }
  .step-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.6); }

  /* TESTIMONIALS */
  .testimonials { padding: 60px 20px !important; overflow: hidden; }
  .quotes { grid-template-columns: 1fr !important; }
  .quote { border-right: 0; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .quote:last-child { border-bottom: 0; }
  .quote-mark { font-size: 52px; margin-bottom: 12px; }
  .quote blockquote { font-size: 15px; line-height: 1.7; }
  .quote-author strong { font-size: 14px; }
  .quote-author span { font-size: 11px; }

  /* FAQ */
  .faq { padding: 60px 20px !important; overflow: hidden; }
  .faq-item summary { font-size: 16px; padding: 22px 0; line-height: 1.4; gap: 16px; }
  .faq-item summary::after { font-size: 22px; flex-shrink: 0; }
  .faq-ans { font-size: 14px; line-height: 1.75; padding-bottom: 22px; max-width: 100%; }

  /* CTA */
  .cta-section { padding: 64px 20px !important; overflow: hidden; }
  .cta-inner { width: 100%; max-width: 100%; }
  .cta-title { font-size: clamp(30px, 8.5vw, 52px) !important; line-height: 1.1; }
  .cta-sub { font-size: 15px; line-height: 1.7; max-width: 100%; }
  .cta-form { width: 100%; max-width: 100%; }
  .form-row { grid-template-columns: 1fr !important; }
  .cta-form input, .cta-form textarea, .cta-form select {
    font-size: 16px !important;
    padding: 14px 16px;
    width: 100%;
  }
  .form-foot { flex-direction: column; gap: 10px; }
  .form-foot .btn-main, .form-foot .btn-wa { width: 100%; justify-content: center; }

  /* FOOTER */
  .footer { padding: 56px 20px 32px !important; overflow: hidden; }
  .footer-top { grid-template-columns: 1fr !important; gap: 40px; padding-bottom: 40px; }
  .footer-logo { font-size: 36px; }
  .footer-tagline { font-size: 13px; margin-top: 10px; }
  .footer-links { grid-template-columns: repeat(2, 1fr) !important; gap: 20px 16px; }
  .footer-col-head { font-size: 10px; margin-bottom: 12px; }
  .footer-links a { font-size: 14px; padding: 4px 0; }
  .footer-bottom { flex-direction: column; gap: 6px; font-size: 11px; padding-top: 20px; }

  /* WHY TWJ */
  .why { padding: 60px 20px !important; overflow: hidden; }
  .why-grid { grid-template-columns: 1fr !important; border-left: none; }
  .why-card { padding: 28px 0; border-right: none; border-left: none; gap: 16px; }
  .why-title { font-size: 18px; }
  .why-desc { font-size: 14px; line-height: 1.75; }

  /* INSTAGRAM */
  .insta { padding: 60px 20px !important; overflow: hidden; }
  .insta-head { margin-bottom: 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .insta-title { font-size: clamp(22px, 6vw, 34px); }
  .insta-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 4px; }

  /* MISC */
  .pill { font-size: 11px; padding: 5px 12px; }
  .wa-btn { width: 50px; height: 50px; right: 16px; bottom: 16px; }
  input, textarea, select { font-size: 16px !important; }
}

/* ============================
   TABLET (769px–1024px)
   ============================ */
@media (max-width: 1024px) and (min-width: 769px) {
  :root { --px: clamp(24px, 4vw, 60px); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-item, .work-item-top, .work-item-bot { grid-column: span 1; aspect-ratio: 4/3; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr 1fr; }
  .quote:last-child { border-right: 0; border-bottom: 1px solid var(--border); }
}